HomeSort by: relevance | last modified time | path
    Searched refs:Virt2StackSlotMap (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
VirtRegMap.h 54 /// Virt2StackSlotMap - This is virtual register to stack slot
58 IndexedMap<int, VirtReg2IndexFunctor> Virt2StackSlotMap;
77 Virt2StackSlotMap(NO_STACK_SLOT), Virt2SplitMap(0) {}
190 return Virt2StackSlotMap[virtReg.id()];
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
VirtRegMap.cpp 69 Virt2StackSlotMap.clear();
80 Virt2StackSlotMap.resize(NumRegs);
122 assert(Virt2StackSlotMap[virtReg.id()] == NO_STACK_SLOT &&
125 return Virt2StackSlotMap[virtReg.id()] = createSpillSlot(RC);
130 assert(Virt2StackSlotMap[virtReg.id()] == NO_STACK_SLOT &&
135 Virt2StackSlotMap[virtReg.id()] = SS;
151 if (Virt2StackSlotMap[Reg] != VirtRegMap::NO_STACK_SLOT) {
152 OS << '[' << printReg(Reg, TRI) << " -> fi#" << Virt2StackSlotMap[Reg]

Completed in 109 milliseconds