Home
last modified time | relevance | path

Searched refs:arity_ (Results 1 – 2 of 2) sorted by relevance

/third_party/node/deps/v8/src/compiler/
Djs-operator.h160 : arity_(arity), frequency_(frequency), feedback_(feedback) { in ConstructParameters()
171 uint32_t arity() const { return arity_; } in arity()
173 return static_cast<int>(arity_ - kExtraConstructInputCount); in arity_without_implicit_args()
180 uint32_t const arity_;
314 : id_(id), arity_(arity) {} in CallRuntimeParameters()
317 size_t arity() const { return arity_; } in arity()
321 const size_t arity_; variable
570 : arity_(arity), site_(site) {} in CreateArrayParameters()
572 size_t arity() const { return arity_; } in arity()
578 size_t const arity_;
[all …]
Djs-call-reducer.cc919 arity_(arity) { in FastApiCallReducerAssembler()
937 base::SmallVector<Node*, kInlineSize> inputs(c_argument_count + arity_ + in ReduceFastApiCall()
965 Linkage::GetStubCallDescriptor(graph()->zone(), cid, arity_ + kReceiver, in ReduceFastApiCall()
981 inputs[cursor++] = NumberConstant(arity_); in ReduceFastApiCall()
985 for (int i = 0; i < arity_; ++i) { in ReduceFastApiCall()
993 DCHECK_EQ(cursor, c_argument_count + arity_ + kExtraInputsCount); in ReduceFastApiCall()
1023 const int arity_; member in v8::internal::compiler::FastApiCallReducerAssembler