Home
last modified time | relevance | path

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

/external/v8/src/profiler/
Dheap-profiler.h18 class HeapObjectsMap; variable
45 HeapObjectsMap* heap_object_map() const { return ids_.get(); } in heap_object_map()
86 std::unique_ptr<HeapObjectsMap> ids_;
Dallocation-tracker.h22 class HeapObjectsMap; variable
108 AllocationTracker(HeapObjectsMap* ids, StringsStorage* names);
141 HeapObjectsMap* ids_;
Dheap-snapshot-generator.cc221 SnapshotObjectId id = HeapObjectsMap::kGcRootsFirstSubrootId; in AddSyntheticRootEntries()
224 id += HeapObjectsMap::kObjectIdStep; in AddSyntheticRootEntries()
226 DCHECK(HeapObjectsMap::kFirstAvailableObjectId == id); in AddSyntheticRootEntries()
235 HeapObjectsMap::kInternalRootObjectId, in AddRootEntry()
248 HeapObjectsMap::kGcRootsObjectId, in AddGcRootsEntry()
352 const SnapshotObjectId HeapObjectsMap::kInternalRootObjectId = 1;
353 const SnapshotObjectId HeapObjectsMap::kGcRootsObjectId =
354 HeapObjectsMap::kInternalRootObjectId + HeapObjectsMap::kObjectIdStep;
355 const SnapshotObjectId HeapObjectsMap::kGcRootsFirstSubrootId =
356 HeapObjectsMap::kGcRootsObjectId + HeapObjectsMap::kObjectIdStep;
[all …]
Dheap-profiler.cc18 : ids_(new HeapObjectsMap(heap)), in HeapProfiler()
230 ids_.reset(new HeapObjectsMap(heap())); in ClearHeapObjectMap()
Dheap-snapshot-generator.h206 class HeapObjectsMap {
218 explicit HeapObjectsMap(Heap* heap);
269 DISALLOW_COPY_AND_ASSIGN(HeapObjectsMap);
465 HeapObjectsMap* heap_object_map_;
Dallocation-tracker.cc193 AllocationTracker::AllocationTracker(HeapObjectsMap* ids, StringsStorage* names) in AllocationTracker()