LLVM 19.0.0git
LoongArchFrameLowering.cpp
Go to the documentation of this file.
1//===-- LoongArchFrameLowering.cpp - LoongArch Frame Information -*- C++ -*-==//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file contains the LoongArch implementation of TargetFrameLowering class.
10//
11//===----------------------------------------------------------------------===//
12
15#include "LoongArchSubtarget.h"
24#include "llvm/MC/MCDwarf.h"
25
26using namespace llvm;
27
28#define DEBUG_TYPE "loongarch-frame-lowering"
29
30// Return true if the specified function should have a dedicated frame
31// pointer register. This is true if frame pointer elimination is
32// disabled, if it needs dynamic stack realignment, if the function has
33// variable sized allocas, or if the frame address is taken.
35 const TargetRegisterInfo *RegInfo = MF.getSubtarget().getRegisterInfo();
36
37 const MachineFrameInfo &MFI = MF.getFrameInfo();
39 RegInfo->hasStackRealignment(MF) || MFI.hasVarSizedObjects() ||
41}
42
44 const MachineFrameInfo &MFI = MF.getFrameInfo();
46
47 return MFI.hasVarSizedObjects() && TRI->hasStackRealignment(MF);
48}
49
50void LoongArchFrameLowering::adjustReg(MachineBasicBlock &MBB,
52 const DebugLoc &DL, Register DestReg,
53 Register SrcReg, int64_t Val,
54 MachineInstr::MIFlag Flag) const {
55 const LoongArchInstrInfo *TII = STI.getInstrInfo();
56 bool IsLA64 = STI.is64Bit();
57 unsigned Addi = IsLA64 ? LoongArch::ADDI_D : LoongArch::ADDI_W;
58
59 if (DestReg == SrcReg && Val == 0)
60 return;
61
62 if (isInt<12>(Val)) {
63 // addi.w/d $DstReg, $SrcReg, Val
64 BuildMI(MBB, MBBI, DL, TII->get(Addi), DestReg)
65 .addReg(SrcReg)
66 .addImm(Val)
67 .setMIFlag(Flag);
68 return;
69 }
70
71 // Try to split the offset across two ADDIs. We need to keep the stack pointer
72 // aligned after each ADDI. We need to determine the maximum value we can put
73 // in each ADDI. In the negative direction, we can use -2048 which is always
74 // sufficiently aligned. In the positive direction, we need to find the
75 // largest 12-bit immediate that is aligned. Exclude -4096 since it can be
76 // created with LU12I.W.
77 assert(getStackAlign().value() < 2048 && "Stack alignment too large");
78 int64_t MaxPosAdjStep = 2048 - getStackAlign().value();
79 if (Val > -4096 && Val <= (2 * MaxPosAdjStep)) {
80 int64_t FirstAdj = Val < 0 ? -2048 : MaxPosAdjStep;
81 Val -= FirstAdj;
82 BuildMI(MBB, MBBI, DL, TII->get(Addi), DestReg)
83 .addReg(SrcReg)
84 .addImm(FirstAdj)
85 .setMIFlag(Flag);
86 BuildMI(MBB, MBBI, DL, TII->get(Addi), DestReg)
87 .addReg(DestReg, RegState::Kill)
88 .addImm(Val)
89 .setMIFlag(Flag);
90 return;
91 }
92
93 unsigned Opc = IsLA64 ? LoongArch::ADD_D : LoongArch::ADD_W;
94 if (Val < 0) {
95 Val = -Val;
96 Opc = IsLA64 ? LoongArch::SUB_D : LoongArch::SUB_W;
97 }
98
100 Register ScratchReg = MRI.createVirtualRegister(&LoongArch::GPRRegClass);
101 TII->movImm(MBB, MBBI, DL, ScratchReg, Val, Flag);
102 BuildMI(MBB, MBBI, DL, TII->get(Opc), DestReg)
103 .addReg(SrcReg)
104 .addReg(ScratchReg, RegState::Kill)
105 .setMIFlag(Flag);
106}
107
108// Determine the size of the frame and maximum call frame size.
109void LoongArchFrameLowering::determineFrameLayout(MachineFunction &MF) const {
110 MachineFrameInfo &MFI = MF.getFrameInfo();
111
112 // Get the number of bytes to allocate from the FrameInfo.
113 uint64_t FrameSize = MFI.getStackSize();
114
115 // Make sure the frame is aligned.
116 FrameSize = alignTo(FrameSize, getStackAlign());
117
118 // Update frame info.
119 MFI.setStackSize(FrameSize);
120}
121
123 const MachineFunction &MF) {
124 uint64_t FuncSize = 0;
125 for (auto &MBB : MF)
126 for (auto &MI : MBB)
127 FuncSize += TII->getInstSizeInBytes(MI);
128 return FuncSize;
129}
130
133 return false;
134 for (auto &MBB : MF)
135 for (auto &MI : MBB)
136 if (MI.getOpcode() == LoongArch::PseudoST_CFR)
137 return true;
138 return false;
139}
140
142 MachineFunction &MF, RegScavenger *RS) const {
143 const LoongArchRegisterInfo *RI = STI.getRegisterInfo();
144 const TargetRegisterClass &RC = LoongArch::GPRRegClass;
145 const LoongArchInstrInfo *TII = STI.getInstrInfo();
148 MachineFrameInfo &MFI = MF.getFrameInfo();
149
150 unsigned ScavSlotsNum = 0;
151
152 // Far branches beyond 27-bit offset require a spill slot for scratch register.
153 bool IsLargeFunction = !isInt<27>(estimateFunctionSizeInBytes(TII, MF));
154 if (IsLargeFunction)
155 ScavSlotsNum = 1;
156
157 // estimateStackSize has been observed to under-estimate the final stack
158 // size, so give ourselves wiggle-room by checking for stack size
159 // representable an 11-bit signed field rather than 12-bits.
160 if (!isInt<11>(MFI.estimateStackSize(MF)))
161 ScavSlotsNum = std::max(ScavSlotsNum, 1u);
162
163 // For CFR spill.
164 if (needScavSlotForCFR(MF))
165 ++ScavSlotsNum;
166
167 // Create emergency spill slots.
168 for (unsigned i = 0; i < ScavSlotsNum; ++i) {
169 int FI = MFI.CreateStackObject(RI->getSpillSize(RC), RI->getSpillAlign(RC),
170 false);
172 if (IsLargeFunction && LAFI->getBranchRelaxationSpillFrameIndex() == -1)
174 LLVM_DEBUG(dbgs() << "Allocated FI(" << FI
175 << ") as the emergency spill slot.\n");
176 }
177}
178
180 MachineBasicBlock &MBB) const {
181 MachineFrameInfo &MFI = MF.getFrameInfo();
182 auto *LoongArchFI = MF.getInfo<LoongArchMachineFunctionInfo>();
183 const LoongArchRegisterInfo *RI = STI.getRegisterInfo();
184 const LoongArchInstrInfo *TII = STI.getInstrInfo();
186 bool IsLA64 = STI.is64Bit();
187
188 Register SPReg = LoongArch::R3;
189 Register FPReg = LoongArch::R22;
190
191 // Debug location must be unknown since the first debug location is used
192 // to determine the end of the prologue.
193 DebugLoc DL;
194 // All calls are tail calls in GHC calling conv, and functions have no
195 // prologue/epilogue.
197 return;
198 // Determine the correct frame layout
199 determineFrameLayout(MF);
200
201 // First, compute final stack size.
202 uint64_t StackSize = MFI.getStackSize();
203 uint64_t RealStackSize = StackSize;
204
205 // Early exit if there is no need to allocate space in the stack.
206 if (StackSize == 0 && !MFI.adjustsStack())
207 return;
208
209 uint64_t FirstSPAdjustAmount = getFirstSPAdjustAmount(MF);
210 // Split the SP adjustment to reduce the offsets of callee saved spill.
211 if (FirstSPAdjustAmount)
212 StackSize = FirstSPAdjustAmount;
213
214 // Adjust stack.
215 adjustReg(MBB, MBBI, DL, SPReg, SPReg, -StackSize, MachineInstr::FrameSetup);
216 // Emit ".cfi_def_cfa_offset StackSize".
217 unsigned CFIIndex =
218 MF.addFrameInst(MCCFIInstruction::cfiDefCfaOffset(nullptr, StackSize));
219 BuildMI(MBB, MBBI, DL, TII->get(TargetOpcode::CFI_INSTRUCTION))
220 .addCFIIndex(CFIIndex)
222
223 const auto &CSI = MFI.getCalleeSavedInfo();
224
225 // The frame pointer is callee-saved, and code has been generated for us to
226 // save it to the stack. We need to skip over the storing of callee-saved
227 // registers as the frame pointer must be modified after it has been saved
228 // to the stack, not before.
229 std::advance(MBBI, CSI.size());
230
231 // Iterate over list of callee-saved registers and emit .cfi_offset
232 // directives.
233 for (const auto &Entry : CSI) {
234 int64_t Offset = MFI.getObjectOffset(Entry.getFrameIdx());
235 unsigned CFIIndex = MF.addFrameInst(MCCFIInstruction::createOffset(
236 nullptr, RI->getDwarfRegNum(Entry.getReg(), true), Offset));
237 BuildMI(MBB, MBBI, DL, TII->get(TargetOpcode::CFI_INSTRUCTION))
238 .addCFIIndex(CFIIndex)
240 }
241
242 // Generate new FP.
243 if (hasFP(MF)) {
244 adjustReg(MBB, MBBI, DL, FPReg, SPReg,
245 StackSize - LoongArchFI->getVarArgsSaveSize(),
247
248 // Emit ".cfi_def_cfa $fp, LoongArchFI->getVarArgsSaveSize()"
249 unsigned CFIIndex = MF.addFrameInst(
250 MCCFIInstruction::cfiDefCfa(nullptr, RI->getDwarfRegNum(FPReg, true),
251 LoongArchFI->getVarArgsSaveSize()));
252 BuildMI(MBB, MBBI, DL, TII->get(TargetOpcode::CFI_INSTRUCTION))
253 .addCFIIndex(CFIIndex)
255 }
256
257 // Emit the second SP adjustment after saving callee saved registers.
258 if (FirstSPAdjustAmount) {
259 uint64_t SecondSPAdjustAmount = RealStackSize - FirstSPAdjustAmount;
260 assert(SecondSPAdjustAmount > 0 &&
261 "SecondSPAdjustAmount should be greater than zero");
262 adjustReg(MBB, MBBI, DL, SPReg, SPReg, -SecondSPAdjustAmount,
264
265 if (!hasFP(MF)) {
266 // If we are using a frame-pointer, and thus emitted ".cfi_def_cfa fp, 0",
267 // don't emit an sp-based .cfi_def_cfa_offset
268 // Emit ".cfi_def_cfa_offset RealStackSize"
269 unsigned CFIIndex = MF.addFrameInst(
270 MCCFIInstruction::cfiDefCfaOffset(nullptr, RealStackSize));
271 BuildMI(MBB, MBBI, DL, TII->get(TargetOpcode::CFI_INSTRUCTION))
272 .addCFIIndex(CFIIndex)
274 }
275 }
276
277 if (hasFP(MF)) {
278 // Realign stack.
279 if (RI->hasStackRealignment(MF)) {
280 unsigned Align = Log2(MFI.getMaxAlign());
281 assert(Align > 0 && "The stack realignment size is invalid!");
282 BuildMI(MBB, MBBI, DL,
283 TII->get(IsLA64 ? LoongArch::BSTRINS_D : LoongArch::BSTRINS_W),
284 SPReg)
285 .addReg(SPReg)
286 .addReg(LoongArch::R0)
287 .addImm(Align - 1)
288 .addImm(0)
290 // FP will be used to restore the frame in the epilogue, so we need
291 // another base register BP to record SP after re-alignment. SP will
292 // track the current stack after allocating variable sized objects.
293 if (hasBP(MF)) {
294 // move BP, $sp
295 BuildMI(MBB, MBBI, DL, TII->get(LoongArch::OR),
297 .addReg(SPReg)
298 .addReg(LoongArch::R0)
300 }
301 }
302 }
303}
304
306 MachineBasicBlock &MBB) const {
307 const LoongArchRegisterInfo *RI = STI.getRegisterInfo();
308 MachineFrameInfo &MFI = MF.getFrameInfo();
309 auto *LoongArchFI = MF.getInfo<LoongArchMachineFunctionInfo>();
310 Register SPReg = LoongArch::R3;
311 // All calls are tail calls in GHC calling conv, and functions have no
312 // prologue/epilogue.
314 return;
316 DebugLoc DL = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc();
317
318 const auto &CSI = MFI.getCalleeSavedInfo();
319 // Skip to before the restores of callee-saved registers.
320 auto LastFrameDestroy = MBBI;
321 if (!CSI.empty())
322 LastFrameDestroy = std::prev(MBBI, CSI.size());
323
324 // Get the number of bytes from FrameInfo.
325 uint64_t StackSize = MFI.getStackSize();
326
327 // Restore the stack pointer.
328 if (RI->hasStackRealignment(MF) || MFI.hasVarSizedObjects()) {
329 assert(hasFP(MF) && "frame pointer should not have been eliminated");
330 adjustReg(MBB, LastFrameDestroy, DL, SPReg, LoongArch::R22,
331 -StackSize + LoongArchFI->getVarArgsSaveSize(),
333 }
334
335 uint64_t FirstSPAdjustAmount = getFirstSPAdjustAmount(MF);
336 if (FirstSPAdjustAmount) {
337 uint64_t SecondSPAdjustAmount = StackSize - FirstSPAdjustAmount;
338 assert(SecondSPAdjustAmount > 0 &&
339 "SecondSPAdjustAmount should be greater than zero");
340
341 adjustReg(MBB, LastFrameDestroy, DL, SPReg, SPReg, SecondSPAdjustAmount,
343 StackSize = FirstSPAdjustAmount;
344 }
345
346 // Deallocate stack
347 adjustReg(MBB, MBBI, DL, SPReg, SPReg, StackSize, MachineInstr::FrameDestroy);
348}
349
350// We would like to split the SP adjustment to reduce prologue/epilogue
351// as following instructions. In this way, the offset of the callee saved
352// register could fit in a single store.
353// e.g.
354// addi.d $sp, $sp, -2032
355// st.d $ra, $sp, 2024
356// st.d $fp, $sp, 2016
357// addi.d $sp, $sp, -16
359 const MachineFunction &MF) const {
360 const MachineFrameInfo &MFI = MF.getFrameInfo();
361 const std::vector<CalleeSavedInfo> &CSI = MFI.getCalleeSavedInfo();
362
363 // Return the FirstSPAdjustAmount if the StackSize can not fit in a signed
364 // 12-bit and there exists a callee-saved register needing to be pushed.
365 if (!isInt<12>(MFI.getStackSize()) && (CSI.size() > 0)) {
366 // FirstSPAdjustAmount is chosen as (2048 - StackAlign) because 2048 will
367 // cause sp = sp + 2048 in the epilogue to be split into multiple
368 // instructions. Offsets smaller than 2048 can fit in a single load/store
369 // instruction, and we have to stick with the stack alignment.
370 // So (2048 - StackAlign) will satisfy the stack alignment.
371 return 2048 - getStackAlign().value();
372 }
373 return 0;
374}
375
377 BitVector &SavedRegs,
378 RegScavenger *RS) const {
380 // Unconditionally spill RA and FP only if the function uses a frame
381 // pointer.
382 if (hasFP(MF)) {
383 SavedRegs.set(LoongArch::R1);
384 SavedRegs.set(LoongArch::R22);
385 }
386 // Mark BP as used if function has dedicated base pointer.
387 if (hasBP(MF))
388 SavedRegs.set(LoongArchABI::getBPReg());
389}
390
391// Do not preserve stack space within prologue for outgoing variables if the
392// function contains variable size objects.
393// Let eliminateCallFramePseudoInstr preserve stack space for it.
395 const MachineFunction &MF) const {
396 return !MF.getFrameInfo().hasVarSizedObjects();
397}
398
399// Eliminate ADJCALLSTACKDOWN, ADJCALLSTACKUP pseudo instructions.
404 Register SPReg = LoongArch::R3;
405 DebugLoc DL = MI->getDebugLoc();
406
407 if (!hasReservedCallFrame(MF)) {
408 // If space has not been reserved for a call frame, ADJCALLSTACKDOWN and
409 // ADJCALLSTACKUP must be converted to instructions manipulating the stack
410 // pointer. This is necessary when there is a variable length stack
411 // allocation (e.g. alloca), which means it's not possible to allocate
412 // space for outgoing arguments from within the function prologue.
413 int64_t Amount = MI->getOperand(0).getImm();
414
415 if (Amount != 0) {
416 // Ensure the stack remains aligned after adjustment.
417 Amount = alignSPAdjust(Amount);
418
419 if (MI->getOpcode() == LoongArch::ADJCALLSTACKDOWN)
420 Amount = -Amount;
421
422 adjustReg(MBB, MI, DL, SPReg, SPReg, Amount, MachineInstr::NoFlags);
423 }
424 }
425
426 return MBB.erase(MI);
427}
428
432 if (CSI.empty())
433 return true;
434
437
438 // Insert the spill to the stack frame.
439 for (auto &CS : CSI) {
440 Register Reg = CS.getReg();
441 // If the register is RA and the return address is taken by method
442 // LoongArchTargetLowering::lowerRETURNADDR, don't set kill flag.
443 bool IsKill =
444 !(Reg == LoongArch::R1 && MF->getFrameInfo().isReturnAddressTaken());
445 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
446 TII.storeRegToStackSlot(MBB, MI, Reg, IsKill, CS.getFrameIdx(), RC, TRI,
447 Register());
448 }
449
450 return true;
451}
452
454 const MachineFunction &MF, int FI, Register &FrameReg) const {
455 const MachineFrameInfo &MFI = MF.getFrameInfo();
457 auto *LoongArchFI = MF.getInfo<LoongArchMachineFunctionInfo>();
458 uint64_t StackSize = MFI.getStackSize();
459 uint64_t FirstSPAdjustAmount = getFirstSPAdjustAmount(MF);
460
461 // Callee-saved registers should be referenced relative to the stack
462 // pointer (positive offset), otherwise use the frame pointer (negative
463 // offset).
464 const auto &CSI = MFI.getCalleeSavedInfo();
465 int MinCSFI = 0;
466 int MaxCSFI = -1;
469 MFI.getOffsetAdjustment());
470
471 if (CSI.size()) {
472 MinCSFI = CSI[0].getFrameIdx();
473 MaxCSFI = CSI[CSI.size() - 1].getFrameIdx();
474 }
475
476 if (FI >= MinCSFI && FI <= MaxCSFI) {
477 FrameReg = LoongArch::R3;
478 if (FirstSPAdjustAmount)
479 Offset += StackOffset::getFixed(FirstSPAdjustAmount);
480 else
481 Offset += StackOffset::getFixed(StackSize);
482 } else if (RI->hasStackRealignment(MF) && !MFI.isFixedObjectIndex(FI)) {
483 // If the stack was realigned, the frame pointer is set in order to allow
484 // SP to be restored, so we need another base register to record the stack
485 // after realignment.
486 FrameReg = hasBP(MF) ? LoongArchABI::getBPReg() : LoongArch::R3;
487 Offset += StackOffset::getFixed(StackSize);
488 } else {
489 FrameReg = RI->getFrameRegister(MF);
490 if (hasFP(MF))
491 Offset += StackOffset::getFixed(LoongArchFI->getVarArgsSaveSize());
492 else
493 Offset += StackOffset::getFixed(StackSize);
494 }
495
496 return Offset;
497}
498
500 const MachineFunction &MF) const {
501 // Keep the conventional code flow when not optimizing.
502 if (MF.getFunction().hasOptNone())
503 return false;
504
505 return true;
506}
unsigned const MachineRegisterInfo * MRI
MachineBasicBlock & MBB
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
MachineBasicBlock MachineBasicBlock::iterator MBBI
Given that RA is a live value
#define LLVM_DEBUG(X)
Definition: Debug.h:101
const HexagonInstrInfo * TII
IRTranslator LLVM IR MI
static uint64_t estimateFunctionSizeInBytes(const LoongArchInstrInfo *TII, const MachineFunction &MF)
static bool needScavSlotForCFR(MachineFunction &MF)
unsigned const TargetRegisterInfo * TRI
This file declares the machine register scavenger class.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition: ArrayRef.h:41
bool empty() const
empty - Check if the array is empty.
Definition: ArrayRef.h:160
BitVector & set()
Definition: BitVector.h:351
A debug info location.
Definition: DebugLoc.h:33
CallingConv::ID getCallingConv() const
getCallingConv()/setCallingConv(CC) - These method get and set the calling convention of this functio...
Definition: Function.h:263
bool hasOptNone() const
Do not optimize this function (-O0).
Definition: Function.h:675
void storeRegToStackSlot(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, Register SrcReg, bool isKill, int FrameIndex, const TargetRegisterClass *RC, const TargetRegisterInfo *TRI, Register VReg) const override
Store the specified register of the given register class to the specified stack frame index.
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...
uint64_t getFirstSPAdjustAmount(const MachineFunction &MF) const
void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const override
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...
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 determineCalleeSaves(MachineFunction &MF, BitVector &SavedRegs, RegScavenger *RS) const override
This method determines which of the registers reported by TargetRegisterInfo::getCalleeSavedRegs() sh...
void processFunctionBeforeFrameFinalized(MachineFunction &MF, RegScavenger *RS) const override
processFunctionBeforeFrameFinalized - This method is called immediately before the specified function...
bool enableShrinkWrapping(const MachineFunction &MF) const override
Returns true if the target will correctly handle shrink wrapping.
bool hasFP(const MachineFunction &MF) const override
hasFP - Return true if the specified function should have a dedicated frame pointer register.
bool hasReservedCallFrame(const MachineFunction &MF) const override
hasReservedCallFrame - Under normal circumstances, when a frame pointer is not required,...
bool hasBP(const MachineFunction &MF) const
void emitPrologue(MachineFunction &MF, MachineBasicBlock &MBB) const override
emitProlog/emitEpilog - These methods insert prolog and epilog code into the function.
LoongArchMachineFunctionInfo - This class is derived from MachineFunctionInfo and contains private Lo...
const LoongArchRegisterInfo * getRegisterInfo() const override
const LoongArchInstrInfo * getInstrInfo() const override
static MCCFIInstruction createOffset(MCSymbol *L, unsigned Register, int Offset, SMLoc Loc={})
.cfi_offset Previous value of Register is saved at offset Offset from CFA.
Definition: MCDwarf.h:583
static MCCFIInstruction cfiDefCfaOffset(MCSymbol *L, int Offset, SMLoc Loc={})
.cfi_def_cfa_offset modifies a rule for computing CFA.
Definition: MCDwarf.h:556
static MCCFIInstruction cfiDefCfa(MCSymbol *L, unsigned Register, int Offset, SMLoc Loc={})
.cfi_def_cfa defines a rule for computing CFA as: take address from Register and add Offset to it.
Definition: MCDwarf.h:541
iterator getFirstTerminator()
Returns an iterator to the first terminator instruction of this basic block.
const MachineFunction * getParent() const
Return the MachineFunction containing this basic block.
instr_iterator erase(instr_iterator I)
Remove an instruction from the instruction list and delete it.
The MachineFrameInfo class represents an abstract stack frame until prolog/epilog code is inserted.
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.
bool isReturnAddressTaken() const
This method may be called any time after instruction selection is complete to determine if there is a...
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 the alignment in bytes that this function must be aligned to, which is greater than the defaul...
int getOffsetAdjustment() const
Return the correction for frame offsets.
const std::vector< CalleeSavedInfo > & getCalleeSavedInfo() const
Returns a reference to call saved info vector for the current function.
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.
unsigned addFrameInst(const MCCFIInstruction &Inst)
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
MachineFrameInfo & getFrameInfo()
getFrameInfo - Return the frame info object for the current function.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Function & getFunction()
Return the LLVM function that this machine code represents.
const LLVMTargetMachine & getTarget() const
getTarget - Return the target machine this machine code is compiled with
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
const MachineInstrBuilder & addCFIIndex(unsigned CFIIndex) const
const MachineInstrBuilder & setMIFlag(MachineInstr::MIFlag Flag) const
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
const MachineInstrBuilder & addReg(Register RegNo, unsigned flags=0, unsigned SubReg=0) const
Add a new virtual register operand.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
void addScavengingFrameIndex(int FI)
Add a scavenging frame index.
Wrapper class representing virtual and physical registers.
Definition: Register.h:19
StackOffset holds a fixed and a scalable offset in bytes.
Definition: TypeSize.h:33
int64_t getFixed() const
Returns the fixed component of the stack.
Definition: TypeSize.h:49
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...
Align getStackAlign() const
getStackAlignment - This method returns the number of bytes to which the stack pointer must be aligne...
int alignSPAdjust(int SPAdj) const
alignSPAdjust - This method aligns the stack adjustment to the correct alignment.
TargetInstrInfo - Interface to description of machine instruction set.
TargetOptions Options
bool DisableFramePointerElim(const MachineFunction &MF) const
DisableFramePointerElim - This returns true if frame pointer elimination optimization should be disab...
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
bool hasStackRealignment(const MachineFunction &MF) const
True if stack realignment is required and still possible.
virtual Register getFrameRegister(const MachineFunction &MF) const =0
Debug information queries.
virtual const TargetRegisterInfo * getRegisterInfo() const
getRegisterInfo - If register information is available, return it.
virtual const TargetInstrInfo * getInstrInfo() const
@ GHC
Used by the Glasgow Haskell Compiler (GHC).
Definition: CallingConv.h:50
@ Kill
The last use of a register.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
@ Offset
Definition: DWP.cpp:456
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:163
uint64_t alignTo(uint64_t Size, Align A)
Returns a multiple of A needed to store Size bytes.
Definition: Alignment.h:155
unsigned Log2(Align A)
Returns the log2 of the alignment.
Definition: Alignment.h:208
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition: Alignment.h:39
uint64_t value() const
This is a hole in the type system and should not be abused.
Definition: Alignment.h:85