Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/profiler/
Dheap-profiler.h22 class HeapObjectsMap; variable
50 HeapObjectsMap* heap_object_map() const { return ids_.get(); } in heap_object_map()
103 std::unique_ptr<HeapObjectsMap> ids_;
Dallocation-tracker.h24 class HeapObjectsMap; variable
111 AllocationTracker(HeapObjectsMap* ids, StringsStorage* names);
144 HeapObjectsMap* ids_;
Dheap-snapshot-generator.h282 class HeapObjectsMap {
294 explicit HeapObjectsMap(Heap* heap);
295 HeapObjectsMap(const HeapObjectsMap&) = delete;
296 HeapObjectsMap& operator=(const HeapObjectsMap&) = delete;
504 HeapObjectsMap* heap_object_map_;
541 HeapObjectsMap* heap_object_map_;
Dheap-snapshot-generator.cc417 SnapshotObjectId id = HeapObjectsMap::kGcRootsFirstSubrootId; in AddSyntheticRootEntries()
420 id += HeapObjectsMap::kObjectIdStep; in AddSyntheticRootEntries()
422 DCHECK_EQ(HeapObjectsMap::kFirstAvailableObjectId, id); in AddSyntheticRootEntries()
429 HeapObjectsMap::kInternalRootObjectId, 0, 0); in AddRootEntry()
437 HeapObjectsMap::kGcRootsObjectId, 0, 0); in AddGcRootsEntry()
493 const SnapshotObjectId HeapObjectsMap::kInternalRootObjectId = 1;
494 const SnapshotObjectId HeapObjectsMap::kGcRootsObjectId =
495 HeapObjectsMap::kInternalRootObjectId + HeapObjectsMap::kObjectIdStep;
496 const SnapshotObjectId HeapObjectsMap::kGcRootsFirstSubrootId =
497 HeapObjectsMap::kGcRootsObjectId + HeapObjectsMap::kObjectIdStep;
[all …]
Dheap-profiler.cc20 : ids_(new HeapObjectsMap(heap)), in HeapProfiler()
227 ids_.reset(new HeapObjectsMap(heap())); in ClearHeapObjectMap()
Dallocation-tracker.cc174 AllocationTracker::AllocationTracker(HeapObjectsMap* ids, StringsStorage* names) in AllocationTracker()