Lines Matching refs:from
63 Node* use = use_edge.from();
66 // Those are used by nodes outside the loop. We need to create phis from
90 // should use the value coming from outside the loop.
92 if (NodeProperties::IsPhi(use_edge.from())) {
93 use_edge.from()->ReplaceUses(use_edge.from()->InputAt(0));
105 // merge and phis which flow from the peeled iteration into the main loop.
114 DCHECK(NodeProperties::IsPhi(use_edge.from()));
115 use_edge.from()->RemoveInput(0);
117 use_edge.from()->op(),
118 use_edge.from()->InputCount() - /* control input */ 1);
119 NodeProperties::ChangeOp(use_edge.from(), phi);
125 if (NodeProperties::IsPhi(use_edge.from())) {
126 use_edge.from()->ReplaceInput(0, copier.map(use_edge.from()));