Lines Matching defs:NumBytes
339 int64_t NumBytes, bool InEpilogue) const {
340 bool IsSub = NumBytes < 0;
341 uint64_t Offset = IsSub ? -NumBytes : NumBytes;
524 uint64_t NumBytes = 0;
535 NumBytes = FrameSize - MMFI->getCalleeSavedFrameSize();
539 NumBytes = alignTo(NumBytes, MaxAlign);
544 MFI.setOffsetAdjustment(-NumBytes);
548 .addImm(-NumBytes)
579 NumBytes = StackSize - MMFI->getCalleeSavedFrameSize();
611 NumBytes -= mergeSPUpdates(MBB, MBBI, true);
615 emitSPUpdate(MBB, MBBI, -(int64_t)NumBytes, /*InEpilogue=*/false);
640 if (((!HasFP && NumBytes) || PushedRegs) && NeedsDwarfCFI) {
642 if (!HasFP && NumBytes) {
686 uint64_t NumBytes = 0;
691 NumBytes = FrameSize - CSSize;
696 NumBytes = alignTo(FrameSize, MaxAlign);
699 NumBytes = StackSize - CSSize;
720 if (NumBytes || MFI.hasVarSizedObjects())
721 NumBytes += mergeSPUpdates(MBB, MBBI, true);
751 } else if (NumBytes) {
753 emitSPUpdate(MBB, MBBI, NumBytes, /*InEpilogue=*/true);