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

References

include/llvm/IR/InstIterator.h
   58     : BBs(II.BBs), BB(II.BB), BI(II.BI) {}
   62     if (BB != BBs->end()) {
   63       BI = BB->begin();
   73   inline BBIty &getBasicBlockIterator()  { return BB; }
   80     return BB == y.BB && (BB == BBs->end() || BI == y.BI);
   80     return BB == y.BB && (BB == BBs->end() || BI == y.BI);
   80     return BB == y.BB && (BB == BBs->end() || BI == y.BI);
   96     while (BB == BBs->end() || BI == BB->begin()) {
   96     while (BB == BBs->end() || BI == BB->begin()) {
   97       --BB;
   98       BI = BB->end();
  107   inline bool atEnd() const { return BB == BBs->end(); }
  113     while (BI == BB->end()) {
  114       ++BB;
  115       if (BB == BBs->end()) break;
  116       BI = BB->begin();