Home
last modified time | relevance | path

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

/external/chromium_org/v8/src/
Dallocation-tracker.h13 class HeapObjectsMap; variable
99 AllocationTracker(HeapObjectsMap* ids, StringsStorage* names);
133 HeapObjectsMap* ids_;
Dheap-profiler.h38 HeapObjectsMap* heap_object_map() const { return ids_.get(); } in heap_object_map()
73 SmartPointer<HeapObjectsMap> ids_;
Dheap-snapshot-generator.cc222 SnapshotObjectId id = HeapObjectsMap::kGcRootsFirstSubrootId; in AddSyntheticRootEntries()
225 id += HeapObjectsMap::kObjectIdStep; in AddSyntheticRootEntries()
227 DCHECK(HeapObjectsMap::kFirstAvailableObjectId == id); in AddSyntheticRootEntries()
236 HeapObjectsMap::kInternalRootObjectId, in AddRootEntry()
249 HeapObjectsMap::kGcRootsObjectId, in AddGcRootsEntry()
354 const SnapshotObjectId HeapObjectsMap::kInternalRootObjectId = 1;
355 const SnapshotObjectId HeapObjectsMap::kGcRootsObjectId =
356 HeapObjectsMap::kInternalRootObjectId + HeapObjectsMap::kObjectIdStep;
357 const SnapshotObjectId HeapObjectsMap::kGcRootsFirstSubrootId =
358 HeapObjectsMap::kGcRootsObjectId + HeapObjectsMap::kObjectIdStep;
[all …]
Dheap-profiler.cc16 : ids_(new HeapObjectsMap(heap)), in HeapProfiler()
193 ids_.Reset(new HeapObjectsMap(heap())); in ClearHeapObjectMap()
Dheap-snapshot-generator.h204 class HeapObjectsMap {
206 explicit HeapObjectsMap(Heap* heap);
261 DISALLOW_COPY_AND_ASSIGN(HeapObjectsMap);
451 HeapObjectsMap* heap_object_map_;
Dallocation-tracker.cc196 HeapObjectsMap* ids, StringsStorage* names) in AllocationTracker()