Eugene Zelenko | 618c555 | 2017-09-13 21:15:20 +0000 | [diff] [blame] | 1 | //===- RegAllocFast.cpp - A fast register allocator for debug code --------===// |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 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 | // |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 10 | /// \file This register allocator allocates registers to a basic block at a |
| 11 | /// time, attempting to keep values in registers and reusing registers as |
| 12 | /// appropriate. |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
Eugene Zelenko | 618c555 | 2017-09-13 21:15:20 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/ArrayRef.h" |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/DenseMap.h" |
| 18 | #include "llvm/ADT/IndexedMap.h" |
| 19 | #include "llvm/ADT/SmallSet.h" |
| 20 | #include "llvm/ADT/SmallVector.h" |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/SparseSet.h" |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/Statistic.h" |
Eugene Zelenko | 618c555 | 2017-09-13 21:15:20 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/MachineBasicBlock.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Eugene Zelenko | 618c555 | 2017-09-13 21:15:20 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/MachineFunction.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/MachineFunctionPass.h" |
| 27 | #include "llvm/CodeGen/MachineInstr.h" |
| 28 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Eugene Zelenko | 618c555 | 2017-09-13 21:15:20 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/MachineOperand.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| 31 | #include "llvm/CodeGen/RegAllocRegistry.h" |
| 32 | #include "llvm/CodeGen/RegisterClassInfo.h" |
David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 33 | #include "llvm/CodeGen/TargetInstrInfo.h" |
David Blaikie | b3bde2e | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 34 | #include "llvm/CodeGen/TargetOpcodes.h" |
| 35 | #include "llvm/CodeGen/TargetRegisterInfo.h" |
| 36 | #include "llvm/CodeGen/TargetSubtargetInfo.h" |
Eugene Zelenko | 618c555 | 2017-09-13 21:15:20 +0000 | [diff] [blame] | 37 | #include "llvm/IR/DebugLoc.h" |
| 38 | #include "llvm/IR/Metadata.h" |
| 39 | #include "llvm/MC/MCInstrDesc.h" |
| 40 | #include "llvm/MC/MCRegisterInfo.h" |
| 41 | #include "llvm/Pass.h" |
| 42 | #include "llvm/Support/Casting.h" |
| 43 | #include "llvm/Support/Compiler.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 44 | #include "llvm/Support/Debug.h" |
| 45 | #include "llvm/Support/ErrorHandling.h" |
Eugene Zelenko | 618c555 | 2017-09-13 21:15:20 +0000 | [diff] [blame] | 46 | #include "llvm/Support/raw_ostream.h" |
Eugene Zelenko | 618c555 | 2017-09-13 21:15:20 +0000 | [diff] [blame] | 47 | #include <cassert> |
| 48 | #include <tuple> |
| 49 | #include <vector> |
| 50 | |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 51 | using namespace llvm; |
| 52 | |
Chandler Carruth | 1b9dde0 | 2014-04-22 02:02:50 +0000 | [diff] [blame] | 53 | #define DEBUG_TYPE "regalloc" |
| 54 | |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 55 | STATISTIC(NumStores, "Number of stores added"); |
| 56 | STATISTIC(NumLoads , "Number of loads added"); |
Jakob Stoklund Olesen | 6c038e3 | 2010-05-14 21:55:50 +0000 | [diff] [blame] | 57 | STATISTIC(NumCopies, "Number of copies coalesced"); |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 58 | |
| 59 | static RegisterRegAlloc |
| 60 | fastRegAlloc("fast", "fast register allocator", createFastRegisterAllocator); |
| 61 | |
| 62 | namespace { |
Eugene Zelenko | 618c555 | 2017-09-13 21:15:20 +0000 | [diff] [blame] | 63 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 64 | class RegAllocFast : public MachineFunctionPass { |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 65 | public: |
| 66 | static char ID; |
Eugene Zelenko | 618c555 | 2017-09-13 21:15:20 +0000 | [diff] [blame] | 67 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 68 | RegAllocFast() : MachineFunctionPass(ID), StackSlotForVirtReg(-1) {} |
Derek Schuff | ad154c8 | 2016-03-28 17:05:30 +0000 | [diff] [blame] | 69 | |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 70 | private: |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 71 | MachineFrameInfo *MFI; |
Jakob Stoklund Olesen | 0ba2e2a | 2010-05-13 00:19:43 +0000 | [diff] [blame] | 72 | MachineRegisterInfo *MRI; |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 73 | const TargetRegisterInfo *TRI; |
| 74 | const TargetInstrInfo *TII; |
Jakob Stoklund Olesen | 50663b7 | 2011-06-02 18:35:30 +0000 | [diff] [blame] | 75 | RegisterClassInfo RegClassInfo; |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 76 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 77 | /// Basic block currently being allocated. |
Jakob Stoklund Olesen | fb43e06 | 2010-05-17 02:07:22 +0000 | [diff] [blame] | 78 | MachineBasicBlock *MBB; |
| 79 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 80 | /// Maps virtual regs to the frame index where these values are spilled. |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 81 | IndexedMap<int, VirtReg2IndexFunctor> StackSlotForVirtReg; |
| 82 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 83 | /// Everything we know about a live virtual register. |
Jakob Stoklund Olesen | 1326681 | 2010-05-11 23:24:45 +0000 | [diff] [blame] | 84 | struct LiveReg { |
Eugene Zelenko | 618c555 | 2017-09-13 21:15:20 +0000 | [diff] [blame] | 85 | MachineInstr *LastUse = nullptr; ///< Last instr to use reg. |
| 86 | unsigned VirtReg; ///< Virtual register number. |
| 87 | MCPhysReg PhysReg = 0; ///< Currently held here. |
| 88 | unsigned short LastOpNum = 0; ///< OpNum on LastUse. |
| 89 | bool Dirty = false; ///< Register needs spill. |
Jakob Stoklund Olesen | 1326681 | 2010-05-11 23:24:45 +0000 | [diff] [blame] | 90 | |
Eugene Zelenko | 618c555 | 2017-09-13 21:15:20 +0000 | [diff] [blame] | 91 | explicit LiveReg(unsigned v) : VirtReg(v) {} |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 92 | |
Andrew Trick | 1eb4a0d | 2012-04-20 20:05:28 +0000 | [diff] [blame] | 93 | unsigned getSparseSetIndex() const { |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 94 | return TargetRegisterInfo::virtReg2Index(VirtReg); |
| 95 | } |
Jakob Stoklund Olesen | 1326681 | 2010-05-11 23:24:45 +0000 | [diff] [blame] | 96 | }; |
| 97 | |
Eugene Zelenko | 618c555 | 2017-09-13 21:15:20 +0000 | [diff] [blame] | 98 | using LiveRegMap = SparseSet<LiveReg>; |
Jakob Stoklund Olesen | 1326681 | 2010-05-11 23:24:45 +0000 | [diff] [blame] | 99 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 100 | /// This map contains entries for each virtual register that is currently |
| 101 | /// available in a physical register. |
Jakob Stoklund Olesen | 1326681 | 2010-05-11 23:24:45 +0000 | [diff] [blame] | 102 | LiveRegMap LiveVirtRegs; |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 103 | |
Eugene Zelenko | 618c555 | 2017-09-13 21:15:20 +0000 | [diff] [blame] | 104 | DenseMap<unsigned, SmallVector<MachineInstr *, 4>> LiveDbgValueMap; |
Devang Patel | d71bc1a | 2010-08-04 18:42:02 +0000 | [diff] [blame] | 105 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 106 | /// Track the state of a physical register. |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 107 | enum RegState { |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 108 | /// A disabled register is not available for allocation, but an alias may |
| 109 | /// be in use. A register can only be moved out of the disabled state if |
| 110 | /// all aliases are disabled. |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 111 | regDisabled, |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 112 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 113 | /// A free register is not currently in use and can be allocated |
| 114 | /// immediately without checking aliases. |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 115 | regFree, |
| 116 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 117 | /// A reserved register has been assigned explicitly (e.g., setting up a |
| 118 | /// call parameter), and it remains reserved until it is used. |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 119 | regReserved |
| 120 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 121 | /// A register state may also be a virtual register number, indication |
| 122 | /// that the physical register is currently allocated to a virtual |
| 123 | /// register. In that case, LiveVirtRegs contains the inverse mapping. |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 124 | }; |
| 125 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 126 | /// One of the RegState enums, or a virtreg. |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 127 | std::vector<unsigned> PhysRegState; |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 128 | |
Matthias Braun | a09d18d | 2017-09-09 00:52:45 +0000 | [diff] [blame] | 129 | SmallVector<unsigned, 16> VirtDead; |
Eugene Zelenko | 618c555 | 2017-09-13 21:15:20 +0000 | [diff] [blame] | 130 | SmallVector<MachineInstr *, 32> Coalesced; |
Matthias Braun | a09d18d | 2017-09-09 00:52:45 +0000 | [diff] [blame] | 131 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 132 | /// Set of register units. |
Eugene Zelenko | 618c555 | 2017-09-13 21:15:20 +0000 | [diff] [blame] | 133 | using UsedInInstrSet = SparseSet<unsigned>; |
Jakob Stoklund Olesen | a2136be | 2012-10-17 01:37:59 +0000 | [diff] [blame] | 134 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 135 | /// Set of register units that are used in the current instruction, and so |
| 136 | /// cannot be allocated. |
Jakob Stoklund Olesen | a2136be | 2012-10-17 01:37:59 +0000 | [diff] [blame] | 137 | UsedInInstrSet UsedInInstr; |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 138 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 139 | /// Mark a physreg as used in this instruction. |
| 140 | void markRegUsedInInstr(MCPhysReg PhysReg) { |
Jakob Stoklund Olesen | 2ff4dc0 | 2013-02-21 19:35:21 +0000 | [diff] [blame] | 141 | for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) |
| 142 | UsedInInstr.insert(*Units); |
| 143 | } |
| 144 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 145 | /// Check if a physreg or any of its aliases are used in this instruction. |
| 146 | bool isRegUsedInInstr(MCPhysReg PhysReg) const { |
Jakob Stoklund Olesen | 2ff4dc0 | 2013-02-21 19:35:21 +0000 | [diff] [blame] | 147 | for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) |
| 148 | if (UsedInInstr.count(*Units)) |
| 149 | return true; |
| 150 | return false; |
| 151 | } |
| 152 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 153 | /// This flag is set when LiveRegMap will be cleared completely after |
| 154 | /// spilling all live registers. LiveRegMap entries should not be erased. |
| 155 | bool isBulkSpilling = false; |
Jakob Stoklund Olesen | 41f8dc8 | 2010-05-14 00:02:20 +0000 | [diff] [blame] | 156 | |
Alp Toker | 61007d8 | 2014-03-02 03:20:38 +0000 | [diff] [blame] | 157 | enum : unsigned { |
Jakob Stoklund Olesen | 6649cda | 2010-05-17 15:30:32 +0000 | [diff] [blame] | 158 | spillClean = 1, |
| 159 | spillDirty = 100, |
| 160 | spillImpossible = ~0u |
| 161 | }; |
Eugene Zelenko | 618c555 | 2017-09-13 21:15:20 +0000 | [diff] [blame] | 162 | |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 163 | public: |
Mehdi Amini | 117296c | 2016-10-01 02:56:57 +0000 | [diff] [blame] | 164 | StringRef getPassName() const override { return "Fast Register Allocator"; } |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 165 | |
Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 166 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 167 | AU.setPreservesCFG(); |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 168 | MachineFunctionPass::getAnalysisUsage(AU); |
| 169 | } |
| 170 | |
Matthias Braun | 90799ce | 2016-08-23 21:19:49 +0000 | [diff] [blame] | 171 | MachineFunctionProperties getRequiredProperties() const override { |
| 172 | return MachineFunctionProperties().set( |
| 173 | MachineFunctionProperties::Property::NoPHIs); |
| 174 | } |
| 175 | |
Derek Schuff | ad154c8 | 2016-03-28 17:05:30 +0000 | [diff] [blame] | 176 | MachineFunctionProperties getSetProperties() const override { |
| 177 | return MachineFunctionProperties().set( |
Matthias Braun | 1eb4736 | 2016-08-25 01:27:13 +0000 | [diff] [blame] | 178 | MachineFunctionProperties::Property::NoVRegs); |
Derek Schuff | ad154c8 | 2016-03-28 17:05:30 +0000 | [diff] [blame] | 179 | } |
| 180 | |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 181 | private: |
Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 182 | bool runOnMachineFunction(MachineFunction &Fn) override; |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 183 | void allocateBasicBlock(MachineBasicBlock &MBB); |
| 184 | void handleThroughOperands(MachineInstr &MI, |
Jakob Stoklund Olesen | 0d94d7a | 2010-06-28 18:34:34 +0000 | [diff] [blame] | 185 | SmallVectorImpl<unsigned> &VirtDead); |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 186 | int getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass &RC); |
| 187 | bool isLastUseOfLocalReg(const MachineOperand &MO) const; |
Jakob Stoklund Olesen | 84ce290 | 2010-05-15 06:09:08 +0000 | [diff] [blame] | 188 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 189 | void addKillFlag(const LiveReg &LRI); |
| 190 | void killVirtReg(LiveRegMap::iterator LRI); |
Jakob Stoklund Olesen | 955a0e7 | 2010-05-12 18:46:03 +0000 | [diff] [blame] | 191 | void killVirtReg(unsigned VirtReg); |
Jakob Stoklund Olesen | 397068d | 2010-05-17 02:49:15 +0000 | [diff] [blame] | 192 | void spillVirtReg(MachineBasicBlock::iterator MI, LiveRegMap::iterator); |
Jakob Stoklund Olesen | 8044c98 | 2010-05-17 02:07:32 +0000 | [diff] [blame] | 193 | void spillVirtReg(MachineBasicBlock::iterator MI, unsigned VirtReg); |
Jakob Stoklund Olesen | 4d5c106 | 2010-05-14 18:03:25 +0000 | [diff] [blame] | 194 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 195 | void usePhysReg(MachineOperand &MO); |
| 196 | void definePhysReg(MachineInstr &MI, MCPhysReg PhysReg, RegState NewState); |
| 197 | unsigned calcSpillCost(MCPhysReg PhysReg) const; |
| 198 | void assignVirtToPhysReg(LiveReg&, MCPhysReg PhysReg); |
Eugene Zelenko | 618c555 | 2017-09-13 21:15:20 +0000 | [diff] [blame] | 199 | |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 200 | LiveRegMap::iterator findLiveVirtReg(unsigned VirtReg) { |
| 201 | return LiveVirtRegs.find(TargetRegisterInfo::virtReg2Index(VirtReg)); |
| 202 | } |
Eugene Zelenko | 618c555 | 2017-09-13 21:15:20 +0000 | [diff] [blame] | 203 | |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 204 | LiveRegMap::const_iterator findLiveVirtReg(unsigned VirtReg) const { |
| 205 | return LiveVirtRegs.find(TargetRegisterInfo::virtReg2Index(VirtReg)); |
| 206 | } |
Eugene Zelenko | 618c555 | 2017-09-13 21:15:20 +0000 | [diff] [blame] | 207 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 208 | LiveRegMap::iterator assignVirtToPhysReg(unsigned VReg, MCPhysReg PhysReg); |
Duncan P. N. Exon Smith | 44ed0de | 2016-07-01 15:03:37 +0000 | [diff] [blame] | 209 | LiveRegMap::iterator allocVirtReg(MachineInstr &MI, LiveRegMap::iterator, |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 210 | unsigned Hint); |
Duncan P. N. Exon Smith | 44ed0de | 2016-07-01 15:03:37 +0000 | [diff] [blame] | 211 | LiveRegMap::iterator defineVirtReg(MachineInstr &MI, unsigned OpNum, |
Jakob Stoklund Olesen | f915d14 | 2010-05-17 03:26:09 +0000 | [diff] [blame] | 212 | unsigned VirtReg, unsigned Hint); |
Duncan P. N. Exon Smith | 44ed0de | 2016-07-01 15:03:37 +0000 | [diff] [blame] | 213 | LiveRegMap::iterator reloadVirtReg(MachineInstr &MI, unsigned OpNum, |
Jakob Stoklund Olesen | f915d14 | 2010-05-17 03:26:09 +0000 | [diff] [blame] | 214 | unsigned VirtReg, unsigned Hint); |
Akira Hatanaka | d837be7 | 2012-10-31 00:56:01 +0000 | [diff] [blame] | 215 | void spillAll(MachineBasicBlock::iterator MI); |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 216 | bool setPhysReg(MachineInstr &MI, unsigned OpNum, MCPhysReg PhysReg); |
| 217 | |
| 218 | void dumpState(); |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 219 | }; |
Eugene Zelenko | 618c555 | 2017-09-13 21:15:20 +0000 | [diff] [blame] | 220 | |
| 221 | } // end anonymous namespace |
| 222 | |
| 223 | char RegAllocFast::ID = 0; |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 224 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 225 | INITIALIZE_PASS(RegAllocFast, "regallocfast", "Fast Register Allocator", false, |
| 226 | false) |
Quentin Colombet | 8155114 | 2017-07-07 19:25:42 +0000 | [diff] [blame] | 227 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 228 | /// This allocates space for the specified virtual register to be held on the |
| 229 | /// stack. |
| 230 | int RegAllocFast::getStackSpaceFor(unsigned VirtReg, |
| 231 | const TargetRegisterClass &RC) { |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 232 | // Find the location Reg would belong... |
| 233 | int SS = StackSlotForVirtReg[VirtReg]; |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 234 | // Already has space allocated? |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 235 | if (SS != -1) |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 236 | return SS; |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 237 | |
| 238 | // Allocate a new stack object for this spill location... |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 239 | unsigned Size = TRI->getSpillSize(RC); |
| 240 | unsigned Align = TRI->getSpillAlignment(RC); |
| 241 | int FrameIdx = MFI->CreateSpillStackObject(Size, Align); |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 242 | |
| 243 | // Assign the slot. |
| 244 | StackSlotForVirtReg[VirtReg] = FrameIdx; |
| 245 | return FrameIdx; |
| 246 | } |
| 247 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 248 | /// Return true if MO is the only remaining reference to its virtual register, |
| 249 | /// and it is guaranteed to be a block-local register. |
| 250 | bool RegAllocFast::isLastUseOfLocalReg(const MachineOperand &MO) const { |
Jakob Stoklund Olesen | 84ce290 | 2010-05-15 06:09:08 +0000 | [diff] [blame] | 251 | // If the register has ever been spilled or reloaded, we conservatively assume |
| 252 | // it is a global register used in multiple blocks. |
| 253 | if (StackSlotForVirtReg[MO.getReg()] != -1) |
| 254 | return false; |
| 255 | |
| 256 | // Check that the use/def chain has exactly one operand - MO. |
Jakob Stoklund Olesen | f71bc7b | 2012-08-08 23:44:01 +0000 | [diff] [blame] | 257 | MachineRegisterInfo::reg_nodbg_iterator I = MRI->reg_nodbg_begin(MO.getReg()); |
Owen Anderson | 16c6bf4 | 2014-03-13 23:12:04 +0000 | [diff] [blame] | 258 | if (&*I != &MO) |
Jakob Stoklund Olesen | f71bc7b | 2012-08-08 23:44:01 +0000 | [diff] [blame] | 259 | return false; |
| 260 | return ++I == MRI->reg_nodbg_end(); |
Jakob Stoklund Olesen | 84ce290 | 2010-05-15 06:09:08 +0000 | [diff] [blame] | 261 | } |
| 262 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 263 | /// Set kill flags on last use of a virtual register. |
| 264 | void RegAllocFast::addKillFlag(const LiveReg &LR) { |
Jakob Stoklund Olesen | d2ef1fb | 2010-05-17 02:07:29 +0000 | [diff] [blame] | 265 | if (!LR.LastUse) return; |
| 266 | MachineOperand &MO = LR.LastUse->getOperand(LR.LastOpNum); |
Jakob Stoklund Olesen | e0eddb2 | 2010-05-19 21:36:05 +0000 | [diff] [blame] | 267 | if (MO.isUse() && !LR.LastUse->isRegTiedToDefOperand(LR.LastOpNum)) { |
| 268 | if (MO.getReg() == LR.PhysReg) |
Jakob Stoklund Olesen | 663543b4 | 2010-05-18 21:10:50 +0000 | [diff] [blame] | 269 | MO.setIsKill(); |
Quentin Colombet | 868ef84 | 2017-07-07 19:25:45 +0000 | [diff] [blame] | 270 | // else, don't do anything we are problably redefining a |
| 271 | // subreg of this register and given we don't track which |
| 272 | // lanes are actually dead, we cannot insert a kill flag here. |
| 273 | // Otherwise we may end up in a situation like this: |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 274 | // ... = (MO) physreg:sub1, implicit killed physreg |
Quentin Colombet | 868ef84 | 2017-07-07 19:25:45 +0000 | [diff] [blame] | 275 | // ... <== Here we would allow later pass to reuse physreg:sub1 |
| 276 | // which is potentially wrong. |
| 277 | // LR:sub0 = ... |
| 278 | // ... = LR.sub1 <== This is going to use physreg:sub1 |
Jakob Stoklund Olesen | 663543b4 | 2010-05-18 21:10:50 +0000 | [diff] [blame] | 279 | } |
Jakob Stoklund Olesen | 955a0e7 | 2010-05-12 18:46:03 +0000 | [diff] [blame] | 280 | } |
| 281 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 282 | /// Mark virtreg as no longer available. |
| 283 | void RegAllocFast::killVirtReg(LiveRegMap::iterator LRI) { |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 284 | addKillFlag(*LRI); |
Jakob Stoklund Olesen | bd5e076 | 2012-02-22 16:50:46 +0000 | [diff] [blame] | 285 | assert(PhysRegState[LRI->PhysReg] == LRI->VirtReg && |
| 286 | "Broken RegState mapping"); |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 287 | PhysRegState[LRI->PhysReg] = regFree; |
Jakob Stoklund Olesen | 8044c98 | 2010-05-17 02:07:32 +0000 | [diff] [blame] | 288 | // Erase from LiveVirtRegs unless we're spilling in bulk. |
| 289 | if (!isBulkSpilling) |
Jakob Stoklund Olesen | 397068d | 2010-05-17 02:49:15 +0000 | [diff] [blame] | 290 | LiveVirtRegs.erase(LRI); |
Jakob Stoklund Olesen | 1326681 | 2010-05-11 23:24:45 +0000 | [diff] [blame] | 291 | } |
| 292 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 293 | /// Mark virtreg as no longer available. |
| 294 | void RegAllocFast::killVirtReg(unsigned VirtReg) { |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 295 | assert(TargetRegisterInfo::isVirtualRegister(VirtReg) && |
| 296 | "killVirtReg needs a virtual register"); |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 297 | LiveRegMap::iterator LRI = findLiveVirtReg(VirtReg); |
Jakob Stoklund Olesen | 397068d | 2010-05-17 02:49:15 +0000 | [diff] [blame] | 298 | if (LRI != LiveVirtRegs.end()) |
| 299 | killVirtReg(LRI); |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 300 | } |
| 301 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 302 | /// This method spills the value specified by VirtReg into the corresponding |
| 303 | /// stack slot if needed. |
| 304 | void RegAllocFast::spillVirtReg(MachineBasicBlock::iterator MI, |
| 305 | unsigned VirtReg) { |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 306 | assert(TargetRegisterInfo::isVirtualRegister(VirtReg) && |
| 307 | "Spilling a physical register is illegal!"); |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 308 | LiveRegMap::iterator LRI = findLiveVirtReg(VirtReg); |
Jakob Stoklund Olesen | 397068d | 2010-05-17 02:49:15 +0000 | [diff] [blame] | 309 | assert(LRI != LiveVirtRegs.end() && "Spilling unmapped virtual register"); |
| 310 | spillVirtReg(MI, LRI); |
Jakob Stoklund Olesen | 41f8dc8 | 2010-05-14 00:02:20 +0000 | [diff] [blame] | 311 | } |
| 312 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 313 | /// Do the actual work of spilling. |
| 314 | void RegAllocFast::spillVirtReg(MachineBasicBlock::iterator MI, |
| 315 | LiveRegMap::iterator LRI) { |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 316 | LiveReg &LR = *LRI; |
| 317 | assert(PhysRegState[LR.PhysReg] == LRI->VirtReg && "Broken RegState mapping"); |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 318 | |
Jakob Stoklund Olesen | 11f1ba1 | 2010-05-11 23:24:47 +0000 | [diff] [blame] | 319 | if (LR.Dirty) { |
Jakob Stoklund Olesen | 8044c98 | 2010-05-17 02:07:32 +0000 | [diff] [blame] | 320 | // If this physreg is used by the instruction, we want to kill it on the |
| 321 | // instruction, not on the spill. |
Duncan P. N. Exon Smith | 44ed0de | 2016-07-01 15:03:37 +0000 | [diff] [blame] | 322 | bool SpillKill = MachineBasicBlock::iterator(LR.LastUse) != MI; |
Jakob Stoklund Olesen | 11f1ba1 | 2010-05-11 23:24:47 +0000 | [diff] [blame] | 323 | LR.Dirty = false; |
Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 324 | DEBUG(dbgs() << "Spilling " << printReg(LRI->VirtReg, TRI) |
| 325 | << " in " << printReg(LR.PhysReg, TRI)); |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 326 | const TargetRegisterClass &RC = *MRI->getRegClass(LRI->VirtReg); |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 327 | int FI = getStackSpaceFor(LRI->VirtReg, RC); |
Jakob Stoklund Olesen | fb43e06 | 2010-05-17 02:07:22 +0000 | [diff] [blame] | 328 | DEBUG(dbgs() << " to stack slot #" << FI << "\n"); |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 329 | TII->storeRegToStackSlot(*MBB, MI, LR.PhysReg, SpillKill, FI, &RC, TRI); |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 330 | ++NumStores; // Update statistics |
Jakob Stoklund Olesen | 1326681 | 2010-05-11 23:24:45 +0000 | [diff] [blame] | 331 | |
Jim Grosbach | cb2e56f | 2010-09-01 19:16:29 +0000 | [diff] [blame] | 332 | // If this register is used by DBG_VALUE then insert new DBG_VALUE to |
Devang Patel | d71bc1a | 2010-08-04 18:42:02 +0000 | [diff] [blame] | 333 | // identify spilled location as the place to find corresponding variable's |
| 334 | // value. |
Craig Topper | b94011f | 2013-07-14 04:42:23 +0000 | [diff] [blame] | 335 | SmallVectorImpl<MachineInstr *> &LRIDbgValues = |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 336 | LiveDbgValueMap[LRI->VirtReg]; |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 337 | for (MachineInstr *DBG : LRIDbgValues) { |
Adrian Prantl | 6825fb6 | 2017-04-18 01:21:53 +0000 | [diff] [blame] | 338 | MachineInstr *NewDV = buildDbgValueForSpill(*MBB, MI, *DBG, FI); |
Adrian Prantl | e5e8ce6 | 2014-09-05 17:10:10 +0000 | [diff] [blame] | 339 | assert(NewDV->getParent() == MBB && "dangling parent pointer"); |
David Blaikie | 0252265b | 2013-06-16 20:34:15 +0000 | [diff] [blame] | 340 | (void)NewDV; |
| 341 | DEBUG(dbgs() << "Inserting debug info due to spill:" << "\n" << *NewDV); |
Devang Patel | d71bc1a | 2010-08-04 18:42:02 +0000 | [diff] [blame] | 342 | } |
Jakob Stoklund Olesen | bd5e076 | 2012-02-22 16:50:46 +0000 | [diff] [blame] | 343 | // Now this register is spilled there is should not be any DBG_VALUE |
| 344 | // pointing to this register because they are all pointing to spilled value |
| 345 | // now. |
Devang Patel | d88b8ba | 2011-06-21 23:02:36 +0000 | [diff] [blame] | 346 | LRIDbgValues.clear(); |
Jakob Stoklund Olesen | 397068d | 2010-05-17 02:49:15 +0000 | [diff] [blame] | 347 | if (SpillKill) |
Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 348 | LR.LastUse = nullptr; // Don't kill register again |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 349 | } |
Jakob Stoklund Olesen | 397068d | 2010-05-17 02:49:15 +0000 | [diff] [blame] | 350 | killVirtReg(LRI); |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 351 | } |
| 352 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 353 | /// Spill all dirty virtregs without killing them. |
| 354 | void RegAllocFast::spillAll(MachineBasicBlock::iterator MI) { |
Jakob Stoklund Olesen | f5e8c86 | 2010-05-17 15:30:37 +0000 | [diff] [blame] | 355 | if (LiveVirtRegs.empty()) return; |
Jakob Stoklund Olesen | 8044c98 | 2010-05-17 02:07:32 +0000 | [diff] [blame] | 356 | isBulkSpilling = true; |
Jakob Stoklund Olesen | 70563bb | 2010-05-17 20:01:22 +0000 | [diff] [blame] | 357 | // The LiveRegMap is keyed by an unsigned (the virtreg number), so the order |
| 358 | // of spilling here is deterministic, if arbitrary. |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 359 | for (LiveRegMap::iterator I = LiveVirtRegs.begin(), E = LiveVirtRegs.end(); |
| 360 | I != E; ++I) |
| 361 | spillVirtReg(MI, I); |
Jakob Stoklund Olesen | 8044c98 | 2010-05-17 02:07:32 +0000 | [diff] [blame] | 362 | LiveVirtRegs.clear(); |
| 363 | isBulkSpilling = false; |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 364 | } |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 365 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 366 | /// Handle the direct use of a physical register. Check that the register is |
| 367 | /// not used by a virtreg. Kill the physreg, marking it free. This may add |
| 368 | /// implicit kills to MO->getParent() and invalidate MO. |
| 369 | void RegAllocFast::usePhysReg(MachineOperand &MO) { |
Hans Wennborg | 8eb336c | 2016-05-18 16:10:17 +0000 | [diff] [blame] | 370 | // Ignore undef uses. |
| 371 | if (MO.isUndef()) |
| 372 | return; |
| 373 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 374 | unsigned PhysReg = MO.getReg(); |
| 375 | assert(TargetRegisterInfo::isPhysicalRegister(PhysReg) && |
| 376 | "Bad usePhysReg operand"); |
| 377 | |
Jakob Stoklund Olesen | 2ff4dc0 | 2013-02-21 19:35:21 +0000 | [diff] [blame] | 378 | markRegUsedInInstr(PhysReg); |
Jakob Stoklund Olesen | 4d5c106 | 2010-05-14 18:03:25 +0000 | [diff] [blame] | 379 | switch (PhysRegState[PhysReg]) { |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 380 | case regDisabled: |
| 381 | break; |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 382 | case regReserved: |
| 383 | PhysRegState[PhysReg] = regFree; |
Justin Bogner | cd1d5aa | 2016-08-17 20:30:52 +0000 | [diff] [blame] | 384 | LLVM_FALLTHROUGH; |
Jakob Stoklund Olesen | 4d5c106 | 2010-05-14 18:03:25 +0000 | [diff] [blame] | 385 | case regFree: |
Jakob Stoklund Olesen | 4d5c106 | 2010-05-14 18:03:25 +0000 | [diff] [blame] | 386 | MO.setIsKill(); |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 387 | return; |
| 388 | default: |
Eric Christopher | 66a8bf5 | 2010-12-08 21:35:09 +0000 | [diff] [blame] | 389 | // The physreg was allocated to a virtual register. That means the value we |
Jakob Stoklund Olesen | 4d5c106 | 2010-05-14 18:03:25 +0000 | [diff] [blame] | 390 | // wanted has been clobbered. |
| 391 | llvm_unreachable("Instruction uses an allocated register"); |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 392 | } |
| 393 | |
Jakob Stoklund Olesen | 4d5c106 | 2010-05-14 18:03:25 +0000 | [diff] [blame] | 394 | // Maybe a superregister is reserved? |
Jakob Stoklund Olesen | 54038d7 | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 395 | for (MCRegAliasIterator AI(PhysReg, TRI, false); AI.isValid(); ++AI) { |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 396 | MCPhysReg Alias = *AI; |
Jakob Stoklund Olesen | 4d5c106 | 2010-05-14 18:03:25 +0000 | [diff] [blame] | 397 | switch (PhysRegState[Alias]) { |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 398 | case regDisabled: |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 399 | break; |
| 400 | case regReserved: |
Quentin Colombet | 079aba7 | 2014-12-03 23:38:08 +0000 | [diff] [blame] | 401 | // Either PhysReg is a subregister of Alias and we mark the |
| 402 | // whole register as free, or PhysReg is the superregister of |
| 403 | // Alias and we mark all the aliases as disabled before freeing |
| 404 | // PhysReg. |
| 405 | // In the latter case, since PhysReg was disabled, this means that |
| 406 | // its value is defined only by physical sub-registers. This check |
| 407 | // is performed by the assert of the default case in this loop. |
| 408 | // Note: The value of the superregister may only be partial |
| 409 | // defined, that is why regDisabled is a valid state for aliases. |
| 410 | assert((TRI->isSuperRegister(PhysReg, Alias) || |
| 411 | TRI->isSuperRegister(Alias, PhysReg)) && |
Jakob Stoklund Olesen | 4d5c106 | 2010-05-14 18:03:25 +0000 | [diff] [blame] | 412 | "Instruction is not using a subregister of a reserved register"); |
Justin Bogner | cd1d5aa | 2016-08-17 20:30:52 +0000 | [diff] [blame] | 413 | LLVM_FALLTHROUGH; |
Jakob Stoklund Olesen | 4d5c106 | 2010-05-14 18:03:25 +0000 | [diff] [blame] | 414 | case regFree: |
| 415 | if (TRI->isSuperRegister(PhysReg, Alias)) { |
| 416 | // Leave the superregister in the working set. |
Quentin Colombet | 079aba7 | 2014-12-03 23:38:08 +0000 | [diff] [blame] | 417 | PhysRegState[Alias] = regFree; |
Jakob Stoklund Olesen | 4d5c106 | 2010-05-14 18:03:25 +0000 | [diff] [blame] | 418 | MO.getParent()->addRegisterKilled(Alias, TRI, true); |
| 419 | return; |
| 420 | } |
| 421 | // Some other alias was in the working set - clear it. |
| 422 | PhysRegState[Alias] = regDisabled; |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 423 | break; |
| 424 | default: |
Jakob Stoklund Olesen | 4d5c106 | 2010-05-14 18:03:25 +0000 | [diff] [blame] | 425 | llvm_unreachable("Instruction uses an alias of an allocated register"); |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 426 | } |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 427 | } |
Jakob Stoklund Olesen | 4d5c106 | 2010-05-14 18:03:25 +0000 | [diff] [blame] | 428 | |
| 429 | // All aliases are disabled, bring register into working set. |
| 430 | PhysRegState[PhysReg] = regFree; |
Jakob Stoklund Olesen | 4d5c106 | 2010-05-14 18:03:25 +0000 | [diff] [blame] | 431 | MO.setIsKill(); |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 432 | } |
| 433 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 434 | /// Mark PhysReg as reserved or free after spilling any virtregs. This is very |
| 435 | /// similar to defineVirtReg except the physreg is reserved instead of |
| 436 | /// allocated. |
| 437 | void RegAllocFast::definePhysReg(MachineInstr &MI, MCPhysReg PhysReg, |
| 438 | RegState NewState) { |
Jakob Stoklund Olesen | 2ff4dc0 | 2013-02-21 19:35:21 +0000 | [diff] [blame] | 439 | markRegUsedInInstr(PhysReg); |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 440 | switch (unsigned VirtReg = PhysRegState[PhysReg]) { |
| 441 | case regDisabled: |
| 442 | break; |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 443 | default: |
Jakob Stoklund Olesen | 8044c98 | 2010-05-17 02:07:32 +0000 | [diff] [blame] | 444 | spillVirtReg(MI, VirtReg); |
Justin Bogner | cd1d5aa | 2016-08-17 20:30:52 +0000 | [diff] [blame] | 445 | LLVM_FALLTHROUGH; |
Jakob Stoklund Olesen | 4d5c106 | 2010-05-14 18:03:25 +0000 | [diff] [blame] | 446 | case regFree: |
| 447 | case regReserved: |
| 448 | PhysRegState[PhysReg] = NewState; |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 449 | return; |
| 450 | } |
| 451 | |
Jakob Stoklund Olesen | 4d5c106 | 2010-05-14 18:03:25 +0000 | [diff] [blame] | 452 | // This is a disabled register, disable all aliases. |
| 453 | PhysRegState[PhysReg] = NewState; |
Jakob Stoklund Olesen | 54038d7 | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 454 | for (MCRegAliasIterator AI(PhysReg, TRI, false); AI.isValid(); ++AI) { |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 455 | MCPhysReg Alias = *AI; |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 456 | switch (unsigned VirtReg = PhysRegState[Alias]) { |
| 457 | case regDisabled: |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 458 | break; |
| 459 | default: |
Jakob Stoklund Olesen | 8044c98 | 2010-05-17 02:07:32 +0000 | [diff] [blame] | 460 | spillVirtReg(MI, VirtReg); |
Justin Bogner | cd1d5aa | 2016-08-17 20:30:52 +0000 | [diff] [blame] | 461 | LLVM_FALLTHROUGH; |
Jakob Stoklund Olesen | 4d5c106 | 2010-05-14 18:03:25 +0000 | [diff] [blame] | 462 | case regFree: |
| 463 | case regReserved: |
| 464 | PhysRegState[Alias] = regDisabled; |
| 465 | if (TRI->isSuperRegister(PhysReg, Alias)) |
| 466 | return; |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 467 | break; |
| 468 | } |
| 469 | } |
| 470 | } |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 471 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 472 | /// \brief Return the cost of spilling clearing out PhysReg and aliases so it is |
| 473 | /// free for allocation. Returns 0 when PhysReg is free or disabled with all |
| 474 | /// aliases disabled - it can be allocated directly. |
| 475 | /// \returns spillImpossible when PhysReg or an alias can't be spilled. |
| 476 | unsigned RegAllocFast::calcSpillCost(MCPhysReg PhysReg) const { |
Jakob Stoklund Olesen | 2ff4dc0 | 2013-02-21 19:35:21 +0000 | [diff] [blame] | 477 | if (isRegUsedInInstr(PhysReg)) { |
Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 478 | DEBUG(dbgs() << printReg(PhysReg, TRI) << " is already used in instr.\n"); |
Jakob Stoklund Olesen | 5857927 | 2010-05-17 21:02:08 +0000 | [diff] [blame] | 479 | return spillImpossible; |
Eric Christopher | de9d585 | 2011-04-12 22:17:44 +0000 | [diff] [blame] | 480 | } |
Jakob Stoklund Olesen | 6649cda | 2010-05-17 15:30:32 +0000 | [diff] [blame] | 481 | switch (unsigned VirtReg = PhysRegState[PhysReg]) { |
| 482 | case regDisabled: |
| 483 | break; |
| 484 | case regFree: |
| 485 | return 0; |
| 486 | case regReserved: |
Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 487 | DEBUG(dbgs() << printReg(VirtReg, TRI) << " corresponding " |
| 488 | << printReg(PhysReg, TRI) << " is reserved already.\n"); |
Jakob Stoklund Olesen | 6649cda | 2010-05-17 15:30:32 +0000 | [diff] [blame] | 489 | return spillImpossible; |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 490 | default: { |
| 491 | LiveRegMap::const_iterator I = findLiveVirtReg(VirtReg); |
| 492 | assert(I != LiveVirtRegs.end() && "Missing VirtReg entry"); |
| 493 | return I->Dirty ? spillDirty : spillClean; |
| 494 | } |
Jakob Stoklund Olesen | 6649cda | 2010-05-17 15:30:32 +0000 | [diff] [blame] | 495 | } |
| 496 | |
Eric Christopher | c378336 | 2011-04-12 00:48:08 +0000 | [diff] [blame] | 497 | // This is a disabled register, add up cost of aliases. |
Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 498 | DEBUG(dbgs() << printReg(PhysReg, TRI) << " is disabled.\n"); |
Jakob Stoklund Olesen | 6649cda | 2010-05-17 15:30:32 +0000 | [diff] [blame] | 499 | unsigned Cost = 0; |
Jakob Stoklund Olesen | 54038d7 | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 500 | for (MCRegAliasIterator AI(PhysReg, TRI, false); AI.isValid(); ++AI) { |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 501 | MCPhysReg Alias = *AI; |
Jakob Stoklund Olesen | 6649cda | 2010-05-17 15:30:32 +0000 | [diff] [blame] | 502 | switch (unsigned VirtReg = PhysRegState[Alias]) { |
| 503 | case regDisabled: |
| 504 | break; |
| 505 | case regFree: |
| 506 | ++Cost; |
| 507 | break; |
| 508 | case regReserved: |
| 509 | return spillImpossible; |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 510 | default: { |
| 511 | LiveRegMap::const_iterator I = findLiveVirtReg(VirtReg); |
| 512 | assert(I != LiveVirtRegs.end() && "Missing VirtReg entry"); |
| 513 | Cost += I->Dirty ? spillDirty : spillClean; |
Jakob Stoklund Olesen | 6649cda | 2010-05-17 15:30:32 +0000 | [diff] [blame] | 514 | break; |
| 515 | } |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 516 | } |
Jakob Stoklund Olesen | 6649cda | 2010-05-17 15:30:32 +0000 | [diff] [blame] | 517 | } |
| 518 | return Cost; |
| 519 | } |
| 520 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 521 | /// \brief This method updates local state so that we know that PhysReg is the |
| 522 | /// proper container for VirtReg now. The physical register must not be used |
| 523 | /// for anything else when this is called. |
| 524 | void RegAllocFast::assignVirtToPhysReg(LiveReg &LR, MCPhysReg PhysReg) { |
Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 525 | DEBUG(dbgs() << "Assigning " << printReg(LR.VirtReg, TRI) << " to " |
| 526 | << printReg(PhysReg, TRI) << "\n"); |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 527 | PhysRegState[PhysReg] = LR.VirtReg; |
| 528 | assert(!LR.PhysReg && "Already assigned a physreg"); |
| 529 | LR.PhysReg = PhysReg; |
| 530 | } |
| 531 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 532 | RegAllocFast::LiveRegMap::iterator |
| 533 | RegAllocFast::assignVirtToPhysReg(unsigned VirtReg, MCPhysReg PhysReg) { |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 534 | LiveRegMap::iterator LRI = findLiveVirtReg(VirtReg); |
| 535 | assert(LRI != LiveVirtRegs.end() && "VirtReg disappeared"); |
| 536 | assignVirtToPhysReg(*LRI, PhysReg); |
| 537 | return LRI; |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 538 | } |
| 539 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 540 | /// Allocates a physical register for VirtReg. |
| 541 | RegAllocFast::LiveRegMap::iterator RegAllocFast::allocVirtReg(MachineInstr &MI, |
| 542 | LiveRegMap::iterator LRI, unsigned Hint) { |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 543 | const unsigned VirtReg = LRI->VirtReg; |
Jakob Stoklund Olesen | d2ef1fb | 2010-05-17 02:07:29 +0000 | [diff] [blame] | 544 | |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 545 | assert(TargetRegisterInfo::isVirtualRegister(VirtReg) && |
| 546 | "Can only allocate virtual registers"); |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 547 | |
Jakob Stoklund Olesen | 0ba2e2a | 2010-05-13 00:19:43 +0000 | [diff] [blame] | 548 | // Take hint when possible. |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 549 | const TargetRegisterClass &RC = *MRI->getRegClass(VirtReg); |
| 550 | if (TargetRegisterInfo::isPhysicalRegister(Hint) && |
| 551 | MRI->isAllocatable(Hint) && RC.contains(Hint)) { |
Jakob Stoklund Olesen | fb03a92 | 2011-06-13 03:26:46 +0000 | [diff] [blame] | 552 | // Ignore the hint if we would have to spill a dirty register. |
| 553 | unsigned Cost = calcSpillCost(Hint); |
| 554 | if (Cost < spillDirty) { |
| 555 | if (Cost) |
| 556 | definePhysReg(MI, Hint, regFree); |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 557 | // definePhysReg may kill virtual registers and modify LiveVirtRegs. |
| 558 | // That invalidates LRI, so run a new lookup for VirtReg. |
| 559 | return assignVirtToPhysReg(VirtReg, Hint); |
Jakob Stoklund Olesen | 0ba2e2a | 2010-05-13 00:19:43 +0000 | [diff] [blame] | 560 | } |
| 561 | } |
| 562 | |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 563 | // First try to find a completely free register. |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 564 | ArrayRef<MCPhysReg> AO = RegClassInfo.getOrder(&RC); |
| 565 | for (MCPhysReg PhysReg : AO) { |
Jakob Stoklund Olesen | 2ff4dc0 | 2013-02-21 19:35:21 +0000 | [diff] [blame] | 566 | if (PhysRegState[PhysReg] == regFree && !isRegUsedInInstr(PhysReg)) { |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 567 | assignVirtToPhysReg(*LRI, PhysReg); |
| 568 | return LRI; |
| 569 | } |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 570 | } |
| 571 | |
Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 572 | DEBUG(dbgs() << "Allocating " << printReg(VirtReg) << " from " |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 573 | << TRI->getRegClassName(&RC) << "\n"); |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 574 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 575 | unsigned BestReg = 0; |
| 576 | unsigned BestCost = spillImpossible; |
| 577 | for (MCPhysReg PhysReg : AO) { |
| 578 | unsigned Cost = calcSpillCost(PhysReg); |
Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 579 | DEBUG(dbgs() << "\tRegister: " << printReg(PhysReg, TRI) << "\n"); |
Eric Christopher | de9d585 | 2011-04-12 22:17:44 +0000 | [diff] [blame] | 580 | DEBUG(dbgs() << "\tCost: " << Cost << "\n"); |
| 581 | DEBUG(dbgs() << "\tBestCost: " << BestCost << "\n"); |
Jakob Stoklund Olesen | f5e8c86 | 2010-05-17 15:30:37 +0000 | [diff] [blame] | 582 | // Cost is 0 when all aliases are already disabled. |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 583 | if (Cost == 0) { |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 584 | assignVirtToPhysReg(*LRI, PhysReg); |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 585 | return LRI; |
| 586 | } |
Jakob Stoklund Olesen | f5e8c86 | 2010-05-17 15:30:37 +0000 | [diff] [blame] | 587 | if (Cost < BestCost) |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 588 | BestReg = PhysReg, BestCost = Cost; |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 589 | } |
| 590 | |
| 591 | if (BestReg) { |
Jakob Stoklund Olesen | f5e8c86 | 2010-05-17 15:30:37 +0000 | [diff] [blame] | 592 | definePhysReg(MI, BestReg, regFree); |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 593 | // definePhysReg may kill virtual registers and modify LiveVirtRegs. |
| 594 | // That invalidates LRI, so run a new lookup for VirtReg. |
| 595 | return assignVirtToPhysReg(VirtReg, BestReg); |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 596 | } |
| 597 | |
Jakob Stoklund Olesen | 54f7c59 | 2011-07-02 07:17:37 +0000 | [diff] [blame] | 598 | // Nothing we can do. Report an error and keep going with a bad allocation. |
Duncan P. N. Exon Smith | 44ed0de | 2016-07-01 15:03:37 +0000 | [diff] [blame] | 599 | if (MI.isInlineAsm()) |
| 600 | MI.emitError("inline assembly requires more registers than available"); |
Benjamin Kramer | 7200a46 | 2013-10-05 19:33:37 +0000 | [diff] [blame] | 601 | else |
Duncan P. N. Exon Smith | 44ed0de | 2016-07-01 15:03:37 +0000 | [diff] [blame] | 602 | MI.emitError("ran out of registers during register allocation"); |
Jakob Stoklund Olesen | 54f7c59 | 2011-07-02 07:17:37 +0000 | [diff] [blame] | 603 | definePhysReg(MI, *AO.begin(), regFree); |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 604 | return assignVirtToPhysReg(VirtReg, *AO.begin()); |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 605 | } |
| 606 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 607 | /// Allocates a register for VirtReg and mark it as dirty. |
| 608 | RegAllocFast::LiveRegMap::iterator RegAllocFast::defineVirtReg(MachineInstr &MI, |
| 609 | unsigned OpNum, |
| 610 | unsigned VirtReg, |
| 611 | unsigned Hint) { |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 612 | assert(TargetRegisterInfo::isVirtualRegister(VirtReg) && |
| 613 | "Not a virtual register"); |
Jakob Stoklund Olesen | 397068d | 2010-05-17 02:49:15 +0000 | [diff] [blame] | 614 | LiveRegMap::iterator LRI; |
Jakob Stoklund Olesen | d2ef1fb | 2010-05-17 02:07:29 +0000 | [diff] [blame] | 615 | bool New; |
Benjamin Kramer | d6f1f84 | 2014-03-02 13:30:33 +0000 | [diff] [blame] | 616 | std::tie(LRI, New) = LiveVirtRegs.insert(LiveReg(VirtReg)); |
Jakob Stoklund Olesen | 7d22a81b | 2010-05-17 04:50:57 +0000 | [diff] [blame] | 617 | if (New) { |
| 618 | // If there is no hint, peek at the only use of this register. |
| 619 | if ((!Hint || !TargetRegisterInfo::isPhysicalRegister(Hint)) && |
| 620 | MRI->hasOneNonDBGUse(VirtReg)) { |
Owen Anderson | 16c6bf4 | 2014-03-13 23:12:04 +0000 | [diff] [blame] | 621 | const MachineInstr &UseMI = *MRI->use_instr_nodbg_begin(VirtReg); |
Jakob Stoklund Olesen | 7d22a81b | 2010-05-17 04:50:57 +0000 | [diff] [blame] | 622 | // It's a copy, use the destination register as a hint. |
Jakob Stoklund Olesen | 4c82a9e | 2010-07-03 00:04:37 +0000 | [diff] [blame] | 623 | if (UseMI.isCopyLike()) |
| 624 | Hint = UseMI.getOperand(0).getReg(); |
Jakob Stoklund Olesen | 7d22a81b | 2010-05-17 04:50:57 +0000 | [diff] [blame] | 625 | } |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 626 | LRI = allocVirtReg(MI, LRI, Hint); |
| 627 | } else if (LRI->LastUse) { |
Jakob Stoklund Olesen | 663543b4 | 2010-05-18 21:10:50 +0000 | [diff] [blame] | 628 | // Redefining a live register - kill at the last use, unless it is this |
| 629 | // instruction defining VirtReg multiple times. |
Duncan P. N. Exon Smith | 44ed0de | 2016-07-01 15:03:37 +0000 | [diff] [blame] | 630 | if (LRI->LastUse != &MI || LRI->LastUse->getOperand(LRI->LastOpNum).isUse()) |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 631 | addKillFlag(*LRI); |
Jakob Stoklund Olesen | 663543b4 | 2010-05-18 21:10:50 +0000 | [diff] [blame] | 632 | } |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 633 | assert(LRI->PhysReg && "Register not assigned"); |
Duncan P. N. Exon Smith | 44ed0de | 2016-07-01 15:03:37 +0000 | [diff] [blame] | 634 | LRI->LastUse = &MI; |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 635 | LRI->LastOpNum = OpNum; |
| 636 | LRI->Dirty = true; |
Jakob Stoklund Olesen | 2ff4dc0 | 2013-02-21 19:35:21 +0000 | [diff] [blame] | 637 | markRegUsedInInstr(LRI->PhysReg); |
Jakob Stoklund Olesen | f915d14 | 2010-05-17 03:26:09 +0000 | [diff] [blame] | 638 | return LRI; |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 639 | } |
| 640 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 641 | /// Make sure VirtReg is available in a physreg and return it. |
| 642 | RegAllocFast::LiveRegMap::iterator RegAllocFast::reloadVirtReg(MachineInstr &MI, |
| 643 | unsigned OpNum, |
| 644 | unsigned VirtReg, |
| 645 | unsigned Hint) { |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 646 | assert(TargetRegisterInfo::isVirtualRegister(VirtReg) && |
| 647 | "Not a virtual register"); |
Jakob Stoklund Olesen | 397068d | 2010-05-17 02:49:15 +0000 | [diff] [blame] | 648 | LiveRegMap::iterator LRI; |
Jakob Stoklund Olesen | d2ef1fb | 2010-05-17 02:07:29 +0000 | [diff] [blame] | 649 | bool New; |
Benjamin Kramer | d6f1f84 | 2014-03-02 13:30:33 +0000 | [diff] [blame] | 650 | std::tie(LRI, New) = LiveVirtRegs.insert(LiveReg(VirtReg)); |
Duncan P. N. Exon Smith | 44ed0de | 2016-07-01 15:03:37 +0000 | [diff] [blame] | 651 | MachineOperand &MO = MI.getOperand(OpNum); |
Jakob Stoklund Olesen | d2ef1fb | 2010-05-17 02:07:29 +0000 | [diff] [blame] | 652 | if (New) { |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 653 | LRI = allocVirtReg(MI, LRI, Hint); |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 654 | const TargetRegisterClass &RC = *MRI->getRegClass(VirtReg); |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 655 | int FrameIndex = getStackSpaceFor(VirtReg, RC); |
Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 656 | DEBUG(dbgs() << "Reloading " << printReg(VirtReg, TRI) << " into " |
| 657 | << printReg(LRI->PhysReg, TRI) << "\n"); |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 658 | TII->loadRegFromStackSlot(*MBB, MI, LRI->PhysReg, FrameIndex, &RC, TRI); |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 659 | ++NumLoads; |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 660 | } else if (LRI->Dirty) { |
Jakob Stoklund Olesen | 84ce290 | 2010-05-15 06:09:08 +0000 | [diff] [blame] | 661 | if (isLastUseOfLocalReg(MO)) { |
| 662 | DEBUG(dbgs() << "Killing last use: " << MO << "\n"); |
Jakob Stoklund Olesen | dadea5b | 2010-06-29 19:15:30 +0000 | [diff] [blame] | 663 | if (MO.isUse()) |
| 664 | MO.setIsKill(); |
| 665 | else |
| 666 | MO.setIsDead(); |
Jakob Stoklund Olesen | 84ce290 | 2010-05-15 06:09:08 +0000 | [diff] [blame] | 667 | } else if (MO.isKill()) { |
| 668 | DEBUG(dbgs() << "Clearing dubious kill: " << MO << "\n"); |
| 669 | MO.setIsKill(false); |
Jakob Stoklund Olesen | dadea5b | 2010-06-29 19:15:30 +0000 | [diff] [blame] | 670 | } else if (MO.isDead()) { |
| 671 | DEBUG(dbgs() << "Clearing dubious dead: " << MO << "\n"); |
| 672 | MO.setIsDead(false); |
Jakob Stoklund Olesen | 84ce290 | 2010-05-15 06:09:08 +0000 | [diff] [blame] | 673 | } |
Jakob Stoklund Olesen | edd3d9d | 2010-05-17 03:26:06 +0000 | [diff] [blame] | 674 | } else if (MO.isKill()) { |
| 675 | // We must remove kill flags from uses of reloaded registers because the |
| 676 | // register would be killed immediately, and there might be a second use: |
Francis Visoiu Mistrih | a8a83d1 | 2017-12-07 10:40:31 +0000 | [diff] [blame] | 677 | // %foo = OR killed %x, %x |
Jakob Stoklund Olesen | edd3d9d | 2010-05-17 03:26:06 +0000 | [diff] [blame] | 678 | // This would cause a second reload of %x into a different register. |
| 679 | DEBUG(dbgs() << "Clearing clean kill: " << MO << "\n"); |
| 680 | MO.setIsKill(false); |
Jakob Stoklund Olesen | dadea5b | 2010-06-29 19:15:30 +0000 | [diff] [blame] | 681 | } else if (MO.isDead()) { |
| 682 | DEBUG(dbgs() << "Clearing clean dead: " << MO << "\n"); |
| 683 | MO.setIsDead(false); |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 684 | } |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 685 | assert(LRI->PhysReg && "Register not assigned"); |
Duncan P. N. Exon Smith | 44ed0de | 2016-07-01 15:03:37 +0000 | [diff] [blame] | 686 | LRI->LastUse = &MI; |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 687 | LRI->LastOpNum = OpNum; |
Jakob Stoklund Olesen | 2ff4dc0 | 2013-02-21 19:35:21 +0000 | [diff] [blame] | 688 | markRegUsedInInstr(LRI->PhysReg); |
Jakob Stoklund Olesen | f915d14 | 2010-05-17 03:26:09 +0000 | [diff] [blame] | 689 | return LRI; |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 690 | } |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 691 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 692 | /// Changes operand OpNum in MI the refer the PhysReg, considering subregs. This |
| 693 | /// may invalidate any operand pointers. Return true if the operand kills its |
| 694 | /// register. |
| 695 | bool RegAllocFast::setPhysReg(MachineInstr &MI, unsigned OpNum, |
| 696 | MCPhysReg PhysReg) { |
| 697 | MachineOperand &MO = MI.getOperand(OpNum); |
Jakob Stoklund Olesen | a13fd12 | 2012-05-14 21:30:58 +0000 | [diff] [blame] | 698 | bool Dead = MO.isDead(); |
Jakob Stoklund Olesen | e07a408 | 2010-05-17 02:49:21 +0000 | [diff] [blame] | 699 | if (!MO.getSubReg()) { |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 700 | MO.setReg(PhysReg); |
Geoff Berry | 60c4310 | 2017-12-12 17:53:59 +0000 | [diff] [blame] | 701 | MO.setIsRenamableIfNoExtraRegAllocReq(); |
Jakob Stoklund Olesen | a13fd12 | 2012-05-14 21:30:58 +0000 | [diff] [blame] | 702 | return MO.isKill() || Dead; |
Jakob Stoklund Olesen | e07a408 | 2010-05-17 02:49:21 +0000 | [diff] [blame] | 703 | } |
| 704 | |
| 705 | // Handle subregister index. |
| 706 | MO.setReg(PhysReg ? TRI->getSubReg(PhysReg, MO.getSubReg()) : 0); |
Geoff Berry | 60c4310 | 2017-12-12 17:53:59 +0000 | [diff] [blame] | 707 | MO.setIsRenamableIfNoExtraRegAllocReq(); |
Jakob Stoklund Olesen | e07a408 | 2010-05-17 02:49:21 +0000 | [diff] [blame] | 708 | MO.setSubReg(0); |
Jakob Stoklund Olesen | e0eddb2 | 2010-05-19 21:36:05 +0000 | [diff] [blame] | 709 | |
| 710 | // A kill flag implies killing the full register. Add corresponding super |
| 711 | // register kill. |
| 712 | if (MO.isKill()) { |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 713 | MI.addRegisterKilled(PhysReg, TRI, true); |
Jakob Stoklund Olesen | e07a408 | 2010-05-17 02:49:21 +0000 | [diff] [blame] | 714 | return true; |
| 715 | } |
Jakob Stoklund Olesen | dc2e0cd | 2012-05-14 21:10:25 +0000 | [diff] [blame] | 716 | |
| 717 | // A <def,read-undef> of a sub-register requires an implicit def of the full |
| 718 | // register. |
| 719 | if (MO.isDef() && MO.isUndef()) |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 720 | MI.addRegisterDefined(PhysReg, TRI); |
Jakob Stoklund Olesen | dc2e0cd | 2012-05-14 21:10:25 +0000 | [diff] [blame] | 721 | |
Jakob Stoklund Olesen | a13fd12 | 2012-05-14 21:30:58 +0000 | [diff] [blame] | 722 | return Dead; |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 723 | } |
| 724 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 725 | // Handles special instruction operand like early clobbers and tied ops when |
Jakob Stoklund Olesen | 0d94d7a | 2010-06-28 18:34:34 +0000 | [diff] [blame] | 726 | // there are additional physreg defines. |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 727 | void RegAllocFast::handleThroughOperands(MachineInstr &MI, |
| 728 | SmallVectorImpl<unsigned> &VirtDead) { |
Jakob Stoklund Olesen | 0d94d7a | 2010-06-28 18:34:34 +0000 | [diff] [blame] | 729 | DEBUG(dbgs() << "Scanning for through registers:"); |
| 730 | SmallSet<unsigned, 8> ThroughRegs; |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 731 | for (const MachineOperand &MO : MI.operands()) { |
Jakob Stoklund Olesen | 0d94d7a | 2010-06-28 18:34:34 +0000 | [diff] [blame] | 732 | if (!MO.isReg()) continue; |
| 733 | unsigned Reg = MO.getReg(); |
Jakob Stoklund Olesen | 2fb5b31 | 2011-01-10 02:58:51 +0000 | [diff] [blame] | 734 | if (!TargetRegisterInfo::isVirtualRegister(Reg)) |
| 735 | continue; |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 736 | if (MO.isEarlyClobber() || (MO.isUse() && MO.isTied()) || |
| 737 | (MO.getSubReg() && MI.readsVirtualRegister(Reg))) { |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 738 | if (ThroughRegs.insert(Reg).second) |
Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 739 | DEBUG(dbgs() << ' ' << printReg(Reg)); |
Jakob Stoklund Olesen | 0d94d7a | 2010-06-28 18:34:34 +0000 | [diff] [blame] | 740 | } |
| 741 | } |
| 742 | |
| 743 | // If any physreg defines collide with preallocated through registers, |
| 744 | // we must spill and reallocate. |
| 745 | DEBUG(dbgs() << "\nChecking for physdef collisions.\n"); |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 746 | for (const MachineOperand &MO : MI.operands()) { |
Jakob Stoklund Olesen | 0d94d7a | 2010-06-28 18:34:34 +0000 | [diff] [blame] | 747 | if (!MO.isReg() || !MO.isDef()) continue; |
| 748 | unsigned Reg = MO.getReg(); |
| 749 | if (!Reg || !TargetRegisterInfo::isPhysicalRegister(Reg)) continue; |
Jakob Stoklund Olesen | 2ff4dc0 | 2013-02-21 19:35:21 +0000 | [diff] [blame] | 750 | markRegUsedInInstr(Reg); |
Jakob Stoklund Olesen | 9b09cf0 | 2012-06-01 22:38:17 +0000 | [diff] [blame] | 751 | for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI) { |
Jakob Stoklund Olesen | 9b09cf0 | 2012-06-01 22:38:17 +0000 | [diff] [blame] | 752 | if (ThroughRegs.count(PhysRegState[*AI])) |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 753 | definePhysReg(MI, *AI, regFree); |
Jakob Stoklund Olesen | 0d94d7a | 2010-06-28 18:34:34 +0000 | [diff] [blame] | 754 | } |
| 755 | } |
| 756 | |
Jakob Stoklund Olesen | dadea5b | 2010-06-29 19:15:30 +0000 | [diff] [blame] | 757 | SmallVector<unsigned, 8> PartialDefs; |
Rafael Espindola | 2021f38 | 2011-11-22 06:27:18 +0000 | [diff] [blame] | 758 | DEBUG(dbgs() << "Allocating tied uses.\n"); |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 759 | for (unsigned I = 0, E = MI.getNumOperands(); I != E; ++I) { |
| 760 | const MachineOperand &MO = MI.getOperand(I); |
Jakob Stoklund Olesen | 0d94d7a | 2010-06-28 18:34:34 +0000 | [diff] [blame] | 761 | if (!MO.isReg()) continue; |
| 762 | unsigned Reg = MO.getReg(); |
Jakob Stoklund Olesen | 2fb5b31 | 2011-01-10 02:58:51 +0000 | [diff] [blame] | 763 | if (!TargetRegisterInfo::isVirtualRegister(Reg)) continue; |
Jakob Stoklund Olesen | 0d94d7a | 2010-06-28 18:34:34 +0000 | [diff] [blame] | 764 | if (MO.isUse()) { |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 765 | if (!MO.isTied()) continue; |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 766 | DEBUG(dbgs() << "Operand " << I << "("<< MO << ") is tied to operand " |
Matthias Braun | 6b2b88b | 2017-09-09 01:16:59 +0000 | [diff] [blame] | 767 | << MI.findTiedOperandIdx(I) << ".\n"); |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 768 | LiveRegMap::iterator LRI = reloadVirtReg(MI, I, Reg, 0); |
| 769 | MCPhysReg PhysReg = LRI->PhysReg; |
| 770 | setPhysReg(MI, I, PhysReg); |
Jakob Stoklund Olesen | dadea5b | 2010-06-29 19:15:30 +0000 | [diff] [blame] | 771 | // Note: we don't update the def operand yet. That would cause the normal |
| 772 | // def-scan to attempt spilling. |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 773 | } else if (MO.getSubReg() && MI.readsVirtualRegister(Reg)) { |
Jakob Stoklund Olesen | dadea5b | 2010-06-29 19:15:30 +0000 | [diff] [blame] | 774 | DEBUG(dbgs() << "Partial redefine: " << MO << "\n"); |
| 775 | // Reload the register, but don't assign to the operand just yet. |
| 776 | // That would confuse the later phys-def processing pass. |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 777 | LiveRegMap::iterator LRI = reloadVirtReg(MI, I, Reg, 0); |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 778 | PartialDefs.push_back(LRI->PhysReg); |
Jakob Stoklund Olesen | 0d94d7a | 2010-06-28 18:34:34 +0000 | [diff] [blame] | 779 | } |
| 780 | } |
| 781 | |
Rafael Espindola | 2021f38 | 2011-11-22 06:27:18 +0000 | [diff] [blame] | 782 | DEBUG(dbgs() << "Allocating early clobbers.\n"); |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 783 | for (unsigned I = 0, E = MI.getNumOperands(); I != E; ++I) { |
| 784 | const MachineOperand &MO = MI.getOperand(I); |
Rafael Espindola | 2021f38 | 2011-11-22 06:27:18 +0000 | [diff] [blame] | 785 | if (!MO.isReg()) continue; |
| 786 | unsigned Reg = MO.getReg(); |
| 787 | if (!TargetRegisterInfo::isVirtualRegister(Reg)) continue; |
| 788 | if (!MO.isEarlyClobber()) |
| 789 | continue; |
| 790 | // Note: defineVirtReg may invalidate MO. |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 791 | LiveRegMap::iterator LRI = defineVirtReg(MI, I, Reg, 0); |
| 792 | MCPhysReg PhysReg = LRI->PhysReg; |
| 793 | if (setPhysReg(MI, I, PhysReg)) |
Rafael Espindola | 2021f38 | 2011-11-22 06:27:18 +0000 | [diff] [blame] | 794 | VirtDead.push_back(Reg); |
| 795 | } |
| 796 | |
Jakob Stoklund Olesen | 0d94d7a | 2010-06-28 18:34:34 +0000 | [diff] [blame] | 797 | // Restore UsedInInstr to a state usable for allocating normal virtual uses. |
Jakob Stoklund Olesen | a2136be | 2012-10-17 01:37:59 +0000 | [diff] [blame] | 798 | UsedInInstr.clear(); |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 799 | for (const MachineOperand &MO : MI.operands()) { |
Jakob Stoklund Olesen | 0d94d7a | 2010-06-28 18:34:34 +0000 | [diff] [blame] | 800 | if (!MO.isReg() || (MO.isDef() && !MO.isEarlyClobber())) continue; |
| 801 | unsigned Reg = MO.getReg(); |
| 802 | if (!Reg || !TargetRegisterInfo::isPhysicalRegister(Reg)) continue; |
Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 803 | DEBUG(dbgs() << "\tSetting " << printReg(Reg, TRI) |
Jakob Stoklund Olesen | a1dceb0 | 2011-06-28 17:24:32 +0000 | [diff] [blame] | 804 | << " as used in instr\n"); |
Jakob Stoklund Olesen | 2ff4dc0 | 2013-02-21 19:35:21 +0000 | [diff] [blame] | 805 | markRegUsedInInstr(Reg); |
Jakob Stoklund Olesen | 0d94d7a | 2010-06-28 18:34:34 +0000 | [diff] [blame] | 806 | } |
Jakob Stoklund Olesen | dadea5b | 2010-06-29 19:15:30 +0000 | [diff] [blame] | 807 | |
| 808 | // Also mark PartialDefs as used to avoid reallocation. |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 809 | for (unsigned PartialDef : PartialDefs) |
| 810 | markRegUsedInInstr(PartialDef); |
Jakob Stoklund Olesen | 0d94d7a | 2010-06-28 18:34:34 +0000 | [diff] [blame] | 811 | } |
| 812 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 813 | #ifndef NDEBUG |
| 814 | void RegAllocFast::dumpState() { |
| 815 | for (unsigned Reg = 1, E = TRI->getNumRegs(); Reg != E; ++Reg) { |
| 816 | if (PhysRegState[Reg] == regDisabled) continue; |
Francis Visoiu Mistrih | c71cced | 2017-11-30 16:12:24 +0000 | [diff] [blame] | 817 | dbgs() << " " << printReg(Reg, TRI); |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 818 | switch(PhysRegState[Reg]) { |
| 819 | case regFree: |
| 820 | break; |
| 821 | case regReserved: |
| 822 | dbgs() << "*"; |
| 823 | break; |
| 824 | default: { |
Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 825 | dbgs() << '=' << printReg(PhysRegState[Reg]); |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 826 | LiveRegMap::iterator I = findLiveVirtReg(PhysRegState[Reg]); |
| 827 | assert(I != LiveVirtRegs.end() && "Missing VirtReg entry"); |
| 828 | if (I->Dirty) |
| 829 | dbgs() << "*"; |
| 830 | assert(I->PhysReg == Reg && "Bad inverse map"); |
| 831 | break; |
| 832 | } |
| 833 | } |
| 834 | } |
| 835 | dbgs() << '\n'; |
| 836 | // Check that LiveVirtRegs is the inverse. |
| 837 | for (LiveRegMap::iterator i = LiveVirtRegs.begin(), |
| 838 | e = LiveVirtRegs.end(); i != e; ++i) { |
| 839 | assert(TargetRegisterInfo::isVirtualRegister(i->VirtReg) && |
| 840 | "Bad map key"); |
| 841 | assert(TargetRegisterInfo::isPhysicalRegister(i->PhysReg) && |
| 842 | "Bad map value"); |
| 843 | assert(PhysRegState[i->PhysReg] == i->VirtReg && "Bad inverse map"); |
| 844 | } |
| 845 | } |
| 846 | #endif |
| 847 | |
| 848 | void RegAllocFast::allocateBasicBlock(MachineBasicBlock &MBB) { |
| 849 | this->MBB = &MBB; |
| 850 | DEBUG(dbgs() << "\nAllocating " << MBB); |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 851 | |
| 852 | PhysRegState.assign(TRI->getNumRegs(), regDisabled); |
Jakob Stoklund Olesen | 9c4cd1b | 2012-02-22 01:02:37 +0000 | [diff] [blame] | 853 | assert(LiveVirtRegs.empty() && "Mapping not cleared from last block?"); |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 854 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 855 | MachineBasicBlock::iterator MII = MBB.begin(); |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 856 | |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 857 | // Add live-in registers as live. |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 858 | for (const MachineBasicBlock::RegisterMaskPair LI : MBB.liveins()) |
Matthias Braun | d9da162 | 2015-09-09 18:08:03 +0000 | [diff] [blame] | 859 | if (MRI->isAllocatable(LI.PhysReg)) |
Duncan P. N. Exon Smith | 44ed0de | 2016-07-01 15:03:37 +0000 | [diff] [blame] | 860 | definePhysReg(*MII, LI.PhysReg, regReserved); |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 861 | |
Matthias Braun | a09d18d | 2017-09-09 00:52:45 +0000 | [diff] [blame] | 862 | VirtDead.clear(); |
| 863 | Coalesced.clear(); |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 864 | |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 865 | // Otherwise, sequentially allocate each instruction in the MBB. |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 866 | for (MachineInstr &MI : MBB) { |
| 867 | const MCInstrDesc &MCID = MI.getDesc(); |
| 868 | DEBUG( |
| 869 | dbgs() << "\n>> " << MI << "Regs:"; |
| 870 | dumpState() |
| 871 | ); |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 872 | |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 873 | // Debug values are not allowed to change codegen in any way. |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 874 | if (MI.isDebugValue()) { |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 875 | MachineInstr *DebugMI = &MI; |
Reid Kleckner | 9e6c309 | 2017-09-15 21:49:56 +0000 | [diff] [blame] | 876 | MachineOperand &MO = DebugMI->getOperand(0); |
| 877 | |
| 878 | // Ignore DBG_VALUEs that aren't based on virtual registers. These are |
| 879 | // mostly constants and frame indices. |
| 880 | if (!MO.isReg()) |
| 881 | continue; |
| 882 | unsigned Reg = MO.getReg(); |
| 883 | if (!TargetRegisterInfo::isVirtualRegister(Reg)) |
| 884 | continue; |
| 885 | |
| 886 | // See if this virtual register has already been allocated to a physical |
| 887 | // register or spilled to a stack slot. |
| 888 | LiveRegMap::iterator LRI = findLiveVirtReg(Reg); |
| 889 | if (LRI != LiveVirtRegs.end()) |
| 890 | setPhysReg(*DebugMI, 0, LRI->PhysReg); |
| 891 | else { |
| 892 | int SS = StackSlotForVirtReg[Reg]; |
| 893 | if (SS != -1) { |
| 894 | // Modify DBG_VALUE now that the value is in a spill slot. |
| 895 | updateDbgValueForSpill(*DebugMI, SS); |
| 896 | DEBUG(dbgs() << "Modifying debug info due to spill:" |
| 897 | << "\t" << *DebugMI); |
| 898 | continue; |
Devang Patel | 57e7237 | 2010-07-09 21:48:31 +0000 | [diff] [blame] | 899 | } |
Reid Kleckner | 9e6c309 | 2017-09-15 21:49:56 +0000 | [diff] [blame] | 900 | |
| 901 | // We can't allocate a physreg for a DebugValue, sorry! |
| 902 | DEBUG(dbgs() << "Unable to allocate vreg used by DBG_VALUE"); |
| 903 | MO.setReg(0); |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 904 | } |
Reid Kleckner | 9e6c309 | 2017-09-15 21:49:56 +0000 | [diff] [blame] | 905 | |
| 906 | // If Reg hasn't been spilled, put this DBG_VALUE in LiveDbgValueMap so |
| 907 | // that future spills of Reg will have DBG_VALUEs. |
| 908 | LiveDbgValueMap[Reg].push_back(DebugMI); |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 909 | continue; |
| 910 | } |
| 911 | |
Jakob Stoklund Olesen | 0ba2e2a | 2010-05-13 00:19:43 +0000 | [diff] [blame] | 912 | // If this is a copy, we may be able to coalesce. |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 913 | unsigned CopySrcReg = 0; |
| 914 | unsigned CopyDstReg = 0; |
| 915 | unsigned CopySrcSub = 0; |
| 916 | unsigned CopyDstSub = 0; |
| 917 | if (MI.isCopy()) { |
| 918 | CopyDstReg = MI.getOperand(0).getReg(); |
| 919 | CopySrcReg = MI.getOperand(1).getReg(); |
| 920 | CopyDstSub = MI.getOperand(0).getSubReg(); |
| 921 | CopySrcSub = MI.getOperand(1).getSubReg(); |
Jakob Stoklund Olesen | 37c42a3 | 2010-07-16 04:45:42 +0000 | [diff] [blame] | 922 | } |
Jakob Stoklund Olesen | 0ba2e2a | 2010-05-13 00:19:43 +0000 | [diff] [blame] | 923 | |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 924 | // Track registers used by instruction. |
Jakob Stoklund Olesen | a2136be | 2012-10-17 01:37:59 +0000 | [diff] [blame] | 925 | UsedInInstr.clear(); |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 926 | |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 927 | // First scan. |
| 928 | // Mark physreg uses and early clobbers as used. |
Jakob Stoklund Olesen | e68b814 | 2010-05-14 21:55:52 +0000 | [diff] [blame] | 929 | // Find the end of the virtreg operands |
| 930 | unsigned VirtOpEnd = 0; |
Jakob Stoklund Olesen | dadea5b | 2010-06-29 19:15:30 +0000 | [diff] [blame] | 931 | bool hasTiedOps = false; |
| 932 | bool hasEarlyClobbers = false; |
| 933 | bool hasPartialRedefs = false; |
| 934 | bool hasPhysDefs = false; |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 935 | for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { |
| 936 | MachineOperand &MO = MI.getOperand(i); |
Chad Rosier | 8d2c229 | 2012-11-06 22:52:42 +0000 | [diff] [blame] | 937 | // Make sure MRI knows about registers clobbered by regmasks. |
| 938 | if (MO.isRegMask()) { |
| 939 | MRI->addPhysRegsUsedFromRegMask(MO.getRegMask()); |
| 940 | continue; |
| 941 | } |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 942 | if (!MO.isReg()) continue; |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 943 | unsigned Reg = MO.getReg(); |
Jakob Stoklund Olesen | e68b814 | 2010-05-14 21:55:52 +0000 | [diff] [blame] | 944 | if (!Reg) continue; |
| 945 | if (TargetRegisterInfo::isVirtualRegister(Reg)) { |
| 946 | VirtOpEnd = i+1; |
Jakob Stoklund Olesen | dadea5b | 2010-06-29 19:15:30 +0000 | [diff] [blame] | 947 | if (MO.isUse()) { |
Jakob Stoklund Olesen | 0d94d7a | 2010-06-28 18:34:34 +0000 | [diff] [blame] | 948 | hasTiedOps = hasTiedOps || |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 949 | MCID.getOperandConstraint(i, MCOI::TIED_TO) != -1; |
Jakob Stoklund Olesen | dadea5b | 2010-06-29 19:15:30 +0000 | [diff] [blame] | 950 | } else { |
| 951 | if (MO.isEarlyClobber()) |
| 952 | hasEarlyClobbers = true; |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 953 | if (MO.getSubReg() && MI.readsVirtualRegister(Reg)) |
Jakob Stoklund Olesen | dadea5b | 2010-06-29 19:15:30 +0000 | [diff] [blame] | 954 | hasPartialRedefs = true; |
| 955 | } |
Jakob Stoklund Olesen | e68b814 | 2010-05-14 21:55:52 +0000 | [diff] [blame] | 956 | continue; |
| 957 | } |
Jakob Stoklund Olesen | f67bf3e | 2012-10-15 22:41:03 +0000 | [diff] [blame] | 958 | if (!MRI->isAllocatable(Reg)) continue; |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 959 | if (MO.isUse()) { |
Jakob Stoklund Olesen | 4d5c106 | 2010-05-14 18:03:25 +0000 | [diff] [blame] | 960 | usePhysReg(MO); |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 961 | } else if (MO.isEarlyClobber()) { |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 962 | definePhysReg(MI, Reg, |
Duncan P. N. Exon Smith | 44ed0de | 2016-07-01 15:03:37 +0000 | [diff] [blame] | 963 | (MO.isImplicit() || MO.isDead()) ? regFree : regReserved); |
Jakob Stoklund Olesen | 0d94d7a | 2010-06-28 18:34:34 +0000 | [diff] [blame] | 964 | hasEarlyClobbers = true; |
| 965 | } else |
| 966 | hasPhysDefs = true; |
| 967 | } |
| 968 | |
| 969 | // The instruction may have virtual register operands that must be allocated |
| 970 | // the same register at use-time and def-time: early clobbers and tied |
| 971 | // operands. If there are also physical defs, these registers must avoid |
| 972 | // both physical defs and uses, making them more constrained than normal |
| 973 | // operands. |
Jim Grosbach | cb2e56f | 2010-09-01 19:16:29 +0000 | [diff] [blame] | 974 | // Similarly, if there are multiple defs and tied operands, we must make |
| 975 | // sure the same register is allocated to uses and defs. |
Jakob Stoklund Olesen | 0d94d7a | 2010-06-28 18:34:34 +0000 | [diff] [blame] | 976 | // We didn't detect inline asm tied operands above, so just make this extra |
| 977 | // pass for all inline asm. |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 978 | if (MI.isInlineAsm() || hasEarlyClobbers || hasPartialRedefs || |
Evan Cheng | 6cc775f | 2011-06-28 19:10:37 +0000 | [diff] [blame] | 979 | (hasTiedOps && (hasPhysDefs || MCID.getNumDefs() > 1))) { |
Jakob Stoklund Olesen | 0d94d7a | 2010-06-28 18:34:34 +0000 | [diff] [blame] | 980 | handleThroughOperands(MI, VirtDead); |
| 981 | // Don't attempt coalescing when we have funny stuff going on. |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 982 | CopyDstReg = 0; |
Jakob Stoklund Olesen | 36cf119 | 2010-07-29 00:52:19 +0000 | [diff] [blame] | 983 | // Pretend we have early clobbers so the use operands get marked below. |
| 984 | // This is not necessary for the common case of a single tied use. |
| 985 | hasEarlyClobbers = true; |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 986 | } |
| 987 | |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 988 | // Second scan. |
Jakob Stoklund Olesen | 0d94d7a | 2010-06-28 18:34:34 +0000 | [diff] [blame] | 989 | // Allocate virtreg uses. |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 990 | for (unsigned I = 0; I != VirtOpEnd; ++I) { |
| 991 | const MachineOperand &MO = MI.getOperand(I); |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 992 | if (!MO.isReg()) continue; |
| 993 | unsigned Reg = MO.getReg(); |
Jakob Stoklund Olesen | 2fb5b31 | 2011-01-10 02:58:51 +0000 | [diff] [blame] | 994 | if (!TargetRegisterInfo::isVirtualRegister(Reg)) continue; |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 995 | if (MO.isUse()) { |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 996 | LiveRegMap::iterator LRI = reloadVirtReg(MI, I, Reg, CopyDstReg); |
| 997 | MCPhysReg PhysReg = LRI->PhysReg; |
| 998 | CopySrcReg = (CopySrcReg == Reg || CopySrcReg == PhysReg) ? PhysReg : 0; |
| 999 | if (setPhysReg(MI, I, PhysReg)) |
Jakob Stoklund Olesen | f915d14 | 2010-05-17 03:26:09 +0000 | [diff] [blame] | 1000 | killVirtReg(LRI); |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 1001 | } |
| 1002 | } |
| 1003 | |
Jakob Stoklund Olesen | 36cf119 | 2010-07-29 00:52:19 +0000 | [diff] [blame] | 1004 | // Track registers defined by instruction - early clobbers and tied uses at |
| 1005 | // this point. |
Jakob Stoklund Olesen | a2136be | 2012-10-17 01:37:59 +0000 | [diff] [blame] | 1006 | UsedInInstr.clear(); |
Jakob Stoklund Olesen | 0d94d7a | 2010-06-28 18:34:34 +0000 | [diff] [blame] | 1007 | if (hasEarlyClobbers) { |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 1008 | for (const MachineOperand &MO : MI.operands()) { |
Jakob Stoklund Olesen | 36cf119 | 2010-07-29 00:52:19 +0000 | [diff] [blame] | 1009 | if (!MO.isReg()) continue; |
Jakob Stoklund Olesen | 0d94d7a | 2010-06-28 18:34:34 +0000 | [diff] [blame] | 1010 | unsigned Reg = MO.getReg(); |
| 1011 | if (!Reg || !TargetRegisterInfo::isPhysicalRegister(Reg)) continue; |
Jakob Stoklund Olesen | 36cf119 | 2010-07-29 00:52:19 +0000 | [diff] [blame] | 1012 | // Look for physreg defs and tied uses. |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 1013 | if (!MO.isDef() && !MO.isTied()) continue; |
Jakob Stoklund Olesen | 2ff4dc0 | 2013-02-21 19:35:21 +0000 | [diff] [blame] | 1014 | markRegUsedInInstr(Reg); |
Jakob Stoklund Olesen | 0d94d7a | 2010-06-28 18:34:34 +0000 | [diff] [blame] | 1015 | } |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 1016 | } |
| 1017 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 1018 | unsigned DefOpEnd = MI.getNumOperands(); |
| 1019 | if (MI.isCall()) { |
Quentin Colombet | e611698 | 2016-02-20 00:32:29 +0000 | [diff] [blame] | 1020 | // Spill all virtregs before a call. This serves one purpose: If an |
Jim Grosbach | cb2e56f | 2010-09-01 19:16:29 +0000 | [diff] [blame] | 1021 | // exception is thrown, the landing pad is going to expect to find |
Quentin Colombet | e611698 | 2016-02-20 00:32:29 +0000 | [diff] [blame] | 1022 | // registers in their spill slots. |
| 1023 | // Note: although this is appealing to just consider all definitions |
| 1024 | // as call-clobbered, this is not correct because some of those |
| 1025 | // definitions may be used later on and we do not want to reuse |
| 1026 | // those for virtual registers in between. |
Jakob Stoklund Olesen | 1069a09 | 2010-05-17 02:49:18 +0000 | [diff] [blame] | 1027 | DEBUG(dbgs() << " Spilling remaining registers before call.\n"); |
| 1028 | spillAll(MI); |
| 1029 | } |
| 1030 | |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 1031 | // Third scan. |
| 1032 | // Allocate defs and collect dead defs. |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 1033 | for (unsigned I = 0; I != DefOpEnd; ++I) { |
| 1034 | const MachineOperand &MO = MI.getOperand(I); |
Jakob Stoklund Olesen | 246e9a0 | 2010-06-15 16:20:57 +0000 | [diff] [blame] | 1035 | if (!MO.isReg() || !MO.isDef() || !MO.getReg() || MO.isEarlyClobber()) |
| 1036 | continue; |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 1037 | unsigned Reg = MO.getReg(); |
| 1038 | |
| 1039 | if (TargetRegisterInfo::isPhysicalRegister(Reg)) { |
Jakob Stoklund Olesen | f67bf3e | 2012-10-15 22:41:03 +0000 | [diff] [blame] | 1040 | if (!MRI->isAllocatable(Reg)) continue; |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 1041 | definePhysReg(MI, Reg, MO.isDead() ? regFree : regReserved); |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 1042 | continue; |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 1043 | } |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 1044 | LiveRegMap::iterator LRI = defineVirtReg(MI, I, Reg, CopySrcReg); |
| 1045 | MCPhysReg PhysReg = LRI->PhysReg; |
| 1046 | if (setPhysReg(MI, I, PhysReg)) { |
Jakob Stoklund Olesen | 663543b4 | 2010-05-18 21:10:50 +0000 | [diff] [blame] | 1047 | VirtDead.push_back(Reg); |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 1048 | CopyDstReg = 0; // cancel coalescing; |
Jakob Stoklund Olesen | ceb5a7a | 2010-05-14 04:30:51 +0000 | [diff] [blame] | 1049 | } else |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 1050 | CopyDstReg = (CopyDstReg == Reg || CopyDstReg == PhysReg) ? PhysReg : 0; |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 1051 | } |
| 1052 | |
Jakob Stoklund Olesen | 663543b4 | 2010-05-18 21:10:50 +0000 | [diff] [blame] | 1053 | // Kill dead defs after the scan to ensure that multiple defs of the same |
| 1054 | // register are allocated identically. We didn't need to do this for uses |
| 1055 | // because we are crerating our own kill flags, and they are always at the |
| 1056 | // last use. |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 1057 | for (unsigned VirtReg : VirtDead) |
| 1058 | killVirtReg(VirtReg); |
Jakob Stoklund Olesen | 663543b4 | 2010-05-18 21:10:50 +0000 | [diff] [blame] | 1059 | VirtDead.clear(); |
| 1060 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 1061 | if (CopyDstReg && CopyDstReg == CopySrcReg && CopyDstSub == CopySrcSub) { |
| 1062 | DEBUG(dbgs() << "-- coalescing: " << MI); |
| 1063 | Coalesced.push_back(&MI); |
Jakob Stoklund Olesen | ceb5a7a | 2010-05-14 04:30:51 +0000 | [diff] [blame] | 1064 | } else { |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 1065 | DEBUG(dbgs() << "<< " << MI); |
Jakob Stoklund Olesen | ceb5a7a | 2010-05-14 04:30:51 +0000 | [diff] [blame] | 1066 | } |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 1067 | } |
| 1068 | |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 1069 | // Spill all physical registers holding virtual registers now. |
Jakob Stoklund Olesen | 8044c98 | 2010-05-17 02:07:32 +0000 | [diff] [blame] | 1070 | DEBUG(dbgs() << "Spilling live registers at end of block.\n"); |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 1071 | spillAll(MBB.getFirstTerminator()); |
Jakob Stoklund Olesen | f1b3029 | 2010-05-11 18:54:45 +0000 | [diff] [blame] | 1072 | |
Jakob Stoklund Olesen | ceb5a7a | 2010-05-14 04:30:51 +0000 | [diff] [blame] | 1073 | // Erase all the coalesced copies. We are delaying it until now because |
Jakob Stoklund Olesen | 8044c98 | 2010-05-17 02:07:32 +0000 | [diff] [blame] | 1074 | // LiveVirtRegs might refer to the instrs. |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 1075 | for (MachineInstr *MI : Coalesced) |
| 1076 | MBB.erase(MI); |
Jakob Stoklund Olesen | 6c038e3 | 2010-05-14 21:55:50 +0000 | [diff] [blame] | 1077 | NumCopies += Coalesced.size(); |
Jakob Stoklund Olesen | ceb5a7a | 2010-05-14 04:30:51 +0000 | [diff] [blame] | 1078 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 1079 | DEBUG(MBB.dump()); |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 1080 | } |
| 1081 | |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 1082 | /// Allocates registers for a function. |
| 1083 | bool RegAllocFast::runOnMachineFunction(MachineFunction &MF) { |
Jakob Stoklund Olesen | d74a564 | 2010-05-13 20:43:17 +0000 | [diff] [blame] | 1084 | DEBUG(dbgs() << "********** FAST REGISTER ALLOCATION **********\n" |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 1085 | << "********** Function: " << MF.getName() << '\n'); |
| 1086 | MRI = &MF.getRegInfo(); |
| 1087 | const TargetSubtargetInfo &STI = MF.getSubtarget(); |
| 1088 | TRI = STI.getRegisterInfo(); |
| 1089 | TII = STI.getInstrInfo(); |
| 1090 | MFI = &MF.getFrameInfo(); |
| 1091 | MRI->freezeReservedRegs(MF); |
| 1092 | RegClassInfo.runOnMachineFunction(MF); |
Jakob Stoklund Olesen | a2136be | 2012-10-17 01:37:59 +0000 | [diff] [blame] | 1093 | UsedInInstr.clear(); |
Jakob Stoklund Olesen | 2ff4dc0 | 2013-02-21 19:35:21 +0000 | [diff] [blame] | 1094 | UsedInInstr.setUniverse(TRI->getNumRegUnits()); |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 1095 | |
| 1096 | // initialize the virtual->physical register map to have a 'null' |
| 1097 | // mapping for all virtual registers |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 1098 | unsigned NumVirtRegs = MRI->getNumVirtRegs(); |
| 1099 | StackSlotForVirtReg.resize(NumVirtRegs); |
| 1100 | LiveVirtRegs.setUniverse(NumVirtRegs); |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 1101 | |
| 1102 | // Loop over all of the basic blocks, eliminating virtual register references |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 1103 | for (MachineBasicBlock &MBB : MF) |
| 1104 | allocateBasicBlock(MBB); |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 1105 | |
Andrew Trick | da84e64 | 2012-02-21 04:51:23 +0000 | [diff] [blame] | 1106 | // All machine operands and other references to virtual registers have been |
| 1107 | // replaced. Remove the virtual registers. |
| 1108 | MRI->clearVirtRegs(); |
| 1109 | |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 1110 | StackSlotForVirtReg.clear(); |
Devang Patel | d71bc1a | 2010-08-04 18:42:02 +0000 | [diff] [blame] | 1111 | LiveDbgValueMap.clear(); |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 1112 | return true; |
| 1113 | } |
| 1114 | |
| 1115 | FunctionPass *llvm::createFastRegisterAllocator() { |
Matthias Braun | 864cf58 | 2017-09-09 00:52:46 +0000 | [diff] [blame] | 1116 | return new RegAllocFast(); |
Jakob Stoklund Olesen | 8a070a5 | 2010-04-21 18:02:42 +0000 | [diff] [blame] | 1117 | } |