Home | History | Annotate | Download | only in src

Lines Matching defs:Successor

701     // Mark corresponding argument of phis in successor as live.
899 // its successor.
912 // Make sure there is actually a successor to repoint in-edges to.
924 CfgNode *Successor = OutEdges.front();
925 // Repoint all this node's in-edges to this node's successor, unless this
926 // node's successor is actually itself (in which case the statement
929 if (Successor != this) {
933 I = Successor;
934 Successor->InEdges.push_back(Pred);
939 I.repointEdges(this, Successor);
943 // Remove the in-edge to the successor to allow node reordering to make
947 Successor->InEdges.erase(
948 std::find(Successor->InEdges.begin(), Successor->InEdges.end(), this));
1453 // Dump list of successor nodes.