Home | History | Annotate | Download | only in ARM

Lines Matching defs:NumBytes

121              int NumBytes, unsigned MIFlags = MachineInstr::NoFlags) {
123 emitARMRegPlusImmediate(MBB, MBBI, dl, ARM::SP, ARM::SP, NumBytes,
126 emitT2RegPlusImmediate(MBB, MBBI, dl, ARM::SP, ARM::SP, NumBytes,
143 unsigned NumBytes = MFI->getStackSize();
154 // Allocate the vararg register save area. This is not counted in NumBytes.
160 if (NumBytes != 0)
161 emitSPUpdate(isARM, MBB, MBBI, dl, TII, -NumBytes,
227 unsigned DPRCSOffset = NumBytes - (GPRCS1Size + GPRCS2Size + DPRCSSize);
232 NumBytes);
252 // Adjust NumBytes to represent the stack slots below the DPRCS2 area.
253 NumBytes += MFI->getObjectOffset(D8SpillFI);
255 NumBytes = DPRCSOffset;
257 if (NumBytes) {
259 emitSPUpdate(isARM, MBB, MBBI, dl, TII, -NumBytes,
354 int NumBytes = (int)MFI->getStackSize();
358 if (NumBytes != 0)
359 emitSPUpdate(isARM, MBB, MBBI, dl, TII, NumBytes);
372 NumBytes -= (AFI->getGPRCalleeSavedArea1Size() +
379 NumBytes = AFI->getFramePtrSpillOffset() - NumBytes;
380 if (NumBytes) {
382 emitARMRegPlusImmediate(MBB, MBBI, dl, ARM::SP, FramePtr, -NumBytes,
394 emitT2RegPlusImmediate(MBB, MBBI, dl, ARM::R4, FramePtr, -NumBytes,
410 } else if (NumBytes)
411 emitSPUpdate(isARM, MBB, MBBI, dl, TII, NumBytes);