Lines Matching full:numbytes
129 unsigned NumBytes = AFI->getLocalStackSize();
131 return !(MFI->hasCalls() || hasFP(MF) || NumBytes > 128);
429 int NumBytes = (int)MFI->getStackSize();
434 AFI->setLocalStackSize(NumBytes);
436 if (!NumBytes)
443 emitFrameOffset(MBB, MBBI, DL, AArch64::SP, AArch64::SP, -NumBytes, TII,
450 MCCFIInstruction::createDefCfaOffset(FrameLabel, -NumBytes));
460 AFI->setLocalStackSize(NumBytes - CSStackSize);
462 bool CombineSPBump = shouldCombineCSRLocalStackBump(MF, NumBytes);
464 emitFrameOffset(MBB, MBBI, DL, AArch64::SP, AArch64::SP, -NumBytes, TII,
466 NumBytes = 0;
470 NumBytes -= CSStackSize;
472 assert(NumBytes >= 0 && "Negative stack allocation size!?");
498 if (NumBytes) {
509 // FIXME: in the case of dynamic re-alignment, NumBytes doesn't have
510 // the correct value here, as NumBytes also includes padding bytes,
512 emitFrameOffset(MBB, MBBI, DL, scratchSPReg, AArch64::SP, -NumBytes, TII,
521 // SUB X9, SP, NumBytes
658 int NumBytes = MFI->getStackSize();
697 // ---------------------| | NumBytes
705 // So NumBytes = StackSize + BytesInStackArgArea - CalleeArgStackSize
712 bool CombineSPBump = shouldCombineCSRLocalStackBump(MF, NumBytes);
733 NumBytes + ArgumentPopSize, TII,
738 NumBytes -= CSStackSize;
739 assert(NumBytes >= 0 && "Negative stack allocation size!?");
749 int StackRestoreBytes = RedZone ? 0 : NumBytes;
758 NumBytes = 0;
768 else if (NumBytes)
769 emitFrameOffset(MBB, LastPopI, DL, AArch64::SP, AArch64::SP, NumBytes, TII,