Lines Matching defs:StackSize

1535   uint64_t StackSize = MFI.getStackSize(); // Number of bytes to allocate.
1646 StackSize += 8;
1647 MFI.setStackSize(StackSize);
1678 X86FI->setUsesRedZone(MinSize > 0 || StackSize > 0);
1679 StackSize = std::max(MinSize, StackSize > 128 ? StackSize - 128 : 0);
1680 MFI.setStackSize(StackSize);
1731 uint64_t FrameSize = StackSize - SlotSize;
1748 assert(StackSize);
1861 StackSize - (X86FI->getCalleeSavedFrameSize() + TailCallArgReserveSize);
1870 MFI.setOffsetAdjustment(-StackSize);
1901 assert(StackSize);
2201 assert(StackSize);
2204 MCCFIInstruction::cfiDefCfaOffset(nullptr, StackSize - stackGrowth),
2363 uint64_t StackSize = MFI.getStackSize();
2407 uint64_t FrameSize = StackSize - SlotSize;
2415 NumBytes = StackSize - CSSize - TailCallArgReserveSize;
2622 uint64_t StackSize = MFI.getStackSize();
2636 assert(!MFI.hasCalls() || (StackSize % 16) == 8);
2639 uint64_t FrameSize = StackSize - SlotSize;
2675 // located at the end of the statically known StackSize so the distinction
2678 assert(isAligned(MFI.getObjectAlign(FI), -(Offset + StackSize)));
2679 return StackOffset::getFixed(Offset + StackSize);
2714 const uint64_t StackSize = MFI.getStackSize();
2778 // |(E - B)| is the StackSize (absolute value, positive). For a
2785 // == getObjectOffset - LocalAreaOffset + StackSize
2787 return getFrameIndexReferenceSP(MF, FI, FrameReg, StackSize);
3207 uint64_t StackSize;
3226 // Eventually StackSize will be calculated by a link-time pass; which will
3229 StackSize = MFI.getStackSize();
3259 bool CompareStackPointer = StackSize < kSplitStackAvailable;
3290 .addImm(-StackSize)
3326 .addImm(-StackSize)
3399 BuildMI(allocMBB, DL, TII.get(getMOVriOpcode(IsLP64, StackSize)), Reg10)
3400 .addImm(StackSize);
3408 BuildMI(allocMBB, DL, TII.get(X86::PUSH32i)).addImm(StackSize);