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

References

include/llvm/Analysis/LoopInfo.h
  156     return Blocks;
  170     return Blocks.size();
  177     return Blocks;
  405     Blocks.push_back(BB);
  412     std::reverse(Blocks.begin() + from, Blocks.end());
  412     std::reverse(Blocks.begin() + from, Blocks.end());
  418     Blocks.reserve(size);
  425     if (Blocks[0] == BB)
  428       assert(i != Blocks.size() && "Loop does not contain BB!");
  429       if (Blocks[i] == BB) {
  430         Blocks[i] = Blocks[0];
  430         Blocks[i] = Blocks[0];
  431         Blocks[0] = BB;
  442     auto I = find(Blocks, BB);
  443     assert(I != Blocks.end() && "N is not in this list!");
  444     Blocks.erase(I);
  471     Blocks.push_back(BB);
  492     Blocks.clear();
include/llvm/Analysis/LoopInfoImpl.h
  239   if (!Blocks.empty()) {
  282   assert(!Blocks.empty() && "Loop header is missing");
  338     for (auto BB : Blocks) {