41#define DEBUG_TYPE "x86-fl"
43STATISTIC(NumFrameLoopProbe,
"Number of loop stack probes used in prologue");
45 "Number of extra stack probes generated in prologue");
46STATISTIC(NumFunctionUsingPush2Pop2,
"Number of functions using push2/pop2");
71 return STI.hasBWI() ? &X86::VK64RegClass : &X86::VK16RegClass;
72 return TRI.getMinimalPhysRegClass(
Reg);
104 (
hasFP(MF) && !
TRI->hasStackRealignment(MF)) ||
105 TRI->hasBasePointer(MF);
137 return IsLP64 ? X86::SUB64ri32 : X86::SUB32ri;
141 return IsLP64 ? X86::ADD64ri32 : X86::ADD32ri;
145 return IsLP64 ? X86::SUB64rr : X86::SUB32rr;
149 return IsLP64 ? X86::ADD64rr : X86::ADD32rr;
153 return IsLP64 ? X86::AND64ri32 : X86::AND32ri;
157 return IsLP64 ? X86::LEA64r : X86::LEA32r;
178 return ST.is64Bit() ? (ST.hasPPX() ? X86::PUSHP64r : X86::PUSH64r)
182 return ST.is64Bit() ? (ST.hasPPX() ? X86::POPP64r : X86::POP64r)
186 return ST.hasPPX() ? X86::PUSH2P : X86::PUSH2;
189 return ST.hasPPX() ? X86::POP2P : X86::POP2;
196 if (
Reg == X86::RAX ||
Reg == X86::EAX ||
Reg == X86::AX ||
197 Reg == X86::AH ||
Reg == X86::AL)
211 bool BreakNext =
false;
216 if (
Reg != X86::EFLAGS)
237 if (Succ->isLiveIn(X86::EFLAGS))
250 bool InEpilogue)
const {
251 bool isSub = NumBytes < 0;
252 uint64_t
Offset = isSub ? -NumBytes : NumBytes;
267 const bool EmitInlineStackProbe = TLI.hasInlineStackProbe(MF);
271 if (EmitInlineStackProbe && !InEpilogue) {
299 MI->getOperand(3).setIsDead();
326 MI->getOperand(3).setIsDead();
345 unsigned Opc = isSub ? (
Is64Bit ? X86::PUSH64r : X86::PUSH32r)
346 : (
Is64Bit ? X86::POP64r : X86::POP32r);
356 BuildStackAdjustment(
MBB,
MBBI,
DL, isSub ? -ThisVal : ThisVal, InEpilogue)
366 assert(
Offset != 0 &&
"zero offset stack adjustment requested");
376 UseLEA =
STI.useLeaForSP() ||
MBB.isLiveIn(X86::EFLAGS);
384 if (UseLEA && !
STI.useLeaForSP())
389 "We shouldn't have allowed this insertion point");
392 MachineInstrBuilder
MI;
406 const unsigned Opc = IsSub ? X86::SUB64ri32_NF : X86::ADD64ri32_NF;
419 int64_t
Imm = AbsOffset;
430 if (AbsOffset == 128 &&
433 Opc = IsSub ? getADDriOpcode(Uses64BitFramePtr)
434 : getSUBriOpcode(Uses64BitFramePtr);
445template <
typename FoundT,
typename CalcT>
448 FoundT FoundStackAdjust,
450 bool doMergeWithPrevious)
const {
453 return CalcNewOffset(0);
469 if (doMergeWithPrevious && PI !=
MBB.
begin() && PI->isCFIInstruction())
474 unsigned Opc = PI->getOpcode();
476 if ((
Opc == X86::ADD64ri32 ||
Opc == X86::ADD32ri ||
477 Opc == X86::ADD64ri32_NF) &&
478 PI->getOperand(0).getReg() ==
StackPtr) {
480 Offset = PI->getOperand(2).getImm();
481 }
else if ((
Opc == X86::LEA32r ||
Opc == X86::LEA64_32r) &&
482 PI->getOperand(0).getReg() ==
StackPtr &&
483 PI->getOperand(1).getReg() ==
StackPtr &&
484 PI->getOperand(2).getImm() == 1 &&
485 PI->getOperand(3).getReg() == X86::NoRegister &&
486 PI->getOperand(5).getReg() == X86::NoRegister) {
488 Offset = PI->getOperand(4).getImm();
489 }
else if ((
Opc == X86::SUB64ri32 ||
Opc == X86::SUB32ri ||
490 Opc == X86::SUB64ri32_NF) &&
491 PI->getOperand(0).getReg() ==
StackPtr) {
493 Offset = -PI->getOperand(2).getImm();
495 return CalcNewOffset(0);
497 FoundStackAdjust(PI,
Offset);
501 if (doMergeWithPrevious ? (PI ==
MBB.
begin()) : (PI ==
MBB.
end()))
502 return CalcNewOffset(0);
504 PI = doMergeWithPrevious ? std::prev(PI) : std::next(PI);
508 if (PI !=
MBB.
end() && PI->isCFIInstruction()) {
510 MCCFIInstruction CI = CIs[PI->getOperand(0).getCFIIndex()];
515 if (!doMergeWithPrevious)
518 return CalcNewOffset(
Offset);
524 bool doMergeWithPrevious)
const {
525 return mergeSPUpdates(
527 doMergeWithPrevious);
594 CfaExpr.
push_back(dwarf::DW_CFA_expression);
600 STI.isTarget64BitILP32()
603 unsigned DwarfFramePtr = MRI->
getDwarfRegNum(MachineFramePtr,
true);
619 int FI =
MI->getOperand(1).getIndex();
624 STI.isTarget64BitILP32()
627 unsigned DwarfFramePtr = MRI->
getDwarfRegNum(MachineFramePtr,
true);
634 DefCfaExpr.
push_back(dwarf::DW_CFA_def_cfa_expression);
644void X86FrameLowering::emitZeroCallUsedRegs(
BitVector RegsToZero,
660 if (!X86::RFP80RegClass.
contains(Reg))
665 unsigned NumFPRegs = 8;
666 if (
MBBI->hasRegisterImplicitUseOperand(X86::ST0))
668 if (
MBBI->hasRegisterImplicitUseOperand(X86::ST1))
671 for (
unsigned i = 0; i != NumFPRegs; ++i)
674 for (
unsigned i = 0; i != NumFPRegs; ++i)
682 if (
TRI->isGeneralPurposeRegister(MF,
Reg)) {
688 for (MCRegister
Reg : GPRsToZero.set_bits())
693 auto getVectorClearReg = [&](MCRegister
Reg) -> MCRegister {
702 MCRegister Xmm =
TRI->getSubReg(
Reg, X86::sub_xmm);
705 if (X86::VR128RegClass.
contains(Xmm))
708 TRI->getMatchingSuperReg(Xmm, X86::sub_xmm, &X86::VR512RegClass);
709 assert(Zmm &&
"XMM16-31 must have an enclosing ZMM to clear through");
713 BitVector VecRegsToZero(
TRI->getNumRegs());
715 if (MCRegister Clear = getVectorClearReg(
Reg)) {
716 VecRegsToZero.set(Clear.id());
720 for (MCRegister
Reg : VecRegsToZero.set_bits())
731 std::optional<MachineFunction::DebugInstrOperandPair> InstrNum)
const {
733 if (
STI.isTargetWindowsCoreCLR()) {
738 emitStackProbeInline(MF,
MBB,
MBBI,
DL,
false);
741 emitStackProbeCall(MF,
MBB,
MBBI,
DL, InProlog, InstrNum);
746 return STI.isOSWindows() && !
STI.isTargetWin64();
752 return MI.getOpcode() == X86::STACKALLOC_W_PROBING;
754 if (Where != PrologMBB.
end()) {
756 emitStackProbeInline(MF, PrologMBB, Where,
DL,
true);
757 Where->eraseFromParent();
765 bool InProlog)
const {
768 emitStackProbeInlineWindowsCoreCLR64(MF,
MBB,
MBBI,
DL, InProlog);
770 emitStackProbeInlineGeneric(MF,
MBB,
MBBI,
DL, InProlog);
773void X86FrameLowering::emitStackProbeInlineGeneric(
782 "different expansion expected for CoreCLR 64 bit");
784 const uint64_t StackProbeSize = TLI.getStackProbeSize(MF);
785 uint64_t ProbeChunk = StackProbeSize * 8;
788 TRI->hasStackRealignment(MF) ? calculateMaxStackAlign(MF) : 0;
793 if (
Offset > ProbeChunk) {
795 MaxAlign % StackProbeSize);
798 MaxAlign % StackProbeSize);
802void X86FrameLowering::emitStackProbeInlineGenericBlock(
807 const bool NeedsDwarfCFI = needsDwarfCFI(MF);
810 const X86TargetLowering &TLI = *
STI.getTargetLowering();
811 const unsigned MovMIOpc =
Is64Bit ? X86::MOV64mi32 : X86::MOV32mi;
812 const uint64_t StackProbeSize = TLI.getStackProbeSize(MF);
816 assert(AlignOffset < StackProbeSize);
819 if (StackProbeSize <
Offset + AlignOffset) {
822 BuildStackAdjustment(
MBB,
MBBI,
DL, -StackAdjustment,
false)
824 if (!HasFP && NeedsDwarfCFI) {
835 NumFrameExtraProbe++;
836 CurrentOffset = StackProbeSize - AlignOffset;
842 while (CurrentOffset + StackProbeSize <
Offset) {
843 BuildStackAdjustment(
MBB,
MBBI,
DL, -StackProbeSize,
false)
846 if (!HasFP && NeedsDwarfCFI) {
856 NumFrameExtraProbe++;
857 CurrentOffset += StackProbeSize;
866 unsigned Opc =
Is64Bit ? X86::PUSH64r : X86::PUSH32r;
871 BuildStackAdjustment(
MBB,
MBBI,
DL, -ChunkSize,
false)
878void X86FrameLowering::emitStackProbeInlineGenericLoop(
886 "Inline stack probe loop will clobber live EFLAGS.");
888 const bool NeedsDwarfCFI = needsDwarfCFI(MF);
891 const X86TargetLowering &TLI = *
STI.getTargetLowering();
892 const unsigned MovMIOpc =
Is64Bit ? X86::MOV64mi32 : X86::MOV32mi;
893 const uint64_t StackProbeSize = TLI.getStackProbeSize(MF);
896 if (AlignOffset < StackProbeSize) {
898 BuildStackAdjustment(
MBB,
MBBI,
DL, -AlignOffset,
false)
906 NumFrameExtraProbe++;
919 MF.
insert(MBBIter, testMBB);
920 MF.
insert(MBBIter, tailMBB);
960 if (!HasFP && NeedsDwarfCFI) {
963 const Register DwarfFinalStackProbed =
964 STI.isTarget64BitILP32()
970 nullptr,
TRI->getDwarfRegNum(DwarfFinalStackProbed,
true)));
977 BuildStackAdjustment(*testMBB, testMBB->
end(),
DL, -StackProbeSize,
1011 BuildStackAdjustment(*tailMBB, TailMBBIter,
DL, -TailOffset,
1017 if (!HasFP && NeedsDwarfCFI) {
1021 STI.isTarget64BitILP32()
1027 nullptr,
TRI->getDwarfRegNum(DwarfStackPtr,
true)));
1034void X86FrameLowering::emitStackProbeInlineWindowsCoreCLR64(
1038 assert(
STI.is64Bit() &&
"different expansion needed for 32 bit");
1039 assert(
STI.isTargetWindowsCoreCLR() &&
"custom expansion expects CoreCLR");
1040 const TargetInstrInfo &
TII = *
STI.getInstrInfo();
1045 "Inline stack probe loop will clobber live EFLAGS.");
1080 MF.
insert(MBBIter, RoundMBB);
1081 MF.
insert(MBBIter, LoopMBB);
1082 MF.
insert(MBBIter, ContinueMBB);
1090 const int64_t ThreadEnvironmentStackLimit = 0x10;
1092 const int64_t PageMask = ~(
PageSize - 1);
1110 int64_t RCXShadowSlot = 0;
1111 int64_t RDXShadowSlot = 0;
1118 X86MachineFunctionInfo *X86FI = MF.
getInfo<X86MachineFunctionInfo>();
1127 int64_t InitSlot = 8 + CalleeSaveSize + (
HasFP ? 8 : 0);
1131 RCXShadowSlot = InitSlot;
1133 RDXShadowSlot = InitSlot;
1134 if (IsRDXLiveIn && IsRCXLiveIn)
1175 .
addImm(ThreadEnvironmentStackLimit)
1186 BuildMI(RoundMBB,
DL,
TII.get(X86::AND64ri32), RoundedReg)
1231 TII.get(X86::MOV64rm), X86::RCX),
1232 X86::RSP,
false, RCXShadowSlot);
1235 TII.get(X86::MOV64rm), X86::RDX),
1236 X86::RSP,
false, RDXShadowSlot);
1241 BuildMI(*ContinueMBB, ContinueMBBI,
DL,
TII.get(X86::SUB64rr), X86::RSP)
1253 LivePhysRegs LiveRegs;
1259 for (++BeforeMBBI; BeforeMBBI !=
MBB.
end(); ++BeforeMBBI) {
1262 for (MachineInstr &
MI : *RoundMBB) {
1265 for (MachineInstr &
MI : *LoopMBB) {
1268 for (MachineInstr &
MI :
1275void X86FrameLowering::emitStackProbeCall(
1278 std::optional<MachineFunction::DebugInstrOperandPair> InstrNum)
const {
1282 if (
Is64Bit && IsLargeCodeModel &&
STI.useIndirectThunkCalls())
1284 "code model and indirect thunks not yet implemented.");
1288 "Stack probe calls will clobber live EFLAGS.");
1292 CallOp = IsLargeCodeModel ? X86::CALL64r : X86::CALL64pcrel32;
1294 CallOp = X86::CALLpcrel32;
1296 StringRef
Symbol =
STI.getTargetLowering()->getStackProbeSymbolName(MF);
1298 MachineInstrBuilder CI;
1322 MachineInstr *ModInst = CI;
1323 if (
STI.isTargetWin64() || !
STI.isOSWindows()) {
1340 if (
STI.isTargetWin64() || !
STI.isOSWindows()) {
1355 for (++ExpansionMBBI; ExpansionMBBI !=
MBBI; ++ExpansionMBBI)
1363 const uint64_t Win64MaxSEHOffset = 128;
1364 uint64_t SEHFrameOffset = std::min(SPAdjust, Win64MaxSEHOffset);
1366 return SEHFrameOffset & -16;
1374X86FrameLowering::calculateMaxStackAlign(
const MachineFunction &MF)
const {
1381 MaxAlign = (StackAlign > MaxAlign) ? StackAlign : MaxAlign;
1388 MaxAlign = (MaxAlign > 16) ? MaxAlign :
Align(16);
1390 MaxAlign =
Align(16);
1392 return MaxAlign.
value();
1404 const X86TargetLowering &TLI = *
STI.getTargetLowering();
1405 const uint64_t StackProbeSize = TLI.getStackProbeSize(MF);
1406 const bool EmitInlineStackProbe = TLI.hasInlineStackProbe(MF);
1411 if (
Reg ==
StackPtr && EmitInlineStackProbe && MaxAlign >= StackProbeSize) {
1413 NumFrameLoopProbe++;
1414 MachineBasicBlock *entryMBB =
1416 MachineBasicBlock *headMBB =
1418 MachineBasicBlock *bodyMBB =
1420 MachineBasicBlock *footMBB =
1424 MF.
insert(MBBIter, entryMBB);
1425 MF.
insert(MBBIter, headMBB);
1426 MF.
insert(MBBIter, bodyMBB);
1427 MF.
insert(MBBIter, footMBB);
1428 const unsigned MovMIOpc =
Is64Bit ? X86::MOV64mi32 : X86::MOV32mi;
1437 BuildMI(entryMBB,
DL,
TII.get(TargetOpcode::COPY), FinalStackProbed)
1441 BuildMI(entryMBB,
DL,
TII.get(AndOp), FinalStackProbed)
1442 .
addReg(FinalStackProbed)
1451 .
addReg(FinalStackProbed)
1474 .
addReg(FinalStackProbed)
1504 .
addReg(FinalStackProbed)
1520 .
addReg(FinalStackProbed)
1547 "MF used frame lowering for wrong subtarget");
1556bool X86FrameLowering::isWin64Prologue(
const MachineFunction &MF)
const {
1560bool X86FrameLowering::needsDwarfCFI(
const MachineFunction &MF)
const {
1567 case X86::REPNE_PREFIX:
1568 case X86::REP_MOVSB_32:
1569 case X86::REP_MOVSB_64:
1570 case X86::REP_MOVSD_32:
1571 case X86::REP_MOVSD_64:
1572 case X86::REP_MOVSQ_32:
1573 case X86::REP_MOVSQ_64:
1574 case X86::REP_MOVSW_32:
1575 case X86::REP_MOVSW_64:
1576 case X86::REP_PREFIX:
1577 case X86::REP_STOSB_32:
1578 case X86::REP_STOSB_64:
1579 case X86::REP_STOSD_32:
1580 case X86::REP_STOSD_64:
1581 case X86::REP_STOSQ_32:
1582 case X86::REP_STOSQ_64:
1583 case X86::REP_STOSW_32:
1584 case X86::REP_STOSW_64:
1680 "MF used frame lowering for wrong subtarget");
1685 uint64_t MaxAlign = calculateMaxStackAlign(MF);
1687 bool IsFunclet =
MBB.isEHFuncletEntry();
1691 bool FnHasClrFunclet =
1693 bool IsClrFunclet = IsFunclet && FnHasClrFunclet;
1694 bool HasFP =
hasFP(MF);
1695 bool IsWin64Prologue = isWin64Prologue(MF);
1698 bool NeedsWinFPO = !IsFunclet &&
STI.isTargetWin32() &&
1700 bool NeedsWinCFI = NeedsWin64CFI || NeedsWinFPO;
1701 bool NeedsDwarfCFI = needsDwarfCFI(MF);
1708 bool HasWinCFI =
false;
1717 auto EmitSEHBefore = [&](
auto EmitFn) {
1718 if (NeedsWinCFI && IsWin64UnwindV3) {
1723 auto EmitSEHAfter = [&](
auto EmitFn) {
1724 if (NeedsWinCFI && !IsWin64UnwindV3) {
1739 ArgBaseReg =
MI->getOperand(0).getReg();
1752 if (NeedsDwarfCFI) {
1754 unsigned DwarfStackPtr =
TRI->getDwarfRegNum(ArgBaseReg,
true);
1773 if (TailCallArgReserveSize && IsWin64Prologue)
1776 const bool EmitStackProbeCall =
1777 STI.getTargetLowering()->hasStackProbeSymbol(MF);
1778 unsigned StackProbeSize =
STI.getTargetLowering()->getStackProbeSize(MF);
1783 if (
STI.swiftAsyncContextIsDynamicallySet()) {
1793 .
addUse(X86::NoRegister);
1801 "win64 prologue does not set the bit 60 in the saved frame pointer");
1840 !EmitStackProbeCall &&
1848 StackSize = std::max(MinSize, StackSize > 128 ? StackSize - 128 : 0);
1855 if (TailCallArgReserveSize != 0) {
1856 BuildStackAdjustment(
MBB,
MBBI,
DL, -(
int)TailCallArgReserveSize,
1875 uint64_t NumBytes = 0;
1885 if (IsWin64Prologue && IsFunclet && !IsClrFunclet) {
1893 MBB.addLiveIn(Establisher);
1900 uint64_t FrameSize = StackSize -
SlotSize;
1905 if (
TRI->hasStackRealignment(MF) && !IsWin64Prologue)
1906 NumBytes =
alignTo(NumBytes, MaxAlign);
1909 auto EmitSEHPushFramePtr = [&]() {
1914 EmitSEHBefore(EmitSEHPushFramePtr);
1919 EmitSEHAfter(EmitSEHPushFramePtr);
1921 if (NeedsDwarfCFI && !ArgBaseReg.
isValid()) {
1927 nullptr, -2 * stackGrowth + (
int)TailCallArgReserveSize),
1931 unsigned DwarfFramePtr =
TRI->getDwarfRegNum(MachineFramePtr,
true);
1935 (
int)TailCallArgReserveSize),
1941 assert(!IsWin64Prologue &&
1942 "win64 prologue does not store async context right below rbp");
1948 auto EmitSEHPushR14 = [&]() {
1953 EmitSEHBefore(EmitSEHPushR14);
1954 if (Attrs.hasAttrSomewhere(Attribute::SwiftAsync)) {
1957 MBB.addLiveIn(X86::R14);
1970 if (NeedsDwarfCFI && !ArgBaseReg.
isValid()) {
1977 EmitSEHAfter(EmitSEHPushR14);
1988 if (NeedsDwarfCFI && !ArgBaseReg.
isValid()) {
1989 unsigned DwarfFramePtr =
TRI->getDwarfRegNum(MachineFramePtr,
true);
1993 (
int)TailCallArgReserveSize),
2003 if (!IsWin64Prologue && !IsFunclet) {
2012 if (NeedsDwarfCFI) {
2015 CfaExpr.
push_back(dwarf::DW_CFA_expression);
2017 unsigned DwarfReg =
TRI->getDwarfRegNum(MachineFramePtr,
true);
2029 unsigned DwarfFramePtr =
TRI->getDwarfRegNum(MachineFramePtr,
true);
2041 assert(!IsWin64UnwindV3);
2051 assert(!IsFunclet &&
"funclets without FPs not yet implemented");
2059 if (HasFP &&
TRI->hasStackRealignment(MF))
2067 unsigned ParentFrameNumBytes = NumBytes;
2069 NumBytes = getWinEHFuncletFrameSize(MF);
2072 bool PushedRegs =
false;
2078 unsigned Opc =
MBBI->getOpcode();
2079 return Opc == X86::PUSH32r ||
Opc == X86::PUSH64r ||
Opc == X86::PUSHP64r ||
2080 Opc == X86::PUSH2 ||
Opc == X86::PUSH2P;
2083 while (IsCSPush(
MBBI)) {
2087 unsigned Opc = LastCSPush->getOpcode();
2088 bool IsPush2 =
Opc == X86::PUSH2 ||
Opc == X86::PUSH2P;
2091 EmitSEHBefore([&]() {
2095 .
addImm(LastCSPush->getOperand(1).getReg())
2105 if (!HasFP && NeedsDwarfCFI) {
2120 EmitSEHAfter([&]() {
2126 .
addImm(LastCSPush->getOperand(1).getReg())
2134 if (!IsWin64Prologue && !IsFunclet &&
TRI->hasStackRealignment(MF) &&
2136 assert(HasFP &&
"There should be a frame pointer if stack is realigned.");
2137 auto EmitSEHStackAlign = [&]() {
2142 EmitSEHBefore(EmitSEHStackAlign);
2144 EmitSEHAfter(EmitSEHStackAlign);
2150 NumBytes = mergeSPUpdates(
2164 uint64_t AlignedNumBytes = NumBytes;
2165 if (IsWin64Prologue && !IsFunclet &&
TRI->hasStackRealignment(MF))
2166 AlignedNumBytes =
alignTo(AlignedNumBytes, MaxAlign);
2168 auto EmitSEHStackAlloc = [&]() {
2174 EmitSEHBefore(EmitSEHStackAlloc);
2176 if (AlignedNumBytes >= StackProbeSize && EmitStackProbeCall) {
2178 "The Red Zone is not accounted for in stack probes");
2200 int64_t
Alloc = isEAXAlive ? NumBytes - 8 : NumBytes;
2209 .
addImm(isEAXAlive ? NumBytes - 4 : NumBytes)
2228 }
else if (NumBytes) {
2233 EmitSEHAfter(EmitSEHStackAlloc);
2235 int SEHFrameOffset = 0;
2243 unsigned PSPSlotOffset = getPSPSlotOffsetFromSP(MF);
2245 MBB.addLiveIn(Establisher);
2247 Establisher,
false, PSPSlotOffset)
2254 false, PSPSlotOffset)
2261 SPOrEstablisher = Establisher;
2266 if (IsWin64Prologue && HasFP) {
2273 if (NeedsWinCFI && !IsFunclet) {
2274 assert(!NeedsWinFPO &&
"this setframe incompatible with FPO data");
2277 if (
TRI->hasBasePointer(MF))
2285 auto EmitSEHSetFrame = [&]() {
2293 EmitSEHBefore(EmitSEHSetFrame);
2297 SPOrEstablisher,
false, SEHFrameOffset);
2300 .
addReg(SPOrEstablisher);
2303 EmitSEHAfter(EmitSEHSetFrame);
2304 }
else if (IsFunclet &&
STI.is32Bit()) {
2309 if (!
MBB.isCleanupFuncletEntry()) {
2326 if (
Register Reg =
TII.isStoreToStackSlot(FrameInstr, FI)) {
2327 if (X86::FR64RegClass.
contains(Reg)) {
2330 if (IsWin64Prologue && IsFunclet)
2337 assert(!NeedsWinFPO &&
"SEH_SaveXMM incompatible with FPO data");
2338 auto EmitSEHSaveXMM = [&]() {
2344 EmitSEHBefore(EmitSEHSaveXMM);
2346 EmitSEHAfter(EmitSEHSaveXMM);
2354 if (NeedsWinCFI && HasWinCFI) {
2359 if (FnHasClrFunclet && !IsFunclet) {
2363 unsigned PSPSlotOffset = getPSPSlotOffsetFromSP(MF);
2377 if (IsWin64Prologue &&
TRI->hasStackRealignment(MF)) {
2378 assert(HasFP &&
"There should be a frame pointer if stack is realigned.");
2379 BuildStackAlignAND(
MBB,
MBBI,
DL, SPOrEstablisher, MaxAlign);
2383 if (IsFunclet &&
STI.is32Bit())
2390 if (
TRI->hasBasePointer(MF)) {
2416 assert(UsedReg == BasePtr);
2425 int FI =
MI->getOperand(1).getIndex();
2426 unsigned MOVmr =
Is64Bit ? X86::MOV64mr : X86::MOV32mr;
2433 if (((!HasFP && NumBytes) || PushedRegs) && NeedsDwarfCFI) {
2435 if (!HasFP && NumBytes) {
2461 bool NeedsCLD =
false;
2475 if (
MI.isInlineAsm()) {
2507 switch (
MI.getOpcode()) {
2509 case X86::CLEANUPRET:
2531X86FrameLowering::getPSPSlotOffsetFromSP(
const MachineFunction &MF)
const {
2538 return static_cast<unsigned>(
Offset);
2542X86FrameLowering::getWinEHFuncletFrameSize(
const MachineFunction &MF)
const {
2543 const X86MachineFunctionInfo *X86FI = MF.
getInfo<X86MachineFunctionInfo>();
2549 WinEHXMMSlotInfo.
size() *
TRI->getSpillSize(X86::VR128RegClass);
2558 UsedSize = getPSPSlotOffsetFromSP(MF) +
SlotSize;
2569 return FrameSizeMinusRBP + XMMSize - CSSize;
2573 return Opc == X86::TCRETURNri ||
Opc == X86::TCRETURN_WIN64ri ||
2574 Opc == X86::TCRETURN_HIPE32ri ||
Opc == X86::TCRETURNdi ||
2575 Opc == X86::TCRETURNmi ||
Opc == X86::TCRETURNri64 ||
2576 Opc == X86::TCRETURNri64_ImpCall ||
Opc == X86::TCRETURNdi64 ||
2577 Opc == X86::TCRETURNmi64 ||
Opc == X86::TCRETURN_WINmi64;
2588 DL =
MBBI->getDebugLoc();
2590 const bool Is64BitILP32 =
STI.isTarget64BitILP32();
2596 bool NeedsWin64CFI =
2600 bool IsWin64UnwindV3 =
2606 uint64_t MaxAlign = calculateMaxStackAlign(MF);
2609 bool HasFP =
hasFP(MF);
2610 uint64_t NumBytes = 0;
2612 bool NeedsDwarfCFI = (!MF.
getTarget().getTargetTriple().isOSDarwin() &&
2619 unsigned Opc = X86::LEA32r;
2621 ArgBaseReg =
MI->getOperand(0).getReg();
2622 if (
STI.is64Bit()) {
2624 StackReg = X86::RSP;
2635 if (NeedsDwarfCFI) {
2636 unsigned DwarfStackPtr =
TRI->getDwarfRegNum(StackReg,
true);
2646 assert(HasFP &&
"EH funclets without FP not yet implemented");
2647 NumBytes = getWinEHFuncletFrameSize(MF);
2650 uint64_t FrameSize = StackSize -
SlotSize;
2651 NumBytes = FrameSize - CSSize - TailCallArgReserveSize;
2655 if (
TRI->hasStackRealignment(MF) && !IsWin64Prologue)
2656 NumBytes =
alignTo(FrameSize, MaxAlign);
2658 NumBytes = StackSize - CSSize - TailCallArgReserveSize;
2660 uint64_t SEHStackAllocAmt = NumBytes;
2662 unsigned SEHFrameOffset = 0;
2663 if (IsWin64Prologue && HasFP)
2675 if (IsWin64UnwindV3)
2693 if (NeedsDwarfCFI) {
2695 unsigned DwarfStackPtr =
2696 TRI->getDwarfRegNum(
Is64Bit ? X86::RSP : X86::ESP,
true);
2701 if (!
MBB.succ_empty() && !
MBB.isReturnBlock()) {
2702 unsigned DwarfFramePtr =
TRI->getDwarfRegNum(MachineFramePtr,
true);
2717 unsigned Opc = PI->getOpcode();
2719 if (
Opc != X86::DBG_VALUE && !PI->isTerminator()) {
2721 (
Opc != X86::POP32r &&
Opc != X86::POP64r &&
Opc != X86::BTR64ri8 &&
2722 Opc != X86::ADD64ri32 &&
Opc != X86::POPP64r &&
Opc != X86::POP2 &&
2723 Opc != X86::POP2P &&
Opc != X86::LEA64r &&
Opc != X86::SEH_PushReg &&
2724 Opc != X86::SEH_Push2Regs &&
Opc != X86::SEH_StackAlloc &&
2725 Opc != X86::ADD64ri32_NF))
2735 int FI =
MI->getOperand(1).getIndex();
2736 unsigned MOVrm =
Is64Bit ? X86::MOV64rm : X86::MOV32rm;
2743 if (IsFunclet && Terminator->getOpcode() == X86::CATCHRET)
2744 emitCatchRetReturnValue(
MBB, FirstCSPop, &*Terminator);
2747 DL =
MBBI->getDebugLoc();
2753 if (IsWin64UnwindV3 && NeedsWin64CFI && MF.
hasWinCFI()) {
2756 auto EpilogStart =
MBBI;
2759 while (ScanIt !=
MBB.begin()) {
2760 auto PI = std::prev(ScanIt);
2763 TII.isLoadFromStackSlot(*PI, FI)) {
2764 Register Reg = PI->getOperand(0).getReg();
2765 if (X86::FR64RegClass.
contains(Reg)) {
2778 EpilogStart = std::prev(PI);
2779 ScanIt = EpilogStart;
2797 if (
TRI->hasStackRealignment(MF))
2799 uint64_t LEAAmount =
2800 IsWin64Prologue ? SEHStackAllocAmt - SEHFrameOffset : -CSSize;
2812 if (IsWin64UnwindV3) {
2817 if (SEHStackAllocAmt)
2819 .
addImm(SEHStackAllocAmt)
2822 if (LEAAmount != 0) {
2832 }
else if (NumBytes) {
2834 if (IsWin64UnwindV3)
2839 if (!HasFP && NeedsDwarfCFI) {
2843 nullptr, CSSize + TailCallArgReserveSize +
SlotSize),
2850 if (!IsWin64UnwindV3 && NeedsWin64CFI && MF.
hasWinCFI())
2853 if (!HasFP && NeedsDwarfCFI) {
2860 unsigned Opc = PI->getOpcode();
2862 if (
Opc == X86::POP32r ||
Opc == X86::POP64r ||
Opc == X86::POPP64r ||
2863 Opc == X86::POP2 ||
Opc == X86::POP2P) {
2867 if (
Opc == X86::POP2 ||
Opc == X86::POP2P)
2879 if (NeedsDwarfCFI && !
MBB.succ_empty())
2885 assert(Delta <= 0 &&
"TCDelta should never be positive");
2910 if (
TRI->hasBasePointer(MF))
2911 FrameReg = IsFixed ?
TRI->getFramePtr() :
TRI->getBaseRegister();
2912 else if (
TRI->hasStackRealignment(MF))
2913 FrameReg = IsFixed ?
TRI->getFramePtr() :
TRI->getStackRegister();
2915 FrameReg =
TRI->getFrameRegister(MF);
2926 int64_t FPDelta = 0;
2937 if (IsWin64Prologue) {
2941 uint64_t FrameSize = StackSize -
SlotSize;
2946 uint64_t NumBytes = FrameSize - CSSize;
2956 FPDelta = FrameSize - SEHFrameOffset;
2958 "FPDelta isn't aligned per the Win64 ABI!");
2961 if (FrameReg ==
TRI->getFramePtr()) {
2970 if (TailCallReturnAddrDelta < 0)
2971 Offset -= TailCallReturnAddrDelta;
2979 if (
TRI->hasStackRealignment(MF) ||
TRI->hasBasePointer(MF))
2989 const auto it = WinEHXMMSlotInfo.find(FI);
2991 if (it == WinEHXMMSlotInfo.end())
2994 FrameReg =
TRI->getStackRegister();
3002 int Adjustment)
const {
3004 FrameReg =
TRI->getStackRegister();
3012 bool IgnoreSPUpdates)
const {
3051 !
STI.isTargetWin64())
3062 "we don't handle this case!");
3094 std::vector<CalleeSavedInfo> &CSI)
const {
3098 unsigned CalleeSavedFrameSize = 0;
3099 unsigned XMMCalleeSavedFrameSize = 0;
3105 if (TailCallReturnAddrDelta < 0) {
3116 TailCallReturnAddrDelta -
SlotSize,
true);
3120 if (this->TRI->hasBasePointer(MF)) {
3129 bool IsFPRemovedFromCSI =
false;
3147 for (
unsigned i = 0; i < CSI.size(); ++i) {
3148 if (
TRI->regsOverlap(CSI[i].getReg(),
FPReg)) {
3149 CSI.erase(CSI.begin() + i);
3150 IsFPRemovedFromCSI =
true;
3166 unsigned NumRegsForPush2 = 0;
3169 return X86::GR64RegClass.contains(
I.getReg());
3171 bool UsePush2Pop2 = !IsFPRemovedFromCSI ? NumCSGPR > 2 : NumCSGPR > 1;
3174 ?
alignDown(IsFPRemovedFromCSI ? NumCSGPR : NumCSGPR - 1, 2)
3188 (SpillSlotOffset % 16 == 0 ||
3210 "Expect even candidates for push2/pop2");
3212 ++NumFunctionUsingPush2Pop2;
3223 unsigned Size =
TRI->getSpillSize(*RC);
3224 Align Alignment =
TRI->getSpillAlign(*RC);
3226 assert(SpillSlotOffset < 0 &&
"SpillSlotOffset should always < 0 on X86");
3227 SpillSlotOffset = -
alignTo(-SpillSlotOffset, Alignment);
3230 SpillSlotOffset -=
Size;
3236 if (X86::VR128RegClass.
contains(Reg)) {
3237 WinEHXMMSlotInfo[
SlotIndex] = XMMCalleeSavedFrameSize;
3238 XMMCalleeSavedFrameSize +=
Size;
3252 if (
MBB.isEHFuncletEntry() &&
STI.is32Bit() &&
STI.isOSWindows())
3261 auto UpdateLiveInCheckCanKill = [&](
Register Reg) {
3277 auto UpdateLiveInGetKillRegState = [&](
Register Reg) {
3281 for (
auto RI = CSI.
rbegin(), RE = CSI.
rend(); RI != RE; ++RI) {
3289 .
addReg(Reg, UpdateLiveInGetKillRegState(Reg))
3290 .
addReg(Reg2, UpdateLiveInGetKillRegState(Reg2))
3294 .
addReg(Reg, UpdateLiveInGetKillRegState(Reg))
3300 unsigned Opc =
STI.is64Bit() ? X86::PUSH64r : X86::PUSH32r;
3301 Register BaseReg = this->TRI->getBaseRegister();
3330 MBB.getParent()->getFunction().getPersonalityFn())) &&
3331 "SEH should not use CATCHRET");
3336 if (
STI.is64Bit()) {
3368 if (
MI->getOpcode() == X86::CATCHRET) {
3381 bool NeedsWin64CFI =
3398 if (IsWin64UnwindV3)
3400 .
addImm(this->TRI->getBaseRegister())
3402 unsigned Opc =
STI.is64Bit() ? X86::POP64r : X86::POP32r;
3403 Register BaseReg = this->TRI->getBaseRegister();
3409 for (
auto I = CSI.
begin(), E = CSI.
end();
I != E; ++
I) {
3416 if (IsWin64UnwindV3) {
3426 if (IsWin64UnwindV3)
3444 if (
TRI->hasBasePointer(MF)) {
3446 if (
STI.isTarget64BitILP32())
3448 SavedRegs.
set(BasePtr);
3450 if (
STI.hasUserReservedRegisters()) {
3451 for (
int Reg = SavedRegs.
find_first(); Reg != -1;
3453 if (
STI.isRegisterReservedByUser(Reg)) {
3454 SavedRegs.
reset(Reg);
3464 if (
I->hasNestAttr() && !
I->use_empty())
3481 return Primary ? X86::R14 : X86::R13;
3483 return Primary ? X86::EBX : X86::EDI;
3488 return Primary ? X86::R11 : X86::R12;
3490 return Primary ? X86::R11D : X86::R12D;
3500 "nested function.");
3501 return Primary ? X86::EAX : X86::ECX;
3504 return Primary ? X86::EDX : X86::EAX;
3505 return Primary ? X86::ECX : X86::EAX;
3516 unsigned TlsReg, TlsOffset;
3521 assert(&(*MF.
begin()) == &PrologueMBB &&
"Shrink-wrapping not supported yet");
3525 "Scratch register is live-in");
3529 if (!
STI.isTargetLinux() && !
STI.isTargetDarwin() && !
STI.isTargetWin32() &&
3530 !
STI.isTargetWin64() && !
STI.isTargetFreeBSD() &&
3531 !
STI.isTargetDragonFly())
3545 bool IsNested =
false;
3554 for (
const auto &LI : PrologueMBB.
liveins()) {
3571 if (
STI.isTargetLinux()) {
3573 TlsOffset =
IsLP64 ? 0x70 : 0x40;
3574 }
else if (
STI.isTargetDarwin()) {
3576 TlsOffset = 0x60 + 90 * 8;
3577 }
else if (
STI.isTargetWin64()) {
3580 }
else if (
STI.isTargetFreeBSD()) {
3583 }
else if (
STI.isTargetDragonFly()) {
3590 if (CompareStackPointer)
3591 ScratchReg =
IsLP64 ? X86::RSP : X86::ESP;
3609 if (
STI.isTargetLinux()) {
3612 }
else if (
STI.isTargetDarwin()) {
3614 TlsOffset = 0x48 + 90 * 4;
3615 }
else if (
STI.isTargetWin32()) {
3618 }
else if (
STI.isTargetDragonFly()) {
3621 }
else if (
STI.isTargetFreeBSD()) {
3627 if (CompareStackPointer)
3628 ScratchReg = X86::ESP;
3630 BuildMI(checkMBB,
DL,
TII.get(X86::LEA32r), ScratchReg)
3637 if (
STI.isTargetLinux() ||
STI.isTargetWin32() ||
STI.isTargetWin64() ||
3638 STI.isTargetDragonFly()) {
3646 }
else if (
STI.isTargetDarwin()) {
3649 unsigned ScratchReg2;
3651 if (CompareStackPointer) {
3654 SaveScratch2 =
false;
3666 "Scratch register is live-in and not saved");
3672 BuildMI(checkMBB,
DL,
TII.get(X86::MOV32ri), ScratchReg2)
3683 BuildMI(checkMBB,
DL,
TII.get(X86::POP32r), ScratchReg2);
3699 const unsigned RegAX =
IsLP64 ? X86::RAX : X86::EAX;
3700 const unsigned Reg10 =
IsLP64 ? X86::R10 : X86::R10D;
3701 const unsigned Reg11 =
IsLP64 ? X86::R11 : X86::R11D;
3702 const unsigned MOVrr =
IsLP64 ? X86::MOV64rr : X86::MOV32rr;
3737 if (
STI.useIndirectThunkCalls())
3739 "code model and thunks not yet implemented.");
3756 BuildMI(allocMBB,
DL,
TII.get(X86::MORESTACK_RET_RESTORE_R10));
3765#ifdef EXPENSIVE_CHECKS
3776 for (
int i = 0, e = HiPELiteralsMD->
getNumOperands(); i != e; ++i) {
3778 if (
Node->getNumOperands() != 2)
3782 if (!NodeName || !NodeVal)
3785 if (ValConst && NodeName->
getString() == LiteralName) {
3791 " required but not provided");
3802 return MI.isMetaInstruction();
3828 assert(&(*MF.
begin()) == &PrologueMBB &&
"Shrink-wrapping not supported yet");
3833 if (!HiPELiteralsMD)
3835 "Can't generate HiPE prologue without runtime parameters");
3837 HiPELiteralsMD,
Is64Bit ?
"AMD64_LEAF_WORDS" :
"X86_LEAF_WORDS");
3838 const unsigned CCRegisteredArgs =
Is64Bit ? 6 : 5;
3839 const unsigned Guaranteed = HipeLeafWords *
SlotSize;
3846 "HiPE prologue is only supported on Linux operating systems.");
3856 unsigned MoreStackForCalls = 0;
3858 for (
auto &
MBB : MF) {
3859 for (
auto &
MI :
MBB) {
3879 if (
F->getName().contains(
"erlang.") ||
F->getName().contains(
"bif_") ||
3883 unsigned CalleeStkArity =
F->arg_size() > CCRegisteredArgs
3884 ?
F->arg_size() - CCRegisteredArgs
3886 if (HipeLeafWords - 1 > CalleeStkArity)
3888 std::max(MoreStackForCalls,
3889 (HipeLeafWords - 1 - CalleeStkArity) *
SlotSize);
3892 MaxStack += MoreStackForCalls;
3897 if (MaxStack > Guaranteed) {
3901 for (
const auto &LI : PrologueMBB.
liveins()) {
3909 unsigned ScratchReg,
SPReg, PReg, SPLimitOffset;
3910 unsigned LEAop, CMPop, CALLop;
3915 LEAop = X86::LEA64r;
3916 CMPop = X86::CMP64rm;
3917 CALLop = X86::CALL64pcrel32;
3921 LEAop = X86::LEA32r;
3922 CMPop = X86::CMP32rm;
3923 CALLop = X86::CALLpcrel32;
3928 "HiPE prologue scratch register is live-in");
3935 PReg,
false, SPLimitOffset);
3945 PReg,
false, SPLimitOffset);
3955#ifdef EXPENSIVE_CHECKS
3972 if (NumPops != 1 && NumPops != 2)
3980 if (!Prev->isCall() || !Prev->getOperand(1).isRegMask())
3984 unsigned FoundRegs = 0;
3990 Is64Bit ? X86::GR64_NOREX_NOSPRegClass : X86::GR32_NOREX_NOSPRegClass;
3992 for (
auto Candidate : RegClass) {
4005 if (MO.isReg() && MO.isDef() &&
4006 TRI->isSuperOrSubRegisterEq(MO.getReg(), Candidate)) {
4015 Regs[FoundRegs++] = Candidate;
4016 if (FoundRegs == (
unsigned)NumPops)
4024 while (FoundRegs < (
unsigned)NumPops)
4025 Regs[FoundRegs++] = Regs[0];
4027 for (
int i = 0; i < NumPops; ++i)
4038 unsigned Opcode =
I->getOpcode();
4039 bool isDestroy = Opcode ==
TII.getCallFrameDestroyOpcode();
4041 uint64_t Amount =
TII.getFrameSize(*
I);
4042 uint64_t InternalAmt = (isDestroy || Amount) ?
TII.getFrameAdjustment(*
I) : 0;
4052 if (!reserveCallFrame) {
4073 bool HasDwarfEHHandlers = !WindowsCFI && !MF.
getLandingPads().empty();
4075 if (HasDwarfEHHandlers && !isDestroy &&
4085 Amount -= InternalAmt;
4095 int64_t StackAdjustment = isDestroy ? Amount : -Amount;
4096 int64_t CfaAdjustment = StackAdjustment;
4098 if (StackAdjustment) {
4107 auto CalcNewOffset = [&StackAdjustment](int64_t
Offset) {
4108 return StackAdjustment +
Offset;
4111 mergeSPUpdates(
MBB, InsertPos, CalcCfaAdjust, CalcNewOffset,
true);
4113 mergeSPUpdates(
MBB, InsertPos, CalcCfaAdjust, CalcNewOffset,
false);
4115 if (StackAdjustment) {
4116 if (!(
F.hasMinSize() &&
4117 adjustStackWithPops(
MBB, InsertPos,
DL, StackAdjustment)))
4118 BuildStackAdjustment(
MBB, InsertPos,
DL, StackAdjustment,
4144 while (CI !=
B && !std::prev(CI)->isCall())
4146 BuildStackAdjustment(
MBB, CI,
DL, -InternalAmt,
false);
4153 assert(
MBB.getParent() &&
"Block is not attached to a function!");
4155 if (!
MBB.isLiveIn(X86::EFLAGS))
4162 if (TLI.hasInlineStackProbe(MF) || TLI.hasStackProbeSymbol(MF))
4170 assert(
MBB.getParent() &&
"Block is not attached to a function!");
4176 if (
STI.isTargetWin64() && !
MBB.succ_empty() && !
MBB.isReturnBlock())
4198 bool CompactUnwind =
4214 assert(
STI.isTargetWindowsMSVC() &&
"funclets only supported in MSVC env");
4215 assert(
STI.isTargetWin32() &&
"EBP/ESI restoration only required on win32");
4217 "restoring EBP/ESI on non-32-bit target");
4229 int EHRegSize = MFI.getObjectSize(FI);
4234 X86::EBP,
true, -EHRegSize)
4240 int EndOffset = -EHRegOffset - EHRegSize;
4253 "end of registration object above normal EBP position!");
4254 }
else if (UsedReg == BasePtr) {
4264 assert(UsedReg == BasePtr);
4275 return TRI->getSlotSize();
4290 FrameBase.
Kind = DwarfFrameBase::CFA;
4296 return DwarfFrameBase{DwarfFrameBase::Register, {FrameRegister}};
4301struct X86FrameSortingObject {
4302 bool IsValid =
false;
4303 unsigned ObjectIndex = 0;
4304 unsigned ObjectSize = 0;
4306 unsigned ObjectNumUses = 0;
4322struct X86FrameSortingComparator {
4323 inline bool operator()(
const X86FrameSortingObject &
A,
4324 const X86FrameSortingObject &
B)
const {
4325 uint64_t DensityAScaled, DensityBScaled;
4345 DensityAScaled =
static_cast<uint64_t>(
A.ObjectNumUses) *
4347 DensityBScaled =
static_cast<uint64_t>(
B.ObjectNumUses) *
4358 if (DensityAScaled == DensityBScaled)
4359 return A.ObjectAlignment <
B.ObjectAlignment;
4361 return DensityAScaled < DensityBScaled;
4375 if (ObjectsToAllocate.
empty())
4387 for (
auto &Obj : ObjectsToAllocate) {
4388 SortingObjects[Obj].IsValid =
true;
4389 SortingObjects[Obj].ObjectIndex = Obj;
4393 if (ObjectSize == 0)
4395 SortingObjects[Obj].ObjectSize = 4;
4397 SortingObjects[Obj].ObjectSize = ObjectSize;
4401 for (
auto &
MBB : MF) {
4402 for (
auto &
MI :
MBB) {
4403 if (
MI.isDebugInstr())
4409 int Index = MO.getIndex();
4413 SortingObjects[Index].IsValid)
4414 SortingObjects[Index].ObjectNumUses++;
4429 for (
auto &Obj : SortingObjects) {
4433 ObjectsToAllocate[i++] = Obj.ObjectIndex;
4437 if (!
TRI->hasStackRealignment(MF) &&
hasFP(MF))
4438 std::reverse(ObjectsToAllocate.
begin(), ObjectsToAllocate.
end());
4450 Offset += getWinEHFuncletFrameSize(MF);
4465 RS->addScavengingFrameIndex(FI);
4478 adjustFrameForMsvcCxxEh(MF);
4482void X86FrameLowering::adjustFrameForMsvcCxxEh(
MachineFunction &MF)
const {
4490 int64_t MinFixedObjOffset = -
SlotSize;
4496 int FrameIndex =
H.CatchObj.FrameIndex;
4497 if ((FrameIndex != INT_MAX) && MFI.
getObjectOffset(FrameIndex) == 0) {
4500 MinFixedObjOffset -= std::abs(MinFixedObjOffset) %
Align;
4508 MinFixedObjOffset -= std::abs(MinFixedObjOffset) % 8;
4509 int64_t UnwindHelpOffset = MinFixedObjOffset -
SlotSize;
4516 MachineBasicBlock &
MBB = MF.
front();
4536 MI->eraseFromParent();
4549 bool NeedsRestore =
MBB.isEHPad() && !
MBB.isEHFuncletEntry();
4560 unsigned NumSpilledRegs) {
4562 unsigned AllocSize =
TRI->getSpillSize(*RC) * NumSpilledRegs;
4564 unsigned AlignedSize =
alignTo(AllocSize, StackAlign);
4565 return AlignedSize - AllocSize;
4571 int SPAdjust)
const {
4574 MachineBasicBlock *
MBB = BeforeMI->getParent();
4596 if (
FP.isValid() && needsDwarfCFI(MF)) {
4605 SmallString<64> CfaExpr;
4609 Offset +=
TRI->getSpillSize(*
TRI->getMinimalPhysRegClass(BP));
4612 if (
TII.isFrameSetup(*BeforeMI)) {
4614 BeforeMI = std::next(BeforeMI);
4617 if (
STI.isTarget64BitILP32())
4619 unsigned DwarfStackPtr =
TRI->getDwarfRegNum(
StackPtr,
true);
4620 CfaExpr.
push_back((uint8_t)(dwarf::DW_OP_breg0 + DwarfStackPtr));
4625 CfaExpr.
push_back((uint8_t)dwarf::DW_OP_plus);
4627 SmallString<64> DefCfaExpr;
4628 DefCfaExpr.
push_back(dwarf::DW_CFA_def_cfa_expression);
4640 int SPAdjust)
const {
4644 MachineBasicBlock *
MBB = AfterMI->getParent();
4662 if (needsDwarfCFI(MF)) {
4672void X86FrameLowering::saveAndRestoreFPBPUsingSP(
4675 assert(SpillFP || SpillBP);
4679 unsigned NumRegs = 0;
4682 FP =
TRI->getFrameRegister(MF);
4683 if (
STI.isTarget64BitILP32())
4685 RC =
TRI->getMinimalPhysRegClass(
FP);
4689 BP =
TRI->getBaseRegister();
4690 if (
STI.isTarget64BitILP32())
4692 RC =
TRI->getMinimalPhysRegClass(BP);
4697 spillFPBPUsingSP(MF, BeforeMI,
FP, BP, SPAdjust);
4698 restoreFPBPUsingSP(MF, AfterMI,
FP, BP, SPAdjust);
4701bool X86FrameLowering::skipSpillFPBP(
4703 if (
MI->getOpcode() == X86::LCMPXCHG16B_SAVE_RBX) {
4711 while (!(
MI->getOpcode() == TargetOpcode::COPY &&
4712 MI->getOperand(1).getReg() == X86::RBX) &&
4713 !((
Reg =
TII.isStoreToStackSlot(*
MI, FI)) &&
Reg == X86::RBX))
4723 AccessFP = AccessBP =
false;
4725 if (
MI.findRegisterUseOperandIdx(
FP,
TRI,
false) != -1 ||
4726 MI.findRegisterDefOperandIdx(
FP,
TRI,
false,
true) != -1)
4730 if (
MI.findRegisterUseOperandIdx(BP,
TRI,
false) != -1 ||
4731 MI.findRegisterDefOperandIdx(BP,
TRI,
false,
true) != -1)
4734 return AccessFP || AccessBP;
4747 if (!
MBB->hasEHPadSuccessor())
4760void X86FrameLowering::checkInterferedAccess(
4763 bool SpillBP)
const {
4764 if (
DefMI == KillMI)
4766 if (
TRI->hasBasePointer(MF)) {
4777 [](
const MachineOperand &MO) { return MO.isFI(); }))
4779 "Interference usage of base pointer/frame "
4810 FP =
TRI->getFrameRegister(MF);
4811 if (
TRI->hasBasePointer(MF))
4812 BP =
TRI->getBaseRegister();
4827 bool InsideEHLabels =
false;
4828 auto MI =
MBB.rbegin(), ME =
MBB.rend();
4829 auto TermMI =
MBB.getFirstTerminator();
4830 if (TermMI ==
MBB.begin())
4832 MI = *(std::prev(TermMI));
4840 isInvoke(*
MI, InsideEHLabels) || skipSpillFPBP(MF,
MI)) {
4845 if (
MI->getOpcode() == TargetOpcode::EH_LABEL) {
4846 InsideEHLabels = !InsideEHLabels;
4851 bool AccessFP, AccessBP;
4860 bool FPLive =
false, BPLive =
false;
4861 bool SpillFP =
false, SpillBP =
false;
4864 SpillFP |= AccessFP;
4865 SpillBP |= AccessBP;
4868 if (FPLive &&
MI->findRegisterDefOperandIdx(
FP,
TRI,
false,
true) != -1)
4870 if (
FP &&
MI->findRegisterUseOperandIdx(
FP,
TRI,
false) != -1)
4872 if (BPLive &&
MI->findRegisterDefOperandIdx(BP,
TRI,
false,
true) != -1)
4874 if (BP &&
MI->findRegisterUseOperandIdx(BP,
TRI,
false) != -1)
4878 }
while ((
MI != ME) &&
4879 (FPLive || BPLive ||
4883 if (FPLive && !SpillBP)
4888 if (KillMI->isCall() &&
DefMI != ME) {
4889 auto FrameSetup = std::next(
DefMI);
4893 while (FrameSetup != ME && !
TII.isFrameSetup(*FrameSetup) &&
4894 !FrameSetup->isCall())
4898 if (FrameSetup != ME &&
TII.isFrameSetup(*FrameSetup) &&
4899 (
TII.getFrameSize(*FrameSetup) ||
4900 TII.getFrameAdjustment(*FrameSetup))) {
4901 while (!
TII.isFrameInstr(*KillMI))
4909 checkInterferedAccess(MF,
DefMI, KillMI, SpillFP, SpillBP);
4912 saveAndRestoreFPBPUsingSP(MF, &(*
DefMI), &(*KillMI), SpillFP, SpillBP);
MachineInstrBuilder MachineInstrBuilder & DefMI
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static const uint64_t kSplitStackAvailable
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
MachineBasicBlock MachineBasicBlock::iterator MBBI
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
const HexagonInstrInfo * TII
Module.h This file contains the declarations for the Module class.
static cl::opt< int > PageSize("imp-null-check-page-size", cl::desc("The page size of the target in bytes"), cl::init(4096), cl::Hidden)
This file implements the LivePhysRegs utility for tracking liveness of physical registers.
static bool isTailCallOpcode(unsigned Opc)
Register const TargetRegisterInfo * TRI
Promote Memory to Register
static MCRegister getReg(const MCDisassembler *D, unsigned RC, unsigned RegNo)
static constexpr MCPhysReg FPReg
static constexpr MCPhysReg SPReg
This file declares the machine register scavenger class.
static bool contains(SmallPtrSetImpl< ConstantExpr * > &Cache, ConstantExpr *Expr, Constant *C)
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
static bool is64Bit(const char *name)
static unsigned calculateSetFPREG(uint64_t SPAdjust)
static unsigned GetScratchRegister(bool Is64Bit, bool IsLP64, const MachineFunction &MF, bool Primary)
GetScratchRegister - Get a temp register for performing work in the segmented stack and the Erlang/Hi...
static unsigned getADDriOpcode(bool IsLP64)
static unsigned getPUSH2Opcode(const X86Subtarget &ST)
static unsigned getLEArOpcode(bool IsLP64)
static unsigned getSUBriOpcode(bool IsLP64)
static bool flagsNeedToBePreservedBeforeTheTerminators(const MachineBasicBlock &MBB)
Check if the flags need to be preserved before the terminators.
static bool isFPBPAccess(const MachineInstr &MI, Register FP, Register BP, const TargetRegisterInfo *TRI, bool &AccessFP, bool &AccessBP)
static const TargetRegisterClass * getCalleeSavedSpillRC(MCRegister Reg, const X86Subtarget &STI, const TargetRegisterInfo &TRI)
static bool isOpcodeRep(unsigned Opcode)
Return true if an opcode is part of the REP group of instructions.
static unsigned getANDriOpcode(bool IsLP64, int64_t Imm)
static bool isEAXLiveIn(MachineBasicBlock &MBB)
static int computeFPBPAlignmentGap(MachineFunction &MF, const TargetRegisterClass *RC, unsigned NumSpilledRegs)
static unsigned getADDrrOpcode(bool IsLP64)
static bool HasNestArgument(const MachineFunction *MF)
static unsigned getPOPOpcode(const X86Subtarget &ST)
static bool isInvoke(const MachineInstr &MI, bool InsideEHLabels)
static unsigned getPOP2Opcode(const X86Subtarget &ST)
static unsigned getHiPELiteral(NamedMDNode *HiPELiteralsMD, const StringRef LiteralName)
Lookup an ERTS parameter in the !hipe.literals named metadata node.
static bool blockEndIsUnreachable(const MachineBasicBlock &MBB, MachineBasicBlock::const_iterator MBBI)
static unsigned getSUBrrOpcode(bool IsLP64)
static unsigned getPUSHOpcode(const X86Subtarget &ST)
constexpr uint64_t MaxSPChunk
static const unsigned FramePtr
Represent a constant reference to an array (0 or more elements consecutively in memory),...
reverse_iterator rend() const
bool empty() const
Check if the array is empty.
reverse_iterator rbegin() const
BitVector & reset()
Reset all bits in the bitvector.
int find_first() const
Returns the index of the first set bit, -1 if none of the bits are set.
BitVector & set()
Set all bits in the bitvector.
int find_next(unsigned Prev) const
Returns the index of the next set bit following the "Prev" bit.
iterator_range< const_set_bits_iterator > set_bits() const
static constexpr BranchProbability getOne()
static constexpr BranchProbability getZero()
The CalleeSavedInfo class tracks the information need to locate where a callee saved register is in t...
This is the shared class of boolean and integer constants.
uint64_t getZExtValue() const
Return the constant as a 64-bit unsigned integer value after it has been zero extended as appropriate...
CallingConv::ID getCallingConv() const
getCallingConv()/setCallingConv(CC) - These method get and set the calling convention of this functio...
bool hasPersonalityFn() const
Check whether this function has a personality function.
Constant * getPersonalityFn() const
Get the personality function associated with this function.
AttributeList getAttributes() const
Return the attribute list for this Function.
bool needsUnwindTableEntry() const
True if this function needs an unwind table.
const Argument * const_arg_iterator
bool isVarArg() const
isVarArg - Return true if this function takes a variable number of arguments.
bool hasFnAttribute(Attribute::AttrKind Kind) const
Return true if the function has the attribute.
Module * getParent()
Get the module that this global value is contained inside of...
bool usesWindowsCFI() const
static MCCFIInstruction createDefCfaRegister(MCSymbol *L, unsigned Register, SMLoc Loc={})
.cfi_def_cfa_register modifies a rule for computing CFA.
static MCCFIInstruction createGnuArgsSize(MCSymbol *L, int64_t Size, SMLoc Loc={})
A special wrapper for .cfi_escape that indicates GNU_ARGS_SIZE.
static MCCFIInstruction createRestore(MCSymbol *L, unsigned Register, SMLoc Loc={})
.cfi_restore says that the rule for Register is now the same as it was at the beginning of the functi...
static MCCFIInstruction cfiDefCfa(MCSymbol *L, unsigned Register, int64_t Offset, SMLoc Loc={})
.cfi_def_cfa defines a rule for computing CFA as: take address from Register and add Offset to it.
static MCCFIInstruction createOffset(MCSymbol *L, unsigned Register, int64_t Offset, SMLoc Loc={})
.cfi_offset Previous value of Register is saved at offset Offset from CFA.
static MCCFIInstruction createRememberState(MCSymbol *L, SMLoc Loc={})
.cfi_remember_state Save all current rules for all registers.
OpType getOperation() const
static MCCFIInstruction cfiDefCfaOffset(MCSymbol *L, int64_t Offset, SMLoc Loc={})
.cfi_def_cfa_offset modifies a rule for computing CFA.
static MCCFIInstruction createEscape(MCSymbol *L, StringRef Vals, SMLoc Loc={}, StringRef Comment="")
.cfi_escape Allows the user to add arbitrary bytes to the unwind info.
static MCCFIInstruction createAdjustCfaOffset(MCSymbol *L, int64_t Adjustment, SMLoc Loc={})
.cfi_adjust_cfa_offset Same as .cfi_def_cfa_offset, but Offset is a relative value that is added/subt...
static MCCFIInstruction createRestoreState(MCSymbol *L, SMLoc Loc={})
.cfi_restore_state Restore the previously saved state.
const MCObjectFileInfo * getObjectFileInfo() const
const MCRegisterInfo * getRegisterInfo() const
LLVM_ABI void reportError(SMLoc L, const Twine &Msg)
MCSection * getCompactUnwindSection() const
MCRegAliasIterator enumerates all registers aliasing Reg.
MCRegisterInfo base class - We assume that the target defines a static array of MCRegisterDesc object...
virtual int64_t getDwarfRegNum(MCRegister Reg, bool isEH) const
Map a target register to an equivalent dwarf register number.
Wrapper class representing physical registers. Should be passed by value.
LLVM_ABI StringRef getString() const
LLVM_ABI void transferSuccessorsAndUpdatePHIs(MachineBasicBlock *FromMBB)
Transfers all the successors, as in transferSuccessors, and update PHI operands in the successor bloc...
MachineInstrBundleIterator< const MachineInstr > const_iterator
iterator_range< livein_iterator > liveins() const
const BasicBlock * getBasicBlock() const
Return the LLVM basic block that this instance corresponded to originally.
LLVM_ABI LivenessQueryResult computeRegisterLiveness(const TargetRegisterInfo *TRI, MCRegister Reg, const_iterator Before, unsigned Neighborhood=10) const
Return whether (physical) register Reg has been defined and not killed as of just before Before.
LLVM_ABI void addSuccessor(MachineBasicBlock *Succ, BranchProbability Prob=BranchProbability::getUnknown())
Add Succ as a successor of this MachineBasicBlock.
LLVM_ABI iterator getFirstNonPHI()
Returns a pointer to the first instruction in this block that is not a PHINode instruction.
LLVM_ABI DebugLoc findDebugLoc(instr_iterator MBBI)
Find the next valid DebugLoc starting at MBBI, skipping any debug instructions.
MachineInstrBundleIterator< MachineInstr, true > reverse_iterator
void addLiveIn(MCRegister PhysReg, LaneBitmask LaneMask=LaneBitmask::getAll())
Adds the specified register as a live in.
const MachineFunction * getParent() const
Return the MachineFunction containing this basic block.
LLVM_ABI instr_iterator erase(instr_iterator I)
Remove an instruction from the instruction list and delete it.
void splice(iterator Where, MachineBasicBlock *Other, iterator From)
Take an instruction from MBB 'Other' at the position From, and insert it into this MBB right before '...
MachineInstrBundleIterator< MachineInstr > iterator
@ LQR_Live
Register is known to be (at least partially) live.
void setMachineBlockAddressTaken()
Set this block to indicate that its address is used as something other than the target of a terminato...
LLVM_ABI bool isLiveIn(MCRegister Reg, LaneBitmask LaneMask=LaneBitmask::getAll()) const
Return true if the specified register is in the live in set.
The MachineFrameInfo class represents an abstract stack frame until prolog/epilog code is inserted.
bool needsSplitStackProlog() const
Return true if this function requires a split stack prolog, even if it uses no stack space.
LLVM_ABI int CreateFixedObject(uint64_t Size, int64_t SPOffset, bool IsImmutable, bool isAliased=false)
Create a new object at a fixed location on the stack.
bool hasVarSizedObjects() const
This method may be called any time after instruction selection is complete to determine if the stack ...
uint64_t getStackSize() const
Return the number of bytes that must be allocated to hold all of the fixed size frame objects.
bool adjustsStack() const
Return true if this function adjusts the stack – e.g., when calling another function.
LLVM_ABI int CreateStackObject(uint64_t Size, Align Alignment, bool isSpillSlot, const AllocaInst *Alloca=nullptr, uint8_t ID=0)
Create a new statically sized stack object, returning a nonnegative identifier to represent it.
LLVM_ABI void ensureMaxAlignment(Align Alignment)
Make sure the function's frame is at least Align bytes aligned.
bool hasCalls() const
Return true if the current function has any function calls.
bool isFrameAddressTaken() const
This method may be called any time after instruction selection is complete to determine if there is a...
Align getMaxAlign() const
Return alignment of this function's frame.
void setObjectOffset(int ObjectIdx, int64_t SPOffset)
Set the stack frame offset of the specified object.
uint64_t getMaxCallFrameSize() const
Return the maximum size of a call frame that must be allocated for an outgoing function call.
bool hasPatchPoint() const
This method may be called any time after instruction selection is complete to determine if there is a...
bool hasOpaqueSPAdjustment() const
Returns true if the function contains opaque dynamic stack adjustments.
void setCVBytesOfCalleeSavedRegisters(unsigned S)
LLVM_ABI uint64_t estimateStackSize(const MachineFunction &MF) const
Estimate and return the size of the stack frame.
Align getObjectAlign(int ObjectIdx) const
Return the alignment of the specified stack object.
int64_t getObjectSize(int ObjectIdx) const
Return the size of the specified object.
bool hasStackMap() const
This method may be called any time after instruction selection is complete to determine if there is a...
LLVM_ABI int CreateSpillStackObject(uint64_t Size, Align Alignment, TargetStackID::Value StackID=TargetStackID::Default)
Create a new statically sized stack object that represents a spill slot, returning a nonnegative iden...
const std::vector< CalleeSavedInfo > & getCalleeSavedInfo() const
Returns a reference to call saved info vector for the current function.
int getObjectIndexEnd() const
Return one past the maximum frame object index.
bool hasCopyImplyingStackAdjustment() const
Returns true if the function contains operations which will lower down to instructions which manipula...
bool hasStackObjects() const
Return true if there are any stack objects in this function.
LLVM_ABI int CreateFixedSpillStackObject(uint64_t Size, int64_t SPOffset, bool IsImmutable=false)
Create a spill slot at a fixed location on the stack.
int64_t getObjectOffset(int ObjectIdx) const
Return the assigned stack offset of the specified object from the incoming stack pointer.
void setStackSize(uint64_t Size)
Set the size of the stack.
bool isFixedObjectIndex(int ObjectIdx) const
Returns true if the specified index corresponds to a fixed stack object.
int getObjectIndexBegin() const
Return the minimum frame object index.
void setOffsetAdjustment(int64_t Adj)
Set the correction for frame offsets.
const WinEHFuncInfo * getWinEHFuncInfo() const
getWinEHFuncInfo - Return information about how the current function uses Windows exception handling.
unsigned addFrameInst(const MCCFIInstruction &Inst)
void setHasWinCFI(bool v)
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
const std::vector< MCCFIInstruction > & getFrameInstructions() const
Returns a reference to a list of cfi instructions in the function's prologue.
bool hasInlineAsm() const
Returns true if the function contains any inline assembly.
void makeDebugValueSubstitution(DebugInstrOperandPair, DebugInstrOperandPair, unsigned SubReg=0)
Create a substitution between one <instr,operand> value to a different, new value.
bool needsFrameMoves() const
True if this function needs frame moves for debug or exceptions.
MachineFrameInfo & getFrameInfo()
getFrameInfo - Return the frame info object for the current function.
bool callsUnwindInit() const
void push_front(MachineBasicBlock *MBB)
const char * createExternalSymbolName(StringRef Name)
Allocate a string and populate it with the given external symbol name.
MCContext & getContext() const
bool callsEHReturn() const
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
bool verify(Pass *p=nullptr, const char *Banner=nullptr, raw_ostream *OS=nullptr, bool AbortOnError=true) const
Run the current MachineFunction through the machine code verifier, useful for debugger use.
Function & getFunction()
Return the LLVM function that this machine code represents.
const std::vector< LandingPadInfo > & getLandingPads() const
Return a reference to the landing pad info for the current function.
BasicBlockListType::iterator iterator
bool disableFramePointerElim() const
Returns true if frame pointer elimination should be disabled for this function.
bool shouldSplitStack() const
Should we be emitting segmented stack stuff for the function.
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
const MachineBasicBlock & front() const
MachineMemOperand * getMachineMemOperand(MachinePointerInfo PtrInfo, MachineMemOperand::Flags F, LLT MemTy, Align BaseAlignment, const MMOMetadata &Metadata=MMOMetadata(), SyncScope::ID SSID=SyncScope::System, AtomicOrdering Ordering=AtomicOrdering::NotAtomic, AtomicOrdering FailureOrdering=AtomicOrdering::NotAtomic)
getMachineMemOperand - Allocate a new MachineMemOperand.
bool hasEHFunclets() const
MachineBasicBlock * CreateMachineBasicBlock(const BasicBlock *BB=nullptr, std::optional< UniqueBBID > BBID=std::nullopt)
CreateMachineInstr - Allocate a new MachineInstr.
void insert(iterator MBBI, MachineBasicBlock *MBB)
const TargetMachine & getTarget() const
getTarget - Return the target machine this machine code is compiled with
const MachineInstrBuilder & addExternalSymbol(const char *FnName, unsigned TargetFlags=0) const
const MachineInstrBuilder & addCFIIndex(unsigned CFIIndex) const
const MachineInstrBuilder & addUse(Register RegNo, RegState Flags={}, unsigned SubReg=0) const
Add a virtual register use operand.
const MachineInstrBuilder & addReg(Register RegNo, RegState Flags={}, unsigned SubReg=0) const
Add a new virtual register operand.
const MachineInstrBuilder & setMIFlag(MachineInstr::MIFlag Flag) const
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
const MachineInstrBuilder & addMBB(MachineBasicBlock *MBB, unsigned TargetFlags=0) const
const MachineInstrBuilder & addMemOperand(MachineMemOperand *MMO) const
Representation of each machine instruction.
unsigned getNumOperands() const
Retuns the total number of operands.
const DebugLoc & getDebugLoc() const
Returns the debug location id of this MachineInstr.
LLVM_ABI unsigned getDebugInstrNum()
Fetch the instruction number of this MachineInstr.
const MachineOperand & getOperand(unsigned i) const
@ MOVolatile
The memory access is volatile.
@ MOLoad
The memory access reads data.
@ MOStore
The memory access writes data.
MachineOperand class - Representation of each machine instruction operand.
const GlobalValue * getGlobal() const
MachineBasicBlock * getMBB() const
void setIsDead(bool Val=true)
bool isGlobal() const
isGlobal - Tests if this is a MO_GlobalAddress operand.
static bool clobbersPhysReg(const uint32_t *RegMask, MCRegister PhysReg)
clobbersPhysReg - Returns true if this RegMask clobbers PhysReg.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
bool isReserved(MCRegister PhysReg) const
isReserved - Returns true when PhysReg is a reserved register.
LLVM_ABI Register createVirtualRegister(const TargetRegisterClass *RegClass, StringRef Name="")
createVirtualRegister - Create and return a new virtual register in the function with the specified r...
LLVM_ABI bool isLiveIn(Register Reg) const
NamedMDNode * getNamedMetadata(StringRef Name) const
Return the first NamedMDNode in the module with the specified name.
WinX64EHUnwindMode getWinX64EHUnwindMode() const
Get how unwind information should be generated for x64 Windows.
unsigned getCodeViewFlag() const
Returns the CodeView Version by checking module flags.
Represent a mutable reference to an array (0 or more elements consecutively in memory),...
LLVM_ABI MDNode * getOperand(unsigned i) const
LLVM_ABI unsigned getNumOperands() const
Wrapper class representing virtual and physical registers.
constexpr bool isValid() const
SlotIndex - An opaque wrapper around machine indexes.
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
void append(StringRef RHS)
Append from a StringRef.
StringRef str() const
Explicit conversion to StringRef.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void push_back(const T &Elt)
StackOffset holds a fixed and a scalable offset in bytes.
int64_t getFixed() const
Returns the fixed component of the stack.
static StackOffset getFixed(int64_t Fixed)
Represent a constant reference to a string, i.e.
static constexpr size_t npos
unsigned getStackAlignment() const
getStackAlignment - This method returns the number of bytes to which the stack pointer must be aligne...
bool hasFP(const MachineFunction &MF) const
hasFP - Return true if the specified function should have a dedicated frame pointer register.
virtual void determineCalleeSaves(MachineFunction &MF, BitVector &SavedRegs, RegScavenger *RS=nullptr) const
This method determines which of the registers reported by TargetRegisterInfo::getCalleeSavedRegs() sh...
int getOffsetOfLocalArea() const
getOffsetOfLocalArea - This method returns the offset of the local area from the stack pointer on ent...
TargetFrameLowering(StackDirection D, Align StackAl, int LAO, Align TransAl=Align(1), bool StackReal=true)
Align getStackAlign() const
getStackAlignment - This method returns the number of bytes to which the stack pointer must be aligne...
const Triple & getTargetTriple() const
const MCAsmInfo & getMCAsmInfo() const
Return target specific asm information.
CodeModel::Model getCodeModel() const
Returns the code model.
SwiftAsyncFramePointerMode SwiftAsyncFramePointer
Control when and how the Swift async frame pointer bit should be set.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
virtual Register getFrameRegister(const MachineFunction &MF) const =0
Debug information queries.
virtual const TargetFrameLowering * getFrameLowering() const
virtual const TargetRegisterInfo * getRegisterInfo() const =0
Return the target's register information.
bool isUEFI() const
Tests whether the OS is UEFI.
bool isOSWindows() const
Tests whether the OS is Windows.
bool has128ByteRedZone(const MachineFunction &MF) const
Return true if the function has a redzone (accessible bytes past the frame of the top of stack functi...
void spillFPBP(MachineFunction &MF) const override
If a function uses base pointer and the base pointer is clobbered by inline asm, RA doesn't detect th...
bool canSimplifyCallFramePseudos(const MachineFunction &MF) const override
canSimplifyCallFramePseudos - If there is a reserved call frame, the call frame pseudos can be simpli...
bool needsFrameIndexResolution(const MachineFunction &MF) const override
X86FrameLowering(const X86Subtarget &STI, MaybeAlign StackAlignOverride)
const X86RegisterInfo * TRI
void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const override
bool hasFPImpl(const MachineFunction &MF) const override
hasFPImpl - Return true if the specified function should have a dedicated frame pointer register.
MachineBasicBlock::iterator restoreWin32EHStackPointers(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, const DebugLoc &DL, bool RestoreSP=false) const
Sets up EBP and optionally ESI based on the incoming EBP value.
int getInitialCFAOffset(const MachineFunction &MF) const override
Return initial CFA offset value i.e.
bool canUseAsPrologue(const MachineBasicBlock &MBB) const override
Check whether or not the given MBB can be used as a prologue for the target.
bool hasReservedCallFrame(const MachineFunction &MF) const override
hasReservedCallFrame - Under normal circumstances, when a frame pointer is not required,...
void emitStackProbe(MachineFunction &MF, MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, const DebugLoc &DL, bool InProlog, std::optional< MachineFunction::DebugInstrOperandPair > InstrNum=std::nullopt) const
Emit target stack probe code.
void processFunctionBeforeFrameFinalized(MachineFunction &MF, RegScavenger *RS) const override
processFunctionBeforeFrameFinalized - This method is called immediately before the specified function...
void emitCalleeSavedFrameMoves(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, const DebugLoc &DL, bool IsPrologue) const
void determineCalleeSaves(MachineFunction &MF, BitVector &SavedRegs, RegScavenger *RS=nullptr) const override
This method determines which of the registers reported by TargetRegisterInfo::getCalleeSavedRegs() sh...
int64_t mergeSPAdd(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, int64_t AddOffset, bool doMergeWithPrevious) const
Equivalent to: mergeSPUpdates(MBB, MBBI, [AddOffset](int64_t Offset) { return AddOffset + Offset; }...
StackOffset getFrameIndexReferenceSP(const MachineFunction &MF, int FI, Register &SPReg, int Adjustment) const
bool assignCalleeSavedSpillSlots(MachineFunction &MF, const TargetRegisterInfo *TRI, std::vector< CalleeSavedInfo > &CSI) const override
assignCalleeSavedSpillSlots - Allows target to override spill slot assignment logic.
bool enableShrinkWrapping(const MachineFunction &MF) const override
Returns true if the target will correctly handle shrink wrapping.
StackOffset getFrameIndexReference(const MachineFunction &MF, int FI, Register &FrameReg) const override
getFrameIndexReference - This method should return the base register and offset used to reference a f...
void inlineStackProbe(MachineFunction &MF, MachineBasicBlock &PrologMBB) const override
Replace a StackProbe inline-stub with the actual probe code inline.
bool restoreCalleeSavedRegisters(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, MutableArrayRef< CalleeSavedInfo > CSI, const TargetRegisterInfo *TRI) const override
restoreCalleeSavedRegisters - Issues instruction(s) to restore all callee saved registers and returns...
MachineBasicBlock::iterator eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB, MachineBasicBlock::iterator MI) const override
This method is called during prolog/epilog code insertion to eliminate call frame setup and destroy p...
void emitSPUpdate(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, const DebugLoc &DL, int64_t NumBytes, bool InEpilogue) const
Emit a series of instructions to increment / decrement the stack pointer by a constant value.
bool canUseAsEpilogue(const MachineBasicBlock &MBB) const override
Check whether or not the given MBB can be used as a epilogue for the target.
bool Is64Bit
Is64Bit implies that x86_64 instructions are available.
Register getInitialCFARegister(const MachineFunction &MF) const override
Return initial CFA register value i.e.
bool Uses64BitFramePtr
True if the 64-bit frame or stack pointer should be used.
unsigned getWinEHParentFrameOffset(const MachineFunction &MF) const override
void adjustForSegmentedStacks(MachineFunction &MF, MachineBasicBlock &PrologueMBB) const override
Adjust the prologue to have the function use segmented stacks.
DwarfFrameBase getDwarfFrameBase(const MachineFunction &MF) const override
Return the frame base information to be encoded in the DWARF subprogram debug info.
void emitCalleeSavedFrameMovesFullCFA(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI) const override
Emits Dwarf Info specifying offsets of callee saved registers and frame pointer.
int getWin64EHFrameIndexRef(const MachineFunction &MF, int FI, Register &SPReg) const
bool canUseLEAForSPInEpilogue(const MachineFunction &MF) const
Check that LEA can be used on SP in an epilogue sequence for MF.
bool stackProbeFunctionModifiesSP() const override
Does the stack probe function call return with a modified stack pointer?
void orderFrameObjects(const MachineFunction &MF, SmallVectorImpl< int > &ObjectsToAllocate) const override
Order the symbols in the local stack.
void BuildCFI(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, const DebugLoc &DL, const MCCFIInstruction &CFIInst, MachineInstr::MIFlag Flag=MachineInstr::NoFlags) const
Wraps up getting a CFI index and building a MachineInstr for it.
void emitPrologue(MachineFunction &MF, MachineBasicBlock &MBB) const override
emitProlog/emitEpilog - These methods insert prolog and epilog code into the function.
void processFunctionBeforeFrameIndicesReplaced(MachineFunction &MF, RegScavenger *RS) const override
processFunctionBeforeFrameIndicesReplaced - This method is called immediately before MO_FrameIndex op...
StackOffset getFrameIndexReferencePreferSP(const MachineFunction &MF, int FI, Register &FrameReg, bool IgnoreSPUpdates) const override
Same as getFrameIndexReference, except that the stack pointer (as opposed to the frame pointer) will ...
void restoreWinEHStackPointersInParent(MachineFunction &MF) const
bool spillCalleeSavedRegisters(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, ArrayRef< CalleeSavedInfo > CSI, const TargetRegisterInfo *TRI) const override
spillCalleeSavedRegisters - Issues instruction(s) to spill all callee saved registers and returns tru...
void adjustForHiPEPrologue(MachineFunction &MF, MachineBasicBlock &PrologueMBB) const override
Erlang programs may need a special prologue to handle the stack size they might need at runtime.
X86MachineFunctionInfo - This class is derived from MachineFunction and contains private X86 target-s...
bool getForceFramePointer() const
bool isCandidateForPush2Pop2(Register Reg) const
unsigned getArgumentStackSize() const
bool getFPClobberedByCall() const
int getRestoreBasePointerOffset() const
int getSEHFramePtrSaveIndex() const
bool hasCFIAdjustCfa() const
int getTCReturnAddrDelta() const
void setRestoreBasePointer(const MachineFunction *MF)
bool getHasSEHFramePtrSave() const
DenseMap< int, unsigned > & getWinEHXMMSlotInfo()
bool getBPClobberedByCall() const
void setUsesRedZone(bool V)
bool hasPreallocatedCall() const
bool hasSwiftAsyncContext() const
void setHasSEHFramePtrSave(bool V)
bool getRestoreBasePointer() const
MachineInstr * getStackPtrSaveMI() const
size_t getNumCandidatesForPush2Pop2() const
AMXProgModelEnum getAMXProgModel() const
void addCandidateForPush2Pop2(Register Reg)
unsigned getCalleeSavedFrameSize() const
bool getHasPushSequences() const
void setStackPtrSaveMI(MachineInstr *MI)
bool getUsesRedZone() const
void setCalleeSavedFrameSize(unsigned bytes)
void setSEHFramePtrSaveIndex(int Index)
const X86TargetLowering * getTargetLowering() const override
bool isTargetWindowsCoreCLR() const
self_iterator getIterator()
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
constexpr char Align[]
Key for Kernel::Arg::Metadata::mAlign.
uint16_t StackAdjustment(const RuntimeFunction &RF)
StackAdjustment - calculated stack adjustment in words.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
@ HiPE
Used by the High-Performance Erlang Compiler (HiPE).
@ X86_INTR
x86 hardware interrupt context.
@ Fast
Attempts to make calls as fast as possible (e.g.
@ Tail
Attemps to make calls as fast as possible while guaranteeing that tail call optimization can always b...
@ X86_FastCall
'fast' analog of X86_StdCall.
@ BasicBlock
Various leaf nodes.
@ MO_GOTPCREL
MO_GOTPCREL - On a symbol operand this indicates that the immediate is offset to the GOT entry for th...
unsigned getMOVriOpcode(bool Use64BitReg, int64_t Imm)
Return a MOVri opcode for materializing Imm into a 32- or 64-bit GPR.
This is an optimization pass for GlobalISel generic memory operations.
void stable_sort(R &&Range)
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
constexpr bool isInt(int64_t x)
Checks if an integer fits into the given bit width.
@ Implicit
Not emitted register (e.g. carry, or temporary result).
@ Kill
The last use of a register.
@ Undef
Value of the register doesn't matter.
@ Define
Register definition.
constexpr RegState getKillRegState(bool B)
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
bool isAligned(Align Lhs, uint64_t SizeInBytes)
Checks that SizeInBytes is a multiple of the alignment.
MCRegister getX86SubSuperRegister(MCRegister Reg, unsigned Size, bool High=false)
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
static const MachineInstrBuilder & addFrameReference(const MachineInstrBuilder &MIB, int FI, int Offset=0, bool mem=true)
addFrameReference - This function is used to add a reference to the base of an abstract object on the...
constexpr T alignDown(U Value, V Align, W Skew=0)
Returns the largest unsigned integer less than or equal to Value and is Skew mod Align.
IterT skipDebugInstructionsForward(IterT It, IterT End, bool SkipPseudoOp=true)
Increment It until it points to a non-debug instruction or to End and return the resulting iterator.
auto dyn_cast_or_null(const Y &Val)
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
static bool isFuncletReturnInstr(const MachineInstr &MI)
auto reverse(ContainerTy &&C)
@ Always
Always set the bit.
@ Never
Never set the bit.
@ DeploymentBased
Determine whether to set the bit statically or dynamically based on the deployment target.
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
constexpr uint64_t alignTo(uint64_t Size, Align A)
Returns a multiple of A needed to store Size bytes.
constexpr RegState getDefRegState(bool B)
constexpr bool isUInt(uint64_t x)
Checks if an unsigned integer fits into the given bit width.
bool requireWinX64UnwindV3(const MachineFunction &MF)
Returns true when MF must use Windows x64 Unwind V3: the module is in V3 mode, or the function needs ...
LLVM_ABI EHPersonality classifyEHPersonality(const Value *Pers)
See if the given exception handling personality function is one that we understand.
IterT skipDebugInstructionsBackward(IterT It, IterT Begin, bool SkipPseudoOp=true)
Decrement It until it points to a non-debug instruction or to Begin and return the resulting iterator...
bool isAsynchronousEHPersonality(EHPersonality Pers)
Returns true if this personality function catches asynchronous exceptions.
@ DwarfCFI
DWARF-like instruction based exceptions.
unsigned encodeSLEB128(int64_t Value, raw_ostream &OS, unsigned PadTo=0)
Utility function to encode a SLEB128 value to an output stream.
auto count_if(R &&Range, UnaryPredicate P)
Wrapper function around std::count_if to count the number of times an element satisfying a given pred...
auto find_if(R &&Range, UnaryPredicate P)
Provide wrappers to std::find_if which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI void computeAndAddLiveIns(LivePhysRegs &LiveRegs, MachineBasicBlock &MBB)
Convenience function combining computeLiveIns() and addLiveIns().
unsigned encodeULEB128(uint64_t Value, raw_ostream &OS, unsigned PadTo=0)
Utility function to encode a ULEB128 value to an output stream.
static const MachineInstrBuilder & addRegOffset(const MachineInstrBuilder &MIB, Register Reg, bool isKill, int Offset)
addRegOffset - This function is used to add a memory reference of the form [Reg + Offset],...
constexpr RegState getUndefRegState(bool B)
void fullyRecomputeLiveIns(ArrayRef< MachineBasicBlock * > MBBs)
Convenience function for recomputing live-in's for a set of MBBs until the computation converges.
MCRegisterClass TargetRegisterClass
This struct is a compact representation of a valid (non-zero power of two) alignment.
constexpr uint64_t value() const
This is a hole in the type system and should not be abused.
Pair of physical register and lane mask.
This class contains a discriminated union of information about pointers in memory operands,...
static LLVM_ABI MachinePointerInfo getFixedStack(MachineFunction &MF, int FI, int64_t Offset=0)
Return a MachinePointerInfo record that refers to the specified FrameIndex.
This struct is a compact representation of a valid (power of two) or undefined (0) alignment.
union llvm::TargetFrameLowering::DwarfFrameBase::@004076321055032247336074224075335064105264310375 Location
enum llvm::TargetFrameLowering::DwarfFrameBase::FrameBaseKind Kind
SmallVector< WinEHTryBlockMapEntry, 4 > TryBlockMap
SmallVector< WinEHHandlerType, 1 > HandlerArray