Home
last modified time | relevance | path

Searched refs:Virt2StackSlotMap (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DVirtRegMap.cpp72 Virt2StackSlotMap.clear(); in init()
82 Virt2StackSlotMap.resize(NumRegs); in grow()
130 assert(Virt2StackSlotMap[virtReg] == NO_STACK_SLOT && in assignVirt2StackSlot()
133 return Virt2StackSlotMap[virtReg] = createSpillSlot(RC); in assignVirt2StackSlot()
138 assert(Virt2StackSlotMap[virtReg] == NO_STACK_SLOT && in assignVirt2StackSlot()
143 Virt2StackSlotMap[virtReg] = SS; in assignVirt2StackSlot()
159 if (Virt2StackSlotMap[Reg] != VirtRegMap::NO_STACK_SLOT) { in print()
160 OS << '[' << printReg(Reg, TRI) << " -> fi#" << Virt2StackSlotMap[Reg] in print()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DVirtRegMap.h52 IndexedMap<int, VirtReg2IndexFunctor> Virt2StackSlotMap; variable
68 VirtRegMap() : Virt2StackSlotMap(NO_STACK_SLOT) {} in VirtRegMap()
174 return Virt2StackSlotMap[virtReg]; in getStackSlot()