Lines Matching defs:input_count
52 Node* Node::New(Zone* zone, NodeId id, const Operator* op, int input_count,
61 for (int i = 0; i < input_count; i++) {
69 if (input_count > kMaxInlineCapacity) {
72 has_extensible_inputs ? input_count + kMaxInlineCapacity : input_count;
81 outline->count_ = input_count;
88 int capacity = input_count;
91 capacity = std::min(input_count + 3, max);
99 node = new (node_buffer) Node(id, op, input_count, capacity);
106 for (int current = 0; current < input_count; ++current) {
120 int const input_count = node->InputCount();
124 Node* const clone = New(zone, id, node->op(), input_count, inputs, false);
153 int input_count = InputCount();
157 outline = OutOfLineInputs::New(zone, input_count * 2 + 3);
159 outline->ExtractFrom(GetUsePtr(0), GetInputPtr(0), input_count);
165 if (input_count >= outline->capacity_) {
167 outline = OutOfLineInputs::New(zone, input_count * 2 + 3);
169 outline->ExtractFrom(GetUsePtr(0), GetInputPtr(0), input_count);
174 *GetInputPtr(input_count) = new_to;
175 Use* use = GetUsePtr(input_count);
176 use->bit_field_ = Use::InputIndexField::encode(input_count) |