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