Searched refs:GetCallMethod (Results 1 – 14 of 14) sorted by relevance
| /arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
| D | simplify_string_builder.cpp | 68 return runtime->IsMethodStringBuilderConstructorWithStringArg(call->GetCallMethod()); in IsMethodStringBuilderConstructorWithStringArg() 78 return GetGraph()->GetRuntime()->IsMethodStringBuilderToString(call->GetCallMethod()); in IsMethodStringBuilderToString()
|
| D | inline_intrinsics.cpp | 149 if ((callInst->GetCallMethod() == nullptr)) { in TryInline() 152 switch (GetGraph()->GetRuntime()->GetMethodSourceLanguage(callInst->GetCallMethod())) { in TryInline()
|
| D | inlining.cpp | 174 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()
|
| D | escape.cpp | 1316 currSs->SetMethod(callerInst->GetCallMethod()); in MaterializeAtNewSaveState() 1344 currSs->SetMethod(callerInst->GetCallMethod()); in MaterializeInEmptyBlock()
|
| D | peepholes.cpp | 2745 constantPool = graph->GetRuntime()->GetConstantPool(callerInst->GetCallMethod()); in VisitLoadConstantPool()
|
| /arkcompiler/runtime_core/static_core/bytecode_optimizer/ |
| D | bytecodeopt_peepholes.cpp | 47 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/ |
| D | ets_codegen_extensions.cpp | 56 auto method = callInst->GetCallMethod(); in LaunchCallCodegen()
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
| D | dump.cpp | 753 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()
|
| D | inst.cpp | 438 callClone->SetCallMethod(GetCallMethod()); in Clone()
|
| D | graph.cpp | 814 auto method = lastInst->CastToThrow()->GetCallMethod(); in GetThrowCounter()
|
| D | inst.h | 2918 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/ |
| D | object_type_propagation.cpp | 153 auto method = inst->GetCallMethod(); in ProcessManagedCall()
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/ |
| D | codegen.cpp | 855 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/ |
| D | inst_builder-inl.h | 62 } else if (!call->IsUnresolved() && call->GetCallMethod() != nullptr) { in BuildCall()
|