LLVM 24.0.0git
TargetFrameLoweringImpl.cpp
Go to the documentation of this file.
1//===- TargetFrameLoweringImpl.cpp - Implement target frame interface ------==//
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// Implements the layout of a stack frame on the target machine.
10//
11//===----------------------------------------------------------------------===//
12
13#include "llvm/ADT/BitVector.h"
20#include "llvm/IR/Attributes.h"
21#include "llvm/IR/Function.h"
22#include "llvm/IR/InstrTypes.h"
23#include "llvm/MC/MCAsmInfo.h"
27
28using namespace llvm;
29
31
33 assert(MF.getFunction().hasFnAttribute(Attribute::NoReturn) &&
34 MF.getFunction().hasFnAttribute(Attribute::NoUnwind) &&
35 !MF.getFunction().hasFnAttribute(Attribute::UWTable));
36 return false;
37}
38
43
44/// Returns the displacement from the frame register to the stack
45/// frame of the specified index, along with the frame register used
46/// (in output arg FrameReg). This is the default implementation which
47/// is overridden for some targets.
50 Register &FrameReg) const {
51 const MachineFrameInfo &MFI = MF.getFrameInfo();
53
54 // By default, assume all frame indices are referenced via whatever
55 // getFrameRegister() says. The target can override this if it's doing
56 // something different.
57 FrameReg = RI->getFrameRegister(MF);
58
62}
63
64/// Returns the offset from the stack pointer to the slot of the specified
65/// index. This function serves to provide a comparable offset from a single
66/// reference point (the value of the stack-pointer at function entry) that can
67/// be used for analysis. This is the default implementation using
68/// MachineFrameInfo offsets.
71 int FI) const {
72 // To display the true offset from SP, we need to subtract the offset to the
73 // local area from MFI's ObjectOffset.
76}
77
82
84 BitVector &CalleeSaves) const {
86 CalleeSaves.resize(TRI.getNumRegs());
87
88 const MachineFrameInfo &MFI = MF.getFrameInfo();
89 if (!MFI.isCalleeSavedInfoValid())
90 return;
91
92 for (const CalleeSavedInfo &Info : MFI.getCalleeSavedInfo())
93 CalleeSaves.set(Info.getReg());
94}
95
96const MCPhysReg *
99
100 // Get the callee saved register list...
101 const MCPhysReg *CSRegs = nullptr;
102
103 // When interprocedural register allocation is enabled, callee saved register
104 // list should be empty, since caller saved registers are preferred over
105 // callee saved registers. Unless it has some risked CSR to be optimized out.
106 if (MF.getTarget().Options.EnableIPRA &&
109 CSRegs = TRI.getIPRACSRegs(&MF);
110 else
111 CSRegs = MF.getRegInfo().getCalleeSavedRegs();
112
113 // Early exit if there are no callee saved registers.
114 if (!CSRegs || CSRegs[0] == 0)
115 return nullptr;
116
117 // In Naked functions we aren't going to save any registers.
118 if (MF.getFunction().hasFnAttribute(Attribute::Naked))
119 return nullptr;
120
121 // Noreturn+nounwind functions never restore CSR, so no saves are needed.
122 // Purely noreturn functions may still return through throws, so those must
123 // save CSR for caller exception handlers.
124 //
125 // If the function uses longjmp to break out of its current path of
126 // execution we do not need the CSR spills either: setjmp stores all CSRs
127 // it was called with into the jmp_buf, which longjmp then restores.
128 if (MF.getFunction().hasFnAttribute(Attribute::NoReturn) &&
129 MF.getFunction().hasFnAttribute(Attribute::NoUnwind) &&
130 !MF.getFunction().hasFnAttribute(Attribute::UWTable) &&
132 return nullptr;
133
134 return CSRegs;
135}
136
138 MachineFunction &MF, const MCPhysReg *CSRegs, BitVector &SavedRegs) const {
139 // Functions which call __builtin_unwind_init get all their registers saved.
140 if (!MF.callsUnwindInit())
141 return;
142 for (unsigned i = 0; CSRegs[i]; ++i) {
143 unsigned Reg = CSRegs[i];
144 SavedRegs.set(Reg);
145 }
146}
147
149 BitVector &PrologCSRs,
150 RegScavenger *RS) const {
152
153 // Resize before the early returns. Some backends expect that
154 // SavedRegs.size() == TRI.getNumRegs() after this call even if there are no
155 // saved registers.
156 PrologCSRs.resize(TRI.getNumRegs());
157
158 // Get the callee saved register list...
159 const MCPhysReg *CSRegs = getMustPreserveRegisters(MF);
160 // Early exit if there are no callee saved registers.
161 if (!CSRegs || CSRegs[0] == 0)
162 return;
163
164 determineUncondPrologCalleeSaves(MF, CSRegs, PrologCSRs);
165
166 const MachineRegisterInfo &MRI = MF.getRegInfo();
167 for (unsigned i = 0; CSRegs[i]; ++i) {
168 unsigned Reg = CSRegs[i];
169 if (MRI.isPhysRegModified(Reg))
170 PrologCSRs.set(Reg);
171 }
172}
173
175 const MachineFunction &MF) const {
176 if (!hasFP(MF))
177 return false;
178
179 const TargetRegisterInfo *RegInfo = MF.getSubtarget().getRegisterInfo();
180 return RegInfo->useFPForScavengingIndex(MF) &&
181 !RegInfo->hasStackRealignment(MF);
182}
183
185 if (!F.hasLocalLinkage() || F.hasAddressTaken() ||
186 !F.hasFnAttribute(Attribute::NoRecurse))
187 return false;
188 // Function should not be optimized as tail call.
189 for (const User *U : F.users())
190 if (auto *CB = dyn_cast<CallBase>(U))
191 if (CB->isTailCall())
192 return false;
193 return true;
194}
195
197 llvm_unreachable("getInitialCFAOffset() not implemented!");
198}
199
202 llvm_unreachable("getInitialCFARegister() not implemented!");
203}
204
210
213 const CalleeSavedInfo &CS, const TargetInstrInfo *TII,
214 const TargetRegisterInfo *TRI) const {
215 // Insert the spill to the stack frame.
216 MCRegister Reg = CS.getReg();
217
218 if (CS.isSpilledToReg()) {
219 BuildMI(SaveBlock, MI, DebugLoc(), TII->get(TargetOpcode::COPY),
220 CS.getDstReg())
221 .addReg(Reg, getKillRegState(true));
222 } else {
223 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
224 TII->storeRegToStackSlot(SaveBlock, MI, Reg, true, CS.getFrameIdx(), RC,
225 Register());
226 }
227}
228
231 const CalleeSavedInfo &CS, const TargetInstrInfo *TII,
232 const TargetRegisterInfo *TRI) const {
233 MCRegister Reg = CS.getReg();
234 if (CS.isSpilledToReg()) {
235 BuildMI(MBB, MI, DebugLoc(), TII->get(TargetOpcode::COPY), Reg)
236 .addReg(CS.getDstReg(), getKillRegState(true));
237 } else {
238 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
239 TII->loadRegFromStackSlot(MBB, MI, Reg, CS.getFrameIdx(), RC, Register());
240 assert(MI != MBB.begin() && "loadRegFromStackSlot didn't insert any code!");
241 }
242}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock & MBB
This file contains the simple types necessary to represent the attributes associated with functions a...
This file implements the BitVector class.
const HexagonInstrInfo * TII
IRTranslator LLVM IR MI
#define F(x, y, z)
Definition MD5.cpp:54
Register const TargetRegisterInfo * TRI
void resize(unsigned N, bool t=false)
Grow or shrink the bitvector.
Definition BitVector.h:355
BitVector & set()
Set all bits in the bitvector.
Definition BitVector.h:366
The CalleeSavedInfo class tracks the information need to locate where a callee saved register is in t...
MCRegister getReg() const
MCRegister getDstReg() const
bool hasFnAttribute(Attribute::AttrKind Kind) const
Return true if the function has the attribute.
Definition Function.cpp:723
bool usesWindowsCFI() const
Definition MCAsmInfo.h:674
Wrapper class representing physical registers. Should be passed by value.
Definition MCRegister.h:41
MachineInstrBundleIterator< MachineInstr > iterator
The MachineFrameInfo class represents an abstract stack frame until prolog/epilog code is inserted.
uint64_t getStackSize() const
Return the number of bytes that must be allocated to hold all of the fixed size frame objects.
int64_t getOffsetAdjustment() const
Return the correction for frame offsets.
bool isCalleeSavedInfoValid() const
Has the callee saved info been calculated yet?
const std::vector< CalleeSavedInfo > & getCalleeSavedInfo() const
Returns a reference to call saved info vector for the current function.
bool hasStackObjects() const
Return true if there are any stack objects in this function.
int64_t getObjectOffset(int ObjectIdx) const
Return the assigned stack offset of the specified object from the incoming stack pointer.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
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.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Function & getFunction()
Return the LLVM function that this machine code represents.
const TargetMachine & getTarget() const
getTarget - Return the target machine this machine code is compiled with
const MachineInstrBuilder & addReg(Register RegNo, RegState Flags={}, unsigned SubReg=0) const
Add a new virtual register operand.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
LLVM_ABI const MCPhysReg * getCalleeSavedRegs() const
Returns list of callee saved registers.
LLVM_ABI bool isPhysRegModified(MCRegister PhysReg, bool SkipNoReturnDef=false) const
Return true if the specified register is modified in this function.
Wrapper class representing virtual and physical registers.
Definition Register.h:20
constexpr unsigned id() const
Definition Register.h:100
StackOffset holds a fixed and a scalable offset in bytes.
Definition TypeSize.h:30
int64_t getFixed() const
Returns the fixed component of the stack.
Definition TypeSize.h:46
bool hasFP(const MachineFunction &MF) const
hasFP - Return true if the specified function should have a dedicated frame pointer register.
virtual bool allocateScavengingFrameIndexesNearIncomingSP(const MachineFunction &MF) const
Control the placement of special register scavenging spill slots when allocating a stack frame.
virtual void determineCalleeSaves(MachineFunction &MF, BitVector &SavedRegs, RegScavenger *RS=nullptr) const
This method determines which of the registers reported by TargetRegisterInfo::getCalleeSavedRegs() sh...
virtual bool enableCalleeSaveSkip(const MachineFunction &MF) const
Returns true if the target can safely skip saving callee-saved registers for noreturn nounwind functi...
void restoreCalleeSavedRegister(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, const CalleeSavedInfo &CS, const TargetInstrInfo *TII, const TargetRegisterInfo *TRI) const
void spillCalleeSavedRegister(MachineBasicBlock &SaveBlock, MachineBasicBlock::iterator MI, const CalleeSavedInfo &CS, const TargetInstrInfo *TII, const TargetRegisterInfo *TRI) const
spillCalleeSavedRegister - Default implementation for spilling a single callee saved register.
void determineUncondPrologCalleeSaves(MachineFunction &MF, const MCPhysReg *CSRegs, BitVector &UncondPrologCSRs) const
This method determines which of the registers reported by getMustPreserveRegisters() must be saved in...
virtual Register getInitialCFARegister(const MachineFunction &MF) const
Return initial CFA register value i.e.
virtual void getCalleeSaves(const MachineFunction &MF, BitVector &SavedRegs) const
Returns the callee-saved registers as computed by determineCalleeSaves in the BitVector SavedRegs.
int getOffsetOfLocalArea() const
getOffsetOfLocalArea - This method returns the offset of the local area from the stack pointer on ent...
virtual DwarfFrameBase getDwarfFrameBase(const MachineFunction &MF) const
Return the frame base information to be encoded in the DWARF subprogram debug info.
virtual bool needsFrameIndexResolution(const MachineFunction &MF) const
virtual bool isProfitableForNoCSROpt(const Function &F) const
Check if the no-CSR optimisation is profitable for the given function.
static bool isSafeForNoCSROpt(const Function &F)
Check if given function is safe for not having callee saved registers.
virtual bool enableCFIFixup(const MachineFunction &MF) const
Returns true if we may need to fix the unwind information for the function.
virtual StackOffset getFrameIndexReferenceFromSP(const MachineFunction &MF, int FI) const
getFrameIndexReferenceFromSP - This method returns the offset from the stack pointer to the slot of t...
virtual int getInitialCFAOffset(const MachineFunction &MF) const
Return initial CFA offset value i.e.
const MCPhysReg * getMustPreserveRegisters(const MachineFunction &MF) const
Return the list of registers which must be preserved by the function: the value on exit must be the s...
virtual StackOffset getFrameIndexReference(const MachineFunction &MF, int FI, Register &FrameReg) const
getFrameIndexReference - This method should return the base register and offset used to reference a f...
TargetInstrInfo - Interface to description of machine instruction set.
const MCAsmInfo & getMCAsmInfo() const
Return target specific asm information.
TargetOptions Options
unsigned EnableIPRA
This flag enables InterProcedural Register Allocation (IPRA).
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
virtual bool useFPForScavengingIndex(const MachineFunction &MF) const
Returns true if the target wants to use frame pointer based accesses to spill to the scavenger emerge...
virtual Register getFrameRegister(const MachineFunction &MF) const =0
Debug information queries.
virtual const TargetRegisterInfo * getRegisterInfo() const =0
Return the target's register information.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
This is an optimization pass for GlobalISel generic memory operations.
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
constexpr RegState getKillRegState(bool B)
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
uint16_t MCPhysReg
An unsigned integer type large enough to represent all physical registers, but not necessarily virtua...
Definition MCRegister.h:21
MCRegisterClass TargetRegisterClass
Definition FastISel.h:58