Searched refs:calleeMethod (Results 1 - 7 of 7) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ic/ |
H A D | invoke_cache.cpp | 126 Method *calleeMethod = JSFunction::Cast(callee.GetTaggedObject())->GetCallTarget(); in SetMonoInlineCallCacheSlot() local 127 if (DecideCanBeInlined(calleeMethod)) { in SetMonoInlineCallCacheSlot() 149 Method *calleeMethod = JSFunction::Cast(calleeElement.GetTaggedObject())->GetCallTarget(); in SetPolyInlineCallCacheSlot() local 150 if (DecideCanBeInlined(calleeMethod)) { in SetPolyInlineCallCacheSlot()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | ts_inline_lowering.cpp | 741 auto calleeMethod = Method::Cast(calleeFunc->GetMethod()); in CalleePFIProcess() local 742 ASSERT(calleeMethod->GetMethodId().GetOffset() == methodOffset); in CalleePFIProcess() 749 auto calleeLiteral = calleeMethod->GetMethodLiteral(); in CalleePFIProcess() 750 auto calleeFile = calleeMethod->GetJSPandaFile(); in CalleePFIProcess() 752 auto calleeCodeSize = calleeLiteral->GetCodeSize(calleeFile, calleeMethod->GetMethodId()); in CalleePFIProcess() 754 compilationEnv_->GetJSThread(), JSHandle<ProfileTypeInfo>(), profileTypeInfo, calleeMethod->GetMethodId(), in CalleePFIProcess() 755 calleeAbcId, calleeMethod->GetBytecodeArray(), calleeCodeSize, calleeFile->GetPandaFile()->GetHeader(), true); in CalleePFIProcess()
|
/arkcompiler/ets_runtime/ecmascript/jit/ |
H A D | jit_profiler.cpp | 344 Method *calleeMethod = Method::Cast(callee->GetMethod()); in ConvertCall() local 345 calleeMethodId = static_cast<int>(calleeMethod->GetMethodId().GetOffset()); in ConvertCall() 370 Method *calleeMethod = Method::Cast(callee->GetMethod()); in ConvertNewObjRange() local 371 ctorMethodId = static_cast<int>(calleeMethod->GetMethodId().GetOffset()); in ConvertNewObjRange()
|
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | compiler.cpp | 295 bool PandaRuntimeInterface::IsMethodExternal(MethodPtr parentMethod, MethodPtr calleeMethod) const in IsMethodExternal() 297 if (calleeMethod == nullptr) { in IsMethodExternal() 300 return MethodCast(parentMethod)->GetPandaFile() != MethodCast(calleeMethod)->GetPandaFile(); in IsMethodExternal()
|
H A D | compiler.h | 263 bool IsMethodExternal(MethodPtr parentMethod, MethodPtr calleeMethod) const override;
|
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
H A D | pgo_profiler.cpp | 1447 Method *calleeMethod = Method::Cast(callee->GetMethod()); in DumpCall() local 1448 calleeMethodId = static_cast<int>(calleeMethod->GetMethodId().GetOffset()); in DumpCall() 1486 Method *calleeMethod = Method::Cast(callee->GetMethod()); in DumpNewObjRange() local 1487 ctorMethodId = static_cast<int>(calleeMethod->GetMethodId().GetOffset()); in DumpNewObjRange()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
H A D | runtime_interface.h | 297 virtual bool IsMethodExternal([[maybe_unused]] MethodPtr method, [[maybe_unused]] MethodPtr calleeMethod) const in IsMethodExternal()
|
Completed in 14 milliseconds