Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/deoptimizer/
Ddeoptimizer.cpp545 if (jsFunc->GetMachineCode().IsMachineCodeObject()) { in ResetJitHotness()
564 if (func->GetMachineCode().IsMachineCodeObject()) { in ClearCompiledCodeStatusWhenDeopt()
585 if (func->GetMachineCode().IsMachineCodeObject()) { in UpdateAndDumpDeoptInfo()
/arkcompiler/ets_runtime/ecmascript/mem/
Dmachine_code.h166 ASSERT(JSTaggedValue(object).IsMachineCodeObject()); in Cast()
Dheap.cpp2675 if (code != nullptr || !JSTaggedValue(obj).IsMachineCodeObject()) { in CalCallSiteInfo()
2686 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.h674 bool IsMachineCodeObject() const;
Djs_hclass.h1660 inline bool IsMachineCodeObject() const in IsMachineCodeObject() function
/arkcompiler/ets_runtime/ecmascript/jit/
Djit.cpp505 if (machineCode.IsMachineCodeObject() && in CheckJitCompileStatus()