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

References

include/llvm/CodeGen/VirtRegMap.h
  168       return Virt2StackSlotMap[virtReg.id()];
lib/CodeGen/VirtRegMap.cpp
   69   Virt2StackSlotMap.clear();
   79   Virt2StackSlotMap.resize(NumRegs);
  121   assert(Virt2StackSlotMap[virtReg.id()] == NO_STACK_SLOT &&
  124   return Virt2StackSlotMap[virtReg.id()] = createSpillSlot(RC);
  129   assert(Virt2StackSlotMap[virtReg.id()] == NO_STACK_SLOT &&
  134   Virt2StackSlotMap[virtReg.id()] = SS;
  150     if (Virt2StackSlotMap[Reg] != VirtRegMap::NO_STACK_SLOT) {
  151       OS << '[' << printReg(Reg, TRI) << " -> fi#" << Virt2StackSlotMap[Reg]