Lines Matching defs:inputs
250 TFNode* inputs[] = {ssa_env_->locals[i], control()};
251 ssa_env_->locals[i] = builder_->Phi(decoder->local_type(i), 1, inputs);
270 TFNode* inputs[] = {val.node, block->merge_env->control};
271 val.node = builder_->Phi(val.type, 1, inputs);
825 NodeVector inputs(args.size());
826 GetNodes(inputs.begin(), args);
827 TFNode* node = builder_->SimdOp(opcode, inputs.begin());
833 base::Vector<Value> inputs, Value* result) {
834 NodeVector nodes(inputs.size());
835 GetNodes(nodes.begin(), inputs);
964 NodeVector inputs(args.size());
965 GetNodes(inputs.begin(), args);
966 TFNode* node = builder_->AtomicOp(opcode, inputs.begin(), imm.alignment,
1548 TFNode* inputs[] = {to->effect, old_effect, merge};
1549 to->effect = builder_->EffectPhi(2, inputs);
1561 TFNode* inputs[] = {a, b, merge};
1563 decoder->local_type(i + local_count_diff), 2, inputs);