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

References

include/llvm/CodeGen/LiveStacks.h
   54   const_iterator begin() const { return S2IMap.begin(); }
   55   const_iterator end() const { return S2IMap.end(); }
   56   iterator begin() { return S2IMap.begin(); }
   57   iterator end() { return S2IMap.end(); }
   59   unsigned getNumIntervals() const { return (unsigned)S2IMap.size(); }
   65     SS2IntervalMap::iterator I = S2IMap.find(Slot);
   66     assert(I != S2IMap.end() && "Interval does not exist for stack slot");
   72     SS2IntervalMap::const_iterator I = S2IMap.find(Slot);
   73     assert(I != S2IMap.end() && "Interval does not exist for stack slot");
   77   bool hasInterval(int Slot) const { return S2IMap.count(Slot); }
lib/CodeGen/LiveStacks.cpp
   45   S2IMap.clear();
   59   SS2IntervalMap::iterator I = S2IMap.find(Slot);
   60   if (I == S2IMap.end()) {
   61     I = S2IMap