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()
113 int NumBytes = (int) MFI.getStackSize(); in emitPrologue() local
118 if (NumBytes == 0) in emitPrologue()
141 NumBytes += MFI.getMaxCallFrameSize(); in emitPrologue()
145 NumBytes = Subtarget.getAdjustedFrameSize(NumBytes); in emitPrologue()
150 NumBytes = alignTo(NumBytes, MFI.getMaxAlignment()); in emitPrologue()
154 MFI.setStackSize(NumBytes); in emitPrologue()
156 emitSPAdjustment(MF, MBB, MBBI, -NumBytes, SAVErr, SAVEri); in emitPrologue()
236 int NumBytes = (int) MFI.getStackSize(); in emitEpilogue() local
237 if (NumBytes == 0) in emitEpilogue()
240 emitSPAdjustment(MF, MBB, MBBI, NumBytes, SP::ADDrr, SP::ADDri); in emitEpilogue()