blob: 69f1220a4c25aac23c897aa41466d4b99004b623 [file] [log] [blame]
Jim Grosbacha030fa52010-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 Wilsond23b3d22011-01-07 04:58:58 +000012// estimates they are likely to be out of range of stack pointer and frame
Jim Grosbacha030fa52010-08-14 00:15:52 +000013// pointer relative addressing.
14//
15//===----------------------------------------------------------------------===//
16
Chandler Carruthed0881b2012-12-03 16:50:05 +000017#include "llvm/CodeGen/Passes.h"
18#include "llvm/ADT/STLExtras.h"
Josh Magee22b8ba22013-12-19 03:17:11 +000019#include "llvm/ADT/SetVector.h"
Chandler Carruthed0881b2012-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"
Josh Magee22b8ba22013-12-19 03:17:11 +000026#include "llvm/CodeGen/StackProtector.h"
Chandler Carruth9fb823b2013-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 Grosbacha030fa52010-08-14 00:15:52 +000033#include "llvm/Pass.h"
Jim Grosbacha030fa52010-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 Korobeynikov2f931282011-01-10 12:39:04 +000037#include "llvm/Target/TargetFrameLowering.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000038#include "llvm/Target/TargetRegisterInfo.h"
Eric Christopherd9134482014-08-04 21:25:23 +000039#include "llvm/Target/TargetSubtargetInfo.h"
Jim Grosbacha030fa52010-08-14 00:15:52 +000040
41using namespace llvm;
42
Chandler Carruth1b9dde02014-04-22 02:02:50 +000043#define DEBUG_TYPE "localstackalloc"
44
Jim Grosbachc252ee22010-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 Grosbacha030fa52010-08-14 00:15:52 +000048
49namespace {
Jim Grosbach365e9312010-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 Finkel71532512013-04-30 20:04:37 +000053 int FrameIdx; // The frame index
Jim Grosbach365e9312010-08-31 17:58:19 +000054 public:
Hal Finkel71532512013-04-30 20:04:37 +000055 FrameRef(MachineBasicBlock::iterator I, int64_t Offset, int Idx) :
56 MI(I), LocalOffset(Offset), FrameIdx(Idx) {}
Jim Grosbach365e9312010-08-31 17:58:19 +000057 bool operator<(const FrameRef &RHS) const {
58 return LocalOffset < RHS.LocalOffset;
59 }
Hal Finkel71532512013-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 Grosbach365e9312010-08-31 17:58:19 +000063 };
64
Jim Grosbacha030fa52010-08-14 00:15:52 +000065 class LocalStackSlotPass: public MachineFunctionPass {
Jim Grosbachdbfc2ce2010-08-18 22:44:49 +000066 SmallVector<int64_t,16> LocalOffsets;
Josh Magee22b8ba22013-12-19 03:17:11 +000067 /// StackObjSet - A set of stack object indexes
68 typedef SmallSetVector<int, 8> StackObjSet;
Jim Grosbachc252ee22010-08-17 18:13:53 +000069
Jim Grosbachdbfc2ce2010-08-18 22:44:49 +000070 void AdjustStackOffset(MachineFrameInfo *MFI, int FrameIdx, int64_t &Offset,
Jim Grosbach754f8e62010-08-23 20:40:38 +000071 bool StackGrowsDown, unsigned &MaxAlign);
Josh Magee22b8ba22013-12-19 03:17:11 +000072 void AssignProtectedObjSet(const StackObjSet &UnassignedObjs,
73 SmallSet<int, 16> &ProtectedObjs,
74 MachineFrameInfo *MFI, bool StackGrowsDown,
75 int64_t &Offset, unsigned &MaxAlign);
Jim Grosbachdbfc2ce2010-08-18 22:44:49 +000076 void calculateFrameObjectOffsets(MachineFunction &Fn);
Jim Grosbach06006912010-08-20 16:48:30 +000077 bool insertFrameReferenceRegisters(MachineFunction &Fn);
Jim Grosbacha030fa52010-08-14 00:15:52 +000078 public:
79 static char ID; // Pass identification, replacement for typeid
Josh Magee22b8ba22013-12-19 03:17:11 +000080 explicit LocalStackSlotPass() : MachineFunctionPass(ID) {
81 initializeLocalStackSlotPassPass(*PassRegistry::getPassRegistry());
82 }
Craig Topper4584cd52014-03-07 09:26:03 +000083 bool runOnMachineFunction(MachineFunction &MF) override;
Jim Grosbacha030fa52010-08-14 00:15:52 +000084
Craig Topper4584cd52014-03-07 09:26:03 +000085 void getAnalysisUsage(AnalysisUsage &AU) const override {
Jim Grosbacha030fa52010-08-14 00:15:52 +000086 AU.setPreservesCFG();
Josh Magee22b8ba22013-12-19 03:17:11 +000087 AU.addRequired<StackProtector>();
Jim Grosbacha030fa52010-08-14 00:15:52 +000088 MachineFunctionPass::getAnalysisUsage(AU);
89 }
Jim Grosbacha030fa52010-08-14 00:15:52 +000090
91 private:
92 };
93} // end anonymous namespace
94
95char LocalStackSlotPass::ID = 0;
Andrew Trick1fa5bcb2012-02-08 21:23:13 +000096char &llvm::LocalStackSlotAllocationID = LocalStackSlotPass::ID;
Josh Magee22b8ba22013-12-19 03:17:11 +000097INITIALIZE_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 Grosbacha030fa52010-08-14 00:15:52 +0000103
104bool LocalStackSlotPass::runOnMachineFunction(MachineFunction &MF) {
Jim Grosbachdbfc2ce2010-08-18 22:44:49 +0000105 MachineFrameInfo *MFI = MF.getFrameInfo();
Eric Christopherd9134482014-08-04 21:25:23 +0000106 const TargetRegisterInfo *TRI =
107 MF.getTarget().getSubtargetImpl()->getRegisterInfo();
Jim Grosbachdbfc2ce2010-08-18 22:44:49 +0000108 unsigned LocalObjectCount = MFI->getObjectIndexEnd();
109
Jim Grosbachb77d67f2010-08-24 19:05:43 +0000110 // If the target doesn't want/need this pass, or if there are no locals
111 // to consider, early exit.
112 if (!TRI->requiresVirtualBaseRegisters(MF) || LocalObjectCount == 0)
Jim Grosbachdbfc2ce2010-08-18 22:44:49 +0000113 return true;
114
115 // Make sure we have enough space to store the local offsets.
116 LocalOffsets.resize(MFI->getObjectIndexEnd());
117
Jim Grosbachc252ee22010-08-17 18:13:53 +0000118 // Lay out the local blob.
Jim Grosbacha030fa52010-08-14 00:15:52 +0000119 calculateFrameObjectOffsets(MF);
Jim Grosbachc252ee22010-08-17 18:13:53 +0000120
121 // Insert virtual base registers to resolve frame index references.
Jim Grosbach06006912010-08-20 16:48:30 +0000122 bool UsedBaseRegs = insertFrameReferenceRegisters(MF);
Jim Grosbachdbfc2ce2010-08-18 22:44:49 +0000123
Jim Grosbach743d7c82010-08-19 02:47:08 +0000124 // Tell MFI whether any base registers were allocated. PEI will only
125 // want to use the local block allocations from this pass if there were any.
126 // Otherwise, PEI can do a bit better job of getting the alignment right
127 // without a hole at the start since it knows the alignment of the stack
128 // at the start of local allocation, and this pass doesn't.
Jim Grosbach06006912010-08-20 16:48:30 +0000129 MFI->setUseLocalStackAllocationBlock(UsedBaseRegs);
Jim Grosbach743d7c82010-08-19 02:47:08 +0000130
Jim Grosbacha030fa52010-08-14 00:15:52 +0000131 return true;
132}
133
134/// AdjustStackOffset - Helper function used to adjust the stack frame offset.
Jim Grosbachdbfc2ce2010-08-18 22:44:49 +0000135void LocalStackSlotPass::AdjustStackOffset(MachineFrameInfo *MFI,
136 int FrameIdx, int64_t &Offset,
Jim Grosbach754f8e62010-08-23 20:40:38 +0000137 bool StackGrowsDown,
Jim Grosbachdbfc2ce2010-08-18 22:44:49 +0000138 unsigned &MaxAlign) {
Jim Grosbach754f8e62010-08-23 20:40:38 +0000139 // If the stack grows down, add the object size to find the lowest address.
140 if (StackGrowsDown)
141 Offset += MFI->getObjectSize(FrameIdx);
142
Jim Grosbacha030fa52010-08-14 00:15:52 +0000143 unsigned Align = MFI->getObjectAlignment(FrameIdx);
144
145 // If the alignment of this object is greater than that of the stack, then
146 // increase the stack alignment to match.
147 MaxAlign = std::max(MaxAlign, Align);
148
149 // Adjust to alignment boundary.
150 Offset = (Offset + Align - 1) / Align * Align;
151
Jim Grosbach754f8e62010-08-23 20:40:38 +0000152 int64_t LocalOffset = StackGrowsDown ? -Offset : Offset;
Jim Grosbacha030fa52010-08-14 00:15:52 +0000153 DEBUG(dbgs() << "Allocate FI(" << FrameIdx << ") to local offset "
Jim Grosbach754f8e62010-08-23 20:40:38 +0000154 << LocalOffset << "\n");
Jim Grosbachdbfc2ce2010-08-18 22:44:49 +0000155 // Keep the offset available for base register allocation
Jim Grosbach754f8e62010-08-23 20:40:38 +0000156 LocalOffsets[FrameIdx] = LocalOffset;
Jim Grosbachdbfc2ce2010-08-18 22:44:49 +0000157 // And tell MFI about it for PEI to use later
Jim Grosbach754f8e62010-08-23 20:40:38 +0000158 MFI->mapLocalFrameObject(FrameIdx, LocalOffset);
159
160 if (!StackGrowsDown)
161 Offset += MFI->getObjectSize(FrameIdx);
Jim Grosbacha030fa52010-08-14 00:15:52 +0000162
163 ++NumAllocations;
164}
165
Josh Magee22b8ba22013-12-19 03:17:11 +0000166/// AssignProtectedObjSet - Helper function to assign large stack objects (i.e.,
167/// those required to be close to the Stack Protector) to stack offsets.
168void LocalStackSlotPass::AssignProtectedObjSet(const StackObjSet &UnassignedObjs,
169 SmallSet<int, 16> &ProtectedObjs,
170 MachineFrameInfo *MFI,
171 bool StackGrowsDown, int64_t &Offset,
172 unsigned &MaxAlign) {
173
174 for (StackObjSet::const_iterator I = UnassignedObjs.begin(),
175 E = UnassignedObjs.end(); I != E; ++I) {
176 int i = *I;
177 AdjustStackOffset(MFI, i, Offset, StackGrowsDown, MaxAlign);
178 ProtectedObjs.insert(i);
179 }
180}
181
Jim Grosbacha030fa52010-08-14 00:15:52 +0000182/// calculateFrameObjectOffsets - Calculate actual frame offsets for all of the
183/// abstract stack objects.
184///
185void LocalStackSlotPass::calculateFrameObjectOffsets(MachineFunction &Fn) {
Jim Grosbacha030fa52010-08-14 00:15:52 +0000186 // Loop over all of the stack objects, assigning sequential addresses...
187 MachineFrameInfo *MFI = Fn.getFrameInfo();
Eric Christopherd9134482014-08-04 21:25:23 +0000188 const TargetFrameLowering &TFI =
189 *Fn.getTarget().getSubtargetImpl()->getFrameLowering();
Jim Grosbach754f8e62010-08-23 20:40:38 +0000190 bool StackGrowsDown =
Anton Korobeynikov2f931282011-01-10 12:39:04 +0000191 TFI.getStackGrowthDirection() == TargetFrameLowering::StackGrowsDown;
Jim Grosbacha030fa52010-08-14 00:15:52 +0000192 int64_t Offset = 0;
Jim Grosbach36d5ec32010-08-16 22:30:41 +0000193 unsigned MaxAlign = 0;
Josh Magee22b8ba22013-12-19 03:17:11 +0000194 StackProtector *SP = &getAnalysis<StackProtector>();
Jim Grosbacha030fa52010-08-14 00:15:52 +0000195
196 // Make sure that the stack protector comes before the local variables on the
197 // stack.
Josh Magee22b8ba22013-12-19 03:17:11 +0000198 SmallSet<int, 16> ProtectedObjs;
Jim Grosbacha030fa52010-08-14 00:15:52 +0000199 if (MFI->getStackProtectorIndex() >= 0) {
Josh Magee22b8ba22013-12-19 03:17:11 +0000200 StackObjSet LargeArrayObjs;
Josh Magee24c7f062014-02-01 01:36:16 +0000201 StackObjSet SmallArrayObjs;
202 StackObjSet AddrOfObjs;
203
Jim Grosbach754f8e62010-08-23 20:40:38 +0000204 AdjustStackOffset(MFI, MFI->getStackProtectorIndex(), Offset,
205 StackGrowsDown, MaxAlign);
Jim Grosbacha030fa52010-08-14 00:15:52 +0000206
207 // Assign large stack objects first.
208 for (unsigned i = 0, e = MFI->getObjectIndexEnd(); i != e; ++i) {
209 if (MFI->isDeadObjectIndex(i))
210 continue;
211 if (MFI->getStackProtectorIndex() == (int)i)
212 continue;
Jim Grosbacha030fa52010-08-14 00:15:52 +0000213
Josh Magee22b8ba22013-12-19 03:17:11 +0000214 switch (SP->getSSPLayout(MFI->getObjectAllocation(i))) {
215 case StackProtector::SSPLK_None:
Josh Magee24c7f062014-02-01 01:36:16 +0000216 continue;
Josh Magee22b8ba22013-12-19 03:17:11 +0000217 case StackProtector::SSPLK_SmallArray:
Josh Magee24c7f062014-02-01 01:36:16 +0000218 SmallArrayObjs.insert(i);
219 continue;
Josh Magee22b8ba22013-12-19 03:17:11 +0000220 case StackProtector::SSPLK_AddrOf:
Josh Magee24c7f062014-02-01 01:36:16 +0000221 AddrOfObjs.insert(i);
Josh Magee22b8ba22013-12-19 03:17:11 +0000222 continue;
223 case StackProtector::SSPLK_LargeArray:
224 LargeArrayObjs.insert(i);
225 continue;
226 }
227 llvm_unreachable("Unexpected SSPLayoutKind.");
Jim Grosbacha030fa52010-08-14 00:15:52 +0000228 }
Josh Magee22b8ba22013-12-19 03:17:11 +0000229
230 AssignProtectedObjSet(LargeArrayObjs, ProtectedObjs, MFI, StackGrowsDown,
231 Offset, MaxAlign);
Josh Magee24c7f062014-02-01 01:36:16 +0000232 AssignProtectedObjSet(SmallArrayObjs, ProtectedObjs, MFI, StackGrowsDown,
233 Offset, MaxAlign);
234 AssignProtectedObjSet(AddrOfObjs, ProtectedObjs, MFI, StackGrowsDown,
235 Offset, MaxAlign);
Jim Grosbacha030fa52010-08-14 00:15:52 +0000236 }
237
238 // Then assign frame offsets to stack objects that are not used to spill
239 // callee saved registers.
240 for (unsigned i = 0, e = MFI->getObjectIndexEnd(); i != e; ++i) {
241 if (MFI->isDeadObjectIndex(i))
242 continue;
243 if (MFI->getStackProtectorIndex() == (int)i)
244 continue;
Josh Magee22b8ba22013-12-19 03:17:11 +0000245 if (ProtectedObjs.count(i))
Jim Grosbacha030fa52010-08-14 00:15:52 +0000246 continue;
247
Jim Grosbach754f8e62010-08-23 20:40:38 +0000248 AdjustStackOffset(MFI, i, Offset, StackGrowsDown, MaxAlign);
Jim Grosbacha030fa52010-08-14 00:15:52 +0000249 }
250
Jim Grosbacha030fa52010-08-14 00:15:52 +0000251 // Remember how big this blob of stack space is
Jim Grosbach8be01962010-08-16 18:06:15 +0000252 MFI->setLocalFrameSize(Offset);
Jim Grosbach36d5ec32010-08-16 22:30:41 +0000253 MFI->setLocalFrameMaxAlign(MaxAlign);
Jim Grosbacha030fa52010-08-14 00:15:52 +0000254}
Jim Grosbachc252ee22010-08-17 18:13:53 +0000255
Jim Grosbache0e9b302010-08-18 17:57:37 +0000256static inline bool
Hal Finkel71532512013-04-30 20:04:37 +0000257lookupCandidateBaseReg(int64_t BaseOffset,
Jim Grosbach754f8e62010-08-23 20:40:38 +0000258 int64_t FrameSizeAdjust,
Jim Grosbachdbfc2ce2010-08-18 22:44:49 +0000259 int64_t LocalFrameOffset,
Jim Grosbache0e9b302010-08-18 17:57:37 +0000260 const MachineInstr *MI,
261 const TargetRegisterInfo *TRI) {
Hal Finkel71532512013-04-30 20:04:37 +0000262 // Check if the relative offset from the where the base register references
263 // to the target address is in range for the instruction.
264 int64_t Offset = FrameSizeAdjust + LocalFrameOffset - BaseOffset;
265 return TRI->isFrameOffsetLegal(MI, Offset);
Jim Grosbache0e9b302010-08-18 17:57:37 +0000266}
267
Jim Grosbach06006912010-08-20 16:48:30 +0000268bool LocalStackSlotPass::insertFrameReferenceRegisters(MachineFunction &Fn) {
Jim Grosbachc252ee22010-08-17 18:13:53 +0000269 // Scan the function's instructions looking for frame index references.
270 // For each, ask the target if it wants a virtual base register for it
271 // based on what we can tell it about where the local will end up in the
272 // stack frame. If it wants one, re-use a suitable one we've previously
273 // allocated, or if there isn't one that fits the bill, allocate a new one
274 // and ask the target to create a defining instruction for it.
Jim Grosbach06006912010-08-20 16:48:30 +0000275 bool UsedBaseReg = false;
Jim Grosbachc252ee22010-08-17 18:13:53 +0000276
277 MachineFrameInfo *MFI = Fn.getFrameInfo();
Eric Christopherd9134482014-08-04 21:25:23 +0000278 const TargetRegisterInfo *TRI =
279 Fn.getTarget().getSubtargetImpl()->getRegisterInfo();
280 const TargetFrameLowering &TFI =
281 *Fn.getTarget().getSubtargetImpl()->getFrameLowering();
Jim Grosbach7648a212010-08-20 20:25:31 +0000282 bool StackGrowsDown =
Anton Korobeynikov2f931282011-01-10 12:39:04 +0000283 TFI.getStackGrowthDirection() == TargetFrameLowering::StackGrowsDown;
Jim Grosbachc252ee22010-08-17 18:13:53 +0000284
Jim Grosbach365e9312010-08-31 17:58:19 +0000285 // Collect all of the instructions in the block that reference
286 // a frame index. Also store the frame index referenced to ease later
287 // lookup. (For any insn that has more than one FI reference, we arbitrarily
288 // choose the first one).
289 SmallVector<FrameRef, 64> FrameReferenceInsns;
Jim Grosbachdbfc2ce2010-08-18 22:44:49 +0000290
Jim Grosbach365e9312010-08-31 17:58:19 +0000291 for (MachineFunction::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
Jim Grosbachc252ee22010-08-17 18:13:53 +0000292 for (MachineBasicBlock::iterator I = BB->begin(); I != BB->end(); ++I) {
293 MachineInstr *MI = I;
Bill Wendling3fff1fd2010-12-17 23:09:14 +0000294
Lang Hames7468daa2013-11-29 06:35:30 +0000295 // Debug value, stackmap and patchpoint instructions can't be out of
296 // range, so they don't need any updates.
297 if (MI->isDebugValue() ||
298 MI->getOpcode() == TargetOpcode::STACKMAP ||
299 MI->getOpcode() == TargetOpcode::PATCHPOINT)
Jim Grosbach3cf08662010-08-17 22:41:55 +0000300 continue;
Bill Wendling3fff1fd2010-12-17 23:09:14 +0000301
Jim Grosbachc252ee22010-08-17 18:13:53 +0000302 // For now, allocate the base register(s) within the basic block
303 // where they're used, and don't try to keep them around outside
304 // of that. It may be beneficial to try sharing them more broadly
305 // than that, but the increased register pressure makes that a
306 // tricky thing to balance. Investigate if re-materializing these
307 // becomes an issue.
308 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
309 // Consider replacing all frame index operands that reference
310 // an object allocated in the local block.
Jim Grosbach3cf08662010-08-17 22:41:55 +0000311 if (MI->getOperand(i).isFI()) {
Jim Grosbach3cf08662010-08-17 22:41:55 +0000312 // Don't try this with values not in the local block.
Jim Grosbach365e9312010-08-31 17:58:19 +0000313 if (!MFI->isObjectPreAllocated(MI->getOperand(i).getIndex()))
314 break;
Hal Finkel71532512013-04-30 20:04:37 +0000315 int Idx = MI->getOperand(i).getIndex();
316 int64_t LocalOffset = LocalOffsets[Idx];
317 if (!TRI->needsFrameBaseReg(MI, LocalOffset))
318 break;
Jim Grosbach365e9312010-08-31 17:58:19 +0000319 FrameReferenceInsns.
Hal Finkel71532512013-04-30 20:04:37 +0000320 push_back(FrameRef(MI, LocalOffset, Idx));
Jim Grosbach365e9312010-08-31 17:58:19 +0000321 break;
322 }
323 }
324 }
325 }
Bill Wendling3fff1fd2010-12-17 23:09:14 +0000326
Jim Grosbach365e9312010-08-31 17:58:19 +0000327 // Sort the frame references by local offset
328 array_pod_sort(FrameReferenceInsns.begin(), FrameReferenceInsns.end());
Jim Grosbach3cf08662010-08-17 22:41:55 +0000329
Bill Wendling3fff1fd2010-12-17 23:09:14 +0000330 MachineBasicBlock *Entry = Fn.begin();
Jim Grosbache0e9b302010-08-18 17:57:37 +0000331
Hal Finkel71532512013-04-30 20:04:37 +0000332 unsigned BaseReg = 0;
333 int64_t BaseOffset = 0;
334
Bill Wendling3fff1fd2010-12-17 23:09:14 +0000335 // Loop through the frame references and allocate for them as necessary.
Jim Grosbach365e9312010-08-31 17:58:19 +0000336 for (int ref = 0, e = FrameReferenceInsns.size(); ref < e ; ++ref) {
Hal Finkel71532512013-04-30 20:04:37 +0000337 FrameRef &FR = FrameReferenceInsns[ref];
338 MachineBasicBlock::iterator I = FR.getMachineInstr();
Jim Grosbach365e9312010-08-31 17:58:19 +0000339 MachineInstr *MI = I;
Hal Finkel71532512013-04-30 20:04:37 +0000340 int64_t LocalOffset = FR.getLocalOffset();
341 int FrameIdx = FR.getFrameIndex();
342 assert(MFI->isObjectPreAllocated(FrameIdx) &&
343 "Only pre-allocated locals expected!");
Jim Grosbachc252ee22010-08-17 18:13:53 +0000344
Hal Finkel71532512013-04-30 20:04:37 +0000345 DEBUG(dbgs() << "Considering: " << *MI);
Jim Grosbach3cf08662010-08-17 22:41:55 +0000346
Hal Finkel71532512013-04-30 20:04:37 +0000347 unsigned idx = 0;
348 for (unsigned f = MI->getNumOperands(); idx != f; ++idx) {
349 if (!MI->getOperand(idx).isFI())
350 continue;
Jim Grosbache0e9b302010-08-18 17:57:37 +0000351
Hal Finkel71532512013-04-30 20:04:37 +0000352 if (FrameIdx == I->getOperand(idx).getIndex())
353 break;
Jim Grosbachc252ee22010-08-17 18:13:53 +0000354 }
Hal Finkel71532512013-04-30 20:04:37 +0000355
356 assert(idx < MI->getNumOperands() && "Cannot find FI operand");
357
358 int64_t Offset = 0;
359 int64_t FrameSizeAdjust = StackGrowsDown ? MFI->getLocalFrameSize() : 0;
360
361 DEBUG(dbgs() << " Replacing FI in: " << *MI);
362
363 // If we have a suitable base register available, use it; otherwise
364 // create a new one. Note that any offset encoded in the
365 // instruction itself will be taken into account by the target,
366 // so we don't have to adjust for it here when reusing a base
367 // register.
368 if (UsedBaseReg && lookupCandidateBaseReg(BaseOffset, FrameSizeAdjust,
369 LocalOffset, MI, TRI)) {
370 DEBUG(dbgs() << " Reusing base register " << BaseReg << "\n");
371 // We found a register to reuse.
372 Offset = FrameSizeAdjust + LocalOffset - BaseOffset;
373 } else {
374 // No previously defined register was in range, so create a // new one.
375
376 int64_t InstrOffset = TRI->getFrameIndexInstrOffset(MI, idx);
377
378 int64_t PrevBaseOffset = BaseOffset;
379 BaseOffset = FrameSizeAdjust + LocalOffset + InstrOffset;
380
381 // We'd like to avoid creating single-use virtual base registers.
382 // Because the FrameRefs are in sorted order, and we've already
383 // processed all FrameRefs before this one, just check whether or not
384 // the next FrameRef will be able to reuse this new register. If not,
385 // then don't bother creating it.
Benjamin Kramerc24d19c2014-02-23 13:34:21 +0000386 if (ref + 1 >= e ||
387 !lookupCandidateBaseReg(
388 BaseOffset, FrameSizeAdjust,
389 FrameReferenceInsns[ref + 1].getLocalOffset(),
390 FrameReferenceInsns[ref + 1].getMachineInstr(), TRI)) {
Hal Finkel71532512013-04-30 20:04:37 +0000391 BaseOffset = PrevBaseOffset;
392 continue;
393 }
394
395 const MachineFunction *MF = MI->getParent()->getParent();
396 const TargetRegisterClass *RC = TRI->getPointerRegClass(*MF);
397 BaseReg = Fn.getRegInfo().createVirtualRegister(RC);
398
399 DEBUG(dbgs() << " Materializing base register " << BaseReg <<
400 " at frame local offset " << LocalOffset + InstrOffset << "\n");
401
402 // Tell the target to insert the instruction to initialize
403 // the base register.
404 // MachineBasicBlock::iterator InsertionPt = Entry->begin();
405 TRI->materializeFrameBaseRegister(Entry, BaseReg, FrameIdx,
406 InstrOffset);
407
408 // The base register already includes any offset specified
409 // by the instruction, so account for that so it doesn't get
410 // applied twice.
411 Offset = -InstrOffset;
412
413 ++NumBaseRegisters;
414 UsedBaseReg = true;
415 }
416 assert(BaseReg != 0 && "Unable to allocate virtual base register!");
417
418 // Modify the instruction to use the new base register rather
419 // than the frame index operand.
Jim Grosbach36c49532014-04-02 19:28:18 +0000420 TRI->resolveFrameIndex(*I, BaseReg, Offset);
Hal Finkel71532512013-04-30 20:04:37 +0000421 DEBUG(dbgs() << "Resolved: " << *MI);
422
423 ++NumReplacements;
Jim Grosbachc252ee22010-08-17 18:13:53 +0000424 }
Hal Finkel71532512013-04-30 20:04:37 +0000425
Jim Grosbach06006912010-08-20 16:48:30 +0000426 return UsedBaseReg;
Jim Grosbachc252ee22010-08-17 18:13:53 +0000427}