Lines Matching refs:SS
104 int SS = MF->getFrameInfo()->CreateSpillStackObject(RC->getSize(), in createSpillSlot() local
107 LowSpillSlot = SS; in createSpillSlot()
108 if (HighSpillSlot == NO_STACK_SLOT || SS > HighSpillSlot) in createSpillSlot()
109 HighSpillSlot = SS; in createSpillSlot()
110 assert(SS >= LowSpillSlot && "Unexpected low spill slot"); in createSpillSlot()
111 unsigned Idx = SS-LowSpillSlot; in createSpillSlot()
115 return SS; in createSpillSlot()
137 void VirtRegMap::assignVirt2StackSlot(unsigned virtReg, int SS) { in assignVirt2StackSlot() argument
141 assert((SS >= 0 || in assignVirt2StackSlot()
142 (SS >= MF->getFrameInfo()->getObjectIndexBegin())) && in assignVirt2StackSlot()
144 Virt2StackSlotMap[virtReg] = SS; in assignVirt2StackSlot()