Home
last modified time | relevance | path

Searched refs:GetNumArgsWithCallField (Results 1 – 13 of 13) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dmethod_literal.h107 uint32_t GetNumArgsWithCallField() const in GetNumArgsWithCallField() function
109 return GetNumArgsWithCallField(callField_); in GetNumArgsWithCallField()
114 return GetNumArgsWithCallField() + HaveFuncWithCallField() + in GetNumArgs()
183 static uint32_t GetNumArgsWithCallField(uint64_t callField) in GetNumArgsWithCallField() function
/arkcompiler/ets_runtime/ecmascript/
Dmethod.h96 static uint32_t GetNumArgsWithCallField(uint64_t callField) in GetNumArgsWithCallField() function
208 uint32_t GetNumArgsWithCallField() const in GetNumArgsWithCallField() function
211 return MethodLiteral::GetNumArgsWithCallField(callField); in GetNumArgsWithCallField()
216 return GetNumArgsWithCallField() + GetNumRevervedArgs(); in GetNumArgs()
Djs_function.cpp508 uint32_t numArgs = method->GetNumArgsWithCallField(); in InvokeOptimizedEntrypoint()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dargument_accessor.cpp33 auto numArgs = method_->GetNumArgsWithCallField(); in GetActualNumArgs()
124 const size_t numOfTypedArgs = method_->GetNumArgsWithCallField() + in FillArgsGateType()
Dtype_recorder.cpp32 …: argTypes_(methodLiteral->GetNumArgsWithCallField() + static_cast<size_t>(TypedArgIdx::NUM_OF_TYP… in TypeRecorder()
Dts_inline_lowering.cpp263 uint32_t declaredNumArgs = method->GetNumArgsWithCallField(); in CheckParameter()
Dbytecode_circuit_builder.cpp383 …ualNumArgs = static_cast<size_t>(FastCallArgIdx::NUM_OF_ARGS) + method_->GetNumArgsWithCallField(); in BuildCircuitArgs()
Dllvm_ir_builder.cpp2759 paramCount = methodLiteral->GetNumArgsWithCallField() + numOfComArgs; in AddFunc()
2765 paramCount = methodLiteral->GetNumArgsWithCallField() + numOfComArgs; in AddFunc()
Dlitecg_ir_builder.cpp161 for (uint32_t i = 0; i < methodLiteral_->GetNumArgsWithCallField(); ++i) { in AddFunc()
166 for (uint32_t i = 0; i < methodLiteral_->GetNumArgsWithCallField(); ++i) { in AddFunc()
/arkcompiler/ets_runtime/ecmascript/deoptimizer/
Ddeoptimizer.cpp330 declaredNumArgs = static_cast<int32_t>(method->GetNumArgsWithCallField()); in CollectVirtualRegisters()
333 actualNumArgs = static_cast<int32_t>(method->GetNumArgsWithCallField()); in CollectVirtualRegisters()
334 declaredNumArgs = static_cast<int32_t>(method->GetNumArgsWithCallField()); in CollectVirtualRegisters()
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dinterpreter-inl.h492 static_cast<int32_t>(methodHandle->GetNumArgsWithCallField()); \
521 static_cast<int32_t>(methodHandle->GetNumArgsWithCallField()); \
679 int32_t declaredNumArgs = static_cast<int32_t>(method->GetNumArgsWithCallField()); in Execute()
3280 methodHandle->GetNumArgsWithCallField() + 1 : // +1 for this in RunInternal()
3281 methodHandle->GetNumArgsWithCallField() + 2; // +2 for newTarget and this in RunInternal()
3416 methodHandle->GetNumArgsWithCallField() + 1 : // +1 for this in RunInternal()
3417 methodHandle->GetNumArgsWithCallField() + 2; // +2 for newTarget and this in RunInternal()
3552 methodHandle->GetNumArgsWithCallField() + 1 : // +1 for this in RunInternal()
3553 methodHandle->GetNumArgsWithCallField() + 2; // +2 for newTarget and this in RunInternal()
3688 methodHandle->GetNumArgsWithCallField() + 1 : // +1 for this in RunInternal()
[all …]
Dinterpreter_assembly.cpp3546 methodHandle->GetNumArgsWithCallField() + 1 : // +1 for this in HandleWideSupercallarrowrangePrefImm16V8()
3547 methodHandle->GetNumArgsWithCallField() + 2; // +2 for newTarget and this in HandleWideSupercallarrowrangePrefImm16V8()
3689 methodHandle->GetNumArgsWithCallField() + 1 : // +1 for this in HandleWideSupercallthisrangePrefImm16V8()
3690 methodHandle->GetNumArgsWithCallField() + 2; // +2 for newTarget and this in HandleWideSupercallthisrangePrefImm16V8()
3878 methodHandle->GetNumArgsWithCallField() + 1 : // +1 for this in HandleWideNewobjrangePrefImm16V8()
3879 … methodHandle->GetNumArgsWithCallField() + 2; // +2 for newTarget and this in HandleWideNewobjrangePrefImm16V8()
6850 methodHandle->GetNumArgsWithCallField() + 1 : // +1 for this in HandleSupercallarrowrangeImm8Imm8V8()
6851 methodHandle->GetNumArgsWithCallField() + 2; // +2 for newTarget and this in HandleSupercallarrowrangeImm8Imm8V8()
6993 methodHandle->GetNumArgsWithCallField() + 1 : // +1 for this in HandleSupercallthisrangeImm8Imm8V8()
6994 methodHandle->GetNumArgsWithCallField() + 2; // +2 for newTarget and this in HandleSupercallthisrangeImm8Imm8V8()
[all …]
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs-inl.h2708 uint32_t numArgs = ctor->GetCallTarget()->GetNumArgsWithCallField(); in GetResultValue()