Searched refs:GetCallMethod (Results 1 – 18 of 18) sorted by relevance
| /arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
| D | string_builder_utils.cpp | 47 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()
|
| D | inline_intrinsics.cpp | 149 if ((callInst->GetCallMethod() == nullptr)) { in TryInline() 152 switch (GetGraph()->GetRuntime()->GetMethodSourceLanguage(callInst->GetCallMethod())) { in TryInline()
|
| D | string_builder_utils.h | 54 runtime->IsMethodStringBuilderAppend(callInst->GetCallMethod()); in IsStringBuilderAppend()
|
| D | inlining.cpp | 212 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()
|
| D | escape.cpp | 1608 currSs->SetMethod(callerInst->GetCallMethod()); in MaterializeAtNewSaveState() 1631 currSs->SetMethod(callerInst->GetCallMethod()); in MaterializeInEmptyBlock()
|
| D | peepholes.cpp | 2681 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 | 69 auto method = callInst->GetCallMethod(); in LaunchCallCodegen()
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/ |
| D | codegen.cpp | 916 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 …]
|
| D | encode_visitor.cpp | 462 …atic_cast<size_t>(TraceId::METHOD_EXIT)), Imm(reinterpret_cast<size_t>(callInst->GetCallMethod())), in VisitReturnInlined()
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/ |
| D | object_type_propagation.cpp | 155 auto method = inst->GetCallMethod(); in ProcessManagedCall()
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
| D | dump.cpp | 844 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()
|
| D | inst.cpp | 583 callClone->SetCallMethod(GetCallMethod()); in Clone()
|
| D | graph.cpp | 823 auto method = lastInst->CastToThrow()->GetCallMethod(); in GetThrowCounter()
|
| D | inst.h | 2783 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/ |
| D | llvm_ir_constructor.cpp | 2045 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/ |
| D | llvm_aot_compiler.cpp | 765 auto method = instruction->CastToCallStatic()->GetCallMethod(); in AddInlineFunctionsByDepth()
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/ir_builder/ |
| D | inst_builder-inl.h | 62 … } else if (!call_->IsUnresolved() && static_cast<CallInst *>(call_)->GetCallMethod() != nullptr) { in BuildCallHelper()
|