Home
last modified time | relevance | path

Searched refs:CurrentSCC (Results 1 – 2 of 2) sorted by relevance

/external/llvm/include/llvm/ADT/
DSCCIterator.h76 SccTy CurrentSCC; variable
108 assert(!CurrentSCC.empty() || VisitStack.empty()); in isAtEnd()
109 return CurrentSCC.empty(); in isAtEnd()
113 return VisitStack == x.VisitStack && CurrentSCC == x.CurrentSCC;
122 assert(!CurrentSCC.empty() && "Dereferencing END SCC iterator!");
123 return CurrentSCC;
174 CurrentSCC.clear(); // Prepare to compute the next SCC in GetNextSCC()
202 CurrentSCC.push_back(SCCNodeStack.back()); in GetNextSCC()
204 nodeVisitNumbers[CurrentSCC.back()] = ~0U; in GetNextSCC()
205 } while (CurrentSCC.back() != visitingN); in GetNextSCC()
[all …]
/external/llvm/lib/Target/WebAssembly/
DWebAssemblyCFGStackify.cpp77 const std::vector<MachineBasicBlock *> &CurrentSCC = *I; in EliminateMultipleEntryLoops() local
80 if (CurrentSCC.size() == 1) in EliminateMultipleEntryLoops()
83 InSet.insert(CurrentSCC.begin(), CurrentSCC.end()); in EliminateMultipleEntryLoops()
85 for (MachineBasicBlock *MBB : CurrentSCC) { in EliminateMultipleEntryLoops()