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()
108 int NumBytes = (int) MFI.getStackSize(); in emitPrologue() local
113 if (NumBytes == 0) in emitPrologue()
136 NumBytes += MFI.getMaxCallFrameSize(); in emitPrologue()
140 NumBytes = Subtarget.getAdjustedFrameSize(NumBytes); in emitPrologue()
144 NumBytes = alignTo(NumBytes, MFI.getMaxAlign()); in emitPrologue()
147 MFI.setStackSize(NumBytes); in emitPrologue()
149 emitSPAdjustment(MF, MBB, MBBI, -NumBytes, SAVErr, SAVEri); in emitPrologue()
231 int NumBytes = (int) MFI.getStackSize(); in emitEpilogue() local
232 if (NumBytes != 0) in emitEpilogue()
233 emitSPAdjustment(MF, MBB, MBBI, NumBytes, SP::ADDrr, SP::ADDri); in emitEpilogue()