Lines Matching refs:StackSize
328 uint64_t StackSize = (MFFrame.estimateStackSize(MF) + in processFunctionBeforeFrameFinalized() local
340 uint64_t MaxReach = StackSize + MaxArgOffset; in processFunctionBeforeFrameFinalized()
472 uint64_t StackSize = MFFrame.getStackSize(); in emitPrologue() local
483 StackSize += SystemZMC::ELFCallFrameSize; in emitPrologue()
485 StackSize = StackSize > SystemZMC::ELFCallFrameSize in emitPrologue()
486 ? StackSize - SystemZMC::ELFCallFrameSize in emitPrologue()
488 MFFrame.setStackSize(StackSize); in emitPrologue()
490 if (StackSize) { in emitPrologue()
492 int64_t Delta = -int64_t(StackSize); in emitPrologue()
495 (ZFI->getSpillGPRRegs().GPROffset + StackSize) < ProbeSize); in emitPrologue()
503 .addImm(StackSize); in emitPrologue()
591 uint64_t StackSize = MFFrame.getStackSize(); in emitEpilogue() local
600 uint64_t Offset = StackSize + MBBI->getOperand(AddrOpNo + 1).getImm(); in emitEpilogue()
616 } else if (StackSize) { in emitEpilogue()
618 emitIncrement(MBB, MBBI, DL, SystemZ::R15D, StackSize, ZII); in emitEpilogue()
637 uint64_t StackSize = StackAllocMI->getOperand(0).getImm(); in inlineStackProbe() local
639 uint64_t NumFullBlocks = StackSize / ProbeSize; in inlineStackProbe()
640 uint64_t Residual = StackSize % ProbeSize; in inlineStackProbe()