Lines Matching defs:NumBytes

147                   unsigned StackPtr, int64_t NumBytes,
150 bool isSub = NumBytes < 0;
151 uint64_t Offset = isSub ? -NumBytes : NumBytes;
205 unsigned StackPtr, uint64_t *NumBytes = NULL) {
214 if (NumBytes)
215 *NumBytes += PI->getOperand(2).getImm();
220 if (NumBytes)
221 *NumBytes -= PI->getOperand(2).getImm();
230 unsigned StackPtr, uint64_t *NumBytes = NULL) {
243 if (NumBytes)
244 *NumBytes -= NI->getOperand(2).getImm();
250 if (NumBytes)
251 *NumBytes += NI->getOperand(2).getImm();
738 uint64_t NumBytes = 0;
748 NumBytes = (FrameSize + MaxAlign - 1) / MaxAlign * MaxAlign;
750 NumBytes = FrameSize - X86FI->getCalleeSavedFrameSize();
756 MFI->setOffsetAdjustment(-NumBytes);
809 NumBytes = StackSize - X86FI->getCalleeSavedFrameSize();
861 NumBytes -= mergeSPUpdates(MBB, MBBI, StackPtr, true);
865 mergeSPUpdatesDown(MBB, MBBI, StackPtr, &NumBytes);
877 if (NumBytes >= 4096 && STI.isTargetCOFF() && !STI.isTargetEnvMacho()) {
911 .addImm(NumBytes)
914 // Allocate NumBytes-4 bytes on stack in case of isEAXAlive.
917 .addImm(isEAXAlive ? NumBytes - 4 : NumBytes)
931 emitSPUpdate(MBB, MBBI, StackPtr, -(int64_t)NumBytes, Is64Bit, IsLP64,
938 StackPtr, false, NumBytes - 4);
942 } else if (NumBytes)
943 emitSPUpdate(MBB, MBBI, StackPtr, -(int64_t)NumBytes, Is64Bit, IsLP64,
958 if (( (!HasFP && NumBytes) || PushedRegs) && needsFrameMoves) {
964 if (!HasFP && NumBytes) {
1027 uint64_t NumBytes = 0;
1047 NumBytes = (FrameSize + MaxAlign - 1) / MaxAlign * MaxAlign;
1049 NumBytes = FrameSize - CSSize;
1056 NumBytes = StackSize - CSSize;
1076 if (NumBytes || MFI->hasVarSizedObjects())
1077 mergeSPUpdatesUp(MBB, MBBI, StackPtr, &NumBytes);
1094 } else if (NumBytes) {
1096 emitSPUpdate(MBB, MBBI, StackPtr, NumBytes, Is64Bit, IsLP64, UseLEA,