Home
last modified time | relevance | path

Searched refs:GetMachineCodeObject (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/mem/
Dsparse_space.h289 uintptr_t GetMachineCodeObject(uintptr_t pc);
344 MachineCodeAddress GetMachineCodeObject(uintptr_t pc) in GetMachineCodeObject() function
Dspace.h314 uintptr_t GetMachineCodeObject(uintptr_t pc) const;
Dspace.cpp109 uintptr_t HugeMachineCodeSpace::GetMachineCodeObject(uintptr_t pc) const in GetMachineCodeObject() function in panda::ecmascript::HugeMachineCodeSpace
Dsparse_space.cpp858 uintptr_t MachineCodeSpace::GetMachineCodeObject(uintptr_t pc) in GetMachineCodeObject() function in panda::ecmascript::MachineCodeSpace
861 return machineCodeObjectLocations.GetMachineCodeObject(pc); in GetMachineCodeObject()
Dheap.cpp2874 MachineCode *Heap::GetMachineCodeObject(uintptr_t pc) const in GetMachineCodeObject() function in panda::ecmascript::Heap
2877 …hineCode *machineCode = reinterpret_cast<MachineCode*>(machineCodeSpace->GetMachineCodeObject(pc)); in GetMachineCodeObject()
2882 return reinterpret_cast<MachineCode*>(hugeMachineCodeSpace->GetMachineCodeObject(pc)); in GetMachineCodeObject()
Dheap.h1675 MachineCode *GetMachineCodeObject(uintptr_t pc) const;
/arkcompiler/ets_runtime/ecmascript/
Dframes.cpp116 auto machineCode = thread_->GetEcmaVM()->GetHeap()->GetMachineCodeObject(retAddr); in TryCalCallSiteInfoFromMachineCode()