1 //===-- llvm/Target/TargetFrameLowering.h ---------------------------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // Interface to describe the layout of a stack frame on the target machine.
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_TARGET_TARGETFRAMELOWERING_H
15 #define LLVM_TARGET_TARGETFRAMELOWERING_H
17 #include "llvm/CodeGen/MachineBasicBlock.h"
18 #include "llvm/MC/MCDwarf.h"
19 #include "llvm/ADT/ArrayRef.h"
25 class CalleeSavedInfo;
26 class MachineFunction;
27 class MachineBasicBlock;
31 /// Information about stack frame layout on the target. It holds the direction
32 /// of stack growth, the known stack alignment on entry to each function, and
33 /// the offset to the locals area.
35 /// The offset to the local area is the offset from the stack pointer on
36 /// function entry to the first location where function data (local variables,
37 /// spill locations) can be stored.
38 class TargetFrameLowering {
41 StackGrowsUp, // Adding to the stack increases the stack address
42 StackGrowsDown // Adding to the stack decreases the stack address
45 // Maps a callee saved register to a stack slot with a fixed offset.
48 int Offset; // Offset relative to stack pointer on function entry.
51 StackDirection StackDir;
52 unsigned StackAlignment;
53 unsigned TransientStackAlignment;
56 TargetFrameLowering(StackDirection D, unsigned StackAl, int LAO,
58 : StackDir(D), StackAlignment(StackAl), TransientStackAlignment(TransAl),
59 LocalAreaOffset(LAO) {}
61 virtual ~TargetFrameLowering();
63 // These methods return information that describes the abstract stack layout
64 // of the target machine.
66 /// getStackGrowthDirection - Return the direction the stack grows
68 StackDirection getStackGrowthDirection() const { return StackDir; }
70 /// getStackAlignment - This method returns the number of bytes to which the
71 /// stack pointer must be aligned on entry to a function. Typically, this
72 /// is the largest alignment for any data object in the target.
74 unsigned getStackAlignment() const { return StackAlignment; }
76 /// getTransientStackAlignment - This method returns the number of bytes to
77 /// which the stack pointer must be aligned at all times, even between
80 unsigned getTransientStackAlignment() const {
81 return TransientStackAlignment;
84 /// getOffsetOfLocalArea - This method returns the offset of the local area
85 /// from the stack pointer on entrance to a function.
87 int getOffsetOfLocalArea() const { return LocalAreaOffset; }
89 /// getCalleeSavedSpillSlots - This method returns a pointer to an array of
90 /// pairs, that contains an entry for each callee saved register that must be
91 /// spilled to a particular stack location if it is spilled.
93 /// Each entry in this array contains a <register,offset> pair, indicating the
94 /// fixed offset from the incoming stack pointer that each register should be
95 /// spilled at. If a register is not listed here, the code generator is
96 /// allowed to spill it anywhere it chooses.
98 virtual const SpillSlot *
99 getCalleeSavedSpillSlots(unsigned &NumEntries) const {
104 /// targetHandlesStackFrameRounding - Returns true if the target is
105 /// responsible for rounding up the stack frame (probably at emitPrologue
107 virtual bool targetHandlesStackFrameRounding() const {
111 /// emitProlog/emitEpilog - These methods insert prolog and epilog code into
113 virtual void emitPrologue(MachineFunction &MF) const = 0;
114 virtual void emitEpilogue(MachineFunction &MF,
115 MachineBasicBlock &MBB) const = 0;
117 /// spillCalleeSavedRegisters - Issues instruction(s) to spill all callee
118 /// saved registers and returns true if it isn't possible / profitable to do
119 /// so by issuing a series of store instructions via
120 /// storeRegToStackSlot(). Returns false otherwise.
121 virtual bool spillCalleeSavedRegisters(MachineBasicBlock &MBB,
122 MachineBasicBlock::iterator MI,
123 const std::vector<CalleeSavedInfo> &CSI,
124 const TargetRegisterInfo *TRI) const {
128 /// restoreCalleeSavedRegisters - Issues instruction(s) to restore all callee
129 /// saved registers and returns true if it isn't possible / profitable to do
130 /// so by issuing a series of load instructions via loadRegToStackSlot().
131 /// Returns false otherwise.
132 virtual bool restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
133 MachineBasicBlock::iterator MI,
134 const std::vector<CalleeSavedInfo> &CSI,
135 const TargetRegisterInfo *TRI) const {
139 /// hasFP - Return true if the specified function should have a dedicated
140 /// frame pointer register. For most targets this is true only if the function
141 /// has variable sized allocas or if frame pointer elimination is disabled.
142 virtual bool hasFP(const MachineFunction &MF) const = 0;
144 /// hasReservedCallFrame - Under normal circumstances, when a frame pointer is
145 /// not required, we reserve argument space for call sites in the function
146 /// immediately on entry to the current function. This eliminates the need for
147 /// add/sub sp brackets around call sites. Returns true if the call frame is
148 /// included as part of the stack frame.
149 virtual bool hasReservedCallFrame(const MachineFunction &MF) const {
153 /// canSimplifyCallFramePseudos - When possible, it's best to simplify the
154 /// call frame pseudo ops before doing frame index elimination. This is
155 /// possible only when frame index references between the pseudos won't
156 /// need adjusting for the call frame adjustments. Normally, that's true
157 /// if the function has a reserved call frame or a frame pointer. Some
158 /// targets (Thumb2, for example) may have more complicated criteria,
159 /// however, and can override this behavior.
160 virtual bool canSimplifyCallFramePseudos(const MachineFunction &MF) const {
161 return hasReservedCallFrame(MF) || hasFP(MF);
164 /// getFrameIndexOffset - Returns the displacement from the frame register to
165 /// the stack frame of the specified index.
166 virtual int getFrameIndexOffset(const MachineFunction &MF, int FI) const;
168 /// getFrameIndexReference - This method should return the base register
169 /// and offset used to reference a frame index location. The offset is
170 /// returned directly, and the base register is returned via FrameReg.
171 virtual int getFrameIndexReference(const MachineFunction &MF, int FI,
172 unsigned &FrameReg) const;
174 /// processFunctionBeforeCalleeSavedScan - This method is called immediately
175 /// before PrologEpilogInserter scans the physical registers used to determine
176 /// what callee saved registers should be spilled. This method is optional.
177 virtual void processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
178 RegScavenger *RS = NULL) const {
182 /// processFunctionBeforeFrameFinalized - This method is called immediately
183 /// before the specified function's frame layout (MF.getFrameInfo()) is
184 /// finalized. Once the frame is finalized, MO_FrameIndex operands are
185 /// replaced with direct constants. This method is optional.
187 virtual void processFunctionBeforeFrameFinalized(MachineFunction &MF) const {
191 } // End llvm namespace