Home
last modified time | relevance | path

Searched refs:GetNumArgsWithCallField (Results 1 – 12 of 12) 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.h95 static uint32_t GetNumArgsWithCallField(uint64_t callField) in GetNumArgsWithCallField() function
207 uint32_t GetNumArgsWithCallField() const in GetNumArgsWithCallField() function
210 return MethodLiteral::GetNumArgsWithCallField(callField); in GetNumArgsWithCallField()
215 return GetNumArgsWithCallField() + GetNumRevervedArgs(); in GetNumArgs()
Djs_function.cpp396 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.cpp29 …: argTypes_(methodLiteral->GetNumArgsWithCallField() + static_cast<size_t>(TypedArgIdx::NUM_OF_TYP… in TypeRecorder()
Dts_inline_lowering.cpp224 uint32_t declaredNumArgs = method->GetNumArgsWithCallField(); in CheckParameter()
Dllvm_ir_builder.cpp2544 paramCount = methodLiteral->GetNumArgsWithCallField() + numOfComArgs; in AddFunc()
2550 paramCount = methodLiteral->GetNumArgsWithCallField() + numOfComArgs; in AddFunc()
Dbytecode_circuit_builder.cpp526 …ualNumArgs = static_cast<size_t>(FastCallArgIdx::NUM_OF_ARGS) + method_->GetNumArgsWithCallField(); in BuildCircuitArgs()
/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.h474 static_cast<int32_t>(methodHandle->GetNumArgsWithCallField()); \
503 static_cast<int32_t>(methodHandle->GetNumArgsWithCallField()); \
656 int32_t declaredNumArgs = static_cast<int32_t>(method->GetNumArgsWithCallField()); in Execute()
3229 methodHandle->GetNumArgsWithCallField() + 1 : // +1 for this in RunInternal()
3230 methodHandle->GetNumArgsWithCallField() + 2; // +2 for newTarget and this in RunInternal()
3364 methodHandle->GetNumArgsWithCallField() + 1 : // +1 for this in RunInternal()
3365 methodHandle->GetNumArgsWithCallField() + 2; // +2 for newTarget and this in RunInternal()
3499 methodHandle->GetNumArgsWithCallField() + 1 : // +1 for this in RunInternal()
3500 methodHandle->GetNumArgsWithCallField() + 2; // +2 for newTarget and this in RunInternal()
3634 methodHandle->GetNumArgsWithCallField() + 1 : // +1 for this in RunInternal()
[all …]
Dinterpreter_assembly.cpp3508 methodHandle->GetNumArgsWithCallField() + 1 : // +1 for this in HandleWideSupercallarrowrangePrefImm16V8()
3509 methodHandle->GetNumArgsWithCallField() + 2; // +2 for newTarget and this in HandleWideSupercallarrowrangePrefImm16V8()
3651 methodHandle->GetNumArgsWithCallField() + 1 : // +1 for this in HandleWideSupercallthisrangePrefImm16V8()
3652 methodHandle->GetNumArgsWithCallField() + 2; // +2 for newTarget and this in HandleWideSupercallthisrangePrefImm16V8()
3840 methodHandle->GetNumArgsWithCallField() + 1 : // +1 for this in HandleWideNewobjrangePrefImm16V8()
3841 … methodHandle->GetNumArgsWithCallField() + 2; // +2 for newTarget and this in HandleWideNewobjrangePrefImm16V8()
6747 methodHandle->GetNumArgsWithCallField() + 1 : // +1 for this in HandleSupercallarrowrangeImm8Imm8V8()
6748 methodHandle->GetNumArgsWithCallField() + 2; // +2 for newTarget and this in HandleSupercallarrowrangeImm8Imm8V8()
6890 methodHandle->GetNumArgsWithCallField() + 1 : // +1 for this in HandleSupercallthisrangeImm8Imm8V8()
6891 methodHandle->GetNumArgsWithCallField() + 2; // +2 for newTarget and this in HandleSupercallthisrangeImm8Imm8V8()
[all …]
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs-inl.h2477 uint32_t numArgs = ctor->GetCallTarget()->GetNumArgsWithCallField(); in RuntimeOptConstructGeneric()