Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 1 | //===- 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 Wilson | 67b067d | 2011-01-07 04:58:58 +0000 | [diff] [blame] | 12 | // estimates they are likely to be out of range of stack pointer and frame |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 13 | // pointer relative addressing. |
| 14 | // |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | |
| 17 | #define DEBUG_TYPE "localstackalloc" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/Passes.h" |
| 19 | #include "llvm/ADT/STLExtras.h" |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 20 | #include "llvm/ADT/SetVector.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/SmallSet.h" |
| 22 | #include "llvm/ADT/Statistic.h" |
| 23 | #include "llvm/CodeGen/MachineFrameInfo.h" |
| 24 | #include "llvm/CodeGen/MachineFunction.h" |
| 25 | #include "llvm/CodeGen/MachineFunctionPass.h" |
| 26 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 27 | #include "llvm/CodeGen/StackProtector.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 28 | #include "llvm/IR/Constants.h" |
| 29 | #include "llvm/IR/DerivedTypes.h" |
| 30 | #include "llvm/IR/Instructions.h" |
| 31 | #include "llvm/IR/Intrinsics.h" |
| 32 | #include "llvm/IR/LLVMContext.h" |
| 33 | #include "llvm/IR/Module.h" |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 34 | #include "llvm/Pass.h" |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 35 | #include "llvm/Support/Debug.h" |
| 36 | #include "llvm/Support/ErrorHandling.h" |
| 37 | #include "llvm/Support/raw_ostream.h" |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 38 | #include "llvm/Target/TargetFrameLowering.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 39 | #include "llvm/Target/TargetRegisterInfo.h" |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 40 | |
| 41 | using namespace llvm; |
| 42 | |
Jim Grosbach | 8708ead | 2010-08-17 18:13:53 +0000 | [diff] [blame] | 43 | STATISTIC(NumAllocations, "Number of frame indices allocated into local block"); |
| 44 | STATISTIC(NumBaseRegisters, "Number of virtual frame base registers allocated"); |
| 45 | STATISTIC(NumReplacements, "Number of frame indices references replaced"); |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 46 | |
| 47 | namespace { |
Jim Grosbach | 864d22e | 2010-08-31 17:58:19 +0000 | [diff] [blame] | 48 | class FrameRef { |
| 49 | MachineBasicBlock::iterator MI; // Instr referencing the frame |
| 50 | int64_t LocalOffset; // Local offset of the frame idx referenced |
Hal Finkel | db31bd3 | 2013-04-30 20:04:37 +0000 | [diff] [blame] | 51 | int FrameIdx; // The frame index |
Jim Grosbach | 864d22e | 2010-08-31 17:58:19 +0000 | [diff] [blame] | 52 | public: |
Hal Finkel | db31bd3 | 2013-04-30 20:04:37 +0000 | [diff] [blame] | 53 | FrameRef(MachineBasicBlock::iterator I, int64_t Offset, int Idx) : |
| 54 | MI(I), LocalOffset(Offset), FrameIdx(Idx) {} |
Jim Grosbach | 864d22e | 2010-08-31 17:58:19 +0000 | [diff] [blame] | 55 | bool operator<(const FrameRef &RHS) const { |
| 56 | return LocalOffset < RHS.LocalOffset; |
| 57 | } |
Hal Finkel | db31bd3 | 2013-04-30 20:04:37 +0000 | [diff] [blame] | 58 | MachineBasicBlock::iterator getMachineInstr() const { return MI; } |
| 59 | int64_t getLocalOffset() const { return LocalOffset; } |
| 60 | int getFrameIndex() const { return FrameIdx; } |
Jim Grosbach | 864d22e | 2010-08-31 17:58:19 +0000 | [diff] [blame] | 61 | }; |
| 62 | |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 63 | class LocalStackSlotPass: public MachineFunctionPass { |
Jim Grosbach | 2b1e202 | 2010-08-18 22:44:49 +0000 | [diff] [blame] | 64 | SmallVector<int64_t,16> LocalOffsets; |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 65 | /// StackObjSet - A set of stack object indexes |
| 66 | typedef SmallSetVector<int, 8> StackObjSet; |
Jim Grosbach | 8708ead | 2010-08-17 18:13:53 +0000 | [diff] [blame] | 67 | |
Jim Grosbach | 2b1e202 | 2010-08-18 22:44:49 +0000 | [diff] [blame] | 68 | void AdjustStackOffset(MachineFrameInfo *MFI, int FrameIdx, int64_t &Offset, |
Jim Grosbach | 67ff81a | 2010-08-23 20:40:38 +0000 | [diff] [blame] | 69 | bool StackGrowsDown, unsigned &MaxAlign); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 70 | void AssignProtectedObjSet(const StackObjSet &UnassignedObjs, |
| 71 | SmallSet<int, 16> &ProtectedObjs, |
| 72 | MachineFrameInfo *MFI, bool StackGrowsDown, |
| 73 | int64_t &Offset, unsigned &MaxAlign); |
Jim Grosbach | 2b1e202 | 2010-08-18 22:44:49 +0000 | [diff] [blame] | 74 | void calculateFrameObjectOffsets(MachineFunction &Fn); |
Jim Grosbach | 2d16f5b | 2010-08-20 16:48:30 +0000 | [diff] [blame] | 75 | bool insertFrameReferenceRegisters(MachineFunction &Fn); |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 76 | public: |
| 77 | static char ID; // Pass identification, replacement for typeid |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 78 | explicit LocalStackSlotPass() : MachineFunctionPass(ID) { |
| 79 | initializeLocalStackSlotPassPass(*PassRegistry::getPassRegistry()); |
| 80 | } |
| 81 | bool runOnMachineFunction(MachineFunction &MF) override; |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 82 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 83 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 84 | AU.setPreservesCFG(); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 85 | AU.addRequired<StackProtector>(); |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 86 | MachineFunctionPass::getAnalysisUsage(AU); |
| 87 | } |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 88 | |
| 89 | private: |
| 90 | }; |
| 91 | } // end anonymous namespace |
| 92 | |
| 93 | char LocalStackSlotPass::ID = 0; |
Andrew Trick | 1dd8c85 | 2012-02-08 21:23:13 +0000 | [diff] [blame] | 94 | char &llvm::LocalStackSlotAllocationID = LocalStackSlotPass::ID; |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 95 | INITIALIZE_PASS_BEGIN(LocalStackSlotPass, "localstackalloc", |
| 96 | "Local Stack Slot Allocation", false, false) |
| 97 | INITIALIZE_PASS_DEPENDENCY(StackProtector) |
| 98 | INITIALIZE_PASS_END(LocalStackSlotPass, "localstackalloc", |
| 99 | "Local Stack Slot Allocation", false, false) |
| 100 | |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 101 | |
| 102 | bool LocalStackSlotPass::runOnMachineFunction(MachineFunction &MF) { |
Jim Grosbach | 2b1e202 | 2010-08-18 22:44:49 +0000 | [diff] [blame] | 103 | MachineFrameInfo *MFI = MF.getFrameInfo(); |
Jim Grosbach | a273442 | 2010-08-24 19:05:43 +0000 | [diff] [blame] | 104 | const TargetRegisterInfo *TRI = MF.getTarget().getRegisterInfo(); |
Jim Grosbach | 2b1e202 | 2010-08-18 22:44:49 +0000 | [diff] [blame] | 105 | unsigned LocalObjectCount = MFI->getObjectIndexEnd(); |
| 106 | |
Jim Grosbach | a273442 | 2010-08-24 19:05:43 +0000 | [diff] [blame] | 107 | // If the target doesn't want/need this pass, or if there are no locals |
| 108 | // to consider, early exit. |
| 109 | if (!TRI->requiresVirtualBaseRegisters(MF) || LocalObjectCount == 0) |
Jim Grosbach | 2b1e202 | 2010-08-18 22:44:49 +0000 | [diff] [blame] | 110 | return true; |
| 111 | |
| 112 | // Make sure we have enough space to store the local offsets. |
| 113 | LocalOffsets.resize(MFI->getObjectIndexEnd()); |
| 114 | |
Jim Grosbach | 8708ead | 2010-08-17 18:13:53 +0000 | [diff] [blame] | 115 | // Lay out the local blob. |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 116 | calculateFrameObjectOffsets(MF); |
Jim Grosbach | 8708ead | 2010-08-17 18:13:53 +0000 | [diff] [blame] | 117 | |
| 118 | // Insert virtual base registers to resolve frame index references. |
Jim Grosbach | 2d16f5b | 2010-08-20 16:48:30 +0000 | [diff] [blame] | 119 | bool UsedBaseRegs = insertFrameReferenceRegisters(MF); |
Jim Grosbach | 2b1e202 | 2010-08-18 22:44:49 +0000 | [diff] [blame] | 120 | |
Jim Grosbach | a0fc005 | 2010-08-19 02:47:08 +0000 | [diff] [blame] | 121 | // Tell MFI whether any base registers were allocated. PEI will only |
| 122 | // want to use the local block allocations from this pass if there were any. |
| 123 | // Otherwise, PEI can do a bit better job of getting the alignment right |
| 124 | // without a hole at the start since it knows the alignment of the stack |
| 125 | // at the start of local allocation, and this pass doesn't. |
Jim Grosbach | 2d16f5b | 2010-08-20 16:48:30 +0000 | [diff] [blame] | 126 | MFI->setUseLocalStackAllocationBlock(UsedBaseRegs); |
Jim Grosbach | a0fc005 | 2010-08-19 02:47:08 +0000 | [diff] [blame] | 127 | |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 128 | return true; |
| 129 | } |
| 130 | |
| 131 | /// AdjustStackOffset - Helper function used to adjust the stack frame offset. |
Jim Grosbach | 2b1e202 | 2010-08-18 22:44:49 +0000 | [diff] [blame] | 132 | void LocalStackSlotPass::AdjustStackOffset(MachineFrameInfo *MFI, |
| 133 | int FrameIdx, int64_t &Offset, |
Jim Grosbach | 67ff81a | 2010-08-23 20:40:38 +0000 | [diff] [blame] | 134 | bool StackGrowsDown, |
Jim Grosbach | 2b1e202 | 2010-08-18 22:44:49 +0000 | [diff] [blame] | 135 | unsigned &MaxAlign) { |
Jim Grosbach | 67ff81a | 2010-08-23 20:40:38 +0000 | [diff] [blame] | 136 | // If the stack grows down, add the object size to find the lowest address. |
| 137 | if (StackGrowsDown) |
| 138 | Offset += MFI->getObjectSize(FrameIdx); |
| 139 | |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 140 | unsigned Align = MFI->getObjectAlignment(FrameIdx); |
| 141 | |
| 142 | // If the alignment of this object is greater than that of the stack, then |
| 143 | // increase the stack alignment to match. |
| 144 | MaxAlign = std::max(MaxAlign, Align); |
| 145 | |
| 146 | // Adjust to alignment boundary. |
| 147 | Offset = (Offset + Align - 1) / Align * Align; |
| 148 | |
Jim Grosbach | 67ff81a | 2010-08-23 20:40:38 +0000 | [diff] [blame] | 149 | int64_t LocalOffset = StackGrowsDown ? -Offset : Offset; |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 150 | DEBUG(dbgs() << "Allocate FI(" << FrameIdx << ") to local offset " |
Jim Grosbach | 67ff81a | 2010-08-23 20:40:38 +0000 | [diff] [blame] | 151 | << LocalOffset << "\n"); |
Jim Grosbach | 2b1e202 | 2010-08-18 22:44:49 +0000 | [diff] [blame] | 152 | // Keep the offset available for base register allocation |
Jim Grosbach | 67ff81a | 2010-08-23 20:40:38 +0000 | [diff] [blame] | 153 | LocalOffsets[FrameIdx] = LocalOffset; |
Jim Grosbach | 2b1e202 | 2010-08-18 22:44:49 +0000 | [diff] [blame] | 154 | // And tell MFI about it for PEI to use later |
Jim Grosbach | 67ff81a | 2010-08-23 20:40:38 +0000 | [diff] [blame] | 155 | MFI->mapLocalFrameObject(FrameIdx, LocalOffset); |
| 156 | |
| 157 | if (!StackGrowsDown) |
| 158 | Offset += MFI->getObjectSize(FrameIdx); |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 159 | |
| 160 | ++NumAllocations; |
| 161 | } |
| 162 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 163 | /// AssignProtectedObjSet - Helper function to assign large stack objects (i.e., |
| 164 | /// those required to be close to the Stack Protector) to stack offsets. |
| 165 | void LocalStackSlotPass::AssignProtectedObjSet(const StackObjSet &UnassignedObjs, |
| 166 | SmallSet<int, 16> &ProtectedObjs, |
| 167 | MachineFrameInfo *MFI, |
| 168 | bool StackGrowsDown, int64_t &Offset, |
| 169 | unsigned &MaxAlign) { |
| 170 | |
| 171 | for (StackObjSet::const_iterator I = UnassignedObjs.begin(), |
| 172 | E = UnassignedObjs.end(); I != E; ++I) { |
| 173 | int i = *I; |
| 174 | AdjustStackOffset(MFI, i, Offset, StackGrowsDown, MaxAlign); |
| 175 | ProtectedObjs.insert(i); |
| 176 | } |
| 177 | } |
| 178 | |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 179 | /// calculateFrameObjectOffsets - Calculate actual frame offsets for all of the |
| 180 | /// abstract stack objects. |
| 181 | /// |
| 182 | void LocalStackSlotPass::calculateFrameObjectOffsets(MachineFunction &Fn) { |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 183 | // Loop over all of the stack objects, assigning sequential addresses... |
| 184 | MachineFrameInfo *MFI = Fn.getFrameInfo(); |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 185 | const TargetFrameLowering &TFI = *Fn.getTarget().getFrameLowering(); |
Jim Grosbach | 67ff81a | 2010-08-23 20:40:38 +0000 | [diff] [blame] | 186 | bool StackGrowsDown = |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 187 | TFI.getStackGrowthDirection() == TargetFrameLowering::StackGrowsDown; |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 188 | int64_t Offset = 0; |
Jim Grosbach | 4861ed6 | 2010-08-16 22:30:41 +0000 | [diff] [blame] | 189 | unsigned MaxAlign = 0; |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 190 | StackProtector *SP = &getAnalysis<StackProtector>(); |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 191 | |
| 192 | // Make sure that the stack protector comes before the local variables on the |
| 193 | // stack. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 194 | SmallSet<int, 16> ProtectedObjs; |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 195 | if (MFI->getStackProtectorIndex() >= 0) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 196 | StackObjSet LargeArrayObjs; |
| 197 | StackObjSet SmallArrayObjs; |
| 198 | StackObjSet AddrOfObjs; |
| 199 | |
Jim Grosbach | 67ff81a | 2010-08-23 20:40:38 +0000 | [diff] [blame] | 200 | AdjustStackOffset(MFI, MFI->getStackProtectorIndex(), Offset, |
| 201 | StackGrowsDown, MaxAlign); |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 202 | |
| 203 | // Assign large stack objects first. |
| 204 | for (unsigned i = 0, e = MFI->getObjectIndexEnd(); i != e; ++i) { |
| 205 | if (MFI->isDeadObjectIndex(i)) |
| 206 | continue; |
| 207 | if (MFI->getStackProtectorIndex() == (int)i) |
| 208 | continue; |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 209 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 210 | switch (SP->getSSPLayout(MFI->getObjectAllocation(i))) { |
| 211 | case StackProtector::SSPLK_None: |
| 212 | continue; |
| 213 | case StackProtector::SSPLK_SmallArray: |
| 214 | SmallArrayObjs.insert(i); |
| 215 | continue; |
| 216 | case StackProtector::SSPLK_AddrOf: |
| 217 | AddrOfObjs.insert(i); |
| 218 | continue; |
| 219 | case StackProtector::SSPLK_LargeArray: |
| 220 | LargeArrayObjs.insert(i); |
| 221 | continue; |
| 222 | } |
| 223 | llvm_unreachable("Unexpected SSPLayoutKind."); |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 224 | } |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 225 | |
| 226 | AssignProtectedObjSet(LargeArrayObjs, ProtectedObjs, MFI, StackGrowsDown, |
| 227 | Offset, MaxAlign); |
| 228 | AssignProtectedObjSet(SmallArrayObjs, ProtectedObjs, MFI, StackGrowsDown, |
| 229 | Offset, MaxAlign); |
| 230 | AssignProtectedObjSet(AddrOfObjs, ProtectedObjs, MFI, StackGrowsDown, |
| 231 | Offset, MaxAlign); |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | // Then assign frame offsets to stack objects that are not used to spill |
| 235 | // callee saved registers. |
| 236 | for (unsigned i = 0, e = MFI->getObjectIndexEnd(); i != e; ++i) { |
| 237 | if (MFI->isDeadObjectIndex(i)) |
| 238 | continue; |
| 239 | if (MFI->getStackProtectorIndex() == (int)i) |
| 240 | continue; |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 241 | if (ProtectedObjs.count(i)) |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 242 | continue; |
| 243 | |
Jim Grosbach | 67ff81a | 2010-08-23 20:40:38 +0000 | [diff] [blame] | 244 | AdjustStackOffset(MFI, i, Offset, StackGrowsDown, MaxAlign); |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 245 | } |
| 246 | |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 247 | // Remember how big this blob of stack space is |
Jim Grosbach | 6324934 | 2010-08-16 18:06:15 +0000 | [diff] [blame] | 248 | MFI->setLocalFrameSize(Offset); |
Jim Grosbach | 4861ed6 | 2010-08-16 22:30:41 +0000 | [diff] [blame] | 249 | MFI->setLocalFrameMaxAlign(MaxAlign); |
Jim Grosbach | 3d72367 | 2010-08-14 00:15:52 +0000 | [diff] [blame] | 250 | } |
Jim Grosbach | 8708ead | 2010-08-17 18:13:53 +0000 | [diff] [blame] | 251 | |
Jim Grosbach | 74d803a | 2010-08-18 17:57:37 +0000 | [diff] [blame] | 252 | static inline bool |
Hal Finkel | db31bd3 | 2013-04-30 20:04:37 +0000 | [diff] [blame] | 253 | lookupCandidateBaseReg(int64_t BaseOffset, |
Jim Grosbach | 67ff81a | 2010-08-23 20:40:38 +0000 | [diff] [blame] | 254 | int64_t FrameSizeAdjust, |
Jim Grosbach | 2b1e202 | 2010-08-18 22:44:49 +0000 | [diff] [blame] | 255 | int64_t LocalFrameOffset, |
Jim Grosbach | 74d803a | 2010-08-18 17:57:37 +0000 | [diff] [blame] | 256 | const MachineInstr *MI, |
| 257 | const TargetRegisterInfo *TRI) { |
Hal Finkel | db31bd3 | 2013-04-30 20:04:37 +0000 | [diff] [blame] | 258 | // Check if the relative offset from the where the base register references |
| 259 | // to the target address is in range for the instruction. |
| 260 | int64_t Offset = FrameSizeAdjust + LocalFrameOffset - BaseOffset; |
| 261 | return TRI->isFrameOffsetLegal(MI, Offset); |
Jim Grosbach | 74d803a | 2010-08-18 17:57:37 +0000 | [diff] [blame] | 262 | } |
| 263 | |
Jim Grosbach | 2d16f5b | 2010-08-20 16:48:30 +0000 | [diff] [blame] | 264 | bool LocalStackSlotPass::insertFrameReferenceRegisters(MachineFunction &Fn) { |
Jim Grosbach | 8708ead | 2010-08-17 18:13:53 +0000 | [diff] [blame] | 265 | // Scan the function's instructions looking for frame index references. |
| 266 | // For each, ask the target if it wants a virtual base register for it |
| 267 | // based on what we can tell it about where the local will end up in the |
| 268 | // stack frame. If it wants one, re-use a suitable one we've previously |
| 269 | // allocated, or if there isn't one that fits the bill, allocate a new one |
| 270 | // and ask the target to create a defining instruction for it. |
Jim Grosbach | 2d16f5b | 2010-08-20 16:48:30 +0000 | [diff] [blame] | 271 | bool UsedBaseReg = false; |
Jim Grosbach | 8708ead | 2010-08-17 18:13:53 +0000 | [diff] [blame] | 272 | |
| 273 | MachineFrameInfo *MFI = Fn.getFrameInfo(); |
| 274 | const TargetRegisterInfo *TRI = Fn.getTarget().getRegisterInfo(); |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 275 | const TargetFrameLowering &TFI = *Fn.getTarget().getFrameLowering(); |
Jim Grosbach | 4c207c2 | 2010-08-20 20:25:31 +0000 | [diff] [blame] | 276 | bool StackGrowsDown = |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 277 | TFI.getStackGrowthDirection() == TargetFrameLowering::StackGrowsDown; |
Jim Grosbach | 8708ead | 2010-08-17 18:13:53 +0000 | [diff] [blame] | 278 | |
Jim Grosbach | 864d22e | 2010-08-31 17:58:19 +0000 | [diff] [blame] | 279 | // Collect all of the instructions in the block that reference |
| 280 | // a frame index. Also store the frame index referenced to ease later |
| 281 | // lookup. (For any insn that has more than one FI reference, we arbitrarily |
| 282 | // choose the first one). |
| 283 | SmallVector<FrameRef, 64> FrameReferenceInsns; |
Jim Grosbach | 2b1e202 | 2010-08-18 22:44:49 +0000 | [diff] [blame] | 284 | |
Jim Grosbach | 864d22e | 2010-08-31 17:58:19 +0000 | [diff] [blame] | 285 | for (MachineFunction::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) { |
Jim Grosbach | 8708ead | 2010-08-17 18:13:53 +0000 | [diff] [blame] | 286 | for (MachineBasicBlock::iterator I = BB->begin(); I != BB->end(); ++I) { |
| 287 | MachineInstr *MI = I; |
Bill Wendling | 976ef86 | 2010-12-17 23:09:14 +0000 | [diff] [blame] | 288 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 289 | // Debug value, stackmap and patchpoint instructions can't be out of |
| 290 | // range, so they don't need any updates. |
| 291 | if (MI->isDebugValue() || |
| 292 | MI->getOpcode() == TargetOpcode::STACKMAP || |
| 293 | MI->getOpcode() == TargetOpcode::PATCHPOINT) |
Jim Grosbach | dc140c6 | 2010-08-17 22:41:55 +0000 | [diff] [blame] | 294 | continue; |
Bill Wendling | 976ef86 | 2010-12-17 23:09:14 +0000 | [diff] [blame] | 295 | |
Jim Grosbach | 8708ead | 2010-08-17 18:13:53 +0000 | [diff] [blame] | 296 | // For now, allocate the base register(s) within the basic block |
| 297 | // where they're used, and don't try to keep them around outside |
| 298 | // of that. It may be beneficial to try sharing them more broadly |
| 299 | // than that, but the increased register pressure makes that a |
| 300 | // tricky thing to balance. Investigate if re-materializing these |
| 301 | // becomes an issue. |
| 302 | for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { |
| 303 | // Consider replacing all frame index operands that reference |
| 304 | // an object allocated in the local block. |
Jim Grosbach | dc140c6 | 2010-08-17 22:41:55 +0000 | [diff] [blame] | 305 | if (MI->getOperand(i).isFI()) { |
Jim Grosbach | dc140c6 | 2010-08-17 22:41:55 +0000 | [diff] [blame] | 306 | // Don't try this with values not in the local block. |
Jim Grosbach | 864d22e | 2010-08-31 17:58:19 +0000 | [diff] [blame] | 307 | if (!MFI->isObjectPreAllocated(MI->getOperand(i).getIndex())) |
| 308 | break; |
Hal Finkel | db31bd3 | 2013-04-30 20:04:37 +0000 | [diff] [blame] | 309 | int Idx = MI->getOperand(i).getIndex(); |
| 310 | int64_t LocalOffset = LocalOffsets[Idx]; |
| 311 | if (!TRI->needsFrameBaseReg(MI, LocalOffset)) |
| 312 | break; |
Jim Grosbach | 864d22e | 2010-08-31 17:58:19 +0000 | [diff] [blame] | 313 | FrameReferenceInsns. |
Hal Finkel | db31bd3 | 2013-04-30 20:04:37 +0000 | [diff] [blame] | 314 | push_back(FrameRef(MI, LocalOffset, Idx)); |
Jim Grosbach | 864d22e | 2010-08-31 17:58:19 +0000 | [diff] [blame] | 315 | break; |
| 316 | } |
| 317 | } |
| 318 | } |
| 319 | } |
Bill Wendling | 976ef86 | 2010-12-17 23:09:14 +0000 | [diff] [blame] | 320 | |
Jim Grosbach | 864d22e | 2010-08-31 17:58:19 +0000 | [diff] [blame] | 321 | // Sort the frame references by local offset |
| 322 | array_pod_sort(FrameReferenceInsns.begin(), FrameReferenceInsns.end()); |
Jim Grosbach | dc140c6 | 2010-08-17 22:41:55 +0000 | [diff] [blame] | 323 | |
Bill Wendling | 976ef86 | 2010-12-17 23:09:14 +0000 | [diff] [blame] | 324 | MachineBasicBlock *Entry = Fn.begin(); |
Jim Grosbach | 74d803a | 2010-08-18 17:57:37 +0000 | [diff] [blame] | 325 | |
Hal Finkel | db31bd3 | 2013-04-30 20:04:37 +0000 | [diff] [blame] | 326 | unsigned BaseReg = 0; |
| 327 | int64_t BaseOffset = 0; |
| 328 | |
Bill Wendling | 976ef86 | 2010-12-17 23:09:14 +0000 | [diff] [blame] | 329 | // Loop through the frame references and allocate for them as necessary. |
Jim Grosbach | 864d22e | 2010-08-31 17:58:19 +0000 | [diff] [blame] | 330 | for (int ref = 0, e = FrameReferenceInsns.size(); ref < e ; ++ref) { |
Hal Finkel | db31bd3 | 2013-04-30 20:04:37 +0000 | [diff] [blame] | 331 | FrameRef &FR = FrameReferenceInsns[ref]; |
| 332 | MachineBasicBlock::iterator I = FR.getMachineInstr(); |
Jim Grosbach | 864d22e | 2010-08-31 17:58:19 +0000 | [diff] [blame] | 333 | MachineInstr *MI = I; |
Hal Finkel | db31bd3 | 2013-04-30 20:04:37 +0000 | [diff] [blame] | 334 | int64_t LocalOffset = FR.getLocalOffset(); |
| 335 | int FrameIdx = FR.getFrameIndex(); |
| 336 | assert(MFI->isObjectPreAllocated(FrameIdx) && |
| 337 | "Only pre-allocated locals expected!"); |
Jim Grosbach | 8708ead | 2010-08-17 18:13:53 +0000 | [diff] [blame] | 338 | |
Hal Finkel | db31bd3 | 2013-04-30 20:04:37 +0000 | [diff] [blame] | 339 | DEBUG(dbgs() << "Considering: " << *MI); |
Jim Grosbach | dc140c6 | 2010-08-17 22:41:55 +0000 | [diff] [blame] | 340 | |
Hal Finkel | db31bd3 | 2013-04-30 20:04:37 +0000 | [diff] [blame] | 341 | unsigned idx = 0; |
| 342 | for (unsigned f = MI->getNumOperands(); idx != f; ++idx) { |
| 343 | if (!MI->getOperand(idx).isFI()) |
| 344 | continue; |
Jim Grosbach | 74d803a | 2010-08-18 17:57:37 +0000 | [diff] [blame] | 345 | |
Hal Finkel | db31bd3 | 2013-04-30 20:04:37 +0000 | [diff] [blame] | 346 | if (FrameIdx == I->getOperand(idx).getIndex()) |
| 347 | break; |
Jim Grosbach | 8708ead | 2010-08-17 18:13:53 +0000 | [diff] [blame] | 348 | } |
Hal Finkel | db31bd3 | 2013-04-30 20:04:37 +0000 | [diff] [blame] | 349 | |
| 350 | assert(idx < MI->getNumOperands() && "Cannot find FI operand"); |
| 351 | |
| 352 | int64_t Offset = 0; |
| 353 | int64_t FrameSizeAdjust = StackGrowsDown ? MFI->getLocalFrameSize() : 0; |
| 354 | |
| 355 | DEBUG(dbgs() << " Replacing FI in: " << *MI); |
| 356 | |
| 357 | // If we have a suitable base register available, use it; otherwise |
| 358 | // create a new one. Note that any offset encoded in the |
| 359 | // instruction itself will be taken into account by the target, |
| 360 | // so we don't have to adjust for it here when reusing a base |
| 361 | // register. |
| 362 | if (UsedBaseReg && lookupCandidateBaseReg(BaseOffset, FrameSizeAdjust, |
| 363 | LocalOffset, MI, TRI)) { |
| 364 | DEBUG(dbgs() << " Reusing base register " << BaseReg << "\n"); |
| 365 | // We found a register to reuse. |
| 366 | Offset = FrameSizeAdjust + LocalOffset - BaseOffset; |
| 367 | } else { |
| 368 | // No previously defined register was in range, so create a // new one. |
| 369 | |
| 370 | int64_t InstrOffset = TRI->getFrameIndexInstrOffset(MI, idx); |
| 371 | |
| 372 | int64_t PrevBaseOffset = BaseOffset; |
| 373 | BaseOffset = FrameSizeAdjust + LocalOffset + InstrOffset; |
| 374 | |
| 375 | // We'd like to avoid creating single-use virtual base registers. |
| 376 | // Because the FrameRefs are in sorted order, and we've already |
| 377 | // processed all FrameRefs before this one, just check whether or not |
| 378 | // the next FrameRef will be able to reuse this new register. If not, |
| 379 | // then don't bother creating it. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 380 | if (ref + 1 >= e || |
| 381 | !lookupCandidateBaseReg( |
| 382 | BaseOffset, FrameSizeAdjust, |
| 383 | FrameReferenceInsns[ref + 1].getLocalOffset(), |
| 384 | FrameReferenceInsns[ref + 1].getMachineInstr(), TRI)) { |
Hal Finkel | db31bd3 | 2013-04-30 20:04:37 +0000 | [diff] [blame] | 385 | BaseOffset = PrevBaseOffset; |
| 386 | continue; |
| 387 | } |
| 388 | |
| 389 | const MachineFunction *MF = MI->getParent()->getParent(); |
| 390 | const TargetRegisterClass *RC = TRI->getPointerRegClass(*MF); |
| 391 | BaseReg = Fn.getRegInfo().createVirtualRegister(RC); |
| 392 | |
| 393 | DEBUG(dbgs() << " Materializing base register " << BaseReg << |
| 394 | " at frame local offset " << LocalOffset + InstrOffset << "\n"); |
| 395 | |
| 396 | // Tell the target to insert the instruction to initialize |
| 397 | // the base register. |
| 398 | // MachineBasicBlock::iterator InsertionPt = Entry->begin(); |
| 399 | TRI->materializeFrameBaseRegister(Entry, BaseReg, FrameIdx, |
| 400 | InstrOffset); |
| 401 | |
| 402 | // The base register already includes any offset specified |
| 403 | // by the instruction, so account for that so it doesn't get |
| 404 | // applied twice. |
| 405 | Offset = -InstrOffset; |
| 406 | |
| 407 | ++NumBaseRegisters; |
| 408 | UsedBaseReg = true; |
| 409 | } |
| 410 | assert(BaseReg != 0 && "Unable to allocate virtual base register!"); |
| 411 | |
| 412 | // Modify the instruction to use the new base register rather |
| 413 | // than the frame index operand. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 414 | TRI->resolveFrameIndex(*I, BaseReg, Offset); |
Hal Finkel | db31bd3 | 2013-04-30 20:04:37 +0000 | [diff] [blame] | 415 | DEBUG(dbgs() << "Resolved: " << *MI); |
| 416 | |
| 417 | ++NumReplacements; |
Jim Grosbach | 8708ead | 2010-08-17 18:13:53 +0000 | [diff] [blame] | 418 | } |
Hal Finkel | db31bd3 | 2013-04-30 20:04:37 +0000 | [diff] [blame] | 419 | |
Jim Grosbach | 2d16f5b | 2010-08-20 16:48:30 +0000 | [diff] [blame] | 420 | return UsedBaseReg; |
Jim Grosbach | 8708ead | 2010-08-17 18:13:53 +0000 | [diff] [blame] | 421 | } |