Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/jit/
Dcompile_decision.cpp131 if (machineCode.IsMachineCodeObject() && in CheckJsFunctionStatus()
/arkcompiler/ets_runtime/ecmascript/deoptimizer/
Ddeoptimizer.cpp544 if (jsFunc->GetMachineCode().IsMachineCodeObject()) { in ResetJitHotness()
563 if (func->GetMachineCode().IsMachineCodeObject()) { in ClearCompiledCodeStatusWhenDeopt()
585 if (func->GetMachineCode().IsMachineCodeObject()) { in UpdateAndDumpDeoptInfo()
/arkcompiler/ets_runtime/ecmascript/mem/
Dmachine_code.h189 ASSERT(JSTaggedValue(object).IsMachineCodeObject()); in Cast()
Dheap.cpp2746 if (code != nullptr || !JSTaggedValue(obj).IsMachineCodeObject()) { in CalCallSiteInfo()
2757 if (code != nullptr || !JSTaggedValue(obj).IsMachineCodeObject()) { in CalCallSiteInfo()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value-inl.h1215 inline bool JSTaggedValue::IsMachineCodeObject() const in IsMachineCodeObject() function
1217 return IsHeapObject() && GetTaggedObject()->GetClass()->IsMachineCodeObject(); in IsMachineCodeObject()
Djs_tagged_value.h686 bool IsMachineCodeObject() const;
Djs_hclass.h1690 inline bool IsMachineCodeObject() const in IsMachineCodeObject() function
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_ark_tools.cpp1477 while (!jsFunction->GetMachineCode().IsMachineCodeObject()) { in WaitJitCompileFinish()