Lines Matching defs:DFS
116 LoopBlocksDFS DFS;
181 bool hasIrreducibleCFG(LoopBlocksDFS &DFS) {
182 assert(DFS.isComplete() && "DFS is expected to be finished");
186 for (auto I = DFS.beginRPO(), E = DFS.endRPO(); I != E; ++I)
189 for (auto I = DFS.beginRPO(), E = DFS.endRPO(); I != E; ++I) {
204 DFS.perform(&LI);
205 assert(DFS.isComplete() && "DFS is expected to be finished");
214 if (hasIrreducibleCFG(DFS)) {
221 for (auto I = DFS.beginRPO(), E = DFS.endRPO(); I != E; ++I) {
297 for (auto I = DFS.beginPostorder(), E = DFS.endPostorder(); I != E; ++I) {
531 : L(L), LI(LI), DT(DT), SE(SE), MSSAU(MSSAU), DFS(&L),