blob: 36885e8890d50f7c3c3cb246468d24c520372812 [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"
Jim Grosbach3d723672010-08-14 00:15:52 +000039
40using namespace llvm;
41
Stephen Hinesdce4a402014-05-29 02:49:00 -070042#define DEBUG_TYPE "localstackalloc"
43
Jim Grosbach8708ead2010-08-17 18:13:53 +000044STATISTIC(NumAllocations, "Number of frame indices allocated into local block");
45STATISTIC(NumBaseRegisters, "Number of virtual frame base registers allocated");
46STATISTIC(NumReplacements, "Number of frame indices references replaced");
Jim Grosbach3d723672010-08-14 00:15:52 +000047
48namespace {
Jim Grosbach864d22e2010-08-31 17:58:19 +000049 class FrameRef {
50 MachineBasicBlock::iterator MI; // Instr referencing the frame
51 int64_t LocalOffset; // Local offset of the frame idx referenced
Hal Finkeldb31bd32013-04-30 20:04:37 +000052 int FrameIdx; // The frame index
Jim Grosbach864d22e2010-08-31 17:58:19 +000053 public:
Hal Finkeldb31bd32013-04-30 20:04:37 +000054 FrameRef(MachineBasicBlock::iterator I, int64_t Offset, int Idx) :
55 MI(I), LocalOffset(Offset), FrameIdx(Idx) {}
Jim Grosbach864d22e2010-08-31 17:58:19 +000056 bool operator<(const FrameRef &RHS) const {
57 return LocalOffset < RHS.LocalOffset;
58 }
Hal Finkeldb31bd32013-04-30 20:04:37 +000059 MachineBasicBlock::iterator getMachineInstr() const { return MI; }
60 int64_t getLocalOffset() const { return LocalOffset; }
61 int getFrameIndex() const { return FrameIdx; }
Jim Grosbach864d22e2010-08-31 17:58:19 +000062 };
63
Jim Grosbach3d723672010-08-14 00:15:52 +000064 class LocalStackSlotPass: public MachineFunctionPass {
Jim Grosbach2b1e2022010-08-18 22:44:49 +000065 SmallVector<int64_t,16> LocalOffsets;
Stephen Hines36b56882014-04-23 16:57:46 -070066 /// StackObjSet - A set of stack object indexes
67 typedef SmallSetVector<int, 8> StackObjSet;
Jim Grosbach8708ead2010-08-17 18:13:53 +000068
Jim Grosbach2b1e2022010-08-18 22:44:49 +000069 void AdjustStackOffset(MachineFrameInfo *MFI, int FrameIdx, int64_t &Offset,
Jim Grosbach67ff81a2010-08-23 20:40:38 +000070 bool StackGrowsDown, unsigned &MaxAlign);
Stephen Hines36b56882014-04-23 16:57:46 -070071 void AssignProtectedObjSet(const StackObjSet &UnassignedObjs,
72 SmallSet<int, 16> &ProtectedObjs,
73 MachineFrameInfo *MFI, bool StackGrowsDown,
74 int64_t &Offset, unsigned &MaxAlign);
Jim Grosbach2b1e2022010-08-18 22:44:49 +000075 void calculateFrameObjectOffsets(MachineFunction &Fn);
Jim Grosbach2d16f5b2010-08-20 16:48:30 +000076 bool insertFrameReferenceRegisters(MachineFunction &Fn);
Jim Grosbach3d723672010-08-14 00:15:52 +000077 public:
78 static char ID; // Pass identification, replacement for typeid
Stephen Hines36b56882014-04-23 16:57:46 -070079 explicit LocalStackSlotPass() : MachineFunctionPass(ID) {
80 initializeLocalStackSlotPassPass(*PassRegistry::getPassRegistry());
81 }
82 bool runOnMachineFunction(MachineFunction &MF) override;
Jim Grosbach3d723672010-08-14 00:15:52 +000083
Stephen Hines36b56882014-04-23 16:57:46 -070084 void getAnalysisUsage(AnalysisUsage &AU) const override {
Jim Grosbach3d723672010-08-14 00:15:52 +000085 AU.setPreservesCFG();
Stephen Hines36b56882014-04-23 16:57:46 -070086 AU.addRequired<StackProtector>();
Jim Grosbach3d723672010-08-14 00:15:52 +000087 MachineFunctionPass::getAnalysisUsage(AU);
88 }
Jim Grosbach3d723672010-08-14 00:15:52 +000089
90 private:
91 };
92} // end anonymous namespace
93
94char LocalStackSlotPass::ID = 0;
Andrew Trick1dd8c852012-02-08 21:23:13 +000095char &llvm::LocalStackSlotAllocationID = LocalStackSlotPass::ID;
Stephen Hines36b56882014-04-23 16:57:46 -070096INITIALIZE_PASS_BEGIN(LocalStackSlotPass, "localstackalloc",
97 "Local Stack Slot Allocation", false, false)
98INITIALIZE_PASS_DEPENDENCY(StackProtector)
99INITIALIZE_PASS_END(LocalStackSlotPass, "localstackalloc",
100 "Local Stack Slot Allocation", false, false)
101
Jim Grosbach3d723672010-08-14 00:15:52 +0000102
103bool LocalStackSlotPass::runOnMachineFunction(MachineFunction &MF) {
Jim Grosbach2b1e2022010-08-18 22:44:49 +0000104 MachineFrameInfo *MFI = MF.getFrameInfo();
Jim Grosbacha2734422010-08-24 19:05:43 +0000105 const TargetRegisterInfo *TRI = MF.getTarget().getRegisterInfo();
Jim Grosbach2b1e2022010-08-18 22:44:49 +0000106 unsigned LocalObjectCount = MFI->getObjectIndexEnd();
107
Jim Grosbacha2734422010-08-24 19:05:43 +0000108 // If the target doesn't want/need this pass, or if there are no locals
109 // to consider, early exit.
110 if (!TRI->requiresVirtualBaseRegisters(MF) || LocalObjectCount == 0)
Jim Grosbach2b1e2022010-08-18 22:44:49 +0000111 return true;
112
113 // Make sure we have enough space to store the local offsets.
114 LocalOffsets.resize(MFI->getObjectIndexEnd());
115
Jim Grosbach8708ead2010-08-17 18:13:53 +0000116 // Lay out the local blob.
Jim Grosbach3d723672010-08-14 00:15:52 +0000117 calculateFrameObjectOffsets(MF);
Jim Grosbach8708ead2010-08-17 18:13:53 +0000118
119 // Insert virtual base registers to resolve frame index references.
Jim Grosbach2d16f5b2010-08-20 16:48:30 +0000120 bool UsedBaseRegs = insertFrameReferenceRegisters(MF);
Jim Grosbach2b1e2022010-08-18 22:44:49 +0000121
Jim Grosbacha0fc0052010-08-19 02:47:08 +0000122 // Tell MFI whether any base registers were allocated. PEI will only
123 // want to use the local block allocations from this pass if there were any.
124 // Otherwise, PEI can do a bit better job of getting the alignment right
125 // without a hole at the start since it knows the alignment of the stack
126 // at the start of local allocation, and this pass doesn't.
Jim Grosbach2d16f5b2010-08-20 16:48:30 +0000127 MFI->setUseLocalStackAllocationBlock(UsedBaseRegs);
Jim Grosbacha0fc0052010-08-19 02:47:08 +0000128
Jim Grosbach3d723672010-08-14 00:15:52 +0000129 return true;
130}
131
132/// AdjustStackOffset - Helper function used to adjust the stack frame offset.
Jim Grosbach2b1e2022010-08-18 22:44:49 +0000133void LocalStackSlotPass::AdjustStackOffset(MachineFrameInfo *MFI,
134 int FrameIdx, int64_t &Offset,
Jim Grosbach67ff81a2010-08-23 20:40:38 +0000135 bool StackGrowsDown,
Jim Grosbach2b1e2022010-08-18 22:44:49 +0000136 unsigned &MaxAlign) {
Jim Grosbach67ff81a2010-08-23 20:40:38 +0000137 // If the stack grows down, add the object size to find the lowest address.
138 if (StackGrowsDown)
139 Offset += MFI->getObjectSize(FrameIdx);
140
Jim Grosbach3d723672010-08-14 00:15:52 +0000141 unsigned Align = MFI->getObjectAlignment(FrameIdx);
142
143 // If the alignment of this object is greater than that of the stack, then
144 // increase the stack alignment to match.
145 MaxAlign = std::max(MaxAlign, Align);
146
147 // Adjust to alignment boundary.
148 Offset = (Offset + Align - 1) / Align * Align;
149
Jim Grosbach67ff81a2010-08-23 20:40:38 +0000150 int64_t LocalOffset = StackGrowsDown ? -Offset : Offset;
Jim Grosbach3d723672010-08-14 00:15:52 +0000151 DEBUG(dbgs() << "Allocate FI(" << FrameIdx << ") to local offset "
Jim Grosbach67ff81a2010-08-23 20:40:38 +0000152 << LocalOffset << "\n");
Jim Grosbach2b1e2022010-08-18 22:44:49 +0000153 // Keep the offset available for base register allocation
Jim Grosbach67ff81a2010-08-23 20:40:38 +0000154 LocalOffsets[FrameIdx] = LocalOffset;
Jim Grosbach2b1e2022010-08-18 22:44:49 +0000155 // And tell MFI about it for PEI to use later
Jim Grosbach67ff81a2010-08-23 20:40:38 +0000156 MFI->mapLocalFrameObject(FrameIdx, LocalOffset);
157
158 if (!StackGrowsDown)
159 Offset += MFI->getObjectSize(FrameIdx);
Jim Grosbach3d723672010-08-14 00:15:52 +0000160
161 ++NumAllocations;
162}
163
Stephen Hines36b56882014-04-23 16:57:46 -0700164/// AssignProtectedObjSet - Helper function to assign large stack objects (i.e.,
165/// those required to be close to the Stack Protector) to stack offsets.
166void LocalStackSlotPass::AssignProtectedObjSet(const StackObjSet &UnassignedObjs,
167 SmallSet<int, 16> &ProtectedObjs,
168 MachineFrameInfo *MFI,
169 bool StackGrowsDown, int64_t &Offset,
170 unsigned &MaxAlign) {
171
172 for (StackObjSet::const_iterator I = UnassignedObjs.begin(),
173 E = UnassignedObjs.end(); I != E; ++I) {
174 int i = *I;
175 AdjustStackOffset(MFI, i, Offset, StackGrowsDown, MaxAlign);
176 ProtectedObjs.insert(i);
177 }
178}
179
Jim Grosbach3d723672010-08-14 00:15:52 +0000180/// calculateFrameObjectOffsets - Calculate actual frame offsets for all of the
181/// abstract stack objects.
182///
183void LocalStackSlotPass::calculateFrameObjectOffsets(MachineFunction &Fn) {
Jim Grosbach3d723672010-08-14 00:15:52 +0000184 // Loop over all of the stack objects, assigning sequential addresses...
185 MachineFrameInfo *MFI = Fn.getFrameInfo();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +0000186 const TargetFrameLowering &TFI = *Fn.getTarget().getFrameLowering();
Jim Grosbach67ff81a2010-08-23 20:40:38 +0000187 bool StackGrowsDown =
Anton Korobeynikov16c29b52011-01-10 12:39:04 +0000188 TFI.getStackGrowthDirection() == TargetFrameLowering::StackGrowsDown;
Jim Grosbach3d723672010-08-14 00:15:52 +0000189 int64_t Offset = 0;
Jim Grosbach4861ed62010-08-16 22:30:41 +0000190 unsigned MaxAlign = 0;
Stephen Hines36b56882014-04-23 16:57:46 -0700191 StackProtector *SP = &getAnalysis<StackProtector>();
Jim Grosbach3d723672010-08-14 00:15:52 +0000192
193 // Make sure that the stack protector comes before the local variables on the
194 // stack.
Stephen Hines36b56882014-04-23 16:57:46 -0700195 SmallSet<int, 16> ProtectedObjs;
Jim Grosbach3d723672010-08-14 00:15:52 +0000196 if (MFI->getStackProtectorIndex() >= 0) {
Stephen Hines36b56882014-04-23 16:57:46 -0700197 StackObjSet LargeArrayObjs;
198 StackObjSet SmallArrayObjs;
199 StackObjSet AddrOfObjs;
200
Jim Grosbach67ff81a2010-08-23 20:40:38 +0000201 AdjustStackOffset(MFI, MFI->getStackProtectorIndex(), Offset,
202 StackGrowsDown, MaxAlign);
Jim Grosbach3d723672010-08-14 00:15:52 +0000203
204 // Assign large stack objects first.
205 for (unsigned i = 0, e = MFI->getObjectIndexEnd(); i != e; ++i) {
206 if (MFI->isDeadObjectIndex(i))
207 continue;
208 if (MFI->getStackProtectorIndex() == (int)i)
209 continue;
Jim Grosbach3d723672010-08-14 00:15:52 +0000210
Stephen Hines36b56882014-04-23 16:57:46 -0700211 switch (SP->getSSPLayout(MFI->getObjectAllocation(i))) {
212 case StackProtector::SSPLK_None:
213 continue;
214 case StackProtector::SSPLK_SmallArray:
215 SmallArrayObjs.insert(i);
216 continue;
217 case StackProtector::SSPLK_AddrOf:
218 AddrOfObjs.insert(i);
219 continue;
220 case StackProtector::SSPLK_LargeArray:
221 LargeArrayObjs.insert(i);
222 continue;
223 }
224 llvm_unreachable("Unexpected SSPLayoutKind.");
Jim Grosbach3d723672010-08-14 00:15:52 +0000225 }
Stephen Hines36b56882014-04-23 16:57:46 -0700226
227 AssignProtectedObjSet(LargeArrayObjs, ProtectedObjs, MFI, StackGrowsDown,
228 Offset, MaxAlign);
229 AssignProtectedObjSet(SmallArrayObjs, ProtectedObjs, MFI, StackGrowsDown,
230 Offset, MaxAlign);
231 AssignProtectedObjSet(AddrOfObjs, ProtectedObjs, MFI, StackGrowsDown,
232 Offset, MaxAlign);
Jim Grosbach3d723672010-08-14 00:15:52 +0000233 }
234
235 // Then assign frame offsets to stack objects that are not used to spill
236 // callee saved registers.
237 for (unsigned i = 0, e = MFI->getObjectIndexEnd(); i != e; ++i) {
238 if (MFI->isDeadObjectIndex(i))
239 continue;
240 if (MFI->getStackProtectorIndex() == (int)i)
241 continue;
Stephen Hines36b56882014-04-23 16:57:46 -0700242 if (ProtectedObjs.count(i))
Jim Grosbach3d723672010-08-14 00:15:52 +0000243 continue;
244
Jim Grosbach67ff81a2010-08-23 20:40:38 +0000245 AdjustStackOffset(MFI, i, Offset, StackGrowsDown, MaxAlign);
Jim Grosbach3d723672010-08-14 00:15:52 +0000246 }
247
Jim Grosbach3d723672010-08-14 00:15:52 +0000248 // Remember how big this blob of stack space is
Jim Grosbach63249342010-08-16 18:06:15 +0000249 MFI->setLocalFrameSize(Offset);
Jim Grosbach4861ed62010-08-16 22:30:41 +0000250 MFI->setLocalFrameMaxAlign(MaxAlign);
Jim Grosbach3d723672010-08-14 00:15:52 +0000251}
Jim Grosbach8708ead2010-08-17 18:13:53 +0000252
Jim Grosbach74d803a2010-08-18 17:57:37 +0000253static inline bool
Hal Finkeldb31bd32013-04-30 20:04:37 +0000254lookupCandidateBaseReg(int64_t BaseOffset,
Jim Grosbach67ff81a2010-08-23 20:40:38 +0000255 int64_t FrameSizeAdjust,
Jim Grosbach2b1e2022010-08-18 22:44:49 +0000256 int64_t LocalFrameOffset,
Jim Grosbach74d803a2010-08-18 17:57:37 +0000257 const MachineInstr *MI,
258 const TargetRegisterInfo *TRI) {
Hal Finkeldb31bd32013-04-30 20:04:37 +0000259 // Check if the relative offset from the where the base register references
260 // to the target address is in range for the instruction.
261 int64_t Offset = FrameSizeAdjust + LocalFrameOffset - BaseOffset;
262 return TRI->isFrameOffsetLegal(MI, Offset);
Jim Grosbach74d803a2010-08-18 17:57:37 +0000263}
264
Jim Grosbach2d16f5b2010-08-20 16:48:30 +0000265bool LocalStackSlotPass::insertFrameReferenceRegisters(MachineFunction &Fn) {
Jim Grosbach8708ead2010-08-17 18:13:53 +0000266 // Scan the function's instructions looking for frame index references.
267 // For each, ask the target if it wants a virtual base register for it
268 // based on what we can tell it about where the local will end up in the
269 // stack frame. If it wants one, re-use a suitable one we've previously
270 // allocated, or if there isn't one that fits the bill, allocate a new one
271 // and ask the target to create a defining instruction for it.
Jim Grosbach2d16f5b2010-08-20 16:48:30 +0000272 bool UsedBaseReg = false;
Jim Grosbach8708ead2010-08-17 18:13:53 +0000273
274 MachineFrameInfo *MFI = Fn.getFrameInfo();
275 const TargetRegisterInfo *TRI = Fn.getTarget().getRegisterInfo();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +0000276 const TargetFrameLowering &TFI = *Fn.getTarget().getFrameLowering();
Jim Grosbach4c207c22010-08-20 20:25:31 +0000277 bool StackGrowsDown =
Anton Korobeynikov16c29b52011-01-10 12:39:04 +0000278 TFI.getStackGrowthDirection() == TargetFrameLowering::StackGrowsDown;
Jim Grosbach8708ead2010-08-17 18:13:53 +0000279
Jim Grosbach864d22e2010-08-31 17:58:19 +0000280 // Collect all of the instructions in the block that reference
281 // a frame index. Also store the frame index referenced to ease later
282 // lookup. (For any insn that has more than one FI reference, we arbitrarily
283 // choose the first one).
284 SmallVector<FrameRef, 64> FrameReferenceInsns;
Jim Grosbach2b1e2022010-08-18 22:44:49 +0000285
Jim Grosbach864d22e2010-08-31 17:58:19 +0000286 for (MachineFunction::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
Jim Grosbach8708ead2010-08-17 18:13:53 +0000287 for (MachineBasicBlock::iterator I = BB->begin(); I != BB->end(); ++I) {
288 MachineInstr *MI = I;
Bill Wendling976ef862010-12-17 23:09:14 +0000289
Stephen Hines36b56882014-04-23 16:57:46 -0700290 // Debug value, stackmap and patchpoint instructions can't be out of
291 // range, so they don't need any updates.
292 if (MI->isDebugValue() ||
293 MI->getOpcode() == TargetOpcode::STACKMAP ||
294 MI->getOpcode() == TargetOpcode::PATCHPOINT)
Jim Grosbachdc140c62010-08-17 22:41:55 +0000295 continue;
Bill Wendling976ef862010-12-17 23:09:14 +0000296
Jim Grosbach8708ead2010-08-17 18:13:53 +0000297 // For now, allocate the base register(s) within the basic block
298 // where they're used, and don't try to keep them around outside
299 // of that. It may be beneficial to try sharing them more broadly
300 // than that, but the increased register pressure makes that a
301 // tricky thing to balance. Investigate if re-materializing these
302 // becomes an issue.
303 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
304 // Consider replacing all frame index operands that reference
305 // an object allocated in the local block.
Jim Grosbachdc140c62010-08-17 22:41:55 +0000306 if (MI->getOperand(i).isFI()) {
Jim Grosbachdc140c62010-08-17 22:41:55 +0000307 // Don't try this with values not in the local block.
Jim Grosbach864d22e2010-08-31 17:58:19 +0000308 if (!MFI->isObjectPreAllocated(MI->getOperand(i).getIndex()))
309 break;
Hal Finkeldb31bd32013-04-30 20:04:37 +0000310 int Idx = MI->getOperand(i).getIndex();
311 int64_t LocalOffset = LocalOffsets[Idx];
312 if (!TRI->needsFrameBaseReg(MI, LocalOffset))
313 break;
Jim Grosbach864d22e2010-08-31 17:58:19 +0000314 FrameReferenceInsns.
Hal Finkeldb31bd32013-04-30 20:04:37 +0000315 push_back(FrameRef(MI, LocalOffset, Idx));
Jim Grosbach864d22e2010-08-31 17:58:19 +0000316 break;
317 }
318 }
319 }
320 }
Bill Wendling976ef862010-12-17 23:09:14 +0000321
Jim Grosbach864d22e2010-08-31 17:58:19 +0000322 // Sort the frame references by local offset
323 array_pod_sort(FrameReferenceInsns.begin(), FrameReferenceInsns.end());
Jim Grosbachdc140c62010-08-17 22:41:55 +0000324
Bill Wendling976ef862010-12-17 23:09:14 +0000325 MachineBasicBlock *Entry = Fn.begin();
Jim Grosbach74d803a2010-08-18 17:57:37 +0000326
Hal Finkeldb31bd32013-04-30 20:04:37 +0000327 unsigned BaseReg = 0;
328 int64_t BaseOffset = 0;
329
Bill Wendling976ef862010-12-17 23:09:14 +0000330 // Loop through the frame references and allocate for them as necessary.
Jim Grosbach864d22e2010-08-31 17:58:19 +0000331 for (int ref = 0, e = FrameReferenceInsns.size(); ref < e ; ++ref) {
Hal Finkeldb31bd32013-04-30 20:04:37 +0000332 FrameRef &FR = FrameReferenceInsns[ref];
333 MachineBasicBlock::iterator I = FR.getMachineInstr();
Jim Grosbach864d22e2010-08-31 17:58:19 +0000334 MachineInstr *MI = I;
Hal Finkeldb31bd32013-04-30 20:04:37 +0000335 int64_t LocalOffset = FR.getLocalOffset();
336 int FrameIdx = FR.getFrameIndex();
337 assert(MFI->isObjectPreAllocated(FrameIdx) &&
338 "Only pre-allocated locals expected!");
Jim Grosbach8708ead2010-08-17 18:13:53 +0000339
Hal Finkeldb31bd32013-04-30 20:04:37 +0000340 DEBUG(dbgs() << "Considering: " << *MI);
Jim Grosbachdc140c62010-08-17 22:41:55 +0000341
Hal Finkeldb31bd32013-04-30 20:04:37 +0000342 unsigned idx = 0;
343 for (unsigned f = MI->getNumOperands(); idx != f; ++idx) {
344 if (!MI->getOperand(idx).isFI())
345 continue;
Jim Grosbach74d803a2010-08-18 17:57:37 +0000346
Hal Finkeldb31bd32013-04-30 20:04:37 +0000347 if (FrameIdx == I->getOperand(idx).getIndex())
348 break;
Jim Grosbach8708ead2010-08-17 18:13:53 +0000349 }
Hal Finkeldb31bd32013-04-30 20:04:37 +0000350
351 assert(idx < MI->getNumOperands() && "Cannot find FI operand");
352
353 int64_t Offset = 0;
354 int64_t FrameSizeAdjust = StackGrowsDown ? MFI->getLocalFrameSize() : 0;
355
356 DEBUG(dbgs() << " Replacing FI in: " << *MI);
357
358 // If we have a suitable base register available, use it; otherwise
359 // create a new one. Note that any offset encoded in the
360 // instruction itself will be taken into account by the target,
361 // so we don't have to adjust for it here when reusing a base
362 // register.
363 if (UsedBaseReg && lookupCandidateBaseReg(BaseOffset, FrameSizeAdjust,
364 LocalOffset, MI, TRI)) {
365 DEBUG(dbgs() << " Reusing base register " << BaseReg << "\n");
366 // We found a register to reuse.
367 Offset = FrameSizeAdjust + LocalOffset - BaseOffset;
368 } else {
369 // No previously defined register was in range, so create a // new one.
370
371 int64_t InstrOffset = TRI->getFrameIndexInstrOffset(MI, idx);
372
373 int64_t PrevBaseOffset = BaseOffset;
374 BaseOffset = FrameSizeAdjust + LocalOffset + InstrOffset;
375
376 // We'd like to avoid creating single-use virtual base registers.
377 // Because the FrameRefs are in sorted order, and we've already
378 // processed all FrameRefs before this one, just check whether or not
379 // the next FrameRef will be able to reuse this new register. If not,
380 // then don't bother creating it.
Stephen Hines36b56882014-04-23 16:57:46 -0700381 if (ref + 1 >= e ||
382 !lookupCandidateBaseReg(
383 BaseOffset, FrameSizeAdjust,
384 FrameReferenceInsns[ref + 1].getLocalOffset(),
385 FrameReferenceInsns[ref + 1].getMachineInstr(), TRI)) {
Hal Finkeldb31bd32013-04-30 20:04:37 +0000386 BaseOffset = PrevBaseOffset;
387 continue;
388 }
389
390 const MachineFunction *MF = MI->getParent()->getParent();
391 const TargetRegisterClass *RC = TRI->getPointerRegClass(*MF);
392 BaseReg = Fn.getRegInfo().createVirtualRegister(RC);
393
394 DEBUG(dbgs() << " Materializing base register " << BaseReg <<
395 " at frame local offset " << LocalOffset + InstrOffset << "\n");
396
397 // Tell the target to insert the instruction to initialize
398 // the base register.
399 // MachineBasicBlock::iterator InsertionPt = Entry->begin();
400 TRI->materializeFrameBaseRegister(Entry, BaseReg, FrameIdx,
401 InstrOffset);
402
403 // The base register already includes any offset specified
404 // by the instruction, so account for that so it doesn't get
405 // applied twice.
406 Offset = -InstrOffset;
407
408 ++NumBaseRegisters;
409 UsedBaseReg = true;
410 }
411 assert(BaseReg != 0 && "Unable to allocate virtual base register!");
412
413 // Modify the instruction to use the new base register rather
414 // than the frame index operand.
Stephen Hines36b56882014-04-23 16:57:46 -0700415 TRI->resolveFrameIndex(*I, BaseReg, Offset);
Hal Finkeldb31bd32013-04-30 20:04:37 +0000416 DEBUG(dbgs() << "Resolved: " << *MI);
417
418 ++NumReplacements;
Jim Grosbach8708ead2010-08-17 18:13:53 +0000419 }
Hal Finkeldb31bd32013-04-30 20:04:37 +0000420
Jim Grosbach2d16f5b2010-08-20 16:48:30 +0000421 return UsedBaseReg;
Jim Grosbach8708ead2010-08-17 18:13:53 +0000422}