-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathobject_graph.h
312 lines (251 loc) · 9.34 KB
/
object_graph.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#ifndef RUNTIME_VM_OBJECT_GRAPH_H_
#define RUNTIME_VM_OBJECT_GRAPH_H_
#include <memory>
#include "vm/allocation.h"
#include "vm/dart_api_state.h"
#include "vm/thread_stack_resource.h"
namespace dart {
class Array;
class Object;
class CountingPage;
#if defined(DART_ENABLE_HEAP_SNAPSHOT_WRITER)
// Utility to traverse the object graph in an ordered fashion.
// Example uses:
// - find a retaining path from the isolate roots to a particular object, or
// - determine how much memory is retained by some particular object(s).
class ObjectGraph : public ThreadStackResource {
public:
class Stack;
// Allows climbing the search tree all the way to the root.
class StackIterator {
public:
// The object this iterator currently points to.
ObjectPtr Get() const;
// Returns false if there is no parent.
bool MoveToParent();
// Offset into parent for the pointer to current object. -1 if no parent.
intptr_t OffsetFromParent() const;
private:
StackIterator(const Stack* stack, intptr_t index)
: stack_(stack), index_(index) {}
const Stack* stack_;
intptr_t index_;
friend class ObjectGraph::Stack;
DISALLOW_IMPLICIT_CONSTRUCTORS(StackIterator);
};
class Visitor {
public:
// Directs how the search should continue after visiting an object.
enum Direction {
kProceed, // Recurse on this object's pointers.
kBacktrack, // Ignore this object's pointers.
kAbort, // Terminate the entire search immediately.
};
virtual ~Visitor() {}
// Visits the object pointed to by *it. The iterator is only valid
// during this call. This method must not allocate from the heap or
// trigger GC in any way.
virtual Direction VisitObject(StackIterator* it) = 0;
virtual bool visit_weak_persistent_handles() const { return false; }
const char* gc_root_type = nullptr;
bool is_traversing = false;
};
typedef struct {
intptr_t length;
const char* gc_root_type;
} RetainingPathResult;
explicit ObjectGraph(Thread* thread);
~ObjectGraph();
// Visits all strongly reachable objects in the isolate's heap, in a
// pre-order, depth first traversal.
void IterateObjects(Visitor* visitor);
void IterateUserObjects(Visitor* visitor);
// Like 'IterateObjects', but restricted to objects reachable from 'root'
// (including 'root' itself).
void IterateObjectsFrom(const Object& root, Visitor* visitor);
void IterateObjectsFrom(intptr_t class_id,
HeapIterationScope* iteration,
Visitor* visitor);
// The number of bytes retained by 'obj'.
intptr_t SizeRetainedByInstance(const Object& obj);
intptr_t SizeReachableByInstance(const Object& obj);
// The number of bytes retained by the set of all objects of the given class.
intptr_t SizeRetainedByClass(intptr_t class_id);
intptr_t SizeReachableByClass(intptr_t class_id);
// Finds some retaining path from the isolate roots to 'obj'. Populates the
// provided array with pairs of (object, offset from parent in words),
// starting with 'obj' itself, as far as there is room. Returns the number
// of objects on the full path. A null input array behaves like a zero-length
// input array. The 'offset' of a root is -1.
//
// To break the trivial path, the handle 'obj' is temporarily cleared during
// the search, but restored before returning. If no path is found (i.e., the
// provided handle was the only way to reach the object), zero is returned.
RetainingPathResult RetainingPath(Object* obj, const Array& path);
// Find the objects that reference 'obj'. Populates the provided array with
// pairs of (object pointing to 'obj', offset of pointer in words), as far as
// there is room. Returns the number of objects found.
//
// An object for which this function answers no inbound references might still
// be live due to references from the stack or embedder handles.
intptr_t InboundReferences(Object* obj, const Array& references);
private:
DISALLOW_IMPLICIT_CONSTRUCTORS(ObjectGraph);
};
class ChunkedWriter : public ThreadStackResource {
public:
explicit ChunkedWriter(Thread* thread) : ThreadStackResource(thread) {}
virtual intptr_t ReserveChunkPrefixSize() { return 0; }
// Takes ownership of [buffer], must be freed with [malloc].
virtual void WriteChunk(uint8_t* buffer, intptr_t size, bool last) = 0;
};
class FileHeapSnapshotWriter : public ChunkedWriter {
public:
FileHeapSnapshotWriter(Thread* thread,
const char* filename,
bool* success = nullptr);
~FileHeapSnapshotWriter();
virtual void WriteChunk(uint8_t* buffer, intptr_t size, bool last);
private:
void* file_ = nullptr;
bool* success_;
};
class CallbackHeapSnapshotWriter : public ChunkedWriter {
public:
CallbackHeapSnapshotWriter(Thread* thread,
Dart_HeapSnapshotWriteChunkCallback callback,
void* context);
~CallbackHeapSnapshotWriter();
virtual void WriteChunk(uint8_t* buffer, intptr_t size, bool last);
private:
Dart_HeapSnapshotWriteChunkCallback callback_;
void* context_;
};
class VmServiceHeapSnapshotChunkedWriter : public ChunkedWriter {
public:
explicit VmServiceHeapSnapshotChunkedWriter(Thread* thread)
: ChunkedWriter(thread) {}
virtual intptr_t ReserveChunkPrefixSize() { return kMetadataReservation; }
virtual void WriteChunk(uint8_t* buffer, intptr_t size, bool last);
private:
static constexpr intptr_t kMetadataReservation = 512;
};
// Generates a dump of the heap, whose format is described in
// runtime/vm/service/heap_snapshot.md.
class HeapSnapshotWriter : public ThreadStackResource {
public:
HeapSnapshotWriter(Thread* thread, ChunkedWriter* writer)
: ThreadStackResource(thread), writer_(writer) {}
~HeapSnapshotWriter() { free(image_page_ranges_); }
void WriteSigned(int64_t value) {
EnsureAvailable((sizeof(value) * kBitsPerByte) / 7 + 1);
bool is_last_part = false;
while (!is_last_part) {
uint8_t part = value & 0x7F;
value >>= 7;
if ((value == 0 && (part & 0x40) == 0) ||
(value == static_cast<intptr_t>(-1) && (part & 0x40) != 0)) {
is_last_part = true;
} else {
part |= 0x80;
}
buffer_[size_++] = part;
}
}
void WriteUnsigned(uintptr_t value) {
EnsureAvailable((sizeof(value) * kBitsPerByte) / 7 + 1);
bool is_last_part = false;
while (!is_last_part) {
uint8_t part = value & 0x7F;
value >>= 7;
if (value == 0) {
is_last_part = true;
} else {
part |= 0x80;
}
buffer_[size_++] = part;
}
}
void WriteBytes(const void* bytes, intptr_t len) {
EnsureAvailable(len);
memmove(&buffer_[size_], bytes, len);
size_ += len;
}
void ScrubAndWriteUtf8(char* value) {
intptr_t len = strlen(value);
for (intptr_t i = len - 1; i >= 0; i--) {
if (value[i] == '@') {
value[i] = '\0';
}
}
WriteUtf8(value);
}
void WriteUtf8(const char* value) {
intptr_t len = strlen(value);
WriteUnsigned(len);
WriteBytes(value, len);
}
void AssignObjectId(ObjectPtr obj);
intptr_t GetObjectId(ObjectPtr obj) const;
void ClearObjectIds();
void CountReferences(intptr_t count);
void CountExternalProperty();
void AddSmi(SmiPtr smi);
void Write();
static uint32_t GetHeapSnapshotIdentityHash(Thread* thread, ObjectPtr obj);
private:
static uint32_t GetHashHelper(Thread* thread, ObjectPtr obj);
static constexpr intptr_t kPreferredChunkSize = MB;
void SetupImagePageBoundaries();
void SetupCountingPages();
bool OnImagePage(ObjectPtr obj) const;
CountingPage* FindCountingPage(ObjectPtr obj) const;
void EnsureAvailable(intptr_t needed);
void Flush(bool last = false);
ChunkedWriter* writer_ = nullptr;
uint8_t* buffer_ = nullptr;
intptr_t size_ = 0;
intptr_t capacity_ = 0;
intptr_t class_count_ = 0;
intptr_t object_count_ = 0;
intptr_t reference_count_ = 0;
intptr_t external_property_count_ = 0;
struct ImagePageRange {
uword start;
uword end;
};
static int CompareImagePageRanges(const ImagePageRange* a,
const ImagePageRange* b) {
if (a->start < b->start) {
return -1;
} else if (a->start == b->start) {
return 0;
} else {
return 1;
}
}
intptr_t image_page_hi_ = 0;
ImagePageRange* image_page_ranges_ = nullptr;
MallocGrowableArray<SmiPtr> smis_;
DISALLOW_COPY_AND_ASSIGN(HeapSnapshotWriter);
};
class CountObjectsVisitor : public ObjectVisitor, public HandleVisitor {
public:
CountObjectsVisitor(Thread* thread, intptr_t class_count);
~CountObjectsVisitor() {}
void VisitObject(ObjectPtr obj) override;
void VisitHandle(uword addr) override;
std::unique_ptr<intptr_t[]> new_count_;
std::unique_ptr<intptr_t[]> new_size_;
std::unique_ptr<intptr_t[]> new_external_size_;
std::unique_ptr<intptr_t[]> old_count_;
std::unique_ptr<intptr_t[]> old_size_;
std::unique_ptr<intptr_t[]> old_external_size_;
DISALLOW_COPY_AND_ASSIGN(CountObjectsVisitor);
};
#endif // !defined(DART_ENABLE_HEAP_SNAPSHOT_WRITER)
} // namespace dart
#endif // RUNTIME_VM_OBJECT_GRAPH_H_