Lines Matching full:stacksize
361 uint64_t StackSize = getAllocatedStackSize(MF); in emitPrologue() local
362 if (StackSize) { in emitPrologue()
372 // Allocate StackSize bytes. in emitPrologue()
373 int64_t Delta = -int64_t(StackSize); in emitPrologue()
448 uint64_t StackSize = getAllocatedStackSize(MF); in emitEpilogue() local
457 uint64_t Offset = StackSize + MBBI->getOperand(AddrOpNo + 1).getImm(); in emitEpilogue()
473 } else if (StackSize) { in emitEpilogue()
475 emitIncrement(MBB, MBBI, DL, SystemZ::R15D, StackSize, ZII); in emitEpilogue()
514 uint64_t StackSize = MFFrame->getStackSize(); in getAllocatedStackSize() local
519 if (StackSize || MFFrame->hasVarSizedObjects() || MFFrame->hasCalls()) in getAllocatedStackSize()
520 StackSize += SystemZMC::CallFrameSize; in getAllocatedStackSize()
522 return StackSize; in getAllocatedStackSize()