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

References

include/llvm/CodeGen/LiveInterval.h
  442       return overlapsFrom(other, other.begin());
lib/CodeGen/LiveInterval.cpp
  407   const_iterator i = begin();
  412   assert((StartPos->start <= i->start || StartPos == other.begin()) &&
  417     if (i != begin()) --i;
  423       if (j != other.begin()) --j;
  490   const_iterator I = std::lower_bound(begin(), end(), End);
  491   return I != begin() && (--I)->end > Start;
  498   const_iterator I = begin();
 1061   for (const_iterator I = begin(), E = end(); I != E; ++I) {
lib/CodeGen/LiveIntervalUnion.cpp
   35   LiveRange::const_iterator RegPos = Range.begin();
   62   LiveRange::const_iterator RegPos = Range.begin();
  134     LRI = LR->begin();
lib/CodeGen/LiveIntervals.cpp
  706       RU.push_back(std::make_pair(&RURange, RURange.find(LI.begin()->end)));
  712         SRs.push_back(std::make_pair(&SR, SR.find(LI.begin()->end)));
  718     for (LiveInterval::const_iterator RI = LI.begin(), RE = LI.end(); RI != RE;
lib/CodeGen/MachineVerifier.cpp
 2676   for (LiveRange::const_iterator I = LR.begin(), E = LR.end(); I != E; ++I)
lib/CodeGen/SplitKit.cpp
  217   LiveInterval::const_iterator LVI = CurLI->begin();
  351   return I != Orig.begin() && (--I)->end == Idx;
lib/CodeGen/VirtRegMap.cpp
  278     SubRanges.push_back(std::make_pair(&SR, SR.begin()));
usr/include/c++/7.4.0/bits/range_access.h
   58     begin(const _Container& __cont) -> decltype(__cont.begin())