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