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