Home
last modified time | relevance | path

Searched refs:formal_parameter_count (Results 1 – 15 of 15) sorted by relevance

/external/v8/src/builtins/
Dframe-arguments.tq29 const formal_parameter_count: bint;
51 Convert<bint>(Convert<int32>(shared.formal_parameter_count));
60 formal_parameter_count: formalParameterCount
69 formal_parameter_count: formalParameterCount
75 formal_parameter_count: formalParameterCount
Dbuiltins-async-function-gen.cc87 TNode<IntPtrT> formal_parameter_count = in TF_BUILTIN() local
96 formal_parameter_count)); in TF_BUILTIN()
Dbuiltins-object-gen.cc1196 TNode<IntPtrT> formal_parameter_count = in TF_BUILTIN() local
1203 formal_parameter_count); in TF_BUILTIN()
/external/v8/src/compiler/
Descape-analysis-reducer.cc226 ? params.formal_parameter_count() in Finalize()
302 Node* formal_parameter_count = in Finalize() local
303 jsgraph()->Constant(params.formal_parameter_count()); in Finalize()
305 formal_parameter_count, in Finalize()
306 Type::Constant(params.formal_parameter_count(), in Finalize()
327 formal_parameter_count); in Finalize()
Dsimplified-operator.h647 int formal_parameter_count) in NewArgumentsElementsParameters() argument
648 : type_(type), formal_parameter_count_(formal_parameter_count) {} in NewArgumentsElementsParameters()
651 int formal_parameter_count() const { return formal_parameter_count_; } in formal_parameter_count() function
976 const Operator* ArgumentsLength(int formal_parameter_count); in NON_EXPORTED_BASE()
977 const Operator* RestLength(int formal_parameter_count); in NON_EXPORTED_BASE()
984 int formal_parameter_count); in NON_EXPORTED_BASE()
Dsimplified-operator.cc1648 int formal_parameter_count) { in ArgumentsLength() argument
1654 formal_parameter_count); // parameter in ArgumentsLength()
1658 int formal_parameter_count) { in RestLength() argument
1664 formal_parameter_count); // parameter in RestLength()
1780 CreateArgumentsType type, int formal_parameter_count) { in NewArgumentsElements() argument
1787 formal_parameter_count)); // parameter in NewArgumentsElements()
1793 lhs.formal_parameter_count() == rhs.formal_parameter_count(); in operator ==()
1798 params.formal_parameter_count()); in hash_value()
1804 << ", parameter_count = " << params.formal_parameter_count(); in operator <<()
Deffect-control-linearizer.cc3680 int formal_parameter_count = FormalParameterCountOf(node->op()); in LowerArgumentsLength()
3681 DCHECK_LE(0, formal_parameter_count); in LowerArgumentsLength()
3688 __ SmiConstant(formal_parameter_count)); in LowerArgumentsLength()
3702 int formal_parameter_count = FormalParameterCountOf(node->op()); in LowerRestLength() local
3703 DCHECK_LE(0, formal_parameter_count); in LowerRestLength()
3730 __ SmiSub(arguments_length, __ SmiConstant(formal_parameter_count)); in LowerRestLength()
3878 __ IntPtrConstant(parameters.formal_parameter_count()), in LowerNewArgumentsElements()
Djs-call-reducer.cc3836 int formal_parameter_count; in ReduceCallOrConstructWithArrayLikeOrSpread() local
3840 formal_parameter_count = SharedFunctionInfoRef(broker(), shared) in ReduceCallOrConstructWithArrayLikeOrSpread()
3848 if (formal_parameter_count != 0) { in ReduceCallOrConstructWithArrayLikeOrSpread()
3856 start_index = formal_parameter_count; in ReduceCallOrConstructWithArrayLikeOrSpread()
/external/v8/src/interpreter/
Dinterpreter-assembler.h111 TNode<Int32T> formal_parameter_count);
114 TNode<Int32T> formal_parameter_count);
241 TNode<IntPtrT> formal_parameter_count, TNode<UintPtrT> register_count);
Dinterpreter-assembler.cc1365 TNode<IntPtrT> formal_parameter_count, TNode<UintPtrT> register_count) { in AbortIfRegisterCountInvalid() argument
1371 IntPtrAdd(formal_parameter_count, register_count), array_size), in AbortIfRegisterCountInvalid()
1383 TNode<Int32T> formal_parameter_count) { in ExportParametersAndRegisterFile() argument
1387 Signed(ChangeUint32ToWord(formal_parameter_count)); in ExportParametersAndRegisterFile()
1457 TNode<Int32T> formal_parameter_count) { in ImportRegisterFile() argument
1459 Signed(ChangeUint32ToWord(formal_parameter_count)); in ImportRegisterFile()
Dinterpreter-generator.cc2993 TNode<Int32T> formal_parameter_count = LoadObjectField<Uint16T>( in IGNITION_HANDLER() local
2996 ExportParametersAndRegisterFile(array, registers, formal_parameter_count); in IGNITION_HANDLER()
3069 TNode<Int32T> formal_parameter_count = LoadObjectField<Uint16T>( in IGNITION_HANDLER() local
3075 registers, formal_parameter_count); in IGNITION_HANDLER()
/external/v8/src/objects/
Dshared-function-info.tq56 formal_parameter_count: uint16;
Darguments.tq217 const formalParameterCount = Convert<intptr>(info.formal_parameter_count);
254 const formalParameterCount = Convert<intptr>(info.formal_parameter_count);
/external/v8/src/codegen/arm64/
Dmacro-assembler-arm64.cc2114 void MacroAssembler::InvokePrologue(Register formal_parameter_count, in InvokePrologue() argument
2123 DCHECK_EQ(formal_parameter_count, x2); in InvokePrologue()
2128 Cmp(formal_parameter_count, Operand(kDontAdaptArgumentsSentinel)); in InvokePrologue()
2134 Subs(extra_argument_count, formal_parameter_count, actual_argument_count); in InvokePrologue()
2223 Cmp(formal_parameter_count, actual_argument_count); in InvokePrologue()
/external/v8/src/deoptimizer/
Ddeoptimizer.cc1264 const int formal_parameter_count = in DoComputeArgumentsAdaptorFrame() local
1267 argument_count_without_receiver - formal_parameter_count; in DoComputeArgumentsAdaptorFrame()
1271 std::max(argument_count_without_receiver, formal_parameter_count) + 1); in DoComputeArgumentsAdaptorFrame()
1308 for (int i = 0; i < formal_parameter_count; i++) value_iterator++; in DoComputeArgumentsAdaptorFrame()
3503 FILE* trace_file, int formal_parameter_count, in Init() argument
3508 formal_parameter_count_ = formal_parameter_count; in Init()