Lines Matching full:succ
62 NodeList::const_iterator currentSuccessor() const { return Succ; }
63 void nextSuccessor() { ++Succ; }
88 NodeList::const_iterator Succ;
123 Succ = BB->getOutEdges().begin();
137 for (CfgNode *Succ : BB->getOutEdges()) {
138 if (Succ == BB)
180 if (LoopNode *Succ = processNode(WorkNode))
181 WorkStack.push_back(Succ);
196 // Returning to a node after having recursed into Succ so continue
197 // iterating through successors after using the Succ.LowLink value that was
199 LoopNode &Succ = AllNodes[(*Node.currentSuccessor())->getIndex()];
200 Node.tryLink(Succ.getLowLink());
209 LoopNode &Succ = AllNodes[(*Node.currentSuccessor())->getIndex()];
211 if (Succ.isDeleted())
214 if (!Succ.isVisited())
215 return &Succ;
216 else if (Succ.isOnStack())
217 Node.tryLink(Succ.getIndex());