Lines Matching refs:arg_count

837   int const arg_count = static_cast<int>(p.arity() - 2);
845 zone(), callable.descriptor(), arg_count + 1, flags);
847 Node* stub_arity = jsgraph()->Int32Constant(JSParameterCount(arg_count));
860 int const arg_count = p.arity_without_implicit_args();
865 const int stack_argument_count = arg_count + kReceiver;
870 Node* stub_arity = jsgraph()->Int32Constant(JSParameterCount(arg_count));
886 const int arg_count = p.arity_without_implicit_args();
887 DCHECK_EQ(arg_count, 1);
892 const int stack_argument_count = arg_count - kArgumentList + kReceiver;
915 int const arg_count = p.arity_without_implicit_args();
916 DCHECK_GE(arg_count, 1);
920 static constexpr int kTheSpread = 1; // Included in `arg_count`.
922 const int stack_argument_count = arg_count + kReceiver - kTheSpread;
934 jsgraph()->Int32Constant(JSParameterCount(arg_count - kTheSpread));
952 int const arg_count = static_cast<int>(p.arity() - 2);
956 zone(), callable.descriptor(), arg_count + 1, flags);
958 Node* stub_arity = jsgraph()->Int32Constant(JSParameterCount(arg_count));
969 int const arg_count = p.arity_without_implicit_args();
977 zone(), callable.descriptor(), arg_count + 1, flags);
979 Node* stub_arity = jsgraph()->Int32Constant(JSParameterCount(arg_count));
988 const int arg_count = p.arity_without_implicit_args();
989 DCHECK_EQ(arg_count, 1); // The arraylike object.
995 const int stack_argument_count = arg_count - kArgumentsList + kReceiver;
1019 int const arg_count = p.arity_without_implicit_args();
1020 DCHECK_GE(arg_count, 1); // At least the spread.
1026 const int stack_argument_count = arg_count - kTheSpread + kReceiver;
1038 jsgraph()->Int32Constant(JSParameterCount(arg_count - kTheSpread));