reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/Support/GenericDomTreeConstruction.h
  415         Num = SNCA.runDFS(N, Num, AlwaysDescend, 1);
  415         Num = SNCA.runDFS(N, Num, AlwaysDescend, 1);
  419                           << BlockNamePrinter(SNCA.NumToNode[Num]) << "\n");
  431     if (Total + 1 != Num) {
  457           const unsigned NewNum = SNCA.runDFS<true>(I, Num, AlwaysDescend, Num);
  457           const unsigned NewNum = SNCA.runDFS<true>(I, Num, AlwaysDescend, Num);
  464           LLVM_DEBUG(dbgs() << "\t\t\tPrev DFSNum: " << Num << ", new DFSNum: "
  466           for (unsigned i = NewNum; i > Num; --i) {
  473           const unsigned PrevNum = Num;
  475           Num = SNCA.runDFS(FurthestAway, Num, AlwaysDescend, 1);
  475           Num = SNCA.runDFS(FurthestAway, Num, AlwaysDescend, 1);
  476           for (unsigned i = PrevNum + 1; i <= Num; ++i)
  483     LLVM_DEBUG(dbgs() << "Total: " << Total << ", Num: " << Num << "\n");
  485     LLVM_DEBUG(for (size_t i = 0; i <= Num; ++i) dbgs()
  488     assert((Total + 1 == Num) && "Everything should have been visited");