Home | History | Annotate | Download | only in compiler

Lines Matching defs:phi

653     Node* const phi = m.node();
654 DCHECK_EQ(MachineRepresentation::kFloat64, PhiRepresentationOf(phi->op()));
655 if (phi->OwnedBy(node)) {
656 // TruncateFloat64ToInt32[mode](Phi[Float64](x1,...,xn))
657 // => Phi[Int32](TruncateFloat64ToInt32[mode](x1),
660 const int value_input_count = phi->InputCount() - 1;
662 Node* input = graph()->NewNode(node->op(), phi->InputAt(i));
667 phi->ReplaceInput(i, input);
670 phi,
671 common()->Phi(MachineRepresentation::kWord32, value_input_count));
672 return Replace(phi);