Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
Dstring_builder_utils.cpp47 return runtime->IsMethodStringConcat(call->GetCallMethod()); in IsMethodStringConcat()
62 return runtime->IsMethodStringBuilderConstructorWithStringArg(call->GetCallMethod()); in IsMethodStringBuilderConstructorWithStringArg()
77 return runtime->IsMethodStringBuilderConstructorWithCharArrayArg(call->GetCallMethod()); in IsMethodStringBuilderConstructorWithCharArrayArg()
85 …return !callInst->IsInlined() && runtime->IsMethodStringBuilderToString(callInst->GetCallMethod()); in IsStringBuilderToString()
106 return runtime->IsMethodStringBuilderDefaultConstructor(call->GetCallMethod()); in IsMethodStringBuilderDefaultConstructor()
Dinline_intrinsics.cpp149 if ((callInst->GetCallMethod() == nullptr)) { in TryInline()
152 switch (GetGraph()->GetRuntime()->GetMethodSourceLanguage(callInst->GetCallMethod())) { in TryInline()
Dstring_builder_utils.h54 runtime->IsMethodStringBuilderAppend(callInst->GetCallMethod()); in IsStringBuilderAppend()
Dinlining.cpp212 if (callInst->IsUnresolved() || callInst->GetCallMethod() == nullptr) { in IsInstSuitableForInline()
216 ASSERT(callInst->GetCallMethod() != nullptr); in IsInstSuitableForInline()
273 if (callInst->GetCallMethod() != ctx.method) { in TryInline()
335 ctx.method = runtime->ResolveVirtualMethod(receiver, callInst->GetCallMethod()); in DoInlineMonomorphic()
565 ctx.method = runtime->ResolveVirtualMethod(receiver, callInst->GetCallMethod()); in DoInlinePolymorphic()
1258 ctx->replaceToStatic &= ctx->method == callInst->GetCallMethod() in CheckTooBigMethodCanBeInlined()
1503 auto method = callInst->GetCallMethod(); in ResolveTarget()
1545 ctx->method = runtime->ResolveVirtualMethod(klass, callInst->GetCallMethod()); in ResolveTarget()
Descape.cpp1608 currSs->SetMethod(callerInst->GetCallMethod()); in MaterializeAtNewSaveState()
1631 currSs->SetMethod(callerInst->GetCallMethod()); in MaterializeInEmptyBlock()
Dpeepholes.cpp2681 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.cpp69 auto method = callInst->GetCallMethod(); in LaunchCallCodegen()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
Dcodegen.cpp916 vregsCount = runtime->GetMethodRegistersCount(caller->GetCallMethod()) + in CreateStackMapRec()
917 runtime->GetMethodArgumentsCount(caller->GetCallMethod()); in CreateStackMapRec()
932 auto method = GetGraph()->IsAotMode() ? nullptr : callInst->GetCallMethod(); in CreateStackMapRec()
933 …codeBuilder_->BeginInlineInfo(method, GetRuntime()->GetMethodId(callInst->GetCallMethod()), saveSt… in CreateStackMapRec()
1523 ASSERT(resolver->GetCallMethod() == nullptr); in GetCallerOfUnresolvedMethod()
1527 auto method = (caller == nullptr ? GetGraph()->GetMethod() : caller->GetCallMethod()); in GetCallerOfUnresolvedMethod()
1605 if (resolver->GetCallMethod() == nullptr) { in EmitResolveVirtual()
1608 } else if (GetRuntime()->IsInterfaceMethod(resolver->GetCallMethod())) { in EmitResolveVirtual()
1621 TypedImm(reinterpret_cast<size_t>(resolver->GetCallMethod())), objectReg); in EmitResolveVirtual()
1641 Imm(reinterpret_cast<size_t>(call->GetCallMethod())), in EmitCallResolvedVirtual()
[all …]
Dencode_visitor.cpp462 …atic_cast<size_t>(TraceId::METHOD_EXIT)), Imm(reinterpret_cast<size_t>(callInst->GetCallMethod())), in VisitReturnInlined()
/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/
Dobject_type_propagation.cpp155 auto method = inst->GetCallMethod(); in ProcessManagedCall()
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
Ddump.cpp844 if (GetCallMethod() != nullptr) { in DumpOpcode()
845 ArenaString method(graph->GetRuntime()->GetMethodFullName(GetCallMethod()), adapter); in DumpOpcode()
860 if (GetCallMethod() != nullptr) { in DumpOpcode()
861 ArenaString method(graph->GetRuntime()->GetMethodFullName(GetCallMethod()), adapter); in DumpOpcode()
893 if (!IsUnresolved() && GetCallMethod() != nullptr) { in DumpOpcode()
894 ArenaString method(graph->GetRuntime()->GetMethodFullName(GetCallMethod()), adapter); in DumpOpcode()
Dinst.cpp583 callClone->SetCallMethod(GetCallMethod()); in Clone()
Dgraph.cpp823 auto method = lastInst->CastToThrow()->GetCallMethod(); in GetThrowCounter()
Dinst.h2783 RuntimeInterface::MethodPtr GetCallMethod() const in GetCallMethod() function
2833 rslvClone->SetCallMethod(GetCallMethod()); in Clone()
2872 rslvClone->SetCallMethod(GetCallMethod()); in Clone()
6929 throwClone->SetCallMethod(GetCallMethod()); in Clone()
/arkcompiler/runtime_core/static_core/libllvmbackend/lowering/
Dllvm_ir_constructor.cpp2045 method = caller->GetCallMethod(); in CreateSaveStateBundle()
2115 method = ss->GetCallerInst()->GetCallMethod(); in EncodeInlineInfo()
4284 arkInterface->PutVirtualFunction(inst->GetCallMethod(), func); in CreateDeclForVirtualCall()
4299 ASSERT(!ctor->GetGraph()->GetRuntime()->IsInterfaceMethod(call->GetCallMethod())); in VisitCallVirtual()
4318 if (resolver->GetCallMethod() == nullptr) { in VisitResolveVirtual()
4323 ASSERT(ctor->GetGraph()->GetRuntime()->IsInterfaceMethod(resolver->GetCallMethod())); in VisitResolveVirtual()
4341 if (call->GetCallMethod() == nullptr) { in VisitCallResolvedVirtual()
4349 ASSERT(runtime->IsInterfaceMethod(call->GetCallMethod())); in VisitCallResolvedVirtual()
/arkcompiler/runtime_core/static_core/libllvmbackend/
Dllvm_aot_compiler.cpp765 auto method = instruction->CastToCallStatic()->GetCallMethod(); in AddInlineFunctionsByDepth()
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir_builder/
Dinst_builder-inl.h62 … } else if (!call_->IsUnresolved() && static_cast<CallInst *>(call_)->GetCallMethod() != nullptr) { in BuildCallHelper()