Home
last modified time | relevance | path

Searched refs:HeapObjectsMap (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/profiler/
Dheap-profiler.h22 class HeapObjectsMap; variable
47 HeapObjectsMap* heap_object_map() const { return ids_.get(); } in heap_object_map()
100 std::unique_ptr<HeapObjectsMap> ids_;
Dallocation-tracker.h22 class HeapObjectsMap; variable
109 AllocationTracker(HeapObjectsMap* ids, StringsStorage* names);
140 HeapObjectsMap* ids_;
Dheap-snapshot-generator.cc214 SnapshotObjectId id = HeapObjectsMap::kGcRootsFirstSubrootId; in AddSyntheticRootEntries()
217 id += HeapObjectsMap::kObjectIdStep; in AddSyntheticRootEntries()
219 DCHECK_EQ(HeapObjectsMap::kFirstAvailableObjectId, id); in AddSyntheticRootEntries()
226 HeapObjectsMap::kInternalRootObjectId, 0, 0); in AddRootEntry()
234 HeapObjectsMap::kGcRootsObjectId, 0, 0); in AddGcRootsEntry()
290 const SnapshotObjectId HeapObjectsMap::kInternalRootObjectId = 1;
291 const SnapshotObjectId HeapObjectsMap::kGcRootsObjectId =
292 HeapObjectsMap::kInternalRootObjectId + HeapObjectsMap::kObjectIdStep;
293 const SnapshotObjectId HeapObjectsMap::kGcRootsFirstSubrootId =
294 HeapObjectsMap::kGcRootsObjectId + HeapObjectsMap::kObjectIdStep;
[all …]
Dheap-snapshot-generator.h250 class HeapObjectsMap {
262 explicit HeapObjectsMap(Heap* heap);
312 DISALLOW_COPY_AND_ASSIGN(HeapObjectsMap);
449 HeapObjectsMap* heap_object_map_;
486 HeapObjectsMap* heap_object_map_;
Dheap-profiler.cc19 : ids_(new HeapObjectsMap(heap)), in HeapProfiler()
225 ids_.reset(new HeapObjectsMap(heap())); in ClearHeapObjectMap()
Dallocation-tracker.cc175 AllocationTracker::AllocationTracker(HeapObjectsMap* ids, StringsStorage* names) in AllocationTracker()