Home
last modified time | relevance | path

Searched refs:IsMachineCodeObject (Results 1 – 12 of 12) sorted by relevance

/arkcompiler/ets_runtime/common_components/tests/
Dtest_hooks.cpp41 bool IsMachineCodeObject(uintptr_t objPtr) in IsMachineCodeObject() function
/arkcompiler/ets_runtime/common_components/common_runtime/
Dhooks.h57 PUBLIC_API bool IsMachineCodeObject(uintptr_t obj);
/arkcompiler/ets_runtime/ecmascript/mem/cmc_gc/
Dhooks.cpp354 bool IsMachineCodeObject(uintptr_t objPtr) in IsMachineCodeObject() function
357 return value.IsMachineCodeObject(); in IsMachineCodeObject()
/arkcompiler/ets_runtime/ecmascript/deoptimizer/
Ddeoptimizer.cpp597 if (jsFunc->GetMachineCode(thread).IsMachineCodeObject()) { in ResetJitHotness()
621 if (func->GetMachineCode(thread).IsMachineCodeObject()) { in ClearCompiledCodeStatusWhenDeopt()
643 if (func->GetMachineCode(thread_).IsMachineCodeObject()) { in UpdateAndDumpDeoptInfo()
/arkcompiler/ets_runtime/ecmascript/mem/
Dmachine_code.h191 ASSERT(JSTaggedValue(object).IsMachineCodeObject()); in Cast()
Dheap.cpp2897 if (code != nullptr || !JSTaggedValue(obj).IsMachineCodeObject()) { in CalCallSiteInfo()
2908 if (code != nullptr || !JSTaggedValue(obj).IsMachineCodeObject()) { in CalCallSiteInfo()
/arkcompiler/ets_runtime/ecmascript/jit/
Dcompile_decision.cpp248 if (machineCode.IsMachineCodeObject() && in CheckJsFunctionStatus()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value-inl.h1254 inline bool JSTaggedValue::IsMachineCodeObject() const in IsMachineCodeObject() function
1256 return IsHeapObject() && GetTaggedObject()->GetClass()->IsMachineCodeObject(); in IsMachineCodeObject()
Djs_tagged_value.h729 bool IsMachineCodeObject() const;
Djs_hclass.h1741 inline bool IsMachineCodeObject() const in IsMachineCodeObject() function
/arkcompiler/ets_runtime/common_components/heap/allocator/
Dregion_manager.cpp747 if (IsMachineCodeObject(reinterpret_cast<HeapAddress>(obj))) { in CollectLargeGarbage()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_ark_tools.cpp1559 while (!jsFunction->GetMachineCode(thread).IsMachineCodeObject()) { in WaitJitCompileFinish()