Searched refs:entryIdMap_ (Results 1 – 4 of 4) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/ |
D | heap_profiler.h | 92 return entryIdMap_->GetIdCount(); in GetIdCount() 96 return const_cast<EntryIdMap *>(entryIdMap_); in GetEntryIdMap() 124 EntryIdMap* entryIdMap_; variable
|
D | heap_profiler.cpp | 90 entryIdMap_ = GetChunk()->New<EntryIdMap>(); in HeapProfiler() 101 GetChunk()->Delete(entryIdMap_); in ~HeapProfiler() 121 entryIdMap_->Move(address, reinterpret_cast<Address>(forwardAddress)); in MoveEvent() 149 entryIdMap_->RemoveDeadEntryId(snapshot); in DumpHeapSnapshot() 295 … traceAllocation, entryIdMap_, GetChunk()); in MakeHeapSnapshot() 305 … traceAllocation, entryIdMap_, GetChunk()); in MakeHeapSnapshot()
|
D | heap_snapshot.cpp | 89 entryIdMap_ = nullptr; in ~HeapSnapshot() 125 entryIdMap_->EraseId((*iter)->GetAddress()); in UpdateNodes() 148 timeStamps_.emplace_back(entryIdMap_->GetLastId()); in RecordSampleTime() 621 auto [idExist, sequenceId] = entryIdMap_->FindId(addr); in GenerateNode() 628 entryIdMap_->InsertId(addr, sequenceId); in GenerateNode() 679 auto [idExist, sequenceId] = entryIdMap_->FindId(addr); in GenerateNode() 684 entryIdMap_->InsertId(addr, sequenceId); in GenerateNode() 861 auto [idExist, sequenceId] = entryIdMap_->FindId(addr); in GenerateStringNode() 865 entryIdMap_->InsertId(addr, sequenceId); in GenerateStringNode() 884 auto [idExist, sequenceId] = entryIdMap_->FindId(addr); in GeneratePrivateStringNode() [all …]
|
D | heap_snapshot.h | 370 entryIdMap_(entryIdMap), chunk_(chunk) {} in HeapSnapshot() 502 EntryIdMap* entryIdMap_; variable
|