Searched refs:expectedArgc (Results 1 - 5 of 5) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | ntype_hcr_lowering.cpp | 146 GateRef expectedArgc = builder_.Int32(methodLiteral_->GetNumArgs()); in LowerCreateArguments() local 151 GateRef check = builder_.BitAnd(builder_.Equal(actualArgc, expectedArgc), in LowerCreateArguments()
|
H A D | call_stub_builder.cpp | 266 GateRef expectedArgc = Int64Add(expectedNum, Int64(NUM_MANDATORY_JSFUNC_ARGS));
in JSFastAotCall() local 267 BRANCH(Int64Equal(expectedArgc, realNumArgs_), &fastCall, &fastCallBridge);
in JSFastAotCall() 291 GateRef expectedArgc = Int64Add(expectedNum, Int64(NUM_MANDATORY_JSFUNC_ARGS));
in JSSlowAotCall() local 292 BRANCH(Int64Equal(expectedArgc, realNumArgs_), &slowCall, &slowCallBridge);
in JSSlowAotCall()
|
H A D | common_stubs.cpp | 968 GateRef expectedArgc = Int64Add(expectedNum, Int64(NUM_MANDATORY_JSFUNC_ARGS)); in GenerateCircuit() local 974 BRANCH(Int64Equal(expectedArgc, argc), &fastCall, &fastCallBridge); in GenerateCircuit() 990 BRANCH(Int64Equal(expectedArgc, argc), &slowCall, &slowCallBridge); in GenerateCircuit()
|
H A D | typed_bytecode_lowering.cpp | 1550 size_t expectedArgc = method->GetNumArgs(); in LowerTypedNewObjRange() local 1559 bool needPushArgv = (expectedArgc != actualArgc); in LowerTypedNewObjRange()
|
H A D | slowpath_lowering.cpp | 3502 GateRef expectedArgc = builder_.Int64Add(builder_.GetExpectedNumOfArgs(method), in LowerFastCall() local 3504 BRANCH_CIR(builder_.Equal(expectedArgc, argc), &call, &callBridge); in LowerFastCall() 3531 GateRef expectedArgc = builder_.Int64Add(builder_.GetExpectedNumOfArgs(method), in LowerFastCall() local 3533 BRANCH_CIR(builder_.Equal(expectedArgc, argc), &call1, &callBridge1); in LowerFastCall()
|
Completed in 18 milliseconds