Lines Matching refs:NumBytes
43 int NumBytes, in emitSPAdjustment() argument
51 if (NumBytes >= -4096 && NumBytes < 4096) { in emitSPAdjustment()
53 .addReg(SP::O6).addImm(NumBytes); in emitSPAdjustment()
59 if (NumBytes >= 0) { in emitSPAdjustment()
65 .addImm(HI22(NumBytes)); in emitSPAdjustment()
67 .addReg(SP::G1).addImm(LO10(NumBytes)); in emitSPAdjustment()
78 .addImm(HIX22(NumBytes)); in emitSPAdjustment()
80 .addReg(SP::G1).addImm(LOX10(NumBytes)); in emitSPAdjustment()
112 int NumBytes = (int) MFI->getStackSize(); in emitPrologue() local
117 if (NumBytes == 0) in emitPrologue()
140 NumBytes += MFI->getMaxCallFrameSize(); in emitPrologue()
144 NumBytes = MF.getSubtarget<SparcSubtarget>().getAdjustedFrameSize(NumBytes); in emitPrologue()
149 NumBytes = alignTo(NumBytes, MFI->getMaxAlignment()); in emitPrologue()
153 MFI->setStackSize(NumBytes); in emitPrologue()
155 emitSPAdjustment(MF, MBB, MBBI, -NumBytes, SAVErr, SAVEri); in emitPrologue()
218 int NumBytes = (int) MFI->getStackSize(); in emitEpilogue() local
219 if (NumBytes == 0) in emitEpilogue()
222 emitSPAdjustment(MF, MBB, MBBI, NumBytes, SP::ADDrr, SP::ADDri); in emitEpilogue()