| /arkcompiler/runtime_core/compiler/optimizer/ir/ |
| D | runtime_interface.h | 89 …virtual size_t GetMethodArgumentsCount([[maybe_unused]] MethodPtr parent_method, [[maybe_unused]] … in GetMethodArgumentsCount() function 93 virtual size_t GetMethodArgumentsCount([[maybe_unused]] MethodPtr method) const in GetMethodArgumentsCount() function
|
| /arkcompiler/runtime_core/static_core/irtoc/backend/ |
| D | irtoc_runtime.h | 83 return GetMethodArgumentsCount(method); in GetMethodTotalArgumentsCount() 86 size_t GetMethodArgumentsCount(MethodPtr method) const override in GetMethodArgumentsCount() function
|
| /arkcompiler/runtime_core/static_core/irtoc/backend/compiler/ |
| D | codegen_fastpath.cpp | 103 auto argsNum = GetRuntime()->GetMethodArgumentsCount(GetGraph()->GetMethod()); in GeneratePrologue() 133 auto argsNum = GetRuntime()->GetMethodArgumentsCount(GetGraph()->GetMethod()); in GetCallerRegistersToRestore() 256 auto argsNum = GetRuntime()->GetMethodArgumentsCount(GetGraph()->GetMethod()); in CreateTailCall()
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/ir_builder/ |
| D | inst_builder-inl.h | 98 size_t argsCount = GetMethodArgumentsCount(methodId); in SetCallArgs() 295 ASSERT(GetMethodArgumentsCount(methodId) == 1); in BuildAbsIntrinsic() 329 ASSERT(GetMethodArgumentsCount(methodId) == 2U); in BuildBinaryOperationIntrinsic() 344 ASSERT(GetMethodArgumentsCount(methodId) == 1); in BuildSqrtIntrinsic() 414 …ASSERT(GetMethodArgumentsCount(GetRuntime()->ResolveMethodIndex(GetMethod(), bcInst->GetId(0).AsIn… in BuildCharIsUpperCaseIntrinsic() 441 …ASSERT(GetMethodArgumentsCount(GetRuntime()->ResolveMethodIndex(GetMethod(), bcInst->GetId(0).AsIn… in BuildCharToUpperCaseIntrinsic() 469 …ASSERT(GetMethodArgumentsCount(GetRuntime()->ResolveMethodIndex(GetMethod(), bcInst->GetId(0).AsIn… in BuildCharIsLowerCaseIntrinsic() 492 …ASSERT(GetMethodArgumentsCount(GetRuntime()->ResolveMethodIndex(GetMethod(), bcInst->GetId(0).AsIn… in BuildCharToLowerCaseIntrinsic() 549 ASSERT(GetMethodArgumentsCount(methodId) == 1); in BuildMonitorIntrinsic() 1221 size_t argsCount = GetMethodArgumentsCount(methodId); in BuildMultiDimensionalArrayObject() [all …]
|
| D | inst_builder.cpp | 436 size_t InstBuilder::GetMethodArgumentsCount(uintptr_t id) const in GetMethodArgumentsCount() function in panda::compiler::InstBuilder 438 return GetRuntime()->GetMethodArgumentsCount(GetMethod(), id); in GetMethodArgumentsCount()
|
| D | inst_builder.h | 496 size_t GetMethodArgumentsCount(uintptr_t id) const;
|
| /arkcompiler/runtime_core/compiler/optimizer/ir_builder/ |
| D | inst_builder.cpp | 275 size_t InstBuilder::GetMethodArgumentsCount(uintptr_t id) const in GetMethodArgumentsCount() function in panda::compiler::InstBuilder 277 return GetRuntime()->GetMethodArgumentsCount(GetMethod(), id); in GetMethodArgumentsCount()
|
| D | inst_builder.h | 276 size_t GetMethodArgumentsCount(uintptr_t id) const;
|
| /arkcompiler/runtime_core/bytecode_optimizer/ |
| D | runtime_adapter.h | 65 size_t GetMethodArgumentsCount([[maybe_unused]] MethodPtr caller, MethodId id) const override in GetMethodArgumentsCount() function
|
| /arkcompiler/runtime_core/static_core/runtime/interpreter/ |
| D | runtime_interface.h | 76 static uint32_t GetMethodArgumentsCount(Method *caller, BytecodeId methodId) in GetMethodArgumentsCount() function
|
| D | interpreter-inl.h | 3728 … auto nargs = RuntimeIfaceT::GetMethodArgumentsCount(this->GetFrame()->GetMethod(), methodId); in InitializeObject()
|
| /arkcompiler/runtime_core/compiler/tests/ |
| D | unit_test.h | 52 size_t GetMethodArgumentsCount(MethodPtr /* unused */) const override in GetMethodArgumentsCount() function
|
| D | compiler_inst_test.cpp | 990 EXPECT_EQ(interface.GetMethodArgumentsCount(method, 0), 0); in __anon8ce037611602() 991 EXPECT_EQ(interface.GetMethodArgumentsCount(method), 0); in __anon8ce037611602()
|
| /arkcompiler/runtime_core/static_core/runtime/ |
| D | compiler.h | 174 size_t GetMethodArgumentsCount(MethodPtr parentMethod, MethodId id) const override; 175 size_t GetMethodArgumentsCount(MethodPtr method) const override in GetMethodArgumentsCount() function
|
| D | compiler.cpp | 334 size_t PandaRuntimeInterface::GetMethodArgumentsCount(MethodPtr parentMethod, MethodId id) const in GetMethodArgumentsCount() function in panda::PandaRuntimeInterface
|
| /arkcompiler/runtime_core/static_core/compiler/tests/ |
| D | unit_test.h | 83 size_t GetMethodArgumentsCount(MethodPtr /* unused */) const override in GetMethodArgumentsCount() function
|
| /arkcompiler/runtime_core/static_core/runtime/tests/interpreter/ |
| D | test_runtime_interface.h | 444 …static uint32_t GetMethodArgumentsCount([[maybe_unused]] Method *caller, [[maybe_unused]] Bytecode… in GetMethodArgumentsCount() function
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
| D | runtime_interface.h | 239 …virtual size_t GetMethodArgumentsCount([[maybe_unused]] MethodPtr parentMethod, [[maybe_unused]] M… in GetMethodArgumentsCount() function 243 virtual size_t GetMethodArgumentsCount([[maybe_unused]] MethodPtr method) const in GetMethodArgumentsCount() function
|
| /arkcompiler/runtime_core/bytecode_optimizer/tests/ |
| D | codegen_test.cpp | 428 EXPECT_EQ(runtime_adapter.GetMethodArgumentsCount(caller, id), 0);
|
| /arkcompiler/runtime_core/static_core/bytecode_optimizer/ |
| D | runtime_adapter.h | 121 size_t GetMethodArgumentsCount([[maybe_unused]] MethodPtr caller, MethodId id) const override in GetMethodArgumentsCount() function
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
| D | inlining.cpp | 220 << GetGraph()->GetRuntime()->GetMethodArgumentsCount(ctx.method) + in TryInline() 1006 auto vregsNum = GetGraph()->GetRuntime()->GetMethodArgumentsCount(ctx.method) + in CheckBytecode()
|
| /arkcompiler/runtime_core/static_core/runtime/entrypoints/ |
| D | entrypoints.cpp | 1168 … auto nargs = interpreter::RuntimeInterface::GetMethodArgumentsCount(caller, BytecodeId(methodId)); in CreateMultiDimArray()
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/ |
| D | codegen.cpp | 856 runtime->GetMethodArgumentsCount(caller->GetCallMethod()); in CreateStackMapRec() 859 runtime->GetMethodArgumentsCount(saveState->GetMethod()); in CreateStackMapRec()
|