HomeSort by relevance Sort by last modified time
    Searched refs:Virt2StackSlotMap (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/CodeGen/
VirtRegMap.h 53 /// Virt2StackSlotMap - This is virtual register to stack slot
57 IndexedMap<int, VirtReg2IndexFunctor> Virt2StackSlotMap;
72 Virt2StackSlotMap(NO_STACK_SLOT), Virt2SplitMap(0) { }
170 return Virt2StackSlotMap[virtReg];
  /external/llvm/lib/CodeGen/
VirtRegMap.cpp 63 Virt2StackSlotMap.clear();
73 Virt2StackSlotMap.resize(NumRegs);
104 assert(Virt2StackSlotMap[virtReg] == NO_STACK_SLOT &&
107 return Virt2StackSlotMap[virtReg] = createSpillSlot(RC);
112 assert(Virt2StackSlotMap[virtReg] == NO_STACK_SLOT &&
117 Virt2StackSlotMap[virtReg] = SS;
133 if (Virt2StackSlotMap[Reg] != VirtRegMap::NO_STACK_SLOT) {
134 OS << '[' << PrintReg(Reg, TRI) << " -> fi#" << Virt2StackSlotMap[Reg]

Completed in 50 milliseconds