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