Home
last modified time | relevance | path

Searched refs:GetMethodTotalArgumentsCount (Results 1 – 23 of 23) sorted by relevance

/arkcompiler/runtime_core/bytecode_optimizer/
Dreg_encoder.h147 auto num_args = adapter->GetMethodTotalArgumentsCount(method); in GetNumArgsFromGraph()
Druntime_adapter.h55 size_t GetMethodTotalArgumentsCount(MethodPtr method) const override in GetMethodTotalArgumentsCount() function
/arkcompiler/runtime_core/compiler/optimizer/ir/
Druntime_interface.h85 virtual size_t GetMethodTotalArgumentsCount([[maybe_unused]] MethodPtr method) const in GetMethodTotalArgumentsCount() function
/arkcompiler/runtime_core/static_core/irtoc/backend/
Dirtoc_runtime.h81 size_t GetMethodTotalArgumentsCount(MethodPtr method) const override in GetMethodTotalArgumentsCount() function
/arkcompiler/runtime_core/static_core/bytecode_optimizer/
Dreg_encoder.h169 auto numArgs = adapter->GetMethodTotalArgumentsCount(method); in GetNumArgsFromGraph()
Druntime_adapter.h111 size_t GetMethodTotalArgumentsCount(MethodPtr method) const override in GetMethodTotalArgumentsCount() function
/arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/
Dreg_alloc_base.cpp222 …static_cast<size_t>(GetGraph()->GetRuntime()->GetMethodTotalArgumentsCount(GetGraph()->GetMethod()… in ReserveTempRegisters()
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/
Dreg_alloc_base.cpp236 …static_cast<int32_t>(GetGraph()->GetRuntime()->GetMethodTotalArgumentsCount(GetGraph()->GetMethod(… in ReserveTempRegisters()
/arkcompiler/runtime_core/compiler/optimizer/ir_builder/
Dinst_builder.h40 graph->GetRuntime()->GetMethodTotalArgumentsCount(method)), in InstBuilder()
Dir_builder.cpp35 … << "(args=" << GetGraph()->GetRuntime()->GetMethodTotalArgumentsCount(GetMethod()) in RunImpl()
42 GetGraph()->GetRuntime()->GetMethodTotalArgumentsCount(GetMethod()) + 1; in RunImpl()
Dinst_builder.cpp27 auto num_args = GetRuntime()->GetMethodTotalArgumentsCount(GetMethod()); in Prepare()
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir_builder/
Dinst_builder.cpp80 auto numArgs = GetRuntime()->GetMethodTotalArgumentsCount(GetMethod()); in Prepare()
423 return GetRuntime()->GetMethodTotalArgumentsCount(GetMethod()); in GetCurrentMethodArgumentsCount()
Dir_builder.cpp32 … << "(args=" << GetGraph()->GetRuntime()->GetMethodTotalArgumentsCount(GetMethod()) in RunImpl()
39 GetGraph()->GetRuntime()->GetMethodTotalArgumentsCount(GetMethod()) + 1; in RunImpl()
Dinst_builder.h46 graph->GetRuntime()->GetMethodTotalArgumentsCount(method)), in VREGS_ENV_TYPE_DEFS()
/arkcompiler/runtime_core/compiler/tests/
Dunit_test.h45 size_t GetMethodTotalArgumentsCount(MethodPtr /* unused */) const override in GetMethodTotalArgumentsCount() function
Dcompiler_inst_test.cpp989 EXPECT_EQ(interface.GetMethodTotalArgumentsCount(method), 0); in __anon8ce037611602()
/arkcompiler/runtime_core/static_core/compiler/tests/
Dunit_test.h75 size_t GetMethodTotalArgumentsCount(MethodPtr /* unused */) const override in GetMethodTotalArgumentsCount() function
/arkcompiler/runtime_core/static_core/runtime/
Dcompiler.h163 size_t GetMethodTotalArgumentsCount(MethodPtr method) const override in GetMethodTotalArgumentsCount() function
/arkcompiler/runtime_core/static_core/bytecode_optimizer/tests/
Dcommon.h68 size_t GetMethodTotalArgumentsCount([[maybe_unused]] MethodPtr method) const override in GetMethodTotalArgumentsCount() function
/arkcompiler/runtime_core/bytecode_optimizer/tests/
Dcommon.h65 size_t GetMethodTotalArgumentsCount([[maybe_unused]] MethodPtr method) const override in GetMethodTotalArgumentsCount() function
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
Druntime_interface.h225 virtual size_t GetMethodTotalArgumentsCount([[maybe_unused]] MethodPtr method) const in GetMethodTotalArgumentsCount() function
/arkcompiler/runtime_core/static_core/libllvmbackend/lowering/
Dllvm_ir_constructor.cpp999 for (size_t i = 0; i < graph_->GetRuntime()->GetMethodTotalArgumentsCount(method); i++) { in GetEntryFunctionType()
1919 …for (size_t i = 0; i < graph->GetRuntime()->GetMethodTotalArgumentsCount(graph->GetMethod()); i++)… in LLVMIrConstructor()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
Dcodegen.cpp553 auto numExpectedArgs = GetRuntime()->GetMethodTotalArgumentsCount(GetGraph()->GetMethod()); in RunImpl()