Home
last modified time | relevance | path

Searched refs:GetNumArgs (Results 1 – 25 of 25) sorted by relevance

/arkcompiler/runtime_core/libpandafile/
Dproto_data_accessor.h49 uint32_t GetNumArgs();
Dcode_data_accessor.h129 uint32_t GetNumArgs() const in GetNumArgs() function
Dproto_data_accessor-inl.h112 inline uint32_t ProtoDataAccessor::GetNumArgs() in GetNumArgs() function
Dmethod_data_accessor-inl.h323 for (uint32_t idx = 0; idx < pda.GetNumArgs(); ++idx) { in EnumerateTypesInProto()
Dfile_reader.cpp542 for (size_t i = 0; i < proto_acc->GetNumArgs(); i++) { in CreateMethodParamItems()
553 for (size_t i = 0; i < proto_acc->GetNumArgs(); i++) { in CreateMethodParamItems()
565 for (size_t i = 0; i < proto_acc->GetNumArgs(); i++) { in CreateMethodParamItems()
669 …container_.CreateItem<CodeItem>(code_acc.GetNumVregs(), code_acc.GetNumArgs(), std::move(instructi… in CreateMethodItem()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dargument_accessor.cpp42 ASSERT(currentVreg >= offsetArgs && currentVreg < offsetArgs + method_->GetNumArgs()); in GetArgGate()
54 if (currentVreg < offsetArgs || currentVreg >= offsetArgs + method_->GetNumArgs()) { in ArgGateNotExisted()
/arkcompiler/runtime_core/disassembler/templates/
Dbc_ins_to_pandasm_ins.cpp.erb76 overhead = ins.regs.size() - pda.GetNumArgs();
78 overhead = ins.regs.size() - pda.GetNumArgs() - 1;
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dinterpreter_assembly.h52 static uint32_t GetNumArgs(JSTaggedType *sp, uint32_t restIdx, uint32_t &startIdx);
Dinterpreter.h71 static inline uint32_t GetNumArgs(JSTaggedType *sp, uint32_t restIdx, uint32_t &startIdx);
Dinterpreter-inl.h828 std::vector<JSTaggedType> args(method->GetNumArgs() + NUM_MANDATORY_JSFUNC_ARGS, in GeneratorReEnterAot()
837 …auto res = thread->GetCurrentEcmaContext()->ExecuteAot(method->GetNumArgs(), args.data(), prevFp, … in GeneratorReEnterAot()
1590 uint32_t actualNumArgs = GetNumArgs(sp, 0, startIdx); in RunInternal()
5718 uint32_t restNumArgs = GetNumArgs(sp, restIdx, startIdx); in RunInternal()
5732 uint32_t restNumArgs = GetNumArgs(sp, restIdx, startIdx); in RunInternal()
7294 uint32_t EcmaInterpreter::GetNumArgs(JSTaggedType *sp, uint32_t restIdx, uint32_t &startIdx) in GetNumArgs() function
Dinterpreter_assembly.cpp633 uint32_t actualNumArgs = GetNumArgs(sp, 0, startIdx); in HandleGetunmappedargs()
2152 uint32_t restNumArgs = GetNumArgs(sp, restIdx, startIdx); in HandleCopyrestargsImm8()
3317 uint32_t restNumArgs = GetNumArgs(sp, restIdx, startIdx); in HandleWideCopyrestargsPrefImm16()
7551 uint32_t InterpreterAssembly::GetNumArgs(JSTaggedType *sp, uint32_t restIdx, uint32_t &startIdx) in GetNumArgs() function in panda::ecmascript::InterpreterAssembly
/arkcompiler/runtime_core/bytecode_optimizer/
Druntime_adapter.h62 return cda.GetNumArgs(); in GetMethodTotalArgumentsCount()
70 return pda.GetNumArgs(); in GetMethodArgumentsCount()
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dmethod_literal.h112 uint32_t GetNumArgs() const in GetNumArgs() function
120 return GetNumVregsWithCallField() + GetNumArgs(); in GetNumberVRegs()
Dmethod_literal.cpp72 uint32_t numArgs = cda.GetNumArgs(); in Initialize()
/arkcompiler/ets_runtime/ecmascript/
Dmethod.h213 uint32_t GetNumArgs() const in GetNumArgs() function
226 return GetNumVregsWithCallField() + GetNumArgs(); in GetNumberVRegs()
Dframes.h1455 uint32_t GetNumArgs() in GetNumArgs() function
1539 auto numberArgs = GetNumArgs() + NUM_MANDATORY_JSFUNC_ARGS; in GetStackArgsAddress()
1549 int32_t GetNumArgs() in GetNumArgs() function
Dframes.cpp672 auto argc = static_cast<uint32_t>(frame->GetNumArgs()) + NUM_MANDATORY_JSFUNC_ARGS; in GCIterate()
692 auto argc = frame->GetNumArgs(); in GCIterate()
Djs_function.cpp333 size_t actualNumArgs = method->GetNumArgs(); in InvokeOptimizedEntrypoint()
366 size_t actualNumArgs = method->GetNumArgs(); in GetArgsData()
/arkcompiler/runtime_core/assembler/tests/
Demitter_test.cpp102 ASSERT_EQ(pda.GetNumArgs(), 0U); in TEST()
110 ASSERT_EQ(cdacc.GetNumArgs(), 0U); in TEST()
317 ASSERT_EQ(cdacc.GetNumArgs(), 0U); in TEST()
699 ASSERT_EQ(1, pda.GetNumArgs()); in TEST()
Dassembler_emitter_test.cpp142 EXPECT_EQ(pda.GetNumArgs(), 0U); in __anon9d5bb8020402()
150 EXPECT_EQ(cdacc.GetNumArgs(), 0U); in __anon9d5bb8020402()
375 EXPECT_EQ(cdacc.GetNumArgs(), 3U); in __anon9d5bb8020a02()
787 EXPECT_EQ(1u, pda.GetNumArgs()); in __anon9d5bb8021102()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_stubs.h43 inline GateRef GetNumArgs(GateRef info) in GetNumArgs() function
/arkcompiler/runtime_core/libark_defect_scan_aux/
Dabc_file.cpp467 uint32_t arg_count = cda.GetNumArgs(); in InitializeAllDefinedFunction()
/arkcompiler/runtime_core/libpandafile/tests/
Dfile_item_container_test.cpp451 EXPECT_EQ(code_data_accessor.GetNumArgs(), 2U); in __anon1a961e180b02()
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs.cpp1591 uint32_t actualNumArgs = InterpreterAssembly::GetNumArgs(sp, 0, startIdx); in DEF_RUNTIME_STUBS()
1601 uint32_t restNumArgs = InterpreterAssembly::GetNumArgs(sp, restIdx.GetInt(), startIdx); in DEF_RUNTIME_STUBS()
/arkcompiler/runtime_core/disassembler/
Ddisassembler.cpp449 auto params_num = proto_accessor.GetNumArgs(); in GetParams()