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

References

lib/CodeGen/AllocationOrder.cpp
   37   if (TRI->getRegAllocationHints(VirtReg, Order, Hints, MF, &VRM, Matrix))
   42     if (!Hints.empty()) {
   44       for (unsigned I = 0, E = Hints.size(); I != E; ++I)
   45         dbgs() << ' ' << printReg(Hints[I], TRI);
   50   for (unsigned I = 0, E = Hints.size(); I != E; ++I)
   51     assert(is_contained(Order, Hints[I]) &&
lib/CodeGen/AllocationOrder.h
   56       return Hints.end()[Pos++];
   75       return Hints.end()[Pos++];
   84   void rewind() { Pos = -int(Hints.size()); }
   90   bool isHint(unsigned PhysReg) const { return is_contained(Hints, PhysReg); }