blob: e8bf687a626e0976f644b0b1c29f1dc515ede6d0 [file] [log] [blame]
Jim Grosbach3d723672010-08-14 00:15:52 +00001//===- LocalStackSlotAllocation.cpp - Pre-allocate locals to stack slots --===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This pass assigns local frame indices to stack slots relative to one another
11// and allocates additional base registers to access them when the target
Bob Wilson67b067d2011-01-07 04:58:58 +000012// estimates they are likely to be out of range of stack pointer and frame
Jim Grosbach3d723672010-08-14 00:15:52 +000013// pointer relative addressing.
14//
15//===----------------------------------------------------------------------===//
16
Chandler Carruthd04a8d42012-12-03 16:50:05 +000017#include "llvm/CodeGen/Passes.h"
18#include "llvm/ADT/STLExtras.h"
Stephen Hines36b56882014-04-23 16:57:46 -070019#include "llvm/ADT/SetVector.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000020#include "llvm/ADT/SmallSet.h"
21#include "llvm/ADT/Statistic.h"
22#include "llvm/CodeGen/MachineFrameInfo.h"
23#include "llvm/CodeGen/MachineFunction.h"
24#include "llvm/CodeGen/MachineFunctionPass.h"
25#include "llvm/CodeGen/MachineRegisterInfo.h"
Stephen Hines36b56882014-04-23 16:57:46 -070026#include "llvm/CodeGen/StackProtector.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000027#include "llvm/IR/Constants.h"
28#include "llvm/IR/DerivedTypes.h"
29#include "llvm/IR/Instructions.h"
30#include "llvm/IR/Intrinsics.h"
31#include "llvm/IR/LLVMContext.h"
32#include "llvm/IR/Module.h"
Jim Grosbach3d723672010-08-14 00:15:52 +000033#include "llvm/Pass.h"
Jim Grosbach3d723672010-08-14 00:15:52 +000034#include "llvm/Support/Debug.h"
35#include "llvm/Support/ErrorHandling.h"
36#include "llvm/Support/raw_ostream.h"
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000037#include "llvm/Target/TargetFrameLowering.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000038#include "llvm/Target/TargetRegisterInfo.h"
Stephen Hines37ed9c12014-12-01 14:51:49 -080039#include "llvm/Target/TargetSubtargetInfo.h"
Jim Grosbach3d723672010-08-14 00:15:52 +000040
41using namespace llvm;
42
Stephen Hinesdce4a402014-05-29 02:49:00 -070043#define DEBUG_TYPE "localstackalloc"
44
Jim Grosbach8708ead2010-08-17 18:13:53 +000045STATISTIC(NumAllocations, "Number of frame indices allocated into local block");
46STATISTIC(NumBaseRegisters, "Number of virtual frame base registers allocated");
47STATISTIC(NumReplacements, "Number of frame indices references replaced");
Jim Grosbach3d723672010-08-14 00:15:52 +000048
49namespace {
Jim Grosbach864d22e2010-08-31 17:58:19 +000050 class FrameRef {
51 MachineBasicBlock::iterator MI; // Instr referencing the frame
52 int64_t LocalOffset; // Local offset of the frame idx referenced
Hal Finkeldb31bd32013-04-30 20:04:37 +000053 int FrameIdx; // The frame index
Jim Grosbach864d22e2010-08-31 17:58:19 +000054 public:
Hal Finkeldb31bd32013-04-30 20:04:37 +000055 FrameRef(MachineBasicBlock::iterator I, int64_t Offset, int Idx) :
56 MI(I), LocalOffset(Offset), FrameIdx(Idx) {}
Jim Grosbach864d22e2010-08-31 17:58:19 +000057 bool operator<(const FrameRef &RHS) const {
58 return LocalOffset < RHS.LocalOffset;
59 }
Hal Finkeldb31bd32013-04-30 20:04:37 +000060 MachineBasicBlock::iterator getMachineInstr() const { return MI; }
61 int64_t getLocalOffset() const { return LocalOffset; }
62 int getFrameIndex() const { return FrameIdx; }
Jim Grosbach864d22e2010-08-31 17:58:19 +000063 };
64
Jim Grosbach3d723672010-08-14 00:15:52 +000065 class LocalStackSlotPass: public MachineFunctionPass {
Jim Grosbach2b1e2022010-08-18 22:44:49 +000066 SmallVector<int64_t,16> LocalOffsets;
Stephen Hines36b56882014-04-23 16:57:46 -070067 /// StackObjSet - A set of stack object indexes
68 typedef SmallSetVector<int, 8> StackObjSet;
Jim Grosbach8708ead2010-08-17 18:13:53 +000069
Jim Grosbach2b1e2022010-08-18 22:44:49 +000070 void AdjustStackOffset(MachineFrameInfo *MFI, int FrameIdx, int64_t &Offset,
Jim Grosbach67ff81a2010-08-23 20:40:38 +000071 bool StackGrowsDown, unsigned &MaxAlign);
Stephen Hines36b56882014-04-23 16:57:46 -070072 void AssignProtectedObjSet(const StackObjSet &UnassignedObjs,
73 SmallSet<int, 16> &ProtectedObjs,
74 MachineFrameInfo *MFI, bool StackGrowsDown,
75 int64_t &Offset, unsigned &MaxAlign);
Jim Grosbach2b1e2022010-08-18 22:44:49 +000076 void calculateFrameObjectOffsets(MachineFunction &Fn);
Jim Grosbach2d16f5b2010-08-20 16:48:30 +000077 bool insertFrameReferenceRegisters(MachineFunction &Fn);
Jim Grosbach3d723672010-08-14 00:15:52 +000078 public:
79 static char ID; // Pass identification, replacement for typeid
Stephen Hines36b56882014-04-23 16:57:46 -070080 explicit LocalStackSlotPass() : MachineFunctionPass(ID) {
81 initializeLocalStackSlotPassPass(*PassRegistry::getPassRegistry());
82 }
83 bool runOnMachineFunction(MachineFunction &MF) override;
Jim Grosbach3d723672010-08-14 00:15:52 +000084
Stephen Hines36b56882014-04-23 16:57:46 -070085 void getAnalysisUsage(AnalysisUsage &AU) const override {
Jim Grosbach3d723672010-08-14 00:15:52 +000086 AU.setPreservesCFG();
Stephen Hines36b56882014-04-23 16:57:46 -070087 AU.addRequired<StackProtector>();
Jim Grosbach3d723672010-08-14 00:15:52 +000088 MachineFunctionPass::getAnalysisUsage(AU);
89 }
Jim Grosbach3d723672010-08-14 00:15:52 +000090
91 private:
92 };
93} // end anonymous namespace
94
95char LocalStackSlotPass::ID = 0;
Andrew Trick1dd8c852012-02-08 21:23:13 +000096char &llvm::LocalStackSlotAllocationID = LocalStackSlotPass::ID;
Stephen Hines36b56882014-04-23 16:57:46 -070097INITIALIZE_PASS_BEGIN(LocalStackSlotPass, "localstackalloc",
98 "Local Stack Slot Allocation", false, false)
99INITIALIZE_PASS_DEPENDENCY(StackProtector)
100INITIALIZE_PASS_END(LocalStackSlotPass, "localstackalloc",
101 "Local Stack Slot Allocation", false, false)
102
Jim Grosbach3d723672010-08-14 00:15:52 +0000103
104bool LocalStackSlotPass::runOnMachineFunction(MachineFunction &MF) {
Jim Grosbach2b1e2022010-08-18 22:44:49 +0000105 MachineFrameInfo *MFI = MF.getFrameInfo();
Stephen Hines37ed9c12014-12-01 14:51:49 -0800106 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
Jim Grosbach2b1e2022010-08-18 22:44:49 +0000107 unsigned LocalObjectCount = MFI->getObjectIndexEnd();
108
Jim Grosbacha2734422010-08-24 19:05:43 +0000109 // If the target doesn't want/need this pass, or if there are no locals
110 // to consider, early exit.
111 if (!TRI->requiresVirtualBaseRegisters(MF) || LocalObjectCount == 0)
Jim Grosbach2b1e2022010-08-18 22:44:49 +0000112 return true;
113
114 // Make sure we have enough space to store the local offsets.
115 LocalOffsets.resize(MFI->getObjectIndexEnd());
116
Jim Grosbach8708ead2010-08-17 18:13:53 +0000117 // Lay out the local blob.
Jim Grosbach3d723672010-08-14 00:15:52 +0000118 calculateFrameObjectOffsets(MF);
Jim Grosbach8708ead2010-08-17 18:13:53 +0000119
120 // Insert virtual base registers to resolve frame index references.
Jim Grosbach2d16f5b2010-08-20 16:48:30 +0000121 bool UsedBaseRegs = insertFrameReferenceRegisters(MF);
Jim Grosbach2b1e2022010-08-18 22:44:49 +0000122
Jim Grosbacha0fc0052010-08-19 02:47:08 +0000123 // Tell MFI whether any base registers were allocated. PEI will only
124 // want to use the local block allocations from this pass if there were any.
125 // Otherwise, PEI can do a bit better job of getting the alignment right
126 // without a hole at the start since it knows the alignment of the stack
127 // at the start of local allocation, and this pass doesn't.
Jim Grosbach2d16f5b2010-08-20 16:48:30 +0000128 MFI->setUseLocalStackAllocationBlock(UsedBaseRegs);
Jim Grosbacha0fc0052010-08-19 02:47:08 +0000129
Jim Grosbach3d723672010-08-14 00:15:52 +0000130 return true;
131}
132
133/// AdjustStackOffset - Helper function used to adjust the stack frame offset.
Jim Grosbach2b1e2022010-08-18 22:44:49 +0000134void LocalStackSlotPass::AdjustStackOffset(MachineFrameInfo *MFI,
135 int FrameIdx, int64_t &Offset,
Jim Grosbach67ff81a2010-08-23 20:40:38 +0000136 bool StackGrowsDown,
Jim Grosbach2b1e2022010-08-18 22:44:49 +0000137 unsigned &MaxAlign) {
Jim Grosbach67ff81a2010-08-23 20:40:38 +0000138 // If the stack grows down, add the object size to find the lowest address.
139 if (StackGrowsDown)
140 Offset += MFI->getObjectSize(FrameIdx);
141
Jim Grosbach3d723672010-08-14 00:15:52 +0000142 unsigned Align = MFI->getObjectAlignment(FrameIdx);
143
144 // If the alignment of this object is greater than that of the stack, then
145 // increase the stack alignment to match.
146 MaxAlign = std::max(MaxAlign, Align);
147
148 // Adjust to alignment boundary.
149 Offset = (Offset + Align - 1) / Align * Align;
150
Jim Grosbach67ff81a2010-08-23 20:40:38 +0000151 int64_t LocalOffset = StackGrowsDown ? -Offset : Offset;
Jim Grosbach3d723672010-08-14 00:15:52 +0000152 DEBUG(dbgs() << "Allocate FI(" << FrameIdx << ") to local offset "
Jim Grosbach67ff81a2010-08-23 20:40:38 +0000153 << LocalOffset << "\n");
Jim Grosbach2b1e2022010-08-18 22:44:49 +0000154 // Keep the offset available for base register allocation
Jim Grosbach67ff81a2010-08-23 20:40:38 +0000155 LocalOffsets[FrameIdx] = LocalOffset;
Jim Grosbach2b1e2022010-08-18 22:44:49 +0000156 // And tell MFI about it for PEI to use later
Jim Grosbach67ff81a2010-08-23 20:40:38 +0000157 MFI->mapLocalFrameObject(FrameIdx, LocalOffset);
158
159 if (!StackGrowsDown)
160 Offset += MFI->getObjectSize(FrameIdx);
Jim Grosbach3d723672010-08-14 00:15:52 +0000161
162 ++NumAllocations;
163}
164
Stephen Hines36b56882014-04-23 16:57:46 -0700165/// AssignProtectedObjSet - Helper function to assign large stack objects (i.e.,
166/// those required to be close to the Stack Protector) to stack offsets.
167void LocalStackSlotPass::AssignProtectedObjSet(const StackObjSet &UnassignedObjs,
168 SmallSet<int, 16> &ProtectedObjs,
169 MachineFrameInfo *MFI,
170 bool StackGrowsDown, int64_t &Offset,
171 unsigned &MaxAlign) {
172
173 for (StackObjSet::const_iterator I = UnassignedObjs.begin(),
174 E = UnassignedObjs.end(); I != E; ++I) {
175 int i = *I;
176 AdjustStackOffset(MFI, i, Offset, StackGrowsDown, MaxAlign);
177 ProtectedObjs.insert(i);
178 }
179}
180
Jim Grosbach3d723672010-08-14 00:15:52 +0000181/// calculateFrameObjectOffsets - Calculate actual frame offsets for all of the
182/// abstract stack objects.
183///
184void LocalStackSlotPass::calculateFrameObjectOffsets(MachineFunction &Fn) {
Jim Grosbach3d723672010-08-14 00:15:52 +0000185 // Loop over all of the stack objects, assigning sequential addresses...
186 MachineFrameInfo *MFI = Fn.getFrameInfo();
Stephen Hines37ed9c12014-12-01 14:51:49 -0800187 const TargetFrameLowering &TFI = *Fn.getSubtarget().getFrameLowering();
Jim Grosbach67ff81a2010-08-23 20:40:38 +0000188 bool StackGrowsDown =
Anton Korobeynikov16c29b52011-01-10 12:39:04 +0000189 TFI.getStackGrowthDirection() == TargetFrameLowering::StackGrowsDown;
Jim Grosbach3d723672010-08-14 00:15:52 +0000190 int64_t Offset = 0;
Jim Grosbach4861ed62010-08-16 22:30:41 +0000191 unsigned MaxAlign = 0;
Stephen Hines36b56882014-04-23 16:57:46 -0700192 StackProtector *SP = &getAnalysis<StackProtector>();
Jim Grosbach3d723672010-08-14 00:15:52 +0000193
194 // Make sure that the stack protector comes before the local variables on the
195 // stack.
Stephen Hines36b56882014-04-23 16:57:46 -0700196 SmallSet<int, 16> ProtectedObjs;
Jim Grosbach3d723672010-08-14 00:15:52 +0000197 if (MFI->getStackProtectorIndex() >= 0) {
Stephen Hines36b56882014-04-23 16:57:46 -0700198 StackObjSet LargeArrayObjs;
199 StackObjSet SmallArrayObjs;
200 StackObjSet AddrOfObjs;
201
Jim Grosbach67ff81a2010-08-23 20:40:38 +0000202 AdjustStackOffset(MFI, MFI->getStackProtectorIndex(), Offset,
203 StackGrowsDown, MaxAlign);
Jim Grosbach3d723672010-08-14 00:15:52 +0000204
205 // Assign large stack objects first.
206 for (unsigned i = 0, e = MFI->getObjectIndexEnd(); i != e; ++i) {
207 if (MFI->isDeadObjectIndex(i))
208 continue;
209 if (MFI->getStackProtectorIndex() == (int)i)
210 continue;
Jim Grosbach3d723672010-08-14 00:15:52 +0000211
Stephen Hines36b56882014-04-23 16:57:46 -0700212 switch (SP->getSSPLayout(MFI->getObjectAllocation(i))) {
213 case StackProtector::SSPLK_None:
214 continue;
215 case StackProtector::SSPLK_SmallArray:
216 SmallArrayObjs.insert(i);
217 continue;
218 case StackProtector::SSPLK_AddrOf:
219 AddrOfObjs.insert(i);
220 continue;
221 case StackProtector::SSPLK_LargeArray:
222 LargeArrayObjs.insert(i);
223 continue;
224 }
225 llvm_unreachable("Unexpected SSPLayoutKind.");
Jim Grosbach3d723672010-08-14 00:15:52 +0000226 }
Stephen Hines36b56882014-04-23 16:57:46 -0700227
228 AssignProtectedObjSet(LargeArrayObjs, ProtectedObjs, MFI, StackGrowsDown,
229 Offset, MaxAlign);
230 AssignProtectedObjSet(SmallArrayObjs, ProtectedObjs, MFI, StackGrowsDown,
231 Offset, MaxAlign);
232 AssignProtectedObjSet(AddrOfObjs, ProtectedObjs, MFI, StackGrowsDown,
233 Offset, MaxAlign);
Jim Grosbach3d723672010-08-14 00:15:52 +0000234 }
235
236 // Then assign frame offsets to stack objects that are not used to spill
237 // callee saved registers.
238 for (unsigned i = 0, e = MFI->getObjectIndexEnd(); i != e; ++i) {
239 if (MFI->isDeadObjectIndex(i))
240 continue;
241 if (MFI->getStackProtectorIndex() == (int)i)
242 continue;
Stephen Hines36b56882014-04-23 16:57:46 -0700243 if (ProtectedObjs.count(i))
Jim Grosbach3d723672010-08-14 00:15:52 +0000244 continue;
245
Jim Grosbach67ff81a2010-08-23 20:40:38 +0000246 AdjustStackOffset(MFI, i, Offset, StackGrowsDown, MaxAlign);
Jim Grosbach3d723672010-08-14 00:15:52 +0000247 }
248
Jim Grosbach3d723672010-08-14 00:15:52 +0000249 // Remember how big this blob of stack space is
Jim Grosbach63249342010-08-16 18:06:15 +0000250 MFI->setLocalFrameSize(Offset);
Jim Grosbach4861ed62010-08-16 22:30:41 +0000251 MFI->setLocalFrameMaxAlign(MaxAlign);
Jim Grosbach3d723672010-08-14 00:15:52 +0000252}
Jim Grosbach8708ead2010-08-17 18:13:53 +0000253
Jim Grosbach74d803a2010-08-18 17:57:37 +0000254static inline bool
Hal Finkeldb31bd32013-04-30 20:04:37 +0000255lookupCandidateBaseReg(int64_t BaseOffset,
Jim Grosbach67ff81a2010-08-23 20:40:38 +0000256 int64_t FrameSizeAdjust,
Jim Grosbach2b1e2022010-08-18 22:44:49 +0000257 int64_t LocalFrameOffset,
Jim Grosbach74d803a2010-08-18 17:57:37 +0000258 const MachineInstr *MI,
259 const TargetRegisterInfo *TRI) {
Hal Finkeldb31bd32013-04-30 20:04:37 +0000260 // Check if the relative offset from the where the base register references
261 // to the target address is in range for the instruction.
262 int64_t Offset = FrameSizeAdjust + LocalFrameOffset - BaseOffset;
263 return TRI->isFrameOffsetLegal(MI, Offset);
Jim Grosbach74d803a2010-08-18 17:57:37 +0000264}
265
Jim Grosbach2d16f5b2010-08-20 16:48:30 +0000266bool LocalStackSlotPass::insertFrameReferenceRegisters(MachineFunction &Fn) {
Jim Grosbach8708ead2010-08-17 18:13:53 +0000267 // Scan the function's instructions looking for frame index references.
268 // For each, ask the target if it wants a virtual base register for it
269 // based on what we can tell it about where the local will end up in the
270 // stack frame. If it wants one, re-use a suitable one we've previously
271 // allocated, or if there isn't one that fits the bill, allocate a new one
272 // and ask the target to create a defining instruction for it.
Jim Grosbach2d16f5b2010-08-20 16:48:30 +0000273 bool UsedBaseReg = false;
Jim Grosbach8708ead2010-08-17 18:13:53 +0000274
275 MachineFrameInfo *MFI = Fn.getFrameInfo();
Stephen Hines37ed9c12014-12-01 14:51:49 -0800276 const TargetRegisterInfo *TRI = Fn.getSubtarget().getRegisterInfo();
277 const TargetFrameLowering &TFI = *Fn.getSubtarget().getFrameLowering();
Jim Grosbach4c207c22010-08-20 20:25:31 +0000278 bool StackGrowsDown =
Anton Korobeynikov16c29b52011-01-10 12:39:04 +0000279 TFI.getStackGrowthDirection() == TargetFrameLowering::StackGrowsDown;
Jim Grosbach8708ead2010-08-17 18:13:53 +0000280
Jim Grosbach864d22e2010-08-31 17:58:19 +0000281 // Collect all of the instructions in the block that reference
282 // a frame index. Also store the frame index referenced to ease later
283 // lookup. (For any insn that has more than one FI reference, we arbitrarily
284 // choose the first one).
285 SmallVector<FrameRef, 64> FrameReferenceInsns;
Jim Grosbach2b1e2022010-08-18 22:44:49 +0000286
Jim Grosbach864d22e2010-08-31 17:58:19 +0000287 for (MachineFunction::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
Jim Grosbach8708ead2010-08-17 18:13:53 +0000288 for (MachineBasicBlock::iterator I = BB->begin(); I != BB->end(); ++I) {
289 MachineInstr *MI = I;
Bill Wendling976ef862010-12-17 23:09:14 +0000290
Stephen Hines36b56882014-04-23 16:57:46 -0700291 // Debug value, stackmap and patchpoint instructions can't be out of
292 // range, so they don't need any updates.
293 if (MI->isDebugValue() ||
Stephen Hinesebe69fe2015-03-23 12:10:34 -0700294 MI->getOpcode() == TargetOpcode::STATEPOINT ||
Stephen Hines36b56882014-04-23 16:57:46 -0700295 MI->getOpcode() == TargetOpcode::STACKMAP ||
296 MI->getOpcode() == TargetOpcode::PATCHPOINT)
Jim Grosbachdc140c62010-08-17 22:41:55 +0000297 continue;
Bill Wendling976ef862010-12-17 23:09:14 +0000298
Jim Grosbach8708ead2010-08-17 18:13:53 +0000299 // For now, allocate the base register(s) within the basic block
300 // where they're used, and don't try to keep them around outside
301 // of that. It may be beneficial to try sharing them more broadly
302 // than that, but the increased register pressure makes that a
303 // tricky thing to balance. Investigate if re-materializing these
304 // becomes an issue.
305 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
306 // Consider replacing all frame index operands that reference
307 // an object allocated in the local block.
Jim Grosbachdc140c62010-08-17 22:41:55 +0000308 if (MI->getOperand(i).isFI()) {
Jim Grosbachdc140c62010-08-17 22:41:55 +0000309 // Don't try this with values not in the local block.
Jim Grosbach864d22e2010-08-31 17:58:19 +0000310 if (!MFI->isObjectPreAllocated(MI->getOperand(i).getIndex()))
311 break;
Hal Finkeldb31bd32013-04-30 20:04:37 +0000312 int Idx = MI->getOperand(i).getIndex();
313 int64_t LocalOffset = LocalOffsets[Idx];
314 if (!TRI->needsFrameBaseReg(MI, LocalOffset))
315 break;
Jim Grosbach864d22e2010-08-31 17:58:19 +0000316 FrameReferenceInsns.
Hal Finkeldb31bd32013-04-30 20:04:37 +0000317 push_back(FrameRef(MI, LocalOffset, Idx));
Jim Grosbach864d22e2010-08-31 17:58:19 +0000318 break;
319 }
320 }
321 }
322 }
Bill Wendling976ef862010-12-17 23:09:14 +0000323
Jim Grosbach864d22e2010-08-31 17:58:19 +0000324 // Sort the frame references by local offset
325 array_pod_sort(FrameReferenceInsns.begin(), FrameReferenceInsns.end());
Jim Grosbachdc140c62010-08-17 22:41:55 +0000326
Bill Wendling976ef862010-12-17 23:09:14 +0000327 MachineBasicBlock *Entry = Fn.begin();
Jim Grosbach74d803a2010-08-18 17:57:37 +0000328
Hal Finkeldb31bd32013-04-30 20:04:37 +0000329 unsigned BaseReg = 0;
330 int64_t BaseOffset = 0;
331
Bill Wendling976ef862010-12-17 23:09:14 +0000332 // Loop through the frame references and allocate for them as necessary.
Jim Grosbach864d22e2010-08-31 17:58:19 +0000333 for (int ref = 0, e = FrameReferenceInsns.size(); ref < e ; ++ref) {
Hal Finkeldb31bd32013-04-30 20:04:37 +0000334 FrameRef &FR = FrameReferenceInsns[ref];
335 MachineBasicBlock::iterator I = FR.getMachineInstr();
Jim Grosbach864d22e2010-08-31 17:58:19 +0000336 MachineInstr *MI = I;
Hal Finkeldb31bd32013-04-30 20:04:37 +0000337 int64_t LocalOffset = FR.getLocalOffset();
338 int FrameIdx = FR.getFrameIndex();
339 assert(MFI->isObjectPreAllocated(FrameIdx) &&
340 "Only pre-allocated locals expected!");
Jim Grosbach8708ead2010-08-17 18:13:53 +0000341
Hal Finkeldb31bd32013-04-30 20:04:37 +0000342 DEBUG(dbgs() << "Considering: " << *MI);
Jim Grosbachdc140c62010-08-17 22:41:55 +0000343
Hal Finkeldb31bd32013-04-30 20:04:37 +0000344 unsigned idx = 0;
345 for (unsigned f = MI->getNumOperands(); idx != f; ++idx) {
346 if (!MI->getOperand(idx).isFI())
347 continue;
Jim Grosbach74d803a2010-08-18 17:57:37 +0000348
Hal Finkeldb31bd32013-04-30 20:04:37 +0000349 if (FrameIdx == I->getOperand(idx).getIndex())
350 break;
Jim Grosbach8708ead2010-08-17 18:13:53 +0000351 }
Hal Finkeldb31bd32013-04-30 20:04:37 +0000352
353 assert(idx < MI->getNumOperands() && "Cannot find FI operand");
354
355 int64_t Offset = 0;
356 int64_t FrameSizeAdjust = StackGrowsDown ? MFI->getLocalFrameSize() : 0;
357
358 DEBUG(dbgs() << " Replacing FI in: " << *MI);
359
360 // If we have a suitable base register available, use it; otherwise
361 // create a new one. Note that any offset encoded in the
362 // instruction itself will be taken into account by the target,
363 // so we don't have to adjust for it here when reusing a base
364 // register.
365 if (UsedBaseReg && lookupCandidateBaseReg(BaseOffset, FrameSizeAdjust,
366 LocalOffset, MI, TRI)) {
367 DEBUG(dbgs() << " Reusing base register " << BaseReg << "\n");
368 // We found a register to reuse.
369 Offset = FrameSizeAdjust + LocalOffset - BaseOffset;
370 } else {
371 // No previously defined register was in range, so create a // new one.
372
373 int64_t InstrOffset = TRI->getFrameIndexInstrOffset(MI, idx);
374
375 int64_t PrevBaseOffset = BaseOffset;
376 BaseOffset = FrameSizeAdjust + LocalOffset + InstrOffset;
377
378 // We'd like to avoid creating single-use virtual base registers.
379 // Because the FrameRefs are in sorted order, and we've already
380 // processed all FrameRefs before this one, just check whether or not
381 // the next FrameRef will be able to reuse this new register. If not,
382 // then don't bother creating it.
Stephen Hines36b56882014-04-23 16:57:46 -0700383 if (ref + 1 >= e ||
384 !lookupCandidateBaseReg(
385 BaseOffset, FrameSizeAdjust,
386 FrameReferenceInsns[ref + 1].getLocalOffset(),
387 FrameReferenceInsns[ref + 1].getMachineInstr(), TRI)) {
Hal Finkeldb31bd32013-04-30 20:04:37 +0000388 BaseOffset = PrevBaseOffset;
389 continue;
390 }
391
392 const MachineFunction *MF = MI->getParent()->getParent();
393 const TargetRegisterClass *RC = TRI->getPointerRegClass(*MF);
394 BaseReg = Fn.getRegInfo().createVirtualRegister(RC);
395
396 DEBUG(dbgs() << " Materializing base register " << BaseReg <<
397 " at frame local offset " << LocalOffset + InstrOffset << "\n");
398
399 // Tell the target to insert the instruction to initialize
400 // the base register.
401 // MachineBasicBlock::iterator InsertionPt = Entry->begin();
402 TRI->materializeFrameBaseRegister(Entry, BaseReg, FrameIdx,
403 InstrOffset);
404
405 // The base register already includes any offset specified
406 // by the instruction, so account for that so it doesn't get
407 // applied twice.
408 Offset = -InstrOffset;
409
410 ++NumBaseRegisters;
411 UsedBaseReg = true;
412 }
413 assert(BaseReg != 0 && "Unable to allocate virtual base register!");
414
415 // Modify the instruction to use the new base register rather
416 // than the frame index operand.
Stephen Hines36b56882014-04-23 16:57:46 -0700417 TRI->resolveFrameIndex(*I, BaseReg, Offset);
Hal Finkeldb31bd32013-04-30 20:04:37 +0000418 DEBUG(dbgs() << "Resolved: " << *MI);
419
420 ++NumReplacements;
Jim Grosbach8708ead2010-08-17 18:13:53 +0000421 }
Hal Finkeldb31bd32013-04-30 20:04:37 +0000422
Jim Grosbach2d16f5b2010-08-20 16:48:30 +0000423 return UsedBaseReg;
Jim Grosbach8708ead2010-08-17 18:13:53 +0000424}