Home
last modified time | relevance | path

Searched refs:GetCallMethod (Results 1 – 14 of 14) sorted by relevance

/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
Dsimplify_string_builder.cpp68 return runtime->IsMethodStringBuilderConstructorWithStringArg(call->GetCallMethod()); in IsMethodStringBuilderConstructorWithStringArg()
78 return GetGraph()->GetRuntime()->IsMethodStringBuilderToString(call->GetCallMethod()); in IsMethodStringBuilderToString()
Dinline_intrinsics.cpp149 if ((callInst->GetCallMethod() == nullptr)) { in TryInline()
152 switch (GetGraph()->GetRuntime()->GetMethodSourceLanguage(callInst->GetCallMethod())) { in TryInline()
Dinlining.cpp174 if (callInst->IsUnresolved() || callInst->GetCallMethod() == nullptr) { in IsInstSuitableForInline()
178 ASSERT(callInst->GetCallMethod() != nullptr); in IsInstSuitableForInline()
234 if (callInst->GetCallMethod() != ctx.method) { in TryInline()
296 ctx.method = runtime->ResolveVirtualMethod(receiver, callInst->GetCallMethod()); in DoInlineMonomorphic()
526 ctx.method = runtime->ResolveVirtualMethod(receiver, callInst->GetCallMethod()); in DoInlinePolymorphic()
1206 ctx->replaceToStatic &= ctx->method == callInst->GetCallMethod() in CheckTooBigMethodCanBeInlined()
1436 auto method = callInst->GetCallMethod(); in ResolveTarget()
1478 ctx->method = runtime->ResolveVirtualMethod(klass, callInst->GetCallMethod()); in ResolveTarget()
Descape.cpp1316 currSs->SetMethod(callerInst->GetCallMethod()); in MaterializeAtNewSaveState()
1344 currSs->SetMethod(callerInst->GetCallMethod()); in MaterializeInEmptyBlock()
Dpeepholes.cpp2745 constantPool = graph->GetRuntime()->GetConstantPool(callerInst->GetCallMethod()); in VisitLoadConstantPool()
/arkcompiler/runtime_core/static_core/bytecode_optimizer/
Dbytecodeopt_peepholes.cpp47 if (adapter->IsConstructor(call->GetCallMethod(), graph->GetLanguage())) { in FindCtorCall()
70 initObject->SetCallMethod(static_cast<const CallInst *>(callInit)->GetCallMethod()); in CreateInitObject()
/arkcompiler/runtime_core/static_core/plugins/ets/compiler/optimizer/
Dets_codegen_extensions.cpp56 auto method = callInst->GetCallMethod(); in LaunchCallCodegen()
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
Ddump.cpp753 if (GetCallMethod() != nullptr) { in DumpOpcode()
754 ArenaString method(graph->GetRuntime()->GetMethodFullName(GetCallMethod()), adapter); in DumpOpcode()
769 if (GetCallMethod() != nullptr) { in DumpOpcode()
770 ArenaString method(graph->GetRuntime()->GetMethodFullName(GetCallMethod()), adapter); in DumpOpcode()
802 if (!IsUnresolved() && GetCallMethod() != nullptr) { in DumpOpcode()
803 ArenaString method(graph->GetRuntime()->GetMethodFullName(GetCallMethod()), adapter); in DumpOpcode()
Dinst.cpp438 callClone->SetCallMethod(GetCallMethod()); in Clone()
Dgraph.cpp814 auto method = lastInst->CastToThrow()->GetCallMethod(); in GetThrowCounter()
Dinst.h2918 RuntimeInterface::MethodPtr GetCallMethod() const in GetCallMethod() function
2970 rslvClone->SetCallMethod(GetCallMethod()); in Clone()
3011 rslvClone->SetCallMethod(GetCallMethod()); in Clone()
7336 throwClone->SetCallMethod(GetCallMethod()); in Clone()
/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/
Dobject_type_propagation.cpp153 auto method = inst->GetCallMethod(); in ProcessManagedCall()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
Dcodegen.cpp855 vregsCount = runtime->GetMethodRegistersCount(caller->GetCallMethod()) + in CreateStackMapRec()
856 runtime->GetMethodArgumentsCount(caller->GetCallMethod()); in CreateStackMapRec()
871 auto method = GetGraph()->IsAotMode() ? nullptr : callInst->GetCallMethod(); in CreateStackMapRec()
872 …codeBuilder_->BeginInlineInfo(method, GetRuntime()->GetMethodId(callInst->GetCallMethod()), saveSt… in CreateStackMapRec()
1461 ASSERT(resolver->GetCallMethod() == nullptr); in GetCallerOfUnresolvedMethod()
1465 auto method = (caller == nullptr ? GetGraph()->GetMethod() : caller->GetCallMethod()); in GetCallerOfUnresolvedMethod()
1543 if (resolver->GetCallMethod() == nullptr) { in EmitResolveVirtual()
1546 } else if (GetRuntime()->IsInterfaceMethod(resolver->GetCallMethod())) { in EmitResolveVirtual()
1559 TypedImm(reinterpret_cast<size_t>(resolver->GetCallMethod())), objectReg); in EmitResolveVirtual()
1579 Imm(reinterpret_cast<size_t>(call->GetCallMethod())), in EmitCallResolvedVirtual()
[all …]
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir_builder/
Dinst_builder-inl.h62 } else if (!call->IsUnresolved() && call->GetCallMethod() != nullptr) { in BuildCall()