| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 1 | //===- RegAllocGreedy.cpp - greedy register allocator ---------------------===// |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +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 | // |
| 10 | // This file defines the RAGreedy function pass for register allocation in |
| 11 | // optimized builds. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| Jakob Stoklund Olesen | 4d7432e | 2010-12-10 22:21:05 +0000 | [diff] [blame] | 15 | #include "AllocationOrder.h" |
| Jakob Stoklund Olesen | 91cbcaf | 2011-04-02 06:03:35 +0000 | [diff] [blame] | 16 | #include "InterferenceCache.h" |
| Jakob Stoklund Olesen | 6aa0fbf | 2011-04-05 21:40:37 +0000 | [diff] [blame] | 17 | #include "LiveDebugVariables.h" |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 18 | #include "RegAllocBase.h" |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 19 | #include "SpillPlacement.h" |
| Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 20 | #include "Spiller.h" |
| Jakob Stoklund Olesen | e7601e9 | 2010-12-15 23:46:13 +0000 | [diff] [blame] | 21 | #include "SplitKit.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/ArrayRef.h" |
| 23 | #include "llvm/ADT/BitVector.h" |
| 24 | #include "llvm/ADT/DenseMap.h" |
| 25 | #include "llvm/ADT/IndexedMap.h" |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 26 | #include "llvm/ADT/MapVector.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 27 | #include "llvm/ADT/SetVector.h" |
| 28 | #include "llvm/ADT/SmallPtrSet.h" |
| 29 | #include "llvm/ADT/SmallSet.h" |
| 30 | #include "llvm/ADT/SmallVector.h" |
| Jakob Stoklund Olesen | 99827e8 | 2011-02-17 22:53:48 +0000 | [diff] [blame] | 31 | #include "llvm/ADT/Statistic.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 32 | #include "llvm/ADT/StringRef.h" |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 33 | #include "llvm/Analysis/AliasAnalysis.h" |
| Adam Nemet | 0965da2 | 2017-10-09 23:19:02 +0000 | [diff] [blame] | 34 | #include "llvm/Analysis/OptimizationRemarkEmitter.h" |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 35 | #include "llvm/CodeGen/CalcSpillWeights.h" |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 36 | #include "llvm/CodeGen/EdgeBundles.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 37 | #include "llvm/CodeGen/LiveInterval.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 38 | #include "llvm/CodeGen/LiveIntervalUnion.h" |
| Matthias Braun | f842297 | 2017-12-13 02:51:04 +0000 | [diff] [blame] | 39 | #include "llvm/CodeGen/LiveIntervals.h" |
| Pete Cooper | 3ca96f9 | 2012-04-02 22:44:18 +0000 | [diff] [blame] | 40 | #include "llvm/CodeGen/LiveRangeEdit.h" |
| Jakob Stoklund Olesen | 26c9d70 | 2012-11-28 19:13:06 +0000 | [diff] [blame] | 41 | #include "llvm/CodeGen/LiveRegMatrix.h" |
| Matthias Braun | ef95969 | 2017-12-18 23:19:44 +0000 | [diff] [blame] | 42 | #include "llvm/CodeGen/LiveStacks.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 43 | #include "llvm/CodeGen/MachineBasicBlock.h" |
| Benjamin Kramer | e2a1d89 | 2013-06-17 19:00:36 +0000 | [diff] [blame] | 44 | #include "llvm/CodeGen/MachineBlockFrequencyInfo.h" |
| Jakob Stoklund Olesen | 1740e00 | 2010-12-17 23:16:32 +0000 | [diff] [blame] | 45 | #include "llvm/CodeGen/MachineDominators.h" |
| Adam Nemet | a964066 | 2017-01-25 23:20:33 +0000 | [diff] [blame] | 46 | #include "llvm/CodeGen/MachineFrameInfo.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 47 | #include "llvm/CodeGen/MachineFunction.h" |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 48 | #include "llvm/CodeGen/MachineFunctionPass.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 49 | #include "llvm/CodeGen/MachineInstr.h" |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 50 | #include "llvm/CodeGen/MachineLoopInfo.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 51 | #include "llvm/CodeGen/MachineOperand.h" |
| Adam Nemet | a964066 | 2017-01-25 23:20:33 +0000 | [diff] [blame] | 52 | #include "llvm/CodeGen/MachineOptimizationRemarkEmitter.h" |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 53 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 54 | #include "llvm/CodeGen/RegAllocRegistry.h" |
| Quentin Colombet | 1fb3362a | 2014-01-02 22:47:22 +0000 | [diff] [blame] | 55 | #include "llvm/CodeGen/RegisterClassInfo.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 56 | #include "llvm/CodeGen/SlotIndexes.h" |
| David Blaikie | 3f833ed | 2017-11-08 01:01:31 +0000 | [diff] [blame] | 57 | #include "llvm/CodeGen/TargetInstrInfo.h" |
| David Blaikie | b3bde2e | 2017-11-17 01:07:10 +0000 | [diff] [blame] | 58 | #include "llvm/CodeGen/TargetRegisterInfo.h" |
| 59 | #include "llvm/CodeGen/TargetSubtargetInfo.h" |
| Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 60 | #include "llvm/CodeGen/VirtRegMap.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 61 | #include "llvm/IR/Function.h" |
| Quentin Colombet | 96bd2a1 | 2014-04-04 02:05:21 +0000 | [diff] [blame] | 62 | #include "llvm/IR/LLVMContext.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 63 | #include "llvm/MC/MCRegisterInfo.h" |
| 64 | #include "llvm/Pass.h" |
| 65 | #include "llvm/Support/BlockFrequency.h" |
| Duncan P. N. Exon Smith | a5df813 | 2014-04-08 19:18:56 +0000 | [diff] [blame] | 66 | #include "llvm/Support/BranchProbability.h" |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 67 | #include "llvm/Support/CommandLine.h" |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 68 | #include "llvm/Support/Debug.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 69 | #include "llvm/Support/MathExtras.h" |
| Jakob Stoklund Olesen | 92da705 | 2010-12-11 00:19:56 +0000 | [diff] [blame] | 70 | #include "llvm/Support/Timer.h" |
| Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 71 | #include "llvm/Support/raw_ostream.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 72 | #include "llvm/Target/TargetMachine.h" |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 73 | #include <algorithm> |
| 74 | #include <cassert> |
| 75 | #include <cstdint> |
| 76 | #include <memory> |
| Jakob Stoklund Olesen | 2329c54 | 2011-02-22 23:01:52 +0000 | [diff] [blame] | 77 | #include <queue> |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 78 | #include <tuple> |
| 79 | #include <utility> |
| Jakob Stoklund Olesen | 2329c54 | 2011-02-22 23:01:52 +0000 | [diff] [blame] | 80 | |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 81 | using namespace llvm; |
| 82 | |
| Chandler Carruth | 1b9dde0 | 2014-04-22 02:02:50 +0000 | [diff] [blame] | 83 | #define DEBUG_TYPE "regalloc" |
| 84 | |
| Jakob Stoklund Olesen | 99827e8 | 2011-02-17 22:53:48 +0000 | [diff] [blame] | 85 | STATISTIC(NumGlobalSplits, "Number of split global live ranges"); |
| 86 | STATISTIC(NumLocalSplits, "Number of split local live ranges"); |
| Jakob Stoklund Olesen | 99827e8 | 2011-02-17 22:53:48 +0000 | [diff] [blame] | 87 | STATISTIC(NumEvicted, "Number of interferences evicted"); |
| 88 | |
| Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 89 | static cl::opt<SplitEditor::ComplementSpillMode> SplitSpillMode( |
| 90 | "split-spill-mode", cl::Hidden, |
| 91 | cl::desc("Spill mode for splitting live ranges"), |
| 92 | cl::values(clEnumValN(SplitEditor::SM_Partition, "default", "Default"), |
| 93 | clEnumValN(SplitEditor::SM_Size, "size", "Optimize for size"), |
| Mehdi Amini | 732afdd | 2016-10-08 19:41:06 +0000 | [diff] [blame] | 94 | clEnumValN(SplitEditor::SM_Speed, "speed", "Optimize for speed")), |
| Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 95 | cl::init(SplitEditor::SM_Speed)); |
| Jakob Stoklund Olesen | eecb2fb | 2011-09-12 16:49:21 +0000 | [diff] [blame] | 96 | |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 97 | static cl::opt<unsigned> |
| 98 | LastChanceRecoloringMaxDepth("lcr-max-depth", cl::Hidden, |
| 99 | cl::desc("Last chance recoloring max depth"), |
| 100 | cl::init(5)); |
| 101 | |
| 102 | static cl::opt<unsigned> LastChanceRecoloringMaxInterference( |
| 103 | "lcr-max-interf", cl::Hidden, |
| 104 | cl::desc("Last chance recoloring maximum number of considered" |
| 105 | " interference at a time"), |
| 106 | cl::init(8)); |
| 107 | |
| Zachary Turner | 8065f0b | 2017-12-01 00:53:10 +0000 | [diff] [blame] | 108 | static cl::opt<bool> ExhaustiveSearch( |
| 109 | "exhaustive-register-search", cl::NotHidden, |
| 110 | cl::desc("Exhaustive Search for registers bypassing the depth " |
| 111 | "and interference cutoffs of last chance recoloring"), |
| 112 | cl::Hidden); |
| Quentin Colombet | 567e30b | 2014-04-11 21:39:44 +0000 | [diff] [blame] | 113 | |
| Quentin Colombet | e1a3663 | 2014-07-01 14:08:37 +0000 | [diff] [blame] | 114 | static cl::opt<bool> EnableLocalReassignment( |
| 115 | "enable-local-reassign", cl::Hidden, |
| 116 | cl::desc("Local reassignment can yield better allocation decisions, but " |
| 117 | "may be compile time intensive"), |
| Quentin Colombet | 5caa6a2 | 2014-07-02 18:32:04 +0000 | [diff] [blame] | 118 | cl::init(false)); |
| Quentin Colombet | e1a3663 | 2014-07-01 14:08:37 +0000 | [diff] [blame] | 119 | |
| Quentin Colombet | 1192294 | 2015-07-17 23:04:06 +0000 | [diff] [blame] | 120 | static cl::opt<bool> EnableDeferredSpilling( |
| 121 | "enable-deferred-spilling", cl::Hidden, |
| 122 | cl::desc("Instead of spilling a variable right away, defer the actual " |
| 123 | "code insertion to the end of the allocation. That way the " |
| 124 | "allocator might still find a suitable coloring for this " |
| 125 | "variable because of other evicted variables."), |
| 126 | cl::init(false)); |
| 127 | |
| Manman Ren | 78cf02a | 2014-03-25 00:16:25 +0000 | [diff] [blame] | 128 | // FIXME: Find a good default for this flag and remove the flag. |
| 129 | static cl::opt<unsigned> |
| 130 | CSRFirstTimeCost("regalloc-csr-first-time-cost", |
| 131 | cl::desc("Cost for first time use of callee-saved register."), |
| 132 | cl::init(0), cl::Hidden); |
| 133 | |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 134 | static cl::opt<bool> ConsiderLocalIntervalCost( |
| 135 | "condsider-local-interval-cost", cl::Hidden, |
| 136 | cl::desc("Consider the cost of local intervals created by a split " |
| 137 | "candidate when choosing the best split candidate."), |
| 138 | cl::init(false)); |
| 139 | |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 140 | static RegisterRegAlloc greedyRegAlloc("greedy", "greedy register allocator", |
| 141 | createGreedyRegisterAllocator); |
| 142 | |
| 143 | namespace { |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 144 | |
| Jakob Stoklund Olesen | 8e08964 | 2011-03-09 00:57:29 +0000 | [diff] [blame] | 145 | class RAGreedy : public MachineFunctionPass, |
| 146 | public RegAllocBase, |
| 147 | private LiveRangeEdit::Delegate { |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 148 | // Convenient shortcuts. |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 149 | using PQueue = std::priority_queue<std::pair<unsigned, unsigned>>; |
| 150 | using SmallLISet = SmallPtrSet<LiveInterval *, 4>; |
| 151 | using SmallVirtRegSet = SmallSet<unsigned, 16>; |
| Jakob Stoklund Olesen | 8e08964 | 2011-03-09 00:57:29 +0000 | [diff] [blame] | 152 | |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 153 | // context |
| 154 | MachineFunction *MF; |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 155 | |
| Quentin Colombet | 1fb3362a | 2014-01-02 22:47:22 +0000 | [diff] [blame] | 156 | // Shortcuts to some useful interface. |
| 157 | const TargetInstrInfo *TII; |
| 158 | const TargetRegisterInfo *TRI; |
| 159 | RegisterClassInfo RCI; |
| 160 | |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 161 | // analyses |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 162 | SlotIndexes *Indexes; |
| Benjamin Kramer | e2a1d89 | 2013-06-17 19:00:36 +0000 | [diff] [blame] | 163 | MachineBlockFrequencyInfo *MBFI; |
| Jakob Stoklund Olesen | 1740e00 | 2010-12-17 23:16:32 +0000 | [diff] [blame] | 164 | MachineDominatorTree *DomTree; |
| Jakob Stoklund Olesen | e7601e9 | 2010-12-15 23:46:13 +0000 | [diff] [blame] | 165 | MachineLoopInfo *Loops; |
| Adam Nemet | a964066 | 2017-01-25 23:20:33 +0000 | [diff] [blame] | 166 | MachineOptimizationRemarkEmitter *ORE; |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 167 | EdgeBundles *Bundles; |
| 168 | SpillPlacement *SpillPlacer; |
| Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 169 | LiveDebugVariables *DebugVars; |
| Wei Mi | c022370 | 2016-07-08 21:08:09 +0000 | [diff] [blame] | 170 | AliasAnalysis *AA; |
| Jakob Stoklund Olesen | 1740e00 | 2010-12-17 23:16:32 +0000 | [diff] [blame] | 171 | |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 172 | // state |
| Ahmed Charles | 56440fd | 2014-03-06 05:51:42 +0000 | [diff] [blame] | 173 | std::unique_ptr<Spiller> SpillerInstance; |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 174 | PQueue Queue; |
| Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 175 | unsigned NextCascade; |
| Jakob Stoklund Olesen | 5f9f081 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 176 | |
| 177 | // Live ranges pass through a number of stages as we try to allocate them. |
| 178 | // Some of the stages may also create new live ranges: |
| 179 | // |
| 180 | // - Region splitting. |
| 181 | // - Per-block splitting. |
| 182 | // - Local splitting. |
| 183 | // - Spilling. |
| 184 | // |
| 185 | // Ranges produced by one of the stages skip the previous stages when they are |
| 186 | // dequeued. This improves performance because we can skip interference checks |
| 187 | // that are unlikely to give any results. It also guarantees that the live |
| 188 | // range splitting algorithm terminates, something that is otherwise hard to |
| 189 | // ensure. |
| 190 | enum LiveRangeStage { |
| Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 191 | /// Newly created live range that has never been queued. |
| 192 | RS_New, |
| 193 | |
| 194 | /// Only attempt assignment and eviction. Then requeue as RS_Split. |
| 195 | RS_Assign, |
| 196 | |
| 197 | /// Attempt live range splitting if assignment is impossible. |
| 198 | RS_Split, |
| 199 | |
| Jakob Stoklund Olesen | 4501117 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 200 | /// Attempt more aggressive live range splitting that is guaranteed to make |
| 201 | /// progress. This is used for split products that may not be making |
| 202 | /// progress. |
| 203 | RS_Split2, |
| 204 | |
| Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 205 | /// Live range will be spilled. No more splitting will be attempted. |
| 206 | RS_Spill, |
| 207 | |
| Quentin Colombet | 1192294 | 2015-07-17 23:04:06 +0000 | [diff] [blame] | 208 | |
| 209 | /// Live range is in memory. Because of other evictions, it might get moved |
| 210 | /// in a register in the end. |
| 211 | RS_Memory, |
| 212 | |
| Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 213 | /// There is nothing more we can do to this live range. Abort compilation |
| 214 | /// if it can't be assigned. |
| 215 | RS_Done |
| Jakob Stoklund Olesen | 5f9f081 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 216 | }; |
| 217 | |
| Quentin Colombet | 96bd2a1 | 2014-04-04 02:05:21 +0000 | [diff] [blame] | 218 | // Enum CutOffStage to keep a track whether the register allocation failed |
| 219 | // because of the cutoffs encountered in last chance recoloring. |
| 220 | // Note: This is used as bitmask. New value should be next power of 2. |
| 221 | enum CutOffStage { |
| 222 | // No cutoffs encountered |
| 223 | CO_None = 0, |
| 224 | |
| 225 | // lcr-max-depth cutoff encountered |
| 226 | CO_Depth = 1, |
| 227 | |
| 228 | // lcr-max-interf cutoff encountered |
| 229 | CO_Interf = 2 |
| 230 | }; |
| 231 | |
| 232 | uint8_t CutOffInfo; |
| 233 | |
| Eli Friedman | 78bffa5 | 2013-09-10 23:18:14 +0000 | [diff] [blame] | 234 | #ifndef NDEBUG |
| Jakob Stoklund Olesen | 25d5745 | 2011-05-25 23:58:36 +0000 | [diff] [blame] | 235 | static const char *const StageName[]; |
| Eli Friedman | 78bffa5 | 2013-09-10 23:18:14 +0000 | [diff] [blame] | 236 | #endif |
| Jakob Stoklund Olesen | 25d5745 | 2011-05-25 23:58:36 +0000 | [diff] [blame] | 237 | |
| Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 238 | // RegInfo - Keep additional information about each live range. |
| 239 | struct RegInfo { |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 240 | LiveRangeStage Stage = RS_New; |
| Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 241 | |
| 242 | // Cascade - Eviction loop prevention. See canEvictInterference(). |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 243 | unsigned Cascade = 0; |
| Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 244 | |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 245 | RegInfo() = default; |
| Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 246 | }; |
| 247 | |
| 248 | IndexedMap<RegInfo, VirtReg2IndexFunctor> ExtraRegInfo; |
| Jakob Stoklund Olesen | 5f9f081 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 249 | |
| 250 | LiveRangeStage getStage(const LiveInterval &VirtReg) const { |
| Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 251 | return ExtraRegInfo[VirtReg.reg].Stage; |
| 252 | } |
| 253 | |
| 254 | void setStage(const LiveInterval &VirtReg, LiveRangeStage Stage) { |
| 255 | ExtraRegInfo.resize(MRI->getNumVirtRegs()); |
| 256 | ExtraRegInfo[VirtReg.reg].Stage = Stage; |
| Jakob Stoklund Olesen | 5f9f081 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | template<typename Iterator> |
| 260 | void setStage(Iterator Begin, Iterator End, LiveRangeStage NewStage) { |
| Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 261 | ExtraRegInfo.resize(MRI->getNumVirtRegs()); |
| Jakob Stoklund Olesen | dd9a2ec | 2011-03-30 02:52:39 +0000 | [diff] [blame] | 262 | for (;Begin != End; ++Begin) { |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 263 | unsigned Reg = *Begin; |
| Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 264 | if (ExtraRegInfo[Reg].Stage == RS_New) |
| 265 | ExtraRegInfo[Reg].Stage = NewStage; |
| Jakob Stoklund Olesen | dd9a2ec | 2011-03-30 02:52:39 +0000 | [diff] [blame] | 266 | } |
| Jakob Stoklund Olesen | 5f9f081 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 267 | } |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 268 | |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 269 | /// Cost of evicting interference. |
| 270 | struct EvictionCost { |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 271 | unsigned BrokenHints = 0; ///< Total number of broken hints. |
| 272 | float MaxWeight = 0; ///< Maximum spill weight evicted. |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 273 | |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 274 | EvictionCost() = default; |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 275 | |
| Andrew Trick | 8485257 | 2013-07-25 18:35:14 +0000 | [diff] [blame] | 276 | bool isMax() const { return BrokenHints == ~0u; } |
| 277 | |
| Andrew Trick | 3621b8a | 2013-11-22 19:07:38 +0000 | [diff] [blame] | 278 | void setMax() { BrokenHints = ~0u; } |
| 279 | |
| 280 | void setBrokenHints(unsigned NHints) { BrokenHints = NHints; } |
| 281 | |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 282 | bool operator<(const EvictionCost &O) const { |
| Benjamin Kramer | b2f034b | 2014-03-03 19:58:30 +0000 | [diff] [blame] | 283 | return std::tie(BrokenHints, MaxWeight) < |
| 284 | std::tie(O.BrokenHints, O.MaxWeight); |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 285 | } |
| 286 | }; |
| 287 | |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 288 | /// EvictionTrack - Keeps track of past evictions in order to optimize region |
| 289 | /// split decision. |
| 290 | class EvictionTrack { |
| 291 | |
| 292 | public: |
| 293 | using EvictorInfo = |
| 294 | std::pair<unsigned /* evictor */, unsigned /* physreg */>; |
| 295 | using EvicteeInfo = llvm::MapVector<unsigned /* evictee */, EvictorInfo>; |
| 296 | |
| 297 | private: |
| 298 | /// Each Vreg that has been evicted in the last stage of selectOrSplit will |
| 299 | /// be mapped to the evictor Vreg and the PhysReg it was evicted from. |
| 300 | EvicteeInfo Evictees; |
| 301 | |
| 302 | public: |
| Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 303 | /// Clear all eviction information. |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 304 | void clear() { Evictees.clear(); } |
| 305 | |
| Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 306 | /// Clear eviction information for the given evictee Vreg. |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 307 | /// E.g. when Vreg get's a new allocation, the old eviction info is no |
| 308 | /// longer relevant. |
| 309 | /// \param Evictee The evictee Vreg for whom we want to clear collected |
| 310 | /// eviction info. |
| 311 | void clearEvicteeInfo(unsigned Evictee) { Evictees.erase(Evictee); } |
| 312 | |
| Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 313 | /// Track new eviction. |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 314 | /// The Evictor vreg has evicted the Evictee vreg from Physreg. |
| 315 | /// \praram PhysReg The phisical register Evictee was evicted from. |
| 316 | /// \praram Evictor The evictor Vreg that evicted Evictee. |
| 317 | /// \praram Evictee The evictee Vreg. |
| 318 | void addEviction(unsigned PhysReg, unsigned Evictor, unsigned Evictee) { |
| 319 | Evictees[Evictee].first = Evictor; |
| 320 | Evictees[Evictee].second = PhysReg; |
| 321 | } |
| 322 | |
| 323 | /// Return the Evictor Vreg which evicted Evictee Vreg from PhysReg. |
| 324 | /// \praram Evictee The evictee vreg. |
| 325 | /// \return The Evictor vreg which evicted Evictee vreg from PhysReg. 0 if |
| 326 | /// nobody has evicted Evictee from PhysReg. |
| 327 | EvictorInfo getEvictor(unsigned Evictee) { |
| 328 | if (Evictees.count(Evictee)) { |
| 329 | return Evictees[Evictee]; |
| 330 | } |
| 331 | |
| 332 | return EvictorInfo(0, 0); |
| 333 | } |
| 334 | }; |
| 335 | |
| 336 | // Keeps track of past evictions in order to optimize region split decision. |
| 337 | EvictionTrack LastEvicted; |
| 338 | |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 339 | // splitting state. |
| Ahmed Charles | 56440fd | 2014-03-06 05:51:42 +0000 | [diff] [blame] | 340 | std::unique_ptr<SplitAnalysis> SA; |
| 341 | std::unique_ptr<SplitEditor> SE; |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 342 | |
| Jakob Stoklund Olesen | ca26e0a | 2011-04-02 06:03:38 +0000 | [diff] [blame] | 343 | /// Cached per-block interference maps |
| 344 | InterferenceCache IntfCache; |
| 345 | |
| Jakob Stoklund Olesen | 6d2bbc1 | 2011-04-07 17:27:46 +0000 | [diff] [blame] | 346 | /// All basic blocks where the current register has uses. |
| Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 347 | SmallVector<SpillPlacement::BlockConstraint, 8> SplitConstraints; |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 348 | |
| Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 349 | /// Global live range splitting candidate info. |
| 350 | struct GlobalSplitCandidate { |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 351 | // Register intended for assignment, or 0. |
| Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 352 | unsigned PhysReg; |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 353 | |
| 354 | // SplitKit interval index for this candidate. |
| 355 | unsigned IntvIdx; |
| 356 | |
| 357 | // Interference for PhysReg. |
| Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 358 | InterferenceCache::Cursor Intf; |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 359 | |
| 360 | // Bundles where this candidate should be live. |
| Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 361 | BitVector LiveBundles; |
| Jakob Stoklund Olesen | c49df2c | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 362 | SmallVector<unsigned, 8> ActiveBlocks; |
| 363 | |
| Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 364 | void reset(InterferenceCache &Cache, unsigned Reg) { |
| Jakob Stoklund Olesen | c49df2c | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 365 | PhysReg = Reg; |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 366 | IntvIdx = 0; |
| Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 367 | Intf.setPhysReg(Cache, Reg); |
| Jakob Stoklund Olesen | c49df2c | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 368 | LiveBundles.clear(); |
| 369 | ActiveBlocks.clear(); |
| 370 | } |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 371 | |
| 372 | // Set B[i] = C for every live bundle where B[i] was NoCand. |
| 373 | unsigned getBundles(SmallVectorImpl<unsigned> &B, unsigned C) { |
| 374 | unsigned Count = 0; |
| Francis Visoiu Mistrih | b52e036 | 2017-05-17 01:07:53 +0000 | [diff] [blame] | 375 | for (unsigned i : LiveBundles.set_bits()) |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 376 | if (B[i] == NoCand) { |
| 377 | B[i] = C; |
| 378 | Count++; |
| 379 | } |
| 380 | return Count; |
| 381 | } |
| Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 382 | }; |
| 383 | |
| Aditya Nandakumar | c1fd0dd | 2013-11-19 23:51:32 +0000 | [diff] [blame] | 384 | /// Candidate info for each PhysReg in AllocationOrder. |
| Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 385 | /// This vector never shrinks, but grows to the size of the largest register |
| 386 | /// class. |
| 387 | SmallVector<GlobalSplitCandidate, 32> GlobalCand; |
| 388 | |
| Alp Toker | 61007d8 | 2014-03-02 03:20:38 +0000 | [diff] [blame] | 389 | enum : unsigned { NoCand = ~0u }; |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 390 | |
| 391 | /// Candidate map. Each edge bundle is assigned to a GlobalCand entry, or to |
| 392 | /// NoCand which indicates the stack interval. |
| 393 | SmallVector<unsigned, 32> BundleCand; |
| 394 | |
| Duncan P. N. Exon Smith | a5df813 | 2014-04-08 19:18:56 +0000 | [diff] [blame] | 395 | /// Callee-save register cost, calculated once per machine function. |
| 396 | BlockFrequency CSRCost; |
| 397 | |
| Quentin Colombet | 5caa6a2 | 2014-07-02 18:32:04 +0000 | [diff] [blame] | 398 | /// Run or not the local reassignment heuristic. This information is |
| 399 | /// obtained from the TargetSubtargetInfo. |
| 400 | bool EnableLocalReassign; |
| 401 | |
| Hiroshi Inoue | 8f976ba | 2018-01-17 12:29:38 +0000 | [diff] [blame] | 402 | /// Enable or not the consideration of the cost of local intervals created |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 403 | /// by a split candidate when choosing the best split candidate. |
| 404 | bool EnableAdvancedRASplitCost; |
| 405 | |
| Quentin Colombet | a799e2e | 2015-01-08 01:16:39 +0000 | [diff] [blame] | 406 | /// Set of broken hints that may be reconciled later because of eviction. |
| 407 | SmallSetVector<LiveInterval *, 8> SetOfBrokenHints; |
| 408 | |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 409 | public: |
| 410 | RAGreedy(); |
| 411 | |
| 412 | /// Return the pass name. |
| Mehdi Amini | 117296c | 2016-10-01 02:56:57 +0000 | [diff] [blame] | 413 | StringRef getPassName() const override { return "Greedy Register Allocator"; } |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 414 | |
| 415 | /// RAGreedy analysis usage. |
| Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 416 | void getAnalysisUsage(AnalysisUsage &AU) const override; |
| 417 | void releaseMemory() override; |
| 418 | Spiller &spiller() override { return *SpillerInstance; } |
| 419 | void enqueue(LiveInterval *LI) override; |
| 420 | LiveInterval *dequeue() override; |
| 421 | unsigned selectOrSplit(LiveInterval&, SmallVectorImpl<unsigned>&) override; |
| Quentin Colombet | a799e2e | 2015-01-08 01:16:39 +0000 | [diff] [blame] | 422 | void aboutToRemoveInterval(LiveInterval &) override; |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 423 | |
| 424 | /// Perform register allocation. |
| Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 425 | bool runOnMachineFunction(MachineFunction &mf) override; |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 426 | |
| Matthias Braun | 90799ce | 2016-08-23 21:19:49 +0000 | [diff] [blame] | 427 | MachineFunctionProperties getRequiredProperties() const override { |
| 428 | return MachineFunctionProperties().set( |
| 429 | MachineFunctionProperties::Property::NoPHIs); |
| 430 | } |
| 431 | |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 432 | static char ID; |
| Andrew Trick | ccef098 | 2010-12-09 18:15:21 +0000 | [diff] [blame] | 433 | |
| 434 | private: |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 435 | unsigned selectOrSplitImpl(LiveInterval &, SmallVectorImpl<unsigned> &, |
| 436 | SmallVirtRegSet &, unsigned = 0); |
| 437 | |
| Craig Topper | 4584cd5 | 2014-03-07 09:26:03 +0000 | [diff] [blame] | 438 | bool LRE_CanEraseVirtReg(unsigned) override; |
| 439 | void LRE_WillShrinkVirtReg(unsigned) override; |
| 440 | void LRE_DidCloneVirtReg(unsigned, unsigned) override; |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 441 | void enqueue(PQueue &CurQueue, LiveInterval *LI); |
| 442 | LiveInterval *dequeue(PQueue &CurQueue); |
| Jakob Stoklund Olesen | 8e08964 | 2011-03-09 00:57:29 +0000 | [diff] [blame] | 443 | |
| Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 444 | BlockFrequency calcSpillCost(); |
| 445 | bool addSplitConstraints(InterferenceCache::Cursor, BlockFrequency&); |
| Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 446 | void addThroughConstraints(InterferenceCache::Cursor, ArrayRef<unsigned>); |
| Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 447 | void growRegion(GlobalSplitCandidate &Cand); |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 448 | bool splitCanCauseEvictionChain(unsigned Evictee, GlobalSplitCandidate &Cand, |
| 449 | unsigned BBNumber, |
| 450 | const AllocationOrder &Order); |
| Marina Yatsina | cd5bc4a | 2018-01-31 13:31:08 +0000 | [diff] [blame] | 451 | bool splitCanCauseLocalSpill(unsigned VirtRegToSplit, |
| 452 | GlobalSplitCandidate &Cand, unsigned BBNumber, |
| 453 | const AllocationOrder &Order); |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 454 | BlockFrequency calcGlobalSplitCost(GlobalSplitCandidate &, |
| 455 | const AllocationOrder &Order, |
| 456 | bool *CanCauseEvictionChain); |
| Jakob Stoklund Olesen | ecad62f | 2011-07-23 03:41:57 +0000 | [diff] [blame] | 457 | bool calcCompactRegion(GlobalSplitCandidate&); |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 458 | void splitAroundRegion(LiveRangeEdit&, ArrayRef<unsigned>); |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 459 | void calcGapWeights(unsigned, SmallVectorImpl<float>&); |
| Andrew Trick | 8bb0a25 | 2013-07-25 18:35:19 +0000 | [diff] [blame] | 460 | unsigned canReassign(LiveInterval &VirtReg, unsigned PhysReg); |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 461 | bool shouldEvict(LiveInterval &A, bool, LiveInterval &B, bool); |
| 462 | bool canEvictInterference(LiveInterval&, unsigned, bool, EvictionCost&); |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 463 | bool canEvictInterferenceInRange(LiveInterval &VirtReg, unsigned PhysReg, |
| 464 | SlotIndex Start, SlotIndex End, |
| 465 | EvictionCost &MaxCost); |
| 466 | unsigned getCheapestEvicteeWeight(const AllocationOrder &Order, |
| 467 | LiveInterval &VirtReg, SlotIndex Start, |
| 468 | SlotIndex End, float *BestEvictWeight); |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 469 | void evictInterference(LiveInterval&, unsigned, |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 470 | SmallVectorImpl<unsigned>&); |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 471 | bool mayRecolorAllInterferences(unsigned PhysReg, LiveInterval &VirtReg, |
| 472 | SmallLISet &RecoloringCandidates, |
| 473 | const SmallVirtRegSet &FixedRegisters); |
| Jakob Stoklund Olesen | 3d7b806 | 2010-12-14 00:37:44 +0000 | [diff] [blame] | 474 | |
| Jakob Stoklund Olesen | 0e34c1d | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 475 | unsigned tryAssign(LiveInterval&, AllocationOrder&, |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 476 | SmallVectorImpl<unsigned>&); |
| Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 477 | unsigned tryEvict(LiveInterval&, AllocationOrder&, |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 478 | SmallVectorImpl<unsigned>&, unsigned = ~0u); |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 479 | unsigned tryRegionSplit(LiveInterval&, AllocationOrder&, |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 480 | SmallVectorImpl<unsigned>&); |
| Manman Ren | 9db66b3 | 2014-03-24 23:23:42 +0000 | [diff] [blame] | 481 | /// Calculate cost of region splitting. |
| 482 | unsigned calculateRegionSplitCost(LiveInterval &VirtReg, |
| 483 | AllocationOrder &Order, |
| 484 | BlockFrequency &BestCost, |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 485 | unsigned &NumCands, bool IgnoreCSR, |
| 486 | bool *CanCauseEvictionChain = nullptr); |
| Manman Ren | 9db66b3 | 2014-03-24 23:23:42 +0000 | [diff] [blame] | 487 | /// Perform region splitting. |
| 488 | unsigned doRegionSplit(LiveInterval &VirtReg, unsigned BestCand, |
| 489 | bool HasCompact, |
| 490 | SmallVectorImpl<unsigned> &NewVRegs); |
| Manman Ren | 9dee449 | 2014-03-27 21:21:57 +0000 | [diff] [blame] | 491 | /// Check other options before using a callee-saved register for the first |
| 492 | /// time. |
| 493 | unsigned tryAssignCSRFirstTime(LiveInterval &VirtReg, AllocationOrder &Order, |
| 494 | unsigned PhysReg, unsigned &CostPerUseLimit, |
| 495 | SmallVectorImpl<unsigned> &NewVRegs); |
| Duncan P. N. Exon Smith | a5df813 | 2014-04-08 19:18:56 +0000 | [diff] [blame] | 496 | void initializeCSRCost(); |
| Jakob Stoklund Olesen | cef5d8f | 2011-08-05 23:04:18 +0000 | [diff] [blame] | 497 | unsigned tryBlockSplit(LiveInterval&, AllocationOrder&, |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 498 | SmallVectorImpl<unsigned>&); |
| Jakob Stoklund Olesen | 0ce9049 | 2012-05-23 22:37:27 +0000 | [diff] [blame] | 499 | unsigned tryInstructionSplit(LiveInterval&, AllocationOrder&, |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 500 | SmallVectorImpl<unsigned>&); |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 501 | unsigned tryLocalSplit(LiveInterval&, AllocationOrder&, |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 502 | SmallVectorImpl<unsigned>&); |
| Jakob Stoklund Olesen | 3d7b806 | 2010-12-14 00:37:44 +0000 | [diff] [blame] | 503 | unsigned trySplit(LiveInterval&, AllocationOrder&, |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 504 | SmallVectorImpl<unsigned>&); |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 505 | unsigned tryLastChanceRecoloring(LiveInterval &, AllocationOrder &, |
| 506 | SmallVectorImpl<unsigned> &, |
| 507 | SmallVirtRegSet &, unsigned); |
| 508 | bool tryRecoloringCandidates(PQueue &, SmallVectorImpl<unsigned> &, |
| 509 | SmallVirtRegSet &, unsigned); |
| Quentin Colombet | a799e2e | 2015-01-08 01:16:39 +0000 | [diff] [blame] | 510 | void tryHintRecoloring(LiveInterval &); |
| 511 | void tryHintsRecoloring(); |
| 512 | |
| 513 | /// Model the information carried by one end of a copy. |
| 514 | struct HintInfo { |
| 515 | /// The frequency of the copy. |
| 516 | BlockFrequency Freq; |
| 517 | /// The virtual register or physical register. |
| 518 | unsigned Reg; |
| 519 | /// Its currently assigned register. |
| 520 | /// In case of a physical register Reg == PhysReg. |
| 521 | unsigned PhysReg; |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 522 | |
| Quentin Colombet | a799e2e | 2015-01-08 01:16:39 +0000 | [diff] [blame] | 523 | HintInfo(BlockFrequency Freq, unsigned Reg, unsigned PhysReg) |
| 524 | : Freq(Freq), Reg(Reg), PhysReg(PhysReg) {} |
| 525 | }; |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 526 | using HintsInfo = SmallVector<HintInfo, 4>; |
| 527 | |
| Quentin Colombet | a799e2e | 2015-01-08 01:16:39 +0000 | [diff] [blame] | 528 | BlockFrequency getBrokenHintFreq(const HintsInfo &, unsigned); |
| 529 | void collectHintInfo(unsigned, HintsInfo &); |
| Matthias Braun | 953393a | 2015-07-14 17:38:17 +0000 | [diff] [blame] | 530 | |
| 531 | bool isUnusedCalleeSavedReg(unsigned PhysReg) const; |
| Adam Nemet | a964066 | 2017-01-25 23:20:33 +0000 | [diff] [blame] | 532 | |
| 533 | /// Compute and report the number of spills and reloads for a loop. |
| 534 | void reportNumberOfSplillsReloads(MachineLoop *L, unsigned &Reloads, |
| 535 | unsigned &FoldedReloads, unsigned &Spills, |
| 536 | unsigned &FoldedSpills); |
| 537 | |
| 538 | /// Report the number of spills and reloads for each loop. |
| 539 | void reportNumberOfSplillsReloads() { |
| 540 | for (MachineLoop *L : *Loops) { |
| 541 | unsigned Reloads, FoldedReloads, Spills, FoldedSpills; |
| 542 | reportNumberOfSplillsReloads(L, Reloads, FoldedReloads, Spills, |
| 543 | FoldedSpills); |
| 544 | } |
| 545 | } |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 546 | }; |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 547 | |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 548 | } // end anonymous namespace |
| 549 | |
| 550 | char RAGreedy::ID = 0; |
| Tom Stellard | 11e60ff | 2016-11-14 21:50:13 +0000 | [diff] [blame] | 551 | char &llvm::RAGreedyID = RAGreedy::ID; |
| 552 | |
| 553 | INITIALIZE_PASS_BEGIN(RAGreedy, "greedy", |
| 554 | "Greedy Register Allocator", false, false) |
| 555 | INITIALIZE_PASS_DEPENDENCY(LiveDebugVariables) |
| 556 | INITIALIZE_PASS_DEPENDENCY(SlotIndexes) |
| 557 | INITIALIZE_PASS_DEPENDENCY(LiveIntervals) |
| 558 | INITIALIZE_PASS_DEPENDENCY(RegisterCoalescer) |
| 559 | INITIALIZE_PASS_DEPENDENCY(MachineScheduler) |
| 560 | INITIALIZE_PASS_DEPENDENCY(LiveStacks) |
| 561 | INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree) |
| 562 | INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo) |
| 563 | INITIALIZE_PASS_DEPENDENCY(VirtRegMap) |
| 564 | INITIALIZE_PASS_DEPENDENCY(LiveRegMatrix) |
| 565 | INITIALIZE_PASS_DEPENDENCY(EdgeBundles) |
| 566 | INITIALIZE_PASS_DEPENDENCY(SpillPlacement) |
| Adam Nemet | a964066 | 2017-01-25 23:20:33 +0000 | [diff] [blame] | 567 | INITIALIZE_PASS_DEPENDENCY(MachineOptimizationRemarkEmitterPass) |
| Tom Stellard | 11e60ff | 2016-11-14 21:50:13 +0000 | [diff] [blame] | 568 | INITIALIZE_PASS_END(RAGreedy, "greedy", |
| 569 | "Greedy Register Allocator", false, false) |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 570 | |
| Jakob Stoklund Olesen | 25d5745 | 2011-05-25 23:58:36 +0000 | [diff] [blame] | 571 | #ifndef NDEBUG |
| 572 | const char *const RAGreedy::StageName[] = { |
| Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 573 | "RS_New", |
| 574 | "RS_Assign", |
| 575 | "RS_Split", |
| Jakob Stoklund Olesen | 4501117 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 576 | "RS_Split2", |
| Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 577 | "RS_Spill", |
| Quentin Colombet | 1192294 | 2015-07-17 23:04:06 +0000 | [diff] [blame] | 578 | "RS_Memory", |
| Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 579 | "RS_Done" |
| Jakob Stoklund Olesen | 25d5745 | 2011-05-25 23:58:36 +0000 | [diff] [blame] | 580 | }; |
| 581 | #endif |
| 582 | |
| Jakob Stoklund Olesen | 032891b | 2011-04-22 22:47:40 +0000 | [diff] [blame] | 583 | // Hysteresis to use when comparing floats. |
| 584 | // This helps stabilize decisions based on float comparisons. |
| NAKAMURA Takumi | a71003a | 2014-02-04 06:29:38 +0000 | [diff] [blame] | 585 | const float Hysteresis = (2007 / 2048.0f); // 0.97998046875 |
| Jakob Stoklund Olesen | 032891b | 2011-04-22 22:47:40 +0000 | [diff] [blame] | 586 | |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 587 | FunctionPass* llvm::createGreedyRegisterAllocator() { |
| 588 | return new RAGreedy(); |
| 589 | } |
| 590 | |
| Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 591 | RAGreedy::RAGreedy(): MachineFunctionPass(ID) { |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 592 | } |
| 593 | |
| 594 | void RAGreedy::getAnalysisUsage(AnalysisUsage &AU) const { |
| 595 | AU.setPreservesCFG(); |
| Benjamin Kramer | e2a1d89 | 2013-06-17 19:00:36 +0000 | [diff] [blame] | 596 | AU.addRequired<MachineBlockFrequencyInfo>(); |
| 597 | AU.addPreserved<MachineBlockFrequencyInfo>(); |
| Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 598 | AU.addRequired<AAResultsWrapperPass>(); |
| 599 | AU.addPreserved<AAResultsWrapperPass>(); |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 600 | AU.addRequired<LiveIntervals>(); |
| Jakob Stoklund Olesen | 1224312 | 2012-06-08 23:44:45 +0000 | [diff] [blame] | 601 | AU.addPreserved<LiveIntervals>(); |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 602 | AU.addRequired<SlotIndexes>(); |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 603 | AU.addPreserved<SlotIndexes>(); |
| Jakob Stoklund Olesen | 6aa0fbf | 2011-04-05 21:40:37 +0000 | [diff] [blame] | 604 | AU.addRequired<LiveDebugVariables>(); |
| 605 | AU.addPreserved<LiveDebugVariables>(); |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 606 | AU.addRequired<LiveStacks>(); |
| 607 | AU.addPreserved<LiveStacks>(); |
| Jakob Stoklund Olesen | 1740e00 | 2010-12-17 23:16:32 +0000 | [diff] [blame] | 608 | AU.addRequired<MachineDominatorTree>(); |
| 609 | AU.addPreserved<MachineDominatorTree>(); |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 610 | AU.addRequired<MachineLoopInfo>(); |
| 611 | AU.addPreserved<MachineLoopInfo>(); |
| 612 | AU.addRequired<VirtRegMap>(); |
| 613 | AU.addPreserved<VirtRegMap>(); |
| Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 614 | AU.addRequired<LiveRegMatrix>(); |
| 615 | AU.addPreserved<LiveRegMatrix>(); |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 616 | AU.addRequired<EdgeBundles>(); |
| 617 | AU.addRequired<SpillPlacement>(); |
| Adam Nemet | a964066 | 2017-01-25 23:20:33 +0000 | [diff] [blame] | 618 | AU.addRequired<MachineOptimizationRemarkEmitterPass>(); |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 619 | MachineFunctionPass::getAnalysisUsage(AU); |
| 620 | } |
| 621 | |
| Jakob Stoklund Olesen | 8e08964 | 2011-03-09 00:57:29 +0000 | [diff] [blame] | 622 | //===----------------------------------------------------------------------===// |
| 623 | // LiveRangeEdit delegate methods |
| 624 | //===----------------------------------------------------------------------===// |
| 625 | |
| Jakob Stoklund Olesen | 43a8750 | 2011-03-13 01:23:11 +0000 | [diff] [blame] | 626 | bool RAGreedy::LRE_CanEraseVirtReg(unsigned VirtReg) { |
| Jonas Paulsson | 6188f32 | 2017-09-15 07:47:38 +0000 | [diff] [blame] | 627 | LiveInterval &LI = LIS->getInterval(VirtReg); |
| Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 628 | if (VRM->hasPhys(VirtReg)) { |
| Quentin Colombet | a799e2e | 2015-01-08 01:16:39 +0000 | [diff] [blame] | 629 | Matrix->unassign(LI); |
| 630 | aboutToRemoveInterval(LI); |
| Jakob Stoklund Olesen | 43a8750 | 2011-03-13 01:23:11 +0000 | [diff] [blame] | 631 | return true; |
| 632 | } |
| 633 | // Unassigned virtreg is probably in the priority queue. |
| 634 | // RegAllocBase will erase it after dequeueing. |
| Jonas Paulsson | 6188f32 | 2017-09-15 07:47:38 +0000 | [diff] [blame] | 635 | // Nonetheless, clear the live-range so that the debug |
| 636 | // dump will show the right state for that VirtReg. |
| 637 | LI.clear(); |
| Jakob Stoklund Olesen | 43a8750 | 2011-03-13 01:23:11 +0000 | [diff] [blame] | 638 | return false; |
| 639 | } |
| Jakob Stoklund Olesen | 8e08964 | 2011-03-09 00:57:29 +0000 | [diff] [blame] | 640 | |
| Jakob Stoklund Olesen | e14b2b2 | 2011-03-16 22:56:16 +0000 | [diff] [blame] | 641 | void RAGreedy::LRE_WillShrinkVirtReg(unsigned VirtReg) { |
| Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 642 | if (!VRM->hasPhys(VirtReg)) |
| Jakob Stoklund Olesen | e14b2b2 | 2011-03-16 22:56:16 +0000 | [diff] [blame] | 643 | return; |
| 644 | |
| 645 | // Register is assigned, put it back on the queue for reassignment. |
| 646 | LiveInterval &LI = LIS->getInterval(VirtReg); |
| Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 647 | Matrix->unassign(LI); |
| Jakob Stoklund Olesen | e14b2b2 | 2011-03-16 22:56:16 +0000 | [diff] [blame] | 648 | enqueue(&LI); |
| 649 | } |
| 650 | |
| Jakob Stoklund Olesen | dd9a2ec | 2011-03-30 02:52:39 +0000 | [diff] [blame] | 651 | void RAGreedy::LRE_DidCloneVirtReg(unsigned New, unsigned Old) { |
| Jakob Stoklund Olesen | 811b9c4 | 2011-09-14 17:34:37 +0000 | [diff] [blame] | 652 | // Cloning a register we haven't even heard about yet? Just ignore it. |
| 653 | if (!ExtraRegInfo.inBounds(Old)) |
| 654 | return; |
| 655 | |
| Jakob Stoklund Olesen | dd9a2ec | 2011-03-30 02:52:39 +0000 | [diff] [blame] | 656 | // LRE may clone a virtual register because dead code elimination causes it to |
| Jakob Stoklund Olesen | 5387bd3 | 2011-07-26 00:54:56 +0000 | [diff] [blame] | 657 | // be split into connected components. The new components are much smaller |
| 658 | // than the original, so they should get a new chance at being assigned. |
| Jakob Stoklund Olesen | dd9a2ec | 2011-03-30 02:52:39 +0000 | [diff] [blame] | 659 | // same stage as the parent. |
| Jakob Stoklund Olesen | 5387bd3 | 2011-07-26 00:54:56 +0000 | [diff] [blame] | 660 | ExtraRegInfo[Old].Stage = RS_Assign; |
| Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 661 | ExtraRegInfo.grow(New); |
| 662 | ExtraRegInfo[New] = ExtraRegInfo[Old]; |
| Jakob Stoklund Olesen | dd9a2ec | 2011-03-30 02:52:39 +0000 | [diff] [blame] | 663 | } |
| 664 | |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 665 | void RAGreedy::releaseMemory() { |
| David Blaikie | b61064e | 2014-07-19 01:05:11 +0000 | [diff] [blame] | 666 | SpillerInstance.reset(); |
| Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 667 | ExtraRegInfo.clear(); |
| Jakob Stoklund Olesen | c49df2c | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 668 | GlobalCand.clear(); |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 669 | } |
| 670 | |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 671 | void RAGreedy::enqueue(LiveInterval *LI) { enqueue(Queue, LI); } |
| 672 | |
| 673 | void RAGreedy::enqueue(PQueue &CurQueue, LiveInterval *LI) { |
| Jakob Stoklund Olesen | 2329c54 | 2011-02-22 23:01:52 +0000 | [diff] [blame] | 674 | // Prioritize live ranges by size, assigning larger ranges first. |
| 675 | // The queue holds (size, reg) pairs. |
| Jakob Stoklund Olesen | e68a27e | 2011-02-24 23:21:36 +0000 | [diff] [blame] | 676 | const unsigned Size = LI->getSize(); |
| 677 | const unsigned Reg = LI->reg; |
| Jakob Stoklund Olesen | 2329c54 | 2011-02-22 23:01:52 +0000 | [diff] [blame] | 678 | assert(TargetRegisterInfo::isVirtualRegister(Reg) && |
| 679 | "Can only enqueue virtual registers"); |
| Jakob Stoklund Olesen | e68a27e | 2011-02-24 23:21:36 +0000 | [diff] [blame] | 680 | unsigned Prio; |
| Jakob Stoklund Olesen | eaa650a | 2010-12-08 22:57:16 +0000 | [diff] [blame] | 681 | |
| Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 682 | ExtraRegInfo.grow(Reg); |
| 683 | if (ExtraRegInfo[Reg].Stage == RS_New) |
| Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 684 | ExtraRegInfo[Reg].Stage = RS_Assign; |
| Jakob Stoklund Olesen | dd9a2ec | 2011-03-30 02:52:39 +0000 | [diff] [blame] | 685 | |
| Jakob Stoklund Olesen | cad845f | 2011-07-28 20:48:23 +0000 | [diff] [blame] | 686 | if (ExtraRegInfo[Reg].Stage == RS_Split) { |
| Jakob Stoklund Olesen | 28d79cd | 2011-03-27 22:49:21 +0000 | [diff] [blame] | 687 | // Unsplit ranges that couldn't be allocated immediately are deferred until |
| Jakob Stoklund Olesen | 45df7e0 | 2011-09-12 16:54:42 +0000 | [diff] [blame] | 688 | // everything else has been allocated. |
| 689 | Prio = Size; |
| Quentin Colombet | 1192294 | 2015-07-17 23:04:06 +0000 | [diff] [blame] | 690 | } else if (ExtraRegInfo[Reg].Stage == RS_Memory) { |
| 691 | // Memory operand should be considered last. |
| 692 | // Change the priority such that Memory operand are assigned in |
| 693 | // the reverse order that they came in. |
| 694 | // TODO: Make this a member variable and probably do something about hints. |
| 695 | static unsigned MemOp = 0; |
| 696 | Prio = MemOp++; |
| Jakob Stoklund Olesen | cad845f | 2011-07-28 20:48:23 +0000 | [diff] [blame] | 697 | } else { |
| Andrew Trick | 52a0093 | 2014-02-26 22:07:26 +0000 | [diff] [blame] | 698 | // Giant live ranges fall back to the global assignment heuristic, which |
| 699 | // prevents excessive spilling in pathological cases. |
| 700 | bool ReverseLocal = TRI->reverseLocalAssignment(); |
| Matthias Braun | a354cdd | 2015-03-31 19:57:53 +0000 | [diff] [blame] | 701 | const TargetRegisterClass &RC = *MRI->getRegClass(Reg); |
| Renato Golin | 4e31ae1 | 2014-10-03 12:20:53 +0000 | [diff] [blame] | 702 | bool ForceGlobal = !ReverseLocal && |
| Matthias Braun | a354cdd | 2015-03-31 19:57:53 +0000 | [diff] [blame] | 703 | (Size / SlotIndex::InstrDist) > (2 * RC.getNumRegs()); |
| Andrew Trick | 52a0093 | 2014-02-26 22:07:26 +0000 | [diff] [blame] | 704 | |
| 705 | if (ExtraRegInfo[Reg].Stage == RS_Assign && !ForceGlobal && !LI->empty() && |
| Andrew Trick | 8485257 | 2013-07-25 18:35:14 +0000 | [diff] [blame] | 706 | LIS->intervalIsInOneMBB(*LI)) { |
| 707 | // Allocate original local ranges in linear instruction order. Since they |
| 708 | // are singly defined, this produces optimal coloring in the absence of |
| 709 | // global interference and other constraints. |
| Andrew Trick | 52a0093 | 2014-02-26 22:07:26 +0000 | [diff] [blame] | 710 | if (!ReverseLocal) |
| Andrew Trick | 2d8826a | 2013-12-11 03:40:15 +0000 | [diff] [blame] | 711 | Prio = LI->beginIndex().getInstrDistance(Indexes->getLastIndex()); |
| 712 | else { |
| 713 | // Allocating bottom up may allow many short LRGs to be assigned first |
| 714 | // to one of the cheap registers. This could be much faster for very |
| 715 | // large blocks on targets with many physical registers. |
| Matthias Braun | f5f89b9 | 2015-03-31 19:57:49 +0000 | [diff] [blame] | 716 | Prio = Indexes->getZeroIndex().getInstrDistance(LI->endIndex()); |
| Andrew Trick | 2d8826a | 2013-12-11 03:40:15 +0000 | [diff] [blame] | 717 | } |
| Matthias Braun | a354cdd | 2015-03-31 19:57:53 +0000 | [diff] [blame] | 718 | Prio |= RC.AllocationPriority << 24; |
| 719 | } else { |
| Andrew Trick | 8485257 | 2013-07-25 18:35:14 +0000 | [diff] [blame] | 720 | // Allocate global and split ranges in long->short order. Long ranges that |
| 721 | // don't fit should be spilled (or split) ASAP so they don't create |
| 722 | // interference. Mark a bit to prioritize global above local ranges. |
| 723 | Prio = (1u << 29) + Size; |
| 724 | } |
| 725 | // Mark a higher bit to prioritize global and local above RS_Split. |
| 726 | Prio |= (1u << 31); |
| Jakob Stoklund Olesen | b51f65c | 2011-02-23 00:56:56 +0000 | [diff] [blame] | 727 | |
| Jakob Stoklund Olesen | 28d79cd | 2011-03-27 22:49:21 +0000 | [diff] [blame] | 728 | // Boost ranges that have a physical register hint. |
| Jakob Stoklund Olesen | 74052b0 | 2012-12-03 23:23:50 +0000 | [diff] [blame] | 729 | if (VRM->hasKnownPreference(Reg)) |
| Jakob Stoklund Olesen | 28d79cd | 2011-03-27 22:49:21 +0000 | [diff] [blame] | 730 | Prio |= (1u << 30); |
| 731 | } |
| Andrew Trick | f4b1ee3 | 2013-07-25 18:35:22 +0000 | [diff] [blame] | 732 | // The virtual register number is a tie breaker for same-sized ranges. |
| 733 | // Give lower vreg numbers higher priority to assign them first. |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 734 | CurQueue.push(std::make_pair(Prio, ~Reg)); |
| Jakob Stoklund Olesen | eaa650a | 2010-12-08 22:57:16 +0000 | [diff] [blame] | 735 | } |
| 736 | |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 737 | LiveInterval *RAGreedy::dequeue() { return dequeue(Queue); } |
| 738 | |
| 739 | LiveInterval *RAGreedy::dequeue(PQueue &CurQueue) { |
| 740 | if (CurQueue.empty()) |
| Craig Topper | c0196b1 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 741 | return nullptr; |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 742 | LiveInterval *LI = &LIS->getInterval(~CurQueue.top().second); |
| 743 | CurQueue.pop(); |
| Jakob Stoklund Olesen | 2329c54 | 2011-02-22 23:01:52 +0000 | [diff] [blame] | 744 | return LI; |
| 745 | } |
| Jakob Stoklund Olesen | 0acb69d | 2010-12-22 22:01:30 +0000 | [diff] [blame] | 746 | |
| Jakob Stoklund Olesen | 0e34c1d | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 747 | //===----------------------------------------------------------------------===// |
| 748 | // Direct Assignment |
| 749 | //===----------------------------------------------------------------------===// |
| 750 | |
| 751 | /// tryAssign - Try to assign VirtReg to an available register. |
| 752 | unsigned RAGreedy::tryAssign(LiveInterval &VirtReg, |
| 753 | AllocationOrder &Order, |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 754 | SmallVectorImpl<unsigned> &NewVRegs) { |
| Jakob Stoklund Olesen | 0e34c1d | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 755 | Order.rewind(); |
| 756 | unsigned PhysReg; |
| Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 757 | while ((PhysReg = Order.next())) |
| 758 | if (!Matrix->checkInterference(VirtReg, PhysReg)) |
| Jakob Stoklund Olesen | 0e34c1d | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 759 | break; |
| Jakob Stoklund Olesen | 3cb2cb8 | 2012-12-04 22:25:16 +0000 | [diff] [blame] | 760 | if (!PhysReg || Order.isHint()) |
| Jakob Stoklund Olesen | 0e34c1d | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 761 | return PhysReg; |
| 762 | |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 763 | // PhysReg is available, but there may be a better choice. |
| 764 | |
| 765 | // If we missed a simple hint, try to cheaply evict interference from the |
| 766 | // preferred register. |
| 767 | if (unsigned Hint = MRI->getSimpleHint(VirtReg.reg)) |
| Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 768 | if (Order.isHint(Hint)) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 769 | LLVM_DEBUG(dbgs() << "missed hint " << printReg(Hint, TRI) << '\n'); |
| Andrew Trick | 3621b8a | 2013-11-22 19:07:38 +0000 | [diff] [blame] | 770 | EvictionCost MaxCost; |
| 771 | MaxCost.setBrokenHints(1); |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 772 | if (canEvictInterference(VirtReg, Hint, true, MaxCost)) { |
| 773 | evictInterference(VirtReg, Hint, NewVRegs); |
| 774 | return Hint; |
| 775 | } |
| Quentin Colombet | fb9b0cd | 2016-11-16 01:07:12 +0000 | [diff] [blame] | 776 | // Record the missed hint, we may be able to recover |
| 777 | // at the end if the surrounding allocation changed. |
| 778 | SetOfBrokenHints.insert(&VirtReg); |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 779 | } |
| 780 | |
| 781 | // Try to evict interference from a cheaper alternative. |
| Jakob Stoklund Olesen | 0e34c1d | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 782 | unsigned Cost = TRI->getCostPerUse(PhysReg); |
| 783 | |
| 784 | // Most registers have 0 additional cost. |
| 785 | if (!Cost) |
| 786 | return PhysReg; |
| 787 | |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 788 | LLVM_DEBUG(dbgs() << printReg(PhysReg, TRI) << " is available at cost " |
| 789 | << Cost << '\n'); |
| Jakob Stoklund Olesen | 0e34c1d | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 790 | unsigned CheapReg = tryEvict(VirtReg, Order, NewVRegs, Cost); |
| 791 | return CheapReg ? CheapReg : PhysReg; |
| 792 | } |
| 793 | |
| Jakob Stoklund Olesen | 0acb69d | 2010-12-22 22:01:30 +0000 | [diff] [blame] | 794 | //===----------------------------------------------------------------------===// |
| Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 795 | // Interference eviction |
| 796 | //===----------------------------------------------------------------------===// |
| 797 | |
| Andrew Trick | 8bb0a25 | 2013-07-25 18:35:19 +0000 | [diff] [blame] | 798 | unsigned RAGreedy::canReassign(LiveInterval &VirtReg, unsigned PrevReg) { |
| Matthias Braun | 5d1f12d | 2015-07-15 22:16:00 +0000 | [diff] [blame] | 799 | AllocationOrder Order(VirtReg.reg, *VRM, RegClassInfo, Matrix); |
| Andrew Trick | 8bb0a25 | 2013-07-25 18:35:19 +0000 | [diff] [blame] | 800 | unsigned PhysReg; |
| 801 | while ((PhysReg = Order.next())) { |
| 802 | if (PhysReg == PrevReg) |
| 803 | continue; |
| 804 | |
| 805 | MCRegUnitIterator Units(PhysReg, TRI); |
| 806 | for (; Units.isValid(); ++Units) { |
| 807 | // Instantiate a "subquery", not to be confused with the Queries array. |
| Matthias Braun | 173e114 | 2017-03-01 21:48:12 +0000 | [diff] [blame] | 808 | LiveIntervalUnion::Query subQ(VirtReg, Matrix->getLiveUnions()[*Units]); |
| Andrew Trick | 8bb0a25 | 2013-07-25 18:35:19 +0000 | [diff] [blame] | 809 | if (subQ.checkInterference()) |
| 810 | break; |
| 811 | } |
| 812 | // If no units have interference, break out with the current PhysReg. |
| 813 | if (!Units.isValid()) |
| 814 | break; |
| 815 | } |
| 816 | if (PhysReg) |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 817 | LLVM_DEBUG(dbgs() << "can reassign: " << VirtReg << " from " |
| 818 | << printReg(PrevReg, TRI) << " to " |
| 819 | << printReg(PhysReg, TRI) << '\n'); |
| Andrew Trick | 8bb0a25 | 2013-07-25 18:35:19 +0000 | [diff] [blame] | 820 | return PhysReg; |
| 821 | } |
| 822 | |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 823 | /// shouldEvict - determine if A should evict the assigned live range B. The |
| 824 | /// eviction policy defined by this function together with the allocation order |
| 825 | /// defined by enqueue() decides which registers ultimately end up being split |
| 826 | /// and spilled. |
| Jakob Stoklund Olesen | 25d5745 | 2011-05-25 23:58:36 +0000 | [diff] [blame] | 827 | /// |
| Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 828 | /// Cascade numbers are used to prevent infinite loops if this function is a |
| 829 | /// cyclic relation. |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 830 | /// |
| 831 | /// @param A The live range to be assigned. |
| 832 | /// @param IsHint True when A is about to be assigned to its preferred |
| 833 | /// register. |
| 834 | /// @param B The live range to be evicted. |
| 835 | /// @param BreaksHint True when B is already assigned to its preferred register. |
| 836 | bool RAGreedy::shouldEvict(LiveInterval &A, bool IsHint, |
| 837 | LiveInterval &B, bool BreaksHint) { |
| Jakob Stoklund Olesen | 4501117 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 838 | bool CanSplit = getStage(B) < RS_Spill; |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 839 | |
| 840 | // Be fairly aggressive about following hints as long as the evictee can be |
| 841 | // split. |
| 842 | if (CanSplit && IsHint && !BreaksHint) |
| 843 | return true; |
| 844 | |
| Andrew Trick | 059e800 | 2013-11-22 19:07:42 +0000 | [diff] [blame] | 845 | if (A.weight > B.weight) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 846 | LLVM_DEBUG(dbgs() << "should evict: " << B << " w= " << B.weight << '\n'); |
| Andrew Trick | 059e800 | 2013-11-22 19:07:42 +0000 | [diff] [blame] | 847 | return true; |
| 848 | } |
| 849 | return false; |
| Jakob Stoklund Olesen | 25d5745 | 2011-05-25 23:58:36 +0000 | [diff] [blame] | 850 | } |
| 851 | |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 852 | /// canEvictInterference - Return true if all interferences between VirtReg and |
| Manman Ren | fa32ca1 | 2014-02-25 19:47:15 +0000 | [diff] [blame] | 853 | /// PhysReg can be evicted. |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 854 | /// |
| 855 | /// @param VirtReg Live range that is about to be assigned. |
| 856 | /// @param PhysReg Desired register for assignment. |
| Dmitri Gribenko | 881929c | 2012-09-12 16:59:47 +0000 | [diff] [blame] | 857 | /// @param IsHint True when PhysReg is VirtReg's preferred register. |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 858 | /// @param MaxCost Only look for cheaper candidates and update with new cost |
| 859 | /// when returning true. |
| 860 | /// @returns True when interference can be evicted cheaper than MaxCost. |
| Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 861 | bool RAGreedy::canEvictInterference(LiveInterval &VirtReg, unsigned PhysReg, |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 862 | bool IsHint, EvictionCost &MaxCost) { |
| Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 863 | // It is only possible to evict virtual register interference. |
| 864 | if (Matrix->checkInterference(VirtReg, PhysReg) > LiveRegMatrix::IK_VirtReg) |
| 865 | return false; |
| 866 | |
| Andrew Trick | 8485257 | 2013-07-25 18:35:14 +0000 | [diff] [blame] | 867 | bool IsLocal = LIS->intervalIsInOneMBB(VirtReg); |
| 868 | |
| Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 869 | // Find VirtReg's cascade number. This will be unassigned if VirtReg was never |
| 870 | // involved in an eviction before. If a cascade number was assigned, deny |
| 871 | // evicting anything with the same or a newer cascade number. This prevents |
| 872 | // infinite eviction loops. |
| 873 | // |
| 874 | // This works out so a register without a cascade number is allowed to evict |
| 875 | // anything, and it can be evicted by anything. |
| 876 | unsigned Cascade = ExtraRegInfo[VirtReg.reg].Cascade; |
| 877 | if (!Cascade) |
| 878 | Cascade = NextCascade; |
| 879 | |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 880 | EvictionCost Cost; |
| Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 881 | for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) { |
| 882 | LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, *Units); |
| Jakob Stoklund Olesen | 0f175eb | 2011-04-11 21:47:01 +0000 | [diff] [blame] | 883 | // If there is 10 or more interferences, chances are one is heavier. |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 884 | if (Q.collectInterferingVRegs(10) >= 10) |
| Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 885 | return false; |
| 886 | |
| Jakob Stoklund Olesen | 0f175eb | 2011-04-11 21:47:01 +0000 | [diff] [blame] | 887 | // Check if any interfering live range is heavier than MaxWeight. |
| 888 | for (unsigned i = Q.interferingVRegs().size(); i; --i) { |
| 889 | LiveInterval *Intf = Q.interferingVRegs()[i - 1]; |
| Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 890 | assert(TargetRegisterInfo::isVirtualRegister(Intf->reg) && |
| 891 | "Only expecting virtual register interference from query"); |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 892 | // Never evict spill products. They cannot split or spill. |
| Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 893 | if (getStage(*Intf) == RS_Done) |
| Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 894 | return false; |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 895 | // Once a live range becomes small enough, it is urgent that we find a |
| 896 | // register for it. This is indicated by an infinite spill weight. These |
| 897 | // urgent live ranges get to evict almost anything. |
| Jakob Stoklund Olesen | 05e2245 | 2012-05-30 21:46:58 +0000 | [diff] [blame] | 898 | // |
| 899 | // Also allow urgent evictions of unspillable ranges from a strictly |
| 900 | // larger allocation order. |
| 901 | bool Urgent = !VirtReg.isSpillable() && |
| 902 | (Intf->isSpillable() || |
| 903 | RegClassInfo.getNumAllocatableRegs(MRI->getRegClass(VirtReg.reg)) < |
| 904 | RegClassInfo.getNumAllocatableRegs(MRI->getRegClass(Intf->reg))); |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 905 | // Only evict older cascades or live ranges without a cascade. |
| 906 | unsigned IntfCascade = ExtraRegInfo[Intf->reg].Cascade; |
| 907 | if (Cascade <= IntfCascade) { |
| 908 | if (!Urgent) |
| 909 | return false; |
| 910 | // We permit breaking cascades for urgent evictions. It should be the |
| 911 | // last resort, though, so make it really expensive. |
| 912 | Cost.BrokenHints += 10; |
| 913 | } |
| 914 | // Would this break a satisfied hint? |
| 915 | bool BreaksHint = VRM->hasPreferredPhys(Intf->reg); |
| 916 | // Update eviction cost. |
| 917 | Cost.BrokenHints += BreaksHint; |
| 918 | Cost.MaxWeight = std::max(Cost.MaxWeight, Intf->weight); |
| 919 | // Abort if this would be too expensive. |
| 920 | if (!(Cost < MaxCost)) |
| Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 921 | return false; |
| Andrew Trick | 8485257 | 2013-07-25 18:35:14 +0000 | [diff] [blame] | 922 | if (Urgent) |
| 923 | continue; |
| Andrew Trick | c2ab53a | 2013-11-29 23:49:38 +0000 | [diff] [blame] | 924 | // Apply the eviction policy for non-urgent evictions. |
| 925 | if (!shouldEvict(VirtReg, IsHint, *Intf, BreaksHint)) |
| 926 | return false; |
| Andrew Trick | 8485257 | 2013-07-25 18:35:14 +0000 | [diff] [blame] | 927 | // If !MaxCost.isMax(), then we're just looking for a cheap register. |
| 928 | // Evicting another local live range in this case could lead to suboptimal |
| 929 | // coloring. |
| Andrew Trick | 8bb0a25 | 2013-07-25 18:35:19 +0000 | [diff] [blame] | 930 | if (!MaxCost.isMax() && IsLocal && LIS->intervalIsInOneMBB(*Intf) && |
| Quentin Colombet | 5caa6a2 | 2014-07-02 18:32:04 +0000 | [diff] [blame] | 931 | (!EnableLocalReassign || !canReassign(*Intf, PhysReg))) { |
| Andrew Trick | 8485257 | 2013-07-25 18:35:14 +0000 | [diff] [blame] | 932 | return false; |
| Andrew Trick | 8bb0a25 | 2013-07-25 18:35:19 +0000 | [diff] [blame] | 933 | } |
| Jakob Stoklund Olesen | 1305bc0 | 2011-02-09 01:14:03 +0000 | [diff] [blame] | 934 | } |
| 935 | } |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 936 | MaxCost = Cost; |
| Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 937 | return true; |
| 938 | } |
| Jakob Stoklund Olesen | 1305bc0 | 2011-02-09 01:14:03 +0000 | [diff] [blame] | 939 | |
| Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 940 | /// Return true if all interferences between VirtReg and PhysReg between |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 941 | /// Start and End can be evicted. |
| 942 | /// |
| 943 | /// \param VirtReg Live range that is about to be assigned. |
| 944 | /// \param PhysReg Desired register for assignment. |
| 945 | /// \param Start Start of range to look for interferences. |
| 946 | /// \param End End of range to look for interferences. |
| 947 | /// \param MaxCost Only look for cheaper candidates and update with new cost |
| 948 | /// when returning true. |
| 949 | /// \return True when interference can be evicted cheaper than MaxCost. |
| 950 | bool RAGreedy::canEvictInterferenceInRange(LiveInterval &VirtReg, |
| 951 | unsigned PhysReg, SlotIndex Start, |
| 952 | SlotIndex End, |
| 953 | EvictionCost &MaxCost) { |
| 954 | EvictionCost Cost; |
| 955 | |
| 956 | for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) { |
| 957 | LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, *Units); |
| 958 | |
| 959 | // Check if any interfering live range is heavier than MaxWeight. |
| 960 | for (unsigned i = Q.interferingVRegs().size(); i; --i) { |
| 961 | LiveInterval *Intf = Q.interferingVRegs()[i - 1]; |
| 962 | |
| 963 | // Check if interference overlast the segment in interest. |
| 964 | if (!Intf->overlaps(Start, End)) |
| 965 | continue; |
| 966 | |
| 967 | // Cannot evict non virtual reg interference. |
| 968 | if (!TargetRegisterInfo::isVirtualRegister(Intf->reg)) |
| 969 | return false; |
| 970 | // Never evict spill products. They cannot split or spill. |
| 971 | if (getStage(*Intf) == RS_Done) |
| 972 | return false; |
| 973 | |
| 974 | // Would this break a satisfied hint? |
| 975 | bool BreaksHint = VRM->hasPreferredPhys(Intf->reg); |
| 976 | // Update eviction cost. |
| 977 | Cost.BrokenHints += BreaksHint; |
| 978 | Cost.MaxWeight = std::max(Cost.MaxWeight, Intf->weight); |
| 979 | // Abort if this would be too expensive. |
| 980 | if (!(Cost < MaxCost)) |
| 981 | return false; |
| 982 | } |
| 983 | } |
| 984 | |
| 985 | if (Cost.MaxWeight == 0) |
| 986 | return false; |
| 987 | |
| 988 | MaxCost = Cost; |
| 989 | return true; |
| 990 | } |
| 991 | |
| Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 992 | /// Return tthe physical register that will be best |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 993 | /// candidate for eviction by a local split interval that will be created |
| 994 | /// between Start and End. |
| 995 | /// |
| 996 | /// \param Order The allocation order |
| 997 | /// \param VirtReg Live range that is about to be assigned. |
| 998 | /// \param Start Start of range to look for interferences |
| 999 | /// \param End End of range to look for interferences |
| 1000 | /// \param BestEvictweight The eviction cost of that eviction |
| 1001 | /// \return The PhysReg which is the best candidate for eviction and the |
| 1002 | /// eviction cost in BestEvictweight |
| 1003 | unsigned RAGreedy::getCheapestEvicteeWeight(const AllocationOrder &Order, |
| 1004 | LiveInterval &VirtReg, |
| 1005 | SlotIndex Start, SlotIndex End, |
| 1006 | float *BestEvictweight) { |
| 1007 | EvictionCost BestEvictCost; |
| 1008 | BestEvictCost.setMax(); |
| 1009 | BestEvictCost.MaxWeight = VirtReg.weight; |
| 1010 | unsigned BestEvicteePhys = 0; |
| 1011 | |
| 1012 | // Go over all physical registers and find the best candidate for eviction |
| 1013 | for (auto PhysReg : Order.getOrder()) { |
| 1014 | |
| 1015 | if (!canEvictInterferenceInRange(VirtReg, PhysReg, Start, End, |
| 1016 | BestEvictCost)) |
| 1017 | continue; |
| 1018 | |
| 1019 | // Best so far. |
| 1020 | BestEvicteePhys = PhysReg; |
| 1021 | } |
| 1022 | *BestEvictweight = BestEvictCost.MaxWeight; |
| 1023 | return BestEvicteePhys; |
| 1024 | } |
| 1025 | |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 1026 | /// evictInterference - Evict any interferring registers that prevent VirtReg |
| 1027 | /// from being assigned to Physreg. This assumes that canEvictInterference |
| 1028 | /// returned true. |
| 1029 | void RAGreedy::evictInterference(LiveInterval &VirtReg, unsigned PhysReg, |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1030 | SmallVectorImpl<unsigned> &NewVRegs) { |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 1031 | // Make sure that VirtReg has a cascade number, and assign that cascade |
| 1032 | // number to every evicted register. These live ranges than then only be |
| 1033 | // evicted by a newer cascade, preventing infinite loops. |
| 1034 | unsigned Cascade = ExtraRegInfo[VirtReg.reg].Cascade; |
| 1035 | if (!Cascade) |
| 1036 | Cascade = ExtraRegInfo[VirtReg.reg].Cascade = NextCascade++; |
| 1037 | |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1038 | LLVM_DEBUG(dbgs() << "evicting " << printReg(PhysReg, TRI) |
| 1039 | << " interference: Cascade " << Cascade << '\n'); |
| Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 1040 | |
| 1041 | // Collect all interfering virtregs first. |
| 1042 | SmallVector<LiveInterval*, 8> Intfs; |
| 1043 | for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) { |
| 1044 | LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, *Units); |
| Matthias Braun | ffe40dd | 2017-03-03 23:27:20 +0000 | [diff] [blame] | 1045 | // We usually have the interfering VRegs cached so collectInterferingVRegs() |
| 1046 | // should be fast, we may need to recalculate if when different physregs |
| 1047 | // overlap the same register unit so we had different SubRanges queried |
| 1048 | // against it. |
| 1049 | Q.collectInterferingVRegs(); |
| Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 1050 | ArrayRef<LiveInterval*> IVR = Q.interferingVRegs(); |
| 1051 | Intfs.append(IVR.begin(), IVR.end()); |
| 1052 | } |
| 1053 | |
| 1054 | // Evict them second. This will invalidate the queries. |
| 1055 | for (unsigned i = 0, e = Intfs.size(); i != e; ++i) { |
| 1056 | LiveInterval *Intf = Intfs[i]; |
| 1057 | // The same VirtReg may be present in multiple RegUnits. Skip duplicates. |
| 1058 | if (!VRM->hasPhys(Intf->reg)) |
| 1059 | continue; |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1060 | |
| 1061 | LastEvicted.addEviction(PhysReg, VirtReg.reg, Intf->reg); |
| 1062 | |
| Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 1063 | Matrix->unassign(*Intf); |
| 1064 | assert((ExtraRegInfo[Intf->reg].Cascade < Cascade || |
| 1065 | VirtReg.isSpillable() < Intf->isSpillable()) && |
| 1066 | "Cannot decrease cascade number, illegal eviction"); |
| 1067 | ExtraRegInfo[Intf->reg].Cascade = Cascade; |
| 1068 | ++NumEvicted; |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1069 | NewVRegs.push_back(Intf->reg); |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 1070 | } |
| 1071 | } |
| 1072 | |
| Matthias Braun | 953393a | 2015-07-14 17:38:17 +0000 | [diff] [blame] | 1073 | /// Returns true if the given \p PhysReg is a callee saved register and has not |
| 1074 | /// been used for allocation yet. |
| 1075 | bool RAGreedy::isUnusedCalleeSavedReg(unsigned PhysReg) const { |
| 1076 | unsigned CSR = RegClassInfo.getLastCalleeSavedAlias(PhysReg); |
| 1077 | if (CSR == 0) |
| 1078 | return false; |
| 1079 | |
| 1080 | return !Matrix->isPhysRegUsed(PhysReg); |
| 1081 | } |
| 1082 | |
| Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 1083 | /// tryEvict - Try to evict all interferences for a physreg. |
| Jakob Stoklund Olesen | e9cc8e9 | 2011-06-01 18:45:02 +0000 | [diff] [blame] | 1084 | /// @param VirtReg Currently unassigned virtual register. |
| 1085 | /// @param Order Physregs to try. |
| 1086 | /// @return Physreg to assign VirtReg, or 0. |
| Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 1087 | unsigned RAGreedy::tryEvict(LiveInterval &VirtReg, |
| 1088 | AllocationOrder &Order, |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1089 | SmallVectorImpl<unsigned> &NewVRegs, |
| Jakob Stoklund Olesen | 0e34c1d | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 1090 | unsigned CostPerUseLimit) { |
| Matthias Braun | 9f15a79 | 2016-11-18 19:43:18 +0000 | [diff] [blame] | 1091 | NamedRegionTimer T("evict", "Evict", TimerGroupName, TimerGroupDescription, |
| 1092 | TimePassesIsEnabled); |
| Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 1093 | |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 1094 | // Keep track of the cheapest interference seen so far. |
| Andrew Trick | 3621b8a | 2013-11-22 19:07:38 +0000 | [diff] [blame] | 1095 | EvictionCost BestCost; |
| 1096 | BestCost.setMax(); |
| Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 1097 | unsigned BestPhys = 0; |
| Jakob Stoklund Olesen | 3dd236c | 2013-01-12 00:57:44 +0000 | [diff] [blame] | 1098 | unsigned OrderLimit = Order.getOrder().size(); |
| Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 1099 | |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 1100 | // When we are just looking for a reduced cost per use, don't break any |
| 1101 | // hints, and only evict smaller spill weights. |
| 1102 | if (CostPerUseLimit < ~0u) { |
| 1103 | BestCost.BrokenHints = 0; |
| 1104 | BestCost.MaxWeight = VirtReg.weight; |
| Jakob Stoklund Olesen | 3dd236c | 2013-01-12 00:57:44 +0000 | [diff] [blame] | 1105 | |
| 1106 | // Check of any registers in RC are below CostPerUseLimit. |
| 1107 | const TargetRegisterClass *RC = MRI->getRegClass(VirtReg.reg); |
| 1108 | unsigned MinCost = RegClassInfo.getMinCost(RC); |
| 1109 | if (MinCost >= CostPerUseLimit) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1110 | LLVM_DEBUG(dbgs() << TRI->getRegClassName(RC) << " minimum cost = " |
| 1111 | << MinCost << ", no cheaper registers to be found.\n"); |
| Jakob Stoklund Olesen | 3dd236c | 2013-01-12 00:57:44 +0000 | [diff] [blame] | 1112 | return 0; |
| 1113 | } |
| 1114 | |
| 1115 | // It is normal for register classes to have a long tail of registers with |
| 1116 | // the same cost. We don't need to look at them if they're too expensive. |
| 1117 | if (TRI->getCostPerUse(Order.getOrder().back()) >= CostPerUseLimit) { |
| 1118 | OrderLimit = RegClassInfo.getLastCostChange(RC); |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1119 | LLVM_DEBUG(dbgs() << "Only trying the first " << OrderLimit |
| 1120 | << " regs.\n"); |
| Jakob Stoklund Olesen | 3dd236c | 2013-01-12 00:57:44 +0000 | [diff] [blame] | 1121 | } |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 1122 | } |
| 1123 | |
| Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 1124 | Order.rewind(); |
| Aditya Nandakumar | 73f3d33 | 2013-12-05 21:18:40 +0000 | [diff] [blame] | 1125 | while (unsigned PhysReg = Order.next(OrderLimit)) { |
| Jakob Stoklund Olesen | 0e34c1d | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 1126 | if (TRI->getCostPerUse(PhysReg) >= CostPerUseLimit) |
| 1127 | continue; |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 1128 | // The first use of a callee-saved register in a function has cost 1. |
| 1129 | // Don't start using a CSR when the CostPerUseLimit is low. |
| Matthias Braun | 953393a | 2015-07-14 17:38:17 +0000 | [diff] [blame] | 1130 | if (CostPerUseLimit == 1 && isUnusedCalleeSavedReg(PhysReg)) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1131 | LLVM_DEBUG( |
| 1132 | dbgs() << printReg(PhysReg, TRI) << " would clobber CSR " |
| 1133 | << printReg(RegClassInfo.getLastCalleeSavedAlias(PhysReg), TRI) |
| 1134 | << '\n'); |
| Matthias Braun | 953393a | 2015-07-14 17:38:17 +0000 | [diff] [blame] | 1135 | continue; |
| 1136 | } |
| Jakob Stoklund Olesen | 0e34c1d | 2011-04-20 18:19:48 +0000 | [diff] [blame] | 1137 | |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 1138 | if (!canEvictInterference(VirtReg, PhysReg, false, BestCost)) |
| Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 1139 | continue; |
| 1140 | |
| 1141 | // Best so far. |
| 1142 | BestPhys = PhysReg; |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 1143 | |
| Jakob Stoklund Olesen | 9918b33 | 2011-02-25 01:04:22 +0000 | [diff] [blame] | 1144 | // Stop if the hint can be used. |
| Jakob Stoklund Olesen | 3cb2cb8 | 2012-12-04 22:25:16 +0000 | [diff] [blame] | 1145 | if (Order.isHint()) |
| Jakob Stoklund Olesen | 9918b33 | 2011-02-25 01:04:22 +0000 | [diff] [blame] | 1146 | break; |
| Jakob Stoklund Olesen | 1305bc0 | 2011-02-09 01:14:03 +0000 | [diff] [blame] | 1147 | } |
| 1148 | |
| Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 1149 | if (!BestPhys) |
| 1150 | return 0; |
| 1151 | |
| Jakob Stoklund Olesen | 4931bbc | 2011-07-08 20:46:18 +0000 | [diff] [blame] | 1152 | evictInterference(VirtReg, BestPhys, NewVRegs); |
| Jakob Stoklund Olesen | 6bd68cd | 2011-02-23 00:29:52 +0000 | [diff] [blame] | 1153 | return BestPhys; |
| Andrew Trick | ccef098 | 2010-12-09 18:15:21 +0000 | [diff] [blame] | 1154 | } |
| 1155 | |
| Jakob Stoklund Olesen | 0acb69d | 2010-12-22 22:01:30 +0000 | [diff] [blame] | 1156 | //===----------------------------------------------------------------------===// |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1157 | // Region Splitting |
| 1158 | //===----------------------------------------------------------------------===// |
| 1159 | |
| Jakob Stoklund Olesen | 81439a8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 1160 | /// addSplitConstraints - Fill out the SplitConstraints vector based on the |
| 1161 | /// interference pattern in Physreg and its aliases. Add the constraints to |
| 1162 | /// SpillPlacement and return the static cost of this split in Cost, assuming |
| 1163 | /// that all preferences in SplitConstraints are met. |
| Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 1164 | /// Return false if there are no bundles with positive bias. |
| 1165 | bool RAGreedy::addSplitConstraints(InterferenceCache::Cursor Intf, |
| Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 1166 | BlockFrequency &Cost) { |
| Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1167 | ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks(); |
| Jakob Stoklund Olesen | ca26e0a | 2011-04-02 06:03:38 +0000 | [diff] [blame] | 1168 | |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1169 | // Reset interference dependent info. |
| Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1170 | SplitConstraints.resize(UseBlocks.size()); |
| Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 1171 | BlockFrequency StaticCost = 0; |
| Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1172 | for (unsigned i = 0; i != UseBlocks.size(); ++i) { |
| 1173 | const SplitAnalysis::BlockInfo &BI = UseBlocks[i]; |
| Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 1174 | SpillPlacement::BlockConstraint &BC = SplitConstraints[i]; |
| Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 1175 | |
| Jakob Stoklund Olesen | b1b76ad | 2011-02-09 22:50:26 +0000 | [diff] [blame] | 1176 | BC.Number = BI.MBB->getNumber(); |
| Jakob Stoklund Olesen | ca26e0a | 2011-04-02 06:03:38 +0000 | [diff] [blame] | 1177 | Intf.moveToBlock(BC.Number); |
| Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1178 | BC.Entry = BI.LiveIn ? SpillPlacement::PrefReg : SpillPlacement::DontCare; |
| 1179 | BC.Exit = BI.LiveOut ? SpillPlacement::PrefReg : SpillPlacement::DontCare; |
| David Blaikie | 041f1aa | 2013-05-15 07:36:59 +0000 | [diff] [blame] | 1180 | BC.ChangesValue = BI.FirstDef.isValid(); |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1181 | |
| Jakob Stoklund Olesen | ca26e0a | 2011-04-02 06:03:38 +0000 | [diff] [blame] | 1182 | if (!Intf.hasInterference()) |
| 1183 | continue; |
| 1184 | |
| Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 1185 | // Number of spill code instructions to insert. |
| 1186 | unsigned Ins = 0; |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1187 | |
| Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 1188 | // Interference for the live-in value. |
| Jakob Stoklund Olesen | ca26e0a | 2011-04-02 06:03:38 +0000 | [diff] [blame] | 1189 | if (BI.LiveIn) { |
| Richard Trieu | 7a08381 | 2016-02-18 22:09:30 +0000 | [diff] [blame] | 1190 | if (Intf.first() <= Indexes->getMBBStartIdx(BC.Number)) { |
| 1191 | BC.Entry = SpillPlacement::MustSpill; |
| Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 1192 | ++Ins; |
| Richard Trieu | 7a08381 | 2016-02-18 22:09:30 +0000 | [diff] [blame] | 1193 | } else if (Intf.first() < BI.FirstInstr) { |
| 1194 | BC.Entry = SpillPlacement::PrefSpill; |
| 1195 | ++Ins; |
| 1196 | } else if (Intf.first() < BI.LastInstr) { |
| 1197 | ++Ins; |
| 1198 | } |
| Jakob Stoklund Olesen | f248b20 | 2011-02-08 23:02:58 +0000 | [diff] [blame] | 1199 | } |
| 1200 | |
| Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 1201 | // Interference for the live-out value. |
| Jakob Stoklund Olesen | ca26e0a | 2011-04-02 06:03:38 +0000 | [diff] [blame] | 1202 | if (BI.LiveOut) { |
| Richard Trieu | 7a08381 | 2016-02-18 22:09:30 +0000 | [diff] [blame] | 1203 | if (Intf.last() >= SA->getLastSplitPoint(BC.Number)) { |
| 1204 | BC.Exit = SpillPlacement::MustSpill; |
| Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 1205 | ++Ins; |
| Richard Trieu | 7a08381 | 2016-02-18 22:09:30 +0000 | [diff] [blame] | 1206 | } else if (Intf.last() > BI.LastInstr) { |
| 1207 | BC.Exit = SpillPlacement::PrefSpill; |
| 1208 | ++Ins; |
| 1209 | } else if (Intf.last() > BI.FirstInstr) { |
| 1210 | ++Ins; |
| 1211 | } |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1212 | } |
| Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 1213 | |
| 1214 | // Accumulate the total frequency of inserted spill code. |
| Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 1215 | while (Ins--) |
| 1216 | StaticCost += SpillPlacer->getBlockFrequency(BC.Number); |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1217 | } |
| Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 1218 | Cost = StaticCost; |
| Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1219 | |
| Jakob Stoklund Olesen | 81439a8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 1220 | // Add constraints for use-blocks. Note that these are the only constraints |
| 1221 | // that may add a positive bias, it is downhill from here. |
| 1222 | SpillPlacer->addConstraints(SplitConstraints); |
| Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 1223 | return SpillPlacer->scanActiveBundles(); |
| 1224 | } |
| Jakob Stoklund Olesen | 81439a8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 1225 | |
| Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 1226 | /// addThroughConstraints - Add constraints and links to SpillPlacer from the |
| 1227 | /// live-through blocks in Blocks. |
| 1228 | void RAGreedy::addThroughConstraints(InterferenceCache::Cursor Intf, |
| 1229 | ArrayRef<unsigned> Blocks) { |
| Jakob Stoklund Olesen | 81439a8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 1230 | const unsigned GroupSize = 8; |
| 1231 | SpillPlacement::BlockConstraint BCS[GroupSize]; |
| Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 1232 | unsigned TBS[GroupSize]; |
| 1233 | unsigned B = 0, T = 0; |
| Jakob Stoklund Olesen | 81439a8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 1234 | |
| Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 1235 | for (unsigned i = 0; i != Blocks.size(); ++i) { |
| 1236 | unsigned Number = Blocks[i]; |
| Jakob Stoklund Olesen | 81439a8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 1237 | Intf.moveToBlock(Number); |
| Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1238 | |
| Jakob Stoklund Olesen | 6d2bbc1 | 2011-04-07 17:27:46 +0000 | [diff] [blame] | 1239 | if (!Intf.hasInterference()) { |
| Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 1240 | assert(T < GroupSize && "Array overflow"); |
| 1241 | TBS[T] = Number; |
| 1242 | if (++T == GroupSize) { |
| Frits van Bommel | 717d7ed | 2011-07-18 12:00:32 +0000 | [diff] [blame] | 1243 | SpillPlacer->addLinks(makeArrayRef(TBS, T)); |
| Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 1244 | T = 0; |
| 1245 | } |
| Jakob Stoklund Olesen | 6d2bbc1 | 2011-04-07 17:27:46 +0000 | [diff] [blame] | 1246 | continue; |
| Jakob Stoklund Olesen | 81439a8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 1247 | } |
| Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1248 | |
| Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 1249 | assert(B < GroupSize && "Array overflow"); |
| 1250 | BCS[B].Number = Number; |
| 1251 | |
| Jakob Stoklund Olesen | 6d2bbc1 | 2011-04-07 17:27:46 +0000 | [diff] [blame] | 1252 | // Interference for the live-in value. |
| 1253 | if (Intf.first() <= Indexes->getMBBStartIdx(Number)) |
| 1254 | BCS[B].Entry = SpillPlacement::MustSpill; |
| 1255 | else |
| 1256 | BCS[B].Entry = SpillPlacement::PrefSpill; |
| 1257 | |
| 1258 | // Interference for the live-out value. |
| 1259 | if (Intf.last() >= SA->getLastSplitPoint(Number)) |
| 1260 | BCS[B].Exit = SpillPlacement::MustSpill; |
| 1261 | else |
| 1262 | BCS[B].Exit = SpillPlacement::PrefSpill; |
| 1263 | |
| Jakob Stoklund Olesen | 81439a8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 1264 | if (++B == GroupSize) { |
| Craig Topper | e1d1294 | 2014-08-27 05:25:25 +0000 | [diff] [blame] | 1265 | SpillPlacer->addConstraints(makeArrayRef(BCS, B)); |
| Jakob Stoklund Olesen | 81439a8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 1266 | B = 0; |
| Jakob Stoklund Olesen | 81439a8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 1267 | } |
| Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1268 | } |
| 1269 | |
| Craig Topper | e1d1294 | 2014-08-27 05:25:25 +0000 | [diff] [blame] | 1270 | SpillPlacer->addConstraints(makeArrayRef(BCS, B)); |
| Frits van Bommel | 717d7ed | 2011-07-18 12:00:32 +0000 | [diff] [blame] | 1271 | SpillPlacer->addLinks(makeArrayRef(TBS, T)); |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1272 | } |
| 1273 | |
| Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1274 | void RAGreedy::growRegion(GlobalSplitCandidate &Cand) { |
| Jakob Stoklund Olesen | c49df2c | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 1275 | // Keep track of through blocks that have not been added to SpillPlacer. |
| 1276 | BitVector Todo = SA->getThroughBlocks(); |
| 1277 | SmallVectorImpl<unsigned> &ActiveBlocks = Cand.ActiveBlocks; |
| 1278 | unsigned AddedTo = 0; |
| Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 1279 | #ifndef NDEBUG |
| 1280 | unsigned Visited = 0; |
| 1281 | #endif |
| Jakob Stoklund Olesen | c49df2c | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 1282 | |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 1283 | while (true) { |
| Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 1284 | ArrayRef<unsigned> NewBundles = SpillPlacer->getRecentPositive(); |
| Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 1285 | // Find new through blocks in the periphery of PrefRegBundles. |
| 1286 | for (int i = 0, e = NewBundles.size(); i != e; ++i) { |
| 1287 | unsigned Bundle = NewBundles[i]; |
| 1288 | // Look at all blocks connected to Bundle in the full graph. |
| 1289 | ArrayRef<unsigned> Blocks = Bundles->getBlocks(Bundle); |
| 1290 | for (ArrayRef<unsigned>::iterator I = Blocks.begin(), E = Blocks.end(); |
| 1291 | I != E; ++I) { |
| 1292 | unsigned Block = *I; |
| Jakob Stoklund Olesen | c49df2c | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 1293 | if (!Todo.test(Block)) |
| Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 1294 | continue; |
| Jakob Stoklund Olesen | c49df2c | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 1295 | Todo.reset(Block); |
| Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 1296 | // This is a new through block. Add it to SpillPlacer later. |
| Jakob Stoklund Olesen | c49df2c | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 1297 | ActiveBlocks.push_back(Block); |
| Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 1298 | #ifndef NDEBUG |
| 1299 | ++Visited; |
| 1300 | #endif |
| 1301 | } |
| 1302 | } |
| 1303 | // Any new blocks to add? |
| Jakob Stoklund Olesen | 91f3a30 | 2011-07-05 18:46:42 +0000 | [diff] [blame] | 1304 | if (ActiveBlocks.size() == AddedTo) |
| 1305 | break; |
| Jakob Stoklund Olesen | a953bf1 | 2011-07-23 03:22:33 +0000 | [diff] [blame] | 1306 | |
| 1307 | // Compute through constraints from the interference, or assume that all |
| 1308 | // through blocks prefer spilling when forming compact regions. |
| Craig Topper | e1d1294 | 2014-08-27 05:25:25 +0000 | [diff] [blame] | 1309 | auto NewBlocks = makeArrayRef(ActiveBlocks).slice(AddedTo); |
| Jakob Stoklund Olesen | a953bf1 | 2011-07-23 03:22:33 +0000 | [diff] [blame] | 1310 | if (Cand.PhysReg) |
| 1311 | addThroughConstraints(Cand.Intf, NewBlocks); |
| 1312 | else |
| Jakob Stoklund Olesen | 8695452 | 2011-08-03 23:09:38 +0000 | [diff] [blame] | 1313 | // Provide a strong negative bias on through blocks to prevent unwanted |
| 1314 | // liveness on loop backedges. |
| 1315 | SpillPlacer->addPrefSpill(NewBlocks, /* Strong= */ true); |
| Jakob Stoklund Olesen | 91f3a30 | 2011-07-05 18:46:42 +0000 | [diff] [blame] | 1316 | AddedTo = ActiveBlocks.size(); |
| 1317 | |
| Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 1318 | // Perhaps iterating can enable more bundles? |
| 1319 | SpillPlacer->iterate(); |
| 1320 | } |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1321 | LLVM_DEBUG(dbgs() << ", v=" << Visited); |
| Jakob Stoklund Olesen | ed47ed4 | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 1322 | } |
| Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 1323 | |
| Jakob Stoklund Olesen | ecad62f | 2011-07-23 03:41:57 +0000 | [diff] [blame] | 1324 | /// calcCompactRegion - Compute the set of edge bundles that should be live |
| 1325 | /// when splitting the current live range into compact regions. Compact |
| 1326 | /// regions can be computed without looking at interference. They are the |
| 1327 | /// regions formed by removing all the live-through blocks from the live range. |
| 1328 | /// |
| 1329 | /// Returns false if the current live range is already compact, or if the |
| 1330 | /// compact regions would form single block regions anyway. |
| 1331 | bool RAGreedy::calcCompactRegion(GlobalSplitCandidate &Cand) { |
| 1332 | // Without any through blocks, the live range is already compact. |
| 1333 | if (!SA->getNumThroughBlocks()) |
| 1334 | return false; |
| 1335 | |
| 1336 | // Compact regions don't correspond to any physreg. |
| 1337 | Cand.reset(IntfCache, 0); |
| 1338 | |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1339 | LLVM_DEBUG(dbgs() << "Compact region bundles"); |
| Jakob Stoklund Olesen | ecad62f | 2011-07-23 03:41:57 +0000 | [diff] [blame] | 1340 | |
| 1341 | // Use the spill placer to determine the live bundles. GrowRegion pretends |
| 1342 | // that all the through blocks have interference when PhysReg is unset. |
| 1343 | SpillPlacer->prepare(Cand.LiveBundles); |
| 1344 | |
| 1345 | // The static split cost will be zero since Cand.Intf reports no interference. |
| Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 1346 | BlockFrequency Cost; |
| Jakob Stoklund Olesen | ecad62f | 2011-07-23 03:41:57 +0000 | [diff] [blame] | 1347 | if (!addSplitConstraints(Cand.Intf, Cost)) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1348 | LLVM_DEBUG(dbgs() << ", none.\n"); |
| Jakob Stoklund Olesen | ecad62f | 2011-07-23 03:41:57 +0000 | [diff] [blame] | 1349 | return false; |
| 1350 | } |
| 1351 | |
| 1352 | growRegion(Cand); |
| 1353 | SpillPlacer->finish(); |
| 1354 | |
| 1355 | if (!Cand.LiveBundles.any()) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1356 | LLVM_DEBUG(dbgs() << ", none.\n"); |
| Jakob Stoklund Olesen | ecad62f | 2011-07-23 03:41:57 +0000 | [diff] [blame] | 1357 | return false; |
| 1358 | } |
| 1359 | |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1360 | LLVM_DEBUG({ |
| Francis Visoiu Mistrih | b52e036 | 2017-05-17 01:07:53 +0000 | [diff] [blame] | 1361 | for (int i : Cand.LiveBundles.set_bits()) |
| 1362 | dbgs() << " EB#" << i; |
| Jakob Stoklund Olesen | ecad62f | 2011-07-23 03:41:57 +0000 | [diff] [blame] | 1363 | dbgs() << ".\n"; |
| 1364 | }); |
| 1365 | return true; |
| 1366 | } |
| 1367 | |
| Jakob Stoklund Olesen | 032891b | 2011-04-22 22:47:40 +0000 | [diff] [blame] | 1368 | /// calcSpillCost - Compute how expensive it would be to split the live range in |
| 1369 | /// SA around all use blocks instead of forming bundle regions. |
| Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 1370 | BlockFrequency RAGreedy::calcSpillCost() { |
| 1371 | BlockFrequency Cost = 0; |
| Jakob Stoklund Olesen | 032891b | 2011-04-22 22:47:40 +0000 | [diff] [blame] | 1372 | ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks(); |
| 1373 | for (unsigned i = 0; i != UseBlocks.size(); ++i) { |
| 1374 | const SplitAnalysis::BlockInfo &BI = UseBlocks[i]; |
| 1375 | unsigned Number = BI.MBB->getNumber(); |
| 1376 | // We normally only need one spill instruction - a load or a store. |
| 1377 | Cost += SpillPlacer->getBlockFrequency(Number); |
| 1378 | |
| 1379 | // Unless the value is redefined in the block. |
| Jakob Stoklund Olesen | 3c14505 | 2011-08-02 23:04:08 +0000 | [diff] [blame] | 1380 | if (BI.LiveIn && BI.LiveOut && BI.FirstDef) |
| 1381 | Cost += SpillPlacer->getBlockFrequency(Number); |
| Jakob Stoklund Olesen | 032891b | 2011-04-22 22:47:40 +0000 | [diff] [blame] | 1382 | } |
| 1383 | return Cost; |
| 1384 | } |
| 1385 | |
| Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 1386 | /// Check if splitting Evictee will create a local split interval in |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1387 | /// basic block number BBNumber that may cause a bad eviction chain. This is |
| 1388 | /// intended to prevent bad eviction sequences like: |
| 1389 | /// movl %ebp, 8(%esp) # 4-byte Spill |
| 1390 | /// movl %ecx, %ebp |
| 1391 | /// movl %ebx, %ecx |
| 1392 | /// movl %edi, %ebx |
| 1393 | /// movl %edx, %edi |
| 1394 | /// cltd |
| 1395 | /// idivl %esi |
| 1396 | /// movl %edi, %edx |
| 1397 | /// movl %ebx, %edi |
| 1398 | /// movl %ecx, %ebx |
| 1399 | /// movl %ebp, %ecx |
| 1400 | /// movl 16(%esp), %ebp # 4 - byte Reload |
| 1401 | /// |
| 1402 | /// Such sequences are created in 2 scenarios: |
| 1403 | /// |
| 1404 | /// Scenario #1: |
| Francis Visoiu Mistrih | 93ef145 | 2017-11-30 12:12:19 +0000 | [diff] [blame] | 1405 | /// %0 is evicted from physreg0 by %1. |
| 1406 | /// Evictee %0 is intended for region splitting with split candidate |
| 1407 | /// physreg0 (the reg %0 was evicted from). |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1408 | /// Region splitting creates a local interval because of interference with the |
| Francis Visoiu Mistrih | 93ef145 | 2017-11-30 12:12:19 +0000 | [diff] [blame] | 1409 | /// evictor %1 (normally region spliitting creates 2 interval, the "by reg" |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1410 | /// and "by stack" intervals and local interval created when interference |
| 1411 | /// occurs). |
| Francis Visoiu Mistrih | 93ef145 | 2017-11-30 12:12:19 +0000 | [diff] [blame] | 1412 | /// One of the split intervals ends up evicting %2 from physreg1. |
| 1413 | /// Evictee %2 is intended for region splitting with split candidate |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1414 | /// physreg1. |
| Francis Visoiu Mistrih | 93ef145 | 2017-11-30 12:12:19 +0000 | [diff] [blame] | 1415 | /// One of the split intervals ends up evicting %3 from physreg2, etc. |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1416 | /// |
| 1417 | /// Scenario #2 |
| Francis Visoiu Mistrih | 93ef145 | 2017-11-30 12:12:19 +0000 | [diff] [blame] | 1418 | /// %0 is evicted from physreg0 by %1. |
| 1419 | /// %2 is evicted from physreg2 by %3 etc. |
| 1420 | /// Evictee %0 is intended for region splitting with split candidate |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1421 | /// physreg1. |
| 1422 | /// Region splitting creates a local interval because of interference with the |
| Francis Visoiu Mistrih | 93ef145 | 2017-11-30 12:12:19 +0000 | [diff] [blame] | 1423 | /// evictor %1. |
| 1424 | /// One of the split intervals ends up evicting back original evictor %1 |
| 1425 | /// from physreg0 (the reg %0 was evicted from). |
| 1426 | /// Another evictee %2 is intended for region splitting with split candidate |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1427 | /// physreg1. |
| Francis Visoiu Mistrih | 93ef145 | 2017-11-30 12:12:19 +0000 | [diff] [blame] | 1428 | /// One of the split intervals ends up evicting %3 from physreg2, etc. |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1429 | /// |
| 1430 | /// \param Evictee The register considered to be split. |
| 1431 | /// \param Cand The split candidate that determines the physical register |
| 1432 | /// we are splitting for and the interferences. |
| 1433 | /// \param BBNumber The number of a BB for which the region split process will |
| 1434 | /// create a local split interval. |
| Marina Yatsina | cd5bc4a | 2018-01-31 13:31:08 +0000 | [diff] [blame] | 1435 | /// \param Order The physical registers that may get evicted by a split |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1436 | /// artifact of Evictee. |
| 1437 | /// \return True if splitting Evictee may cause a bad eviction chain, false |
| 1438 | /// otherwise. |
| 1439 | bool RAGreedy::splitCanCauseEvictionChain(unsigned Evictee, |
| 1440 | GlobalSplitCandidate &Cand, |
| 1441 | unsigned BBNumber, |
| 1442 | const AllocationOrder &Order) { |
| 1443 | EvictionTrack::EvictorInfo VregEvictorInfo = LastEvicted.getEvictor(Evictee); |
| 1444 | unsigned Evictor = VregEvictorInfo.first; |
| 1445 | unsigned PhysReg = VregEvictorInfo.second; |
| 1446 | |
| 1447 | // No actual evictor. |
| 1448 | if (!Evictor || !PhysReg) |
| 1449 | return false; |
| 1450 | |
| 1451 | float MaxWeight = 0; |
| 1452 | unsigned FutureEvictedPhysReg = |
| 1453 | getCheapestEvicteeWeight(Order, LIS->getInterval(Evictee), |
| 1454 | Cand.Intf.first(), Cand.Intf.last(), &MaxWeight); |
| 1455 | |
| Marina Yatsina | cd5bc4a | 2018-01-31 13:31:08 +0000 | [diff] [blame] | 1456 | // The bad eviction chain occurs when either the split candidate is the |
| 1457 | // evicting reg or one of the split artifact will evict the evicting reg. |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1458 | if ((PhysReg != Cand.PhysReg) && (PhysReg != FutureEvictedPhysReg)) |
| 1459 | return false; |
| 1460 | |
| 1461 | Cand.Intf.moveToBlock(BBNumber); |
| 1462 | |
| 1463 | // Check to see if the Evictor contains interference (with Evictee) in the |
| 1464 | // given BB. If so, this interference caused the eviction of Evictee from |
| 1465 | // PhysReg. This suggest that we will create a local interval during the |
| 1466 | // region split to avoid this interference This local interval may cause a bad |
| 1467 | // eviction chain. |
| 1468 | if (!LIS->hasInterval(Evictor)) |
| 1469 | return false; |
| 1470 | LiveInterval &EvictorLI = LIS->getInterval(Evictor); |
| 1471 | if (EvictorLI.FindSegmentContaining(Cand.Intf.first()) == EvictorLI.end()) |
| 1472 | return false; |
| 1473 | |
| 1474 | // Now, check to see if the local interval we will create is going to be |
| 1475 | // expensive enough to evict somebody If so, this may cause a bad eviction |
| 1476 | // chain. |
| 1477 | VirtRegAuxInfo VRAI(*MF, *LIS, VRM, getAnalysis<MachineLoopInfo>(), *MBFI); |
| 1478 | float splitArtifactWeight = |
| 1479 | VRAI.futureWeight(LIS->getInterval(Evictee), |
| 1480 | Cand.Intf.first().getPrevIndex(), Cand.Intf.last()); |
| 1481 | if (splitArtifactWeight >= 0 && splitArtifactWeight < MaxWeight) |
| 1482 | return false; |
| 1483 | |
| 1484 | return true; |
| 1485 | } |
| 1486 | |
| Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 1487 | /// Check if splitting VirtRegToSplit will create a local split interval |
| Marina Yatsina | cd5bc4a | 2018-01-31 13:31:08 +0000 | [diff] [blame] | 1488 | /// in basic block number BBNumber that may cause a spill. |
| 1489 | /// |
| 1490 | /// \param VirtRegToSplit The register considered to be split. |
| 1491 | /// \param Cand The split candidate that determines the physical |
| 1492 | /// register we are splitting for and the interferences. |
| 1493 | /// \param BBNumber The number of a BB for which the region split process |
| 1494 | /// will create a local split interval. |
| 1495 | /// \param Order The physical registers that may get evicted by a |
| 1496 | /// split artifact of VirtRegToSplit. |
| 1497 | /// \return True if splitting VirtRegToSplit may cause a spill, false |
| 1498 | /// otherwise. |
| 1499 | bool RAGreedy::splitCanCauseLocalSpill(unsigned VirtRegToSplit, |
| 1500 | GlobalSplitCandidate &Cand, |
| 1501 | unsigned BBNumber, |
| 1502 | const AllocationOrder &Order) { |
| 1503 | Cand.Intf.moveToBlock(BBNumber); |
| 1504 | |
| 1505 | // Check if the local interval will find a non interfereing assignment. |
| 1506 | for (auto PhysReg : Order.getOrder()) { |
| 1507 | if (!Matrix->checkInterference(Cand.Intf.first().getPrevIndex(), |
| 1508 | Cand.Intf.last(), PhysReg)) |
| 1509 | return false; |
| 1510 | } |
| 1511 | |
| 1512 | // Check if the local interval will evict a cheaper interval. |
| 1513 | float CheapestEvictWeight = 0; |
| 1514 | unsigned FutureEvictedPhysReg = getCheapestEvicteeWeight( |
| 1515 | Order, LIS->getInterval(VirtRegToSplit), Cand.Intf.first(), |
| 1516 | Cand.Intf.last(), &CheapestEvictWeight); |
| 1517 | |
| 1518 | // Have we found an interval that can be evicted? |
| 1519 | if (FutureEvictedPhysReg) { |
| 1520 | VirtRegAuxInfo VRAI(*MF, *LIS, VRM, getAnalysis<MachineLoopInfo>(), *MBFI); |
| 1521 | float splitArtifactWeight = |
| 1522 | VRAI.futureWeight(LIS->getInterval(VirtRegToSplit), |
| 1523 | Cand.Intf.first().getPrevIndex(), Cand.Intf.last()); |
| 1524 | // Will the weight of the local interval be higher than the cheapest evictee |
| 1525 | // weight? If so it will evict it and will not cause a spill. |
| 1526 | if (splitArtifactWeight >= 0 && splitArtifactWeight > CheapestEvictWeight) |
| 1527 | return false; |
| 1528 | } |
| 1529 | |
| 1530 | // The local interval is not able to find non interferening assignment and not |
| 1531 | // able to evict a less worthy interval, therfore, it can cause a spill. |
| 1532 | return true; |
| 1533 | } |
| 1534 | |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1535 | /// calcGlobalSplitCost - Return the global split cost of following the split |
| 1536 | /// pattern in LiveBundles. This cost should be added to the local cost of the |
| Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 1537 | /// interference pattern in SplitConstraints. |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1538 | /// |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1539 | BlockFrequency RAGreedy::calcGlobalSplitCost(GlobalSplitCandidate &Cand, |
| 1540 | const AllocationOrder &Order, |
| 1541 | bool *CanCauseEvictionChain) { |
| Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 1542 | BlockFrequency GlobalCost = 0; |
| Jakob Stoklund Olesen | c49df2c | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 1543 | const BitVector &LiveBundles = Cand.LiveBundles; |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1544 | unsigned VirtRegToSplit = SA->getParent().reg; |
| Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1545 | ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks(); |
| 1546 | for (unsigned i = 0; i != UseBlocks.size(); ++i) { |
| 1547 | const SplitAnalysis::BlockInfo &BI = UseBlocks[i]; |
| Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 1548 | SpillPlacement::BlockConstraint &BC = SplitConstraints[i]; |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 1549 | bool RegIn = LiveBundles[Bundles->getBundle(BC.Number, false)]; |
| 1550 | bool RegOut = LiveBundles[Bundles->getBundle(BC.Number, true)]; |
| Jakob Stoklund Olesen | 1a9b66c | 2011-03-05 03:28:51 +0000 | [diff] [blame] | 1551 | unsigned Ins = 0; |
| 1552 | |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1553 | Cand.Intf.moveToBlock(BC.Number); |
| 1554 | // Check wheather a local interval is going to be created during the region |
| Marina Yatsina | cd5bc4a | 2018-01-31 13:31:08 +0000 | [diff] [blame] | 1555 | // split. Calculate adavanced spilt cost (cost of local intervals) if option |
| 1556 | // is enabled. |
| 1557 | if (EnableAdvancedRASplitCost && Cand.Intf.hasInterference() && BI.LiveIn && |
| 1558 | BI.LiveOut && RegIn && RegOut) { |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1559 | |
| Marina Yatsina | cd5bc4a | 2018-01-31 13:31:08 +0000 | [diff] [blame] | 1560 | if (CanCauseEvictionChain && |
| 1561 | splitCanCauseEvictionChain(VirtRegToSplit, Cand, BC.Number, Order)) { |
| 1562 | // This interference causes our eviction from this assignment, we might |
| 1563 | // evict somebody else and eventually someone will spill, add that cost. |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1564 | // See splitCanCauseEvictionChain for detailed description of scenarios. |
| 1565 | GlobalCost += SpillPlacer->getBlockFrequency(BC.Number); |
| 1566 | GlobalCost += SpillPlacer->getBlockFrequency(BC.Number); |
| 1567 | |
| 1568 | *CanCauseEvictionChain = true; |
| Marina Yatsina | cd5bc4a | 2018-01-31 13:31:08 +0000 | [diff] [blame] | 1569 | |
| 1570 | } else if (splitCanCauseLocalSpill(VirtRegToSplit, Cand, BC.Number, |
| 1571 | Order)) { |
| 1572 | // This interference causes local interval to spill, add that cost. |
| 1573 | GlobalCost += SpillPlacer->getBlockFrequency(BC.Number); |
| 1574 | GlobalCost += SpillPlacer->getBlockFrequency(BC.Number); |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1575 | } |
| 1576 | } |
| 1577 | |
| Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1578 | if (BI.LiveIn) |
| 1579 | Ins += RegIn != (BC.Entry == SpillPlacement::PrefReg); |
| 1580 | if (BI.LiveOut) |
| 1581 | Ins += RegOut != (BC.Exit == SpillPlacement::PrefReg); |
| Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 1582 | while (Ins--) |
| 1583 | GlobalCost += SpillPlacer->getBlockFrequency(BC.Number); |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1584 | } |
| Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1585 | |
| Jakob Stoklund Olesen | c49df2c | 2011-04-12 21:30:53 +0000 | [diff] [blame] | 1586 | for (unsigned i = 0, e = Cand.ActiveBlocks.size(); i != e; ++i) { |
| 1587 | unsigned Number = Cand.ActiveBlocks[i]; |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 1588 | bool RegIn = LiveBundles[Bundles->getBundle(Number, false)]; |
| 1589 | bool RegOut = LiveBundles[Bundles->getBundle(Number, true)]; |
| Jakob Stoklund Olesen | 8ce2f43 | 2011-04-06 21:32:41 +0000 | [diff] [blame] | 1590 | if (!RegIn && !RegOut) |
| 1591 | continue; |
| 1592 | if (RegIn && RegOut) { |
| 1593 | // We need double spill code if this block has interference. |
| Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1594 | Cand.Intf.moveToBlock(Number); |
| Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 1595 | if (Cand.Intf.hasInterference()) { |
| 1596 | GlobalCost += SpillPlacer->getBlockFrequency(Number); |
| 1597 | GlobalCost += SpillPlacer->getBlockFrequency(Number); |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1598 | |
| 1599 | // Check wheather a local interval is going to be created during the |
| 1600 | // region split. |
| 1601 | if (EnableAdvancedRASplitCost && CanCauseEvictionChain && |
| 1602 | splitCanCauseEvictionChain(VirtRegToSplit, Cand, Number, Order)) { |
| Marina Yatsina | cd5bc4a | 2018-01-31 13:31:08 +0000 | [diff] [blame] | 1603 | // This interference cause our eviction from this assignment, we might |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1604 | // evict somebody else, add that cost. |
| 1605 | // See splitCanCauseEvictionChain for detailed description of |
| 1606 | // scenarios. |
| 1607 | GlobalCost += SpillPlacer->getBlockFrequency(Number); |
| 1608 | GlobalCost += SpillPlacer->getBlockFrequency(Number); |
| 1609 | |
| 1610 | *CanCauseEvictionChain = true; |
| 1611 | } |
| Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 1612 | } |
| Jakob Stoklund Olesen | 8ce2f43 | 2011-04-06 21:32:41 +0000 | [diff] [blame] | 1613 | continue; |
| 1614 | } |
| 1615 | // live-in / stack-out or stack-in live-out. |
| 1616 | GlobalCost += SpillPlacer->getBlockFrequency(Number); |
| Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1617 | } |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1618 | return GlobalCost; |
| 1619 | } |
| 1620 | |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1621 | /// splitAroundRegion - Split the current live range around the regions |
| 1622 | /// determined by BundleCand and GlobalCand. |
| Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1623 | /// |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1624 | /// Before calling this function, GlobalCand and BundleCand must be initialized |
| 1625 | /// so each bundle is assigned to a valid candidate, or NoCand for the |
| 1626 | /// stack-bound bundles. The shared SA/SE SplitAnalysis and SplitEditor |
| 1627 | /// objects must be initialized for the current live range, and intervals |
| 1628 | /// created for the used candidates. |
| Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1629 | /// |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1630 | /// @param LREdit The LiveRangeEdit object handling the current split. |
| 1631 | /// @param UsedCands List of used GlobalCand entries. Every BundleCand value |
| 1632 | /// must appear in this list. |
| 1633 | void RAGreedy::splitAroundRegion(LiveRangeEdit &LREdit, |
| 1634 | ArrayRef<unsigned> UsedCands) { |
| 1635 | // These are the intervals created for new global ranges. We may create more |
| 1636 | // intervals for local ranges. |
| 1637 | const unsigned NumGlobalIntvs = LREdit.size(); |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1638 | LLVM_DEBUG(dbgs() << "splitAroundRegion with " << NumGlobalIntvs |
| 1639 | << " globals.\n"); |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1640 | assert(NumGlobalIntvs && "No global intervals configured"); |
| Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1641 | |
| Jakob Stoklund Olesen | 8627ea9 | 2011-08-05 22:20:45 +0000 | [diff] [blame] | 1642 | // Isolate even single instructions when dealing with a proper sub-class. |
| Jakob Stoklund Olesen | 22f37a1 | 2011-08-06 18:20:24 +0000 | [diff] [blame] | 1643 | // That guarantees register class inflation for the stack interval because it |
| Jakob Stoklund Olesen | 8627ea9 | 2011-08-05 22:20:45 +0000 | [diff] [blame] | 1644 | // is all copies. |
| 1645 | unsigned Reg = SA->getParent().reg; |
| 1646 | bool SingleInstrs = RegClassInfo.isProperSubClass(MRI->getRegClass(Reg)); |
| 1647 | |
| Jakob Stoklund Olesen | adc6a4c | 2011-06-30 01:30:39 +0000 | [diff] [blame] | 1648 | // First handle all the blocks with uses. |
| Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1649 | ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks(); |
| 1650 | for (unsigned i = 0; i != UseBlocks.size(); ++i) { |
| 1651 | const SplitAnalysis::BlockInfo &BI = UseBlocks[i]; |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1652 | unsigned Number = BI.MBB->getNumber(); |
| 1653 | unsigned IntvIn = 0, IntvOut = 0; |
| 1654 | SlotIndex IntfIn, IntfOut; |
| 1655 | if (BI.LiveIn) { |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 1656 | unsigned CandIn = BundleCand[Bundles->getBundle(Number, false)]; |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1657 | if (CandIn != NoCand) { |
| 1658 | GlobalSplitCandidate &Cand = GlobalCand[CandIn]; |
| 1659 | IntvIn = Cand.IntvIdx; |
| 1660 | Cand.Intf.moveToBlock(Number); |
| 1661 | IntfIn = Cand.Intf.first(); |
| 1662 | } |
| 1663 | } |
| 1664 | if (BI.LiveOut) { |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 1665 | unsigned CandOut = BundleCand[Bundles->getBundle(Number, true)]; |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1666 | if (CandOut != NoCand) { |
| 1667 | GlobalSplitCandidate &Cand = GlobalCand[CandOut]; |
| 1668 | IntvOut = Cand.IntvIdx; |
| 1669 | Cand.Intf.moveToBlock(Number); |
| 1670 | IntfOut = Cand.Intf.last(); |
| 1671 | } |
| 1672 | } |
| Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1673 | |
| Jakob Stoklund Olesen | c70b697 | 2011-04-12 19:32:53 +0000 | [diff] [blame] | 1674 | // Create separate intervals for isolated blocks with multiple uses. |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1675 | if (!IntvIn && !IntvOut) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1676 | LLVM_DEBUG(dbgs() << printMBBReference(*BI.MBB) << " isolated.\n"); |
| Jakob Stoklund Olesen | 8627ea9 | 2011-08-05 22:20:45 +0000 | [diff] [blame] | 1677 | if (SA->shouldSplitSingleBlock(BI, SingleInstrs)) |
| Jakob Stoklund Olesen | adc6a4c | 2011-06-30 01:30:39 +0000 | [diff] [blame] | 1678 | SE->splitSingleBlock(BI); |
| Jakob Stoklund Olesen | c70b697 | 2011-04-12 19:32:53 +0000 | [diff] [blame] | 1679 | continue; |
| 1680 | } |
| 1681 | |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1682 | if (IntvIn && IntvOut) |
| 1683 | SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut); |
| 1684 | else if (IntvIn) |
| 1685 | SE->splitRegInBlock(BI, IntvIn, IntfIn); |
| Jakob Stoklund Olesen | 795da1c | 2011-07-15 21:47:57 +0000 | [diff] [blame] | 1686 | else |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1687 | SE->splitRegOutBlock(BI, IntvOut, IntfOut); |
| Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1688 | } |
| 1689 | |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1690 | // Handle live-through blocks. The relevant live-through blocks are stored in |
| 1691 | // the ActiveBlocks list with each candidate. We need to filter out |
| 1692 | // duplicates. |
| 1693 | BitVector Todo = SA->getThroughBlocks(); |
| 1694 | for (unsigned c = 0; c != UsedCands.size(); ++c) { |
| 1695 | ArrayRef<unsigned> Blocks = GlobalCand[UsedCands[c]].ActiveBlocks; |
| 1696 | for (unsigned i = 0, e = Blocks.size(); i != e; ++i) { |
| 1697 | unsigned Number = Blocks[i]; |
| 1698 | if (!Todo.test(Number)) |
| 1699 | continue; |
| 1700 | Todo.reset(Number); |
| 1701 | |
| 1702 | unsigned IntvIn = 0, IntvOut = 0; |
| 1703 | SlotIndex IntfIn, IntfOut; |
| 1704 | |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 1705 | unsigned CandIn = BundleCand[Bundles->getBundle(Number, false)]; |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1706 | if (CandIn != NoCand) { |
| 1707 | GlobalSplitCandidate &Cand = GlobalCand[CandIn]; |
| 1708 | IntvIn = Cand.IntvIdx; |
| 1709 | Cand.Intf.moveToBlock(Number); |
| 1710 | IntfIn = Cand.Intf.first(); |
| 1711 | } |
| 1712 | |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 1713 | unsigned CandOut = BundleCand[Bundles->getBundle(Number, true)]; |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1714 | if (CandOut != NoCand) { |
| 1715 | GlobalSplitCandidate &Cand = GlobalCand[CandOut]; |
| 1716 | IntvOut = Cand.IntvIdx; |
| 1717 | Cand.Intf.moveToBlock(Number); |
| 1718 | IntfOut = Cand.Intf.last(); |
| 1719 | } |
| 1720 | if (!IntvIn && !IntvOut) |
| 1721 | continue; |
| 1722 | SE->splitLiveThroughBlock(Number, IntvIn, IntfIn, IntvOut, IntfOut); |
| 1723 | } |
| Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 1724 | } |
| 1725 | |
| Jakob Stoklund Olesen | 99827e8 | 2011-02-17 22:53:48 +0000 | [diff] [blame] | 1726 | ++NumGlobalSplits; |
| Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1727 | |
| Jakob Stoklund Olesen | 6a663b8 | 2011-04-21 18:38:15 +0000 | [diff] [blame] | 1728 | SmallVector<unsigned, 8> IntvMap; |
| 1729 | SE->finish(&IntvMap); |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1730 | DebugVars->splitRegister(Reg, LREdit.regs(), *LIS); |
| Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 1731 | |
| Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 1732 | ExtraRegInfo.resize(MRI->getNumVirtRegs()); |
| Jakob Stoklund Olesen | 5cc91b2 | 2011-05-28 02:32:57 +0000 | [diff] [blame] | 1733 | unsigned OrigBlocks = SA->getNumLiveBlocks(); |
| Jakob Stoklund Olesen | 6a663b8 | 2011-04-21 18:38:15 +0000 | [diff] [blame] | 1734 | |
| 1735 | // Sort out the new intervals created by splitting. We get four kinds: |
| 1736 | // - Remainder intervals should not be split again. |
| 1737 | // - Candidate intervals can be assigned to Cand.PhysReg. |
| 1738 | // - Block-local splits are candidates for local splitting. |
| 1739 | // - DCE leftovers should go back on the queue. |
| 1740 | for (unsigned i = 0, e = LREdit.size(); i != e; ++i) { |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1741 | LiveInterval &Reg = LIS->getInterval(LREdit.get(i)); |
| Jakob Stoklund Olesen | 6a663b8 | 2011-04-21 18:38:15 +0000 | [diff] [blame] | 1742 | |
| 1743 | // Ignore old intervals from DCE. |
| Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 1744 | if (getStage(Reg) != RS_New) |
| Jakob Stoklund Olesen | 6a663b8 | 2011-04-21 18:38:15 +0000 | [diff] [blame] | 1745 | continue; |
| 1746 | |
| 1747 | // Remainder interval. Don't try splitting again, spill if it doesn't |
| 1748 | // allocate. |
| 1749 | if (IntvMap[i] == 0) { |
| Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 1750 | setStage(Reg, RS_Spill); |
| Jakob Stoklund Olesen | 6a663b8 | 2011-04-21 18:38:15 +0000 | [diff] [blame] | 1751 | continue; |
| 1752 | } |
| 1753 | |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1754 | // Global intervals. Allow repeated splitting as long as the number of live |
| 1755 | // blocks is strictly decreasing. |
| 1756 | if (IntvMap[i] < NumGlobalIntvs) { |
| Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 1757 | if (SA->countLiveBlocks(&Reg) >= OrigBlocks) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1758 | LLVM_DEBUG(dbgs() << "Main interval covers the same " << OrigBlocks |
| 1759 | << " blocks as original.\n"); |
| Jakob Stoklund Olesen | eef2327 | 2011-04-26 22:33:12 +0000 | [diff] [blame] | 1760 | // Don't allow repeated splitting as a safe guard against looping. |
| Jakob Stoklund Olesen | 4501117 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 1761 | setStage(Reg, RS_Split2); |
| Jakob Stoklund Olesen | eef2327 | 2011-04-26 22:33:12 +0000 | [diff] [blame] | 1762 | } |
| 1763 | continue; |
| 1764 | } |
| 1765 | |
| 1766 | // Other intervals are treated as new. This includes local intervals created |
| 1767 | // for blocks with multiple uses, and anything created by DCE. |
| Jakob Stoklund Olesen | 6a663b8 | 2011-04-21 18:38:15 +0000 | [diff] [blame] | 1768 | } |
| 1769 | |
| Jakob Stoklund Olesen | 28d79cd | 2011-03-27 22:49:21 +0000 | [diff] [blame] | 1770 | if (VerifyEnabled) |
| Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1771 | MF->verify(this, "After splitting live range around region"); |
| 1772 | } |
| 1773 | |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1774 | unsigned RAGreedy::tryRegionSplit(LiveInterval &VirtReg, AllocationOrder &Order, |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1775 | SmallVectorImpl<unsigned> &NewVRegs) { |
| Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1776 | unsigned NumCands = 0; |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1777 | BlockFrequency SpillCost = calcSpillCost(); |
| Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 1778 | BlockFrequency BestCost; |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1779 | |
| 1780 | // Check if we can split this live range around a compact region. |
| Jakob Stoklund Olesen | 45df7e0 | 2011-09-12 16:54:42 +0000 | [diff] [blame] | 1781 | bool HasCompact = calcCompactRegion(GlobalCand.front()); |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1782 | if (HasCompact) { |
| 1783 | // Yes, keep GlobalCand[0] as the compact region candidate. |
| 1784 | NumCands = 1; |
| Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 1785 | BestCost = BlockFrequency::getMaxFrequency(); |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1786 | } else { |
| 1787 | // No benefit from the compact region, our fallback will be per-block |
| 1788 | // splitting. Make sure we find a solution that is cheaper than spilling. |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1789 | BestCost = SpillCost; |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1790 | LLVM_DEBUG(dbgs() << "Cost of isolating all blocks = "; |
| 1791 | MBFI->printBlockFreq(dbgs(), BestCost) << '\n'); |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1792 | } |
| Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 1793 | |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1794 | bool CanCauseEvictionChain = false; |
| Manman Ren | 9db66b3 | 2014-03-24 23:23:42 +0000 | [diff] [blame] | 1795 | unsigned BestCand = |
| Manman Ren | 78cf02a | 2014-03-25 00:16:25 +0000 | [diff] [blame] | 1796 | calculateRegionSplitCost(VirtReg, Order, BestCost, NumCands, |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1797 | false /*IgnoreCSR*/, &CanCauseEvictionChain); |
| 1798 | |
| 1799 | // Split candidates with compact regions can cause a bad eviction sequence. |
| 1800 | // See splitCanCauseEvictionChain for detailed description of scenarios. |
| 1801 | // To avoid it, we need to comapre the cost with the spill cost and not the |
| 1802 | // current max frequency. |
| 1803 | if (HasCompact && (BestCost > SpillCost) && (BestCand != NoCand) && |
| 1804 | CanCauseEvictionChain) { |
| 1805 | return 0; |
| 1806 | } |
| Manman Ren | 9db66b3 | 2014-03-24 23:23:42 +0000 | [diff] [blame] | 1807 | |
| 1808 | // No solutions found, fall back to single block splitting. |
| 1809 | if (!HasCompact && BestCand == NoCand) |
| 1810 | return 0; |
| 1811 | |
| 1812 | return doRegionSplit(VirtReg, BestCand, HasCompact, NewVRegs); |
| 1813 | } |
| 1814 | |
| 1815 | unsigned RAGreedy::calculateRegionSplitCost(LiveInterval &VirtReg, |
| 1816 | AllocationOrder &Order, |
| 1817 | BlockFrequency &BestCost, |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1818 | unsigned &NumCands, bool IgnoreCSR, |
| 1819 | bool *CanCauseEvictionChain) { |
| Manman Ren | 9db66b3 | 2014-03-24 23:23:42 +0000 | [diff] [blame] | 1820 | unsigned BestCand = NoCand; |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1821 | Order.rewind(); |
| Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1822 | while (unsigned PhysReg = Order.next()) { |
| Matthias Braun | 953393a | 2015-07-14 17:38:17 +0000 | [diff] [blame] | 1823 | if (IgnoreCSR && isUnusedCalleeSavedReg(PhysReg)) |
| 1824 | continue; |
| Manman Ren | 78cf02a | 2014-03-25 00:16:25 +0000 | [diff] [blame] | 1825 | |
| Jakob Stoklund Olesen | a153ca5 | 2011-07-14 05:35:11 +0000 | [diff] [blame] | 1826 | // Discard bad candidates before we run out of interference cache cursors. |
| 1827 | // This will only affect register classes with a lot of registers (>32). |
| 1828 | if (NumCands == IntfCache.getMaxCursors()) { |
| 1829 | unsigned WorstCount = ~0u; |
| 1830 | unsigned Worst = 0; |
| 1831 | for (unsigned i = 0; i != NumCands; ++i) { |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1832 | if (i == BestCand || !GlobalCand[i].PhysReg) |
| Jakob Stoklund Olesen | a153ca5 | 2011-07-14 05:35:11 +0000 | [diff] [blame] | 1833 | continue; |
| 1834 | unsigned Count = GlobalCand[i].LiveBundles.count(); |
| Richard Trieu | 7a08381 | 2016-02-18 22:09:30 +0000 | [diff] [blame] | 1835 | if (Count < WorstCount) { |
| 1836 | Worst = i; |
| 1837 | WorstCount = Count; |
| 1838 | } |
| Jakob Stoklund Olesen | a153ca5 | 2011-07-14 05:35:11 +0000 | [diff] [blame] | 1839 | } |
| 1840 | --NumCands; |
| 1841 | GlobalCand[Worst] = GlobalCand[NumCands]; |
| Jakob Stoklund Olesen | 559d4dc | 2011-11-01 00:02:31 +0000 | [diff] [blame] | 1842 | if (BestCand == NumCands) |
| 1843 | BestCand = Worst; |
| Jakob Stoklund Olesen | a153ca5 | 2011-07-14 05:35:11 +0000 | [diff] [blame] | 1844 | } |
| 1845 | |
| Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1846 | if (GlobalCand.size() <= NumCands) |
| 1847 | GlobalCand.resize(NumCands+1); |
| 1848 | GlobalSplitCandidate &Cand = GlobalCand[NumCands]; |
| 1849 | Cand.reset(IntfCache, PhysReg); |
| Jakob Stoklund Olesen | 4b598e1 | 2011-03-05 01:10:31 +0000 | [diff] [blame] | 1850 | |
| Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1851 | SpillPlacer->prepare(Cand.LiveBundles); |
| Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 1852 | BlockFrequency Cost; |
| Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1853 | if (!addSplitConstraints(Cand.Intf, Cost)) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1854 | LLVM_DEBUG(dbgs() << printReg(PhysReg, TRI) << "\tno positive bundles\n"); |
| Jakob Stoklund Olesen | 81439a8 | 2011-04-06 21:32:38 +0000 | [diff] [blame] | 1855 | continue; |
| 1856 | } |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1857 | LLVM_DEBUG(dbgs() << printReg(PhysReg, TRI) << "\tstatic = "; |
| 1858 | MBFI->printBlockFreq(dbgs(), Cost)); |
| Jakob Stoklund Olesen | 032891b | 2011-04-22 22:47:40 +0000 | [diff] [blame] | 1859 | if (Cost >= BestCost) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1860 | LLVM_DEBUG({ |
| Jakob Stoklund Olesen | 032891b | 2011-04-22 22:47:40 +0000 | [diff] [blame] | 1861 | if (BestCand == NoCand) |
| 1862 | dbgs() << " worse than no bundles\n"; |
| 1863 | else |
| 1864 | dbgs() << " worse than " |
| Francis Visoiu Mistrih | 9d419d3 | 2017-11-28 12:42:37 +0000 | [diff] [blame] | 1865 | << printReg(GlobalCand[BestCand].PhysReg, TRI) << '\n'; |
| Jakob Stoklund Olesen | 032891b | 2011-04-22 22:47:40 +0000 | [diff] [blame] | 1866 | }); |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1867 | continue; |
| Jakob Stoklund Olesen | 1a9b66c | 2011-03-05 03:28:51 +0000 | [diff] [blame] | 1868 | } |
| Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1869 | growRegion(Cand); |
| Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1870 | |
| Jakob Stoklund Olesen | 36b5d8a | 2011-04-06 19:13:57 +0000 | [diff] [blame] | 1871 | SpillPlacer->finish(); |
| 1872 | |
| Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1873 | // No live bundles, defer to splitSingleBlocks(). |
| Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1874 | if (!Cand.LiveBundles.any()) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1875 | LLVM_DEBUG(dbgs() << " no bundles.\n"); |
| Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1876 | continue; |
| Jakob Stoklund Olesen | 1a9b66c | 2011-03-05 03:28:51 +0000 | [diff] [blame] | 1877 | } |
| Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1878 | |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1879 | bool HasEvictionChain = false; |
| 1880 | Cost += calcGlobalSplitCost(Cand, Order, &HasEvictionChain); |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1881 | LLVM_DEBUG({ |
| 1882 | dbgs() << ", total = "; |
| 1883 | MBFI->printBlockFreq(dbgs(), Cost) << " with bundles"; |
| Francis Visoiu Mistrih | b52e036 | 2017-05-17 01:07:53 +0000 | [diff] [blame] | 1884 | for (int i : Cand.LiveBundles.set_bits()) |
| Jakob Stoklund Olesen | 1a9b66c | 2011-03-05 03:28:51 +0000 | [diff] [blame] | 1885 | dbgs() << " EB#" << i; |
| 1886 | dbgs() << ".\n"; |
| 1887 | }); |
| Jakob Stoklund Olesen | 032891b | 2011-04-22 22:47:40 +0000 | [diff] [blame] | 1888 | if (Cost < BestCost) { |
| Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1889 | BestCand = NumCands; |
| Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 1890 | BestCost = Cost; |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1891 | // See splitCanCauseEvictionChain for detailed description of bad |
| 1892 | // eviction chain scenarios. |
| 1893 | if (CanCauseEvictionChain) |
| 1894 | *CanCauseEvictionChain = HasEvictionChain; |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1895 | } |
| Jakob Stoklund Olesen | d7e9937 | 2011-07-14 00:17:10 +0000 | [diff] [blame] | 1896 | ++NumCands; |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1897 | } |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1898 | |
| 1899 | if (CanCauseEvictionChain && BestCand != NoCand) { |
| 1900 | // See splitCanCauseEvictionChain for detailed description of bad |
| 1901 | // eviction chain scenarios. |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1902 | LLVM_DEBUG(dbgs() << "Best split candidate of vreg " |
| 1903 | << printReg(VirtReg.reg, TRI) << " may "); |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1904 | if (!(*CanCauseEvictionChain)) |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1905 | LLVM_DEBUG(dbgs() << "not "); |
| 1906 | LLVM_DEBUG(dbgs() << "cause bad eviction chain\n"); |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 1907 | } |
| 1908 | |
| Manman Ren | 9db66b3 | 2014-03-24 23:23:42 +0000 | [diff] [blame] | 1909 | return BestCand; |
| 1910 | } |
| Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1911 | |
| Manman Ren | 9db66b3 | 2014-03-24 23:23:42 +0000 | [diff] [blame] | 1912 | unsigned RAGreedy::doRegionSplit(LiveInterval &VirtReg, unsigned BestCand, |
| 1913 | bool HasCompact, |
| 1914 | SmallVectorImpl<unsigned> &NewVRegs) { |
| 1915 | SmallVector<unsigned, 8> UsedCands; |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1916 | // Prepare split editor. |
| Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 1917 | LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats); |
| Jakob Stoklund Olesen | eecb2fb | 2011-09-12 16:49:21 +0000 | [diff] [blame] | 1918 | SE->reset(LREdit, SplitSpillMode); |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1919 | |
| 1920 | // Assign all edge bundles to the preferred candidate, or NoCand. |
| 1921 | BundleCand.assign(Bundles->getNumBundles(), NoCand); |
| 1922 | |
| 1923 | // Assign bundles for the best candidate region. |
| 1924 | if (BestCand != NoCand) { |
| 1925 | GlobalSplitCandidate &Cand = GlobalCand[BestCand]; |
| 1926 | if (unsigned B = Cand.getBundles(BundleCand, BestCand)) { |
| 1927 | UsedCands.push_back(BestCand); |
| 1928 | Cand.IntvIdx = SE->openIntv(); |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1929 | LLVM_DEBUG(dbgs() << "Split for " << printReg(Cand.PhysReg, TRI) << " in " |
| 1930 | << B << " bundles, intv " << Cand.IntvIdx << ".\n"); |
| Chandler Carruth | 77eb5a0 | 2011-08-03 23:07:27 +0000 | [diff] [blame] | 1931 | (void)B; |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1932 | } |
| 1933 | } |
| 1934 | |
| 1935 | // Assign bundles for the compact region. |
| 1936 | if (HasCompact) { |
| 1937 | GlobalSplitCandidate &Cand = GlobalCand.front(); |
| 1938 | assert(!Cand.PhysReg && "Compact region has no physreg"); |
| 1939 | if (unsigned B = Cand.getBundles(BundleCand, 0)) { |
| 1940 | UsedCands.push_back(0); |
| 1941 | Cand.IntvIdx = SE->openIntv(); |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1942 | LLVM_DEBUG(dbgs() << "Split for compact region in " << B |
| 1943 | << " bundles, intv " << Cand.IntvIdx << ".\n"); |
| Chandler Carruth | 77eb5a0 | 2011-08-03 23:07:27 +0000 | [diff] [blame] | 1944 | (void)B; |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 1945 | } |
| 1946 | } |
| 1947 | |
| 1948 | splitAroundRegion(LREdit, UsedCands); |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 1949 | return 0; |
| 1950 | } |
| 1951 | |
| Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 1952 | //===----------------------------------------------------------------------===// |
| Jakob Stoklund Olesen | cef5d8f | 2011-08-05 23:04:18 +0000 | [diff] [blame] | 1953 | // Per-Block Splitting |
| 1954 | //===----------------------------------------------------------------------===// |
| 1955 | |
| 1956 | /// tryBlockSplit - Split a global live range around every block with uses. This |
| 1957 | /// creates a lot of local live ranges, that will be split by tryLocalSplit if |
| 1958 | /// they don't allocate. |
| 1959 | unsigned RAGreedy::tryBlockSplit(LiveInterval &VirtReg, AllocationOrder &Order, |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1960 | SmallVectorImpl<unsigned> &NewVRegs) { |
| Jakob Stoklund Olesen | cef5d8f | 2011-08-05 23:04:18 +0000 | [diff] [blame] | 1961 | assert(&SA->getParent() == &VirtReg && "Live range wasn't analyzed"); |
| 1962 | unsigned Reg = VirtReg.reg; |
| 1963 | bool SingleInstrs = RegClassInfo.isProperSubClass(MRI->getRegClass(Reg)); |
| Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 1964 | LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats); |
| Jakob Stoklund Olesen | eecb2fb | 2011-09-12 16:49:21 +0000 | [diff] [blame] | 1965 | SE->reset(LREdit, SplitSpillMode); |
| Jakob Stoklund Olesen | cef5d8f | 2011-08-05 23:04:18 +0000 | [diff] [blame] | 1966 | ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks(); |
| 1967 | for (unsigned i = 0; i != UseBlocks.size(); ++i) { |
| 1968 | const SplitAnalysis::BlockInfo &BI = UseBlocks[i]; |
| 1969 | if (SA->shouldSplitSingleBlock(BI, SingleInstrs)) |
| 1970 | SE->splitSingleBlock(BI); |
| 1971 | } |
| 1972 | // No blocks were split. |
| 1973 | if (LREdit.empty()) |
| 1974 | return 0; |
| 1975 | |
| 1976 | // We did split for some blocks. |
| Jakob Stoklund Olesen | 02cf10b | 2011-08-05 23:50:31 +0000 | [diff] [blame] | 1977 | SmallVector<unsigned, 8> IntvMap; |
| 1978 | SE->finish(&IntvMap); |
| Jakob Stoklund Olesen | 0de95ef | 2011-08-05 23:10:40 +0000 | [diff] [blame] | 1979 | |
| 1980 | // Tell LiveDebugVariables about the new ranges. |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1981 | DebugVars->splitRegister(Reg, LREdit.regs(), *LIS); |
| Jakob Stoklund Olesen | 0de95ef | 2011-08-05 23:10:40 +0000 | [diff] [blame] | 1982 | |
| Jakob Stoklund Olesen | 02cf10b | 2011-08-05 23:50:31 +0000 | [diff] [blame] | 1983 | ExtraRegInfo.resize(MRI->getNumVirtRegs()); |
| 1984 | |
| 1985 | // Sort out the new intervals created by splitting. The remainder interval |
| 1986 | // goes straight to spilling, the new local ranges get to stay RS_New. |
| 1987 | for (unsigned i = 0, e = LREdit.size(); i != e; ++i) { |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 1988 | LiveInterval &LI = LIS->getInterval(LREdit.get(i)); |
| Jakob Stoklund Olesen | 02cf10b | 2011-08-05 23:50:31 +0000 | [diff] [blame] | 1989 | if (getStage(LI) == RS_New && IntvMap[i] == 0) |
| 1990 | setStage(LI, RS_Spill); |
| 1991 | } |
| 1992 | |
| Jakob Stoklund Olesen | cef5d8f | 2011-08-05 23:04:18 +0000 | [diff] [blame] | 1993 | if (VerifyEnabled) |
| 1994 | MF->verify(this, "After splitting live range around basic blocks"); |
| 1995 | return 0; |
| 1996 | } |
| 1997 | |
| Jakob Stoklund Olesen | 0ce9049 | 2012-05-23 22:37:27 +0000 | [diff] [blame] | 1998 | //===----------------------------------------------------------------------===// |
| 1999 | // Per-Instruction Splitting |
| 2000 | //===----------------------------------------------------------------------===// |
| 2001 | |
| Quentin Colombet | 1fb3362a | 2014-01-02 22:47:22 +0000 | [diff] [blame] | 2002 | /// Get the number of allocatable registers that match the constraints of \p Reg |
| 2003 | /// on \p MI and that are also in \p SuperRC. |
| 2004 | static unsigned getNumAllocatableRegsForConstraints( |
| 2005 | const MachineInstr *MI, unsigned Reg, const TargetRegisterClass *SuperRC, |
| 2006 | const TargetInstrInfo *TII, const TargetRegisterInfo *TRI, |
| 2007 | const RegisterClassInfo &RCI) { |
| 2008 | assert(SuperRC && "Invalid register class"); |
| 2009 | |
| 2010 | const TargetRegisterClass *ConstrainedRC = |
| 2011 | MI->getRegClassConstraintEffectForVReg(Reg, SuperRC, TII, TRI, |
| 2012 | /* ExploreBundle */ true); |
| 2013 | if (!ConstrainedRC) |
| 2014 | return 0; |
| 2015 | return RCI.getNumAllocatableRegs(ConstrainedRC); |
| 2016 | } |
| 2017 | |
| Jakob Stoklund Olesen | 0ce9049 | 2012-05-23 22:37:27 +0000 | [diff] [blame] | 2018 | /// tryInstructionSplit - Split a live range around individual instructions. |
| 2019 | /// This is normally not worthwhile since the spiller is doing essentially the |
| 2020 | /// same thing. However, when the live range is in a constrained register |
| 2021 | /// class, it may help to insert copies such that parts of the live range can |
| 2022 | /// be moved to a larger register class. |
| 2023 | /// |
| 2024 | /// This is similar to spilling to a larger register class. |
| 2025 | unsigned |
| 2026 | RAGreedy::tryInstructionSplit(LiveInterval &VirtReg, AllocationOrder &Order, |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 2027 | SmallVectorImpl<unsigned> &NewVRegs) { |
| Quentin Colombet | 1fb3362a | 2014-01-02 22:47:22 +0000 | [diff] [blame] | 2028 | const TargetRegisterClass *CurRC = MRI->getRegClass(VirtReg.reg); |
| Jakob Stoklund Olesen | 0ce9049 | 2012-05-23 22:37:27 +0000 | [diff] [blame] | 2029 | // There is no point to this if there are no larger sub-classes. |
| Quentin Colombet | 1fb3362a | 2014-01-02 22:47:22 +0000 | [diff] [blame] | 2030 | if (!RegClassInfo.isProperSubClass(CurRC)) |
| Jakob Stoklund Olesen | 0ce9049 | 2012-05-23 22:37:27 +0000 | [diff] [blame] | 2031 | return 0; |
| 2032 | |
| 2033 | // Always enable split spill mode, since we're effectively spilling to a |
| 2034 | // register. |
| Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 2035 | LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats); |
| Jakob Stoklund Olesen | 0ce9049 | 2012-05-23 22:37:27 +0000 | [diff] [blame] | 2036 | SE->reset(LREdit, SplitEditor::SM_Size); |
| 2037 | |
| 2038 | ArrayRef<SlotIndex> Uses = SA->getUseSlots(); |
| 2039 | if (Uses.size() <= 1) |
| 2040 | return 0; |
| 2041 | |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2042 | LLVM_DEBUG(dbgs() << "Split around " << Uses.size() |
| 2043 | << " individual instrs.\n"); |
| Jakob Stoklund Olesen | 0ce9049 | 2012-05-23 22:37:27 +0000 | [diff] [blame] | 2044 | |
| Eric Christopher | 433c432 | 2015-03-10 23:46:01 +0000 | [diff] [blame] | 2045 | const TargetRegisterClass *SuperRC = |
| 2046 | TRI->getLargestLegalSuperClass(CurRC, *MF); |
| Quentin Colombet | 1fb3362a | 2014-01-02 22:47:22 +0000 | [diff] [blame] | 2047 | unsigned SuperRCNumAllocatableRegs = RCI.getNumAllocatableRegs(SuperRC); |
| 2048 | // Split around every non-copy instruction if this split will relax |
| 2049 | // the constraints on the virtual register. |
| 2050 | // Otherwise, splitting just inserts uncoalescable copies that do not help |
| 2051 | // the allocation. |
| Jakob Stoklund Olesen | 0ce9049 | 2012-05-23 22:37:27 +0000 | [diff] [blame] | 2052 | for (unsigned i = 0; i != Uses.size(); ++i) { |
| 2053 | if (const MachineInstr *MI = Indexes->getInstructionFromIndex(Uses[i])) |
| Quentin Colombet | 1fb3362a | 2014-01-02 22:47:22 +0000 | [diff] [blame] | 2054 | if (MI->isFullCopy() || |
| 2055 | SuperRCNumAllocatableRegs == |
| 2056 | getNumAllocatableRegsForConstraints(MI, VirtReg.reg, SuperRC, TII, |
| 2057 | TRI, RCI)) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2058 | LLVM_DEBUG(dbgs() << " skip:\t" << Uses[i] << '\t' << *MI); |
| Jakob Stoklund Olesen | 0ce9049 | 2012-05-23 22:37:27 +0000 | [diff] [blame] | 2059 | continue; |
| 2060 | } |
| 2061 | SE->openIntv(); |
| 2062 | SlotIndex SegStart = SE->enterIntvBefore(Uses[i]); |
| 2063 | SlotIndex SegStop = SE->leaveIntvAfter(Uses[i]); |
| 2064 | SE->useIntv(SegStart, SegStop); |
| 2065 | } |
| 2066 | |
| 2067 | if (LREdit.empty()) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2068 | LLVM_DEBUG(dbgs() << "All uses were copies.\n"); |
| Jakob Stoklund Olesen | 0ce9049 | 2012-05-23 22:37:27 +0000 | [diff] [blame] | 2069 | return 0; |
| 2070 | } |
| 2071 | |
| 2072 | SmallVector<unsigned, 8> IntvMap; |
| 2073 | SE->finish(&IntvMap); |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 2074 | DebugVars->splitRegister(VirtReg.reg, LREdit.regs(), *LIS); |
| Jakob Stoklund Olesen | 0ce9049 | 2012-05-23 22:37:27 +0000 | [diff] [blame] | 2075 | ExtraRegInfo.resize(MRI->getNumVirtRegs()); |
| 2076 | |
| 2077 | // Assign all new registers to RS_Spill. This was the last chance. |
| 2078 | setStage(LREdit.begin(), LREdit.end(), RS_Spill); |
| 2079 | return 0; |
| 2080 | } |
| 2081 | |
| Jakob Stoklund Olesen | cef5d8f | 2011-08-05 23:04:18 +0000 | [diff] [blame] | 2082 | //===----------------------------------------------------------------------===// |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2083 | // Local Splitting |
| 2084 | //===----------------------------------------------------------------------===// |
| 2085 | |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2086 | /// calcGapWeights - Compute the maximum spill weight that needs to be evicted |
| 2087 | /// in order to use PhysReg between two entries in SA->UseSlots. |
| 2088 | /// |
| 2089 | /// GapWeight[i] represents the gap between UseSlots[i] and UseSlots[i+1]. |
| 2090 | /// |
| 2091 | void RAGreedy::calcGapWeights(unsigned PhysReg, |
| 2092 | SmallVectorImpl<float> &GapWeight) { |
| Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 2093 | assert(SA->getUseBlocks().size() == 1 && "Not a local interval"); |
| 2094 | const SplitAnalysis::BlockInfo &BI = SA->getUseBlocks().front(); |
| Jakob Stoklund Olesen | 994fed6 | 2012-01-12 17:53:44 +0000 | [diff] [blame] | 2095 | ArrayRef<SlotIndex> Uses = SA->getUseSlots(); |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2096 | const unsigned NumGaps = Uses.size()-1; |
| 2097 | |
| 2098 | // Start and end points for the interference check. |
| Jakob Stoklund Olesen | 43859a6 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 2099 | SlotIndex StartIdx = |
| 2100 | BI.LiveIn ? BI.FirstInstr.getBaseIndex() : BI.FirstInstr; |
| 2101 | SlotIndex StopIdx = |
| 2102 | BI.LiveOut ? BI.LastInstr.getBoundaryIndex() : BI.LastInstr; |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2103 | |
| 2104 | GapWeight.assign(NumGaps, 0.0f); |
| 2105 | |
| 2106 | // Add interference from each overlapping register. |
| Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 2107 | for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) { |
| 2108 | if (!Matrix->query(const_cast<LiveInterval&>(SA->getParent()), *Units) |
| 2109 | .checkInterference()) |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2110 | continue; |
| 2111 | |
| Jakob Stoklund Olesen | 43859a6 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 2112 | // We know that VirtReg is a continuous interval from FirstInstr to |
| 2113 | // LastInstr, so we don't need InterferenceQuery. |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2114 | // |
| 2115 | // Interference that overlaps an instruction is counted in both gaps |
| 2116 | // surrounding the instruction. The exception is interference before |
| 2117 | // StartIdx and after StopIdx. |
| 2118 | // |
| Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 2119 | LiveIntervalUnion::SegmentIter IntI = |
| 2120 | Matrix->getLiveUnions()[*Units] .find(StartIdx); |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2121 | for (unsigned Gap = 0; IntI.valid() && IntI.start() < StopIdx; ++IntI) { |
| 2122 | // Skip the gaps before IntI. |
| 2123 | while (Uses[Gap+1].getBoundaryIndex() < IntI.start()) |
| 2124 | if (++Gap == NumGaps) |
| 2125 | break; |
| 2126 | if (Gap == NumGaps) |
| 2127 | break; |
| 2128 | |
| 2129 | // Update the gaps covered by IntI. |
| 2130 | const float weight = IntI.value()->weight; |
| 2131 | for (; Gap != NumGaps; ++Gap) { |
| 2132 | GapWeight[Gap] = std::max(GapWeight[Gap], weight); |
| 2133 | if (Uses[Gap+1].getBaseIndex() >= IntI.stop()) |
| 2134 | break; |
| 2135 | } |
| 2136 | if (Gap == NumGaps) |
| 2137 | break; |
| 2138 | } |
| 2139 | } |
| Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 2140 | |
| 2141 | // Add fixed interference. |
| 2142 | for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) { |
| Matthias Braun | 34e1be9 | 2013-10-10 21:29:02 +0000 | [diff] [blame] | 2143 | const LiveRange &LR = LIS->getRegUnit(*Units); |
| 2144 | LiveRange::const_iterator I = LR.find(StartIdx); |
| 2145 | LiveRange::const_iterator E = LR.end(); |
| Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 2146 | |
| 2147 | // Same loop as above. Mark any overlapped gaps as HUGE_VALF. |
| 2148 | for (unsigned Gap = 0; I != E && I->start < StopIdx; ++I) { |
| 2149 | while (Uses[Gap+1].getBoundaryIndex() < I->start) |
| 2150 | if (++Gap == NumGaps) |
| 2151 | break; |
| 2152 | if (Gap == NumGaps) |
| 2153 | break; |
| 2154 | |
| 2155 | for (; Gap != NumGaps; ++Gap) { |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 2156 | GapWeight[Gap] = huge_valf; |
| Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 2157 | if (Uses[Gap+1].getBaseIndex() >= I->end) |
| 2158 | break; |
| 2159 | } |
| 2160 | if (Gap == NumGaps) |
| 2161 | break; |
| 2162 | } |
| 2163 | } |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2164 | } |
| 2165 | |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2166 | /// tryLocalSplit - Try to split VirtReg into smaller intervals inside its only |
| 2167 | /// basic block. |
| 2168 | /// |
| 2169 | unsigned RAGreedy::tryLocalSplit(LiveInterval &VirtReg, AllocationOrder &Order, |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 2170 | SmallVectorImpl<unsigned> &NewVRegs) { |
| Jakob Stoklund Olesen | bf91c4e | 2011-04-06 03:57:00 +0000 | [diff] [blame] | 2171 | assert(SA->getUseBlocks().size() == 1 && "Not a local interval"); |
| 2172 | const SplitAnalysis::BlockInfo &BI = SA->getUseBlocks().front(); |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2173 | |
| 2174 | // Note that it is possible to have an interval that is live-in or live-out |
| 2175 | // while only covering a single block - A phi-def can use undef values from |
| 2176 | // predecessors, and the block could be a single-block loop. |
| 2177 | // We don't bother doing anything clever about such a case, we simply assume |
| Jakob Stoklund Olesen | 43859a6 | 2011-08-02 22:54:14 +0000 | [diff] [blame] | 2178 | // that the interval is continuous from FirstInstr to LastInstr. We should |
| 2179 | // make sure that we don't do anything illegal to such an interval, though. |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2180 | |
| Jakob Stoklund Olesen | 994fed6 | 2012-01-12 17:53:44 +0000 | [diff] [blame] | 2181 | ArrayRef<SlotIndex> Uses = SA->getUseSlots(); |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2182 | if (Uses.size() <= 2) |
| 2183 | return 0; |
| 2184 | const unsigned NumGaps = Uses.size()-1; |
| 2185 | |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2186 | LLVM_DEBUG({ |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2187 | dbgs() << "tryLocalSplit: "; |
| 2188 | for (unsigned i = 0, e = Uses.size(); i != e; ++i) |
| Jakob Stoklund Olesen | 994fed6 | 2012-01-12 17:53:44 +0000 | [diff] [blame] | 2189 | dbgs() << ' ' << Uses[i]; |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2190 | dbgs() << '\n'; |
| 2191 | }); |
| 2192 | |
| Jakob Stoklund Olesen | 17402e3 | 2012-02-11 00:42:18 +0000 | [diff] [blame] | 2193 | // If VirtReg is live across any register mask operands, compute a list of |
| 2194 | // gaps with register masks. |
| 2195 | SmallVector<unsigned, 8> RegMaskGaps; |
| Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 2196 | if (Matrix->checkRegMaskInterference(VirtReg)) { |
| Jakob Stoklund Olesen | 17402e3 | 2012-02-11 00:42:18 +0000 | [diff] [blame] | 2197 | // Get regmask slots for the whole block. |
| 2198 | ArrayRef<SlotIndex> RMS = LIS->getRegMaskSlotsInBlock(BI.MBB->getNumber()); |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2199 | LLVM_DEBUG(dbgs() << RMS.size() << " regmasks in block:"); |
| Jakob Stoklund Olesen | 17402e3 | 2012-02-11 00:42:18 +0000 | [diff] [blame] | 2200 | // Constrain to VirtReg's live range. |
| Jakob Stoklund Olesen | b0c0d34 | 2012-02-14 23:51:27 +0000 | [diff] [blame] | 2201 | unsigned ri = std::lower_bound(RMS.begin(), RMS.end(), |
| 2202 | Uses.front().getRegSlot()) - RMS.begin(); |
| Jakob Stoklund Olesen | 17402e3 | 2012-02-11 00:42:18 +0000 | [diff] [blame] | 2203 | unsigned re = RMS.size(); |
| 2204 | for (unsigned i = 0; i != NumGaps && ri != re; ++i) { |
| Jakob Stoklund Olesen | b0c0d34 | 2012-02-14 23:51:27 +0000 | [diff] [blame] | 2205 | // Look for Uses[i] <= RMS <= Uses[i+1]. |
| 2206 | assert(!SlotIndex::isEarlierInstr(RMS[ri], Uses[i])); |
| 2207 | if (SlotIndex::isEarlierInstr(Uses[i+1], RMS[ri])) |
| Jakob Stoklund Olesen | 17402e3 | 2012-02-11 00:42:18 +0000 | [diff] [blame] | 2208 | continue; |
| Jakob Stoklund Olesen | b0c0d34 | 2012-02-14 23:51:27 +0000 | [diff] [blame] | 2209 | // Skip a regmask on the same instruction as the last use. It doesn't |
| 2210 | // overlap the live range. |
| 2211 | if (SlotIndex::isSameInstr(Uses[i+1], RMS[ri]) && i+1 == NumGaps) |
| 2212 | break; |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2213 | LLVM_DEBUG(dbgs() << ' ' << RMS[ri] << ':' << Uses[i] << '-' |
| 2214 | << Uses[i + 1]); |
| Jakob Stoklund Olesen | 17402e3 | 2012-02-11 00:42:18 +0000 | [diff] [blame] | 2215 | RegMaskGaps.push_back(i); |
| Jakob Stoklund Olesen | b0c0d34 | 2012-02-14 23:51:27 +0000 | [diff] [blame] | 2216 | // Advance ri to the next gap. A regmask on one of the uses counts in |
| 2217 | // both gaps. |
| 2218 | while (ri != re && SlotIndex::isEarlierInstr(RMS[ri], Uses[i+1])) |
| 2219 | ++ri; |
| Jakob Stoklund Olesen | 17402e3 | 2012-02-11 00:42:18 +0000 | [diff] [blame] | 2220 | } |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2221 | LLVM_DEBUG(dbgs() << '\n'); |
| Jakob Stoklund Olesen | 17402e3 | 2012-02-11 00:42:18 +0000 | [diff] [blame] | 2222 | } |
| 2223 | |
| Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 2224 | // Since we allow local split results to be split again, there is a risk of |
| 2225 | // creating infinite loops. It is tempting to require that the new live |
| 2226 | // ranges have less instructions than the original. That would guarantee |
| 2227 | // convergence, but it is too strict. A live range with 3 instructions can be |
| 2228 | // split 2+3 (including the COPY), and we want to allow that. |
| 2229 | // |
| 2230 | // Instead we use these rules: |
| 2231 | // |
| Jakob Stoklund Olesen | 4501117 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 2232 | // 1. Allow any split for ranges with getStage() < RS_Split2. (Except for the |
| Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 2233 | // noop split, of course). |
| Jakob Stoklund Olesen | 4501117 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 2234 | // 2. Require progress be made for ranges with getStage() == RS_Split2. All |
| Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 2235 | // the new ranges must have fewer instructions than before the split. |
| Jakob Stoklund Olesen | 4501117 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 2236 | // 3. New ranges with the same number of instructions are marked RS_Split2, |
| Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 2237 | // smaller ranges are marked RS_New. |
| 2238 | // |
| 2239 | // These rules allow a 3 -> 2+3 split once, which we need. They also prevent |
| 2240 | // excessive splitting and infinite loops. |
| 2241 | // |
| Jakob Stoklund Olesen | 4501117 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 2242 | bool ProgressRequired = getStage(VirtReg) >= RS_Split2; |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2243 | |
| Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 2244 | // Best split candidate. |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2245 | unsigned BestBefore = NumGaps; |
| 2246 | unsigned BestAfter = 0; |
| 2247 | float BestDiff = 0; |
| 2248 | |
| Jakob Stoklund Olesen | efeb3a1 | 2013-07-16 18:26:18 +0000 | [diff] [blame] | 2249 | const float blockFreq = |
| 2250 | SpillPlacer->getBlockFrequency(BI.MBB->getNumber()).getFrequency() * |
| Michael Gottesman | 5e985ee | 2013-12-14 02:37:38 +0000 | [diff] [blame] | 2251 | (1.0f / MBFI->getEntryFreq()); |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2252 | SmallVector<float, 8> GapWeight; |
| 2253 | |
| 2254 | Order.rewind(); |
| 2255 | while (unsigned PhysReg = Order.next()) { |
| 2256 | // Keep track of the largest spill weight that would need to be evicted in |
| 2257 | // order to make use of PhysReg between UseSlots[i] and UseSlots[i+1]. |
| 2258 | calcGapWeights(PhysReg, GapWeight); |
| 2259 | |
| Jakob Stoklund Olesen | 17402e3 | 2012-02-11 00:42:18 +0000 | [diff] [blame] | 2260 | // Remove any gaps with regmask clobbers. |
| Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 2261 | if (Matrix->checkRegMaskInterference(VirtReg, PhysReg)) |
| Jakob Stoklund Olesen | 17402e3 | 2012-02-11 00:42:18 +0000 | [diff] [blame] | 2262 | for (unsigned i = 0, e = RegMaskGaps.size(); i != e; ++i) |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 2263 | GapWeight[RegMaskGaps[i]] = huge_valf; |
| Jakob Stoklund Olesen | 17402e3 | 2012-02-11 00:42:18 +0000 | [diff] [blame] | 2264 | |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2265 | // Try to find the best sequence of gaps to close. |
| 2266 | // The new spill weight must be larger than any gap interference. |
| 2267 | |
| 2268 | // We will split before Uses[SplitBefore] and after Uses[SplitAfter]. |
| Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 2269 | unsigned SplitBefore = 0, SplitAfter = 1; |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2270 | |
| 2271 | // MaxGap should always be max(GapWeight[SplitBefore..SplitAfter-1]). |
| 2272 | // It is the spill weight that needs to be evicted. |
| 2273 | float MaxGap = GapWeight[0]; |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2274 | |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 2275 | while (true) { |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2276 | // Live before/after split? |
| 2277 | const bool LiveBefore = SplitBefore != 0 || BI.LiveIn; |
| 2278 | const bool LiveAfter = SplitAfter != NumGaps || BI.LiveOut; |
| 2279 | |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2280 | LLVM_DEBUG(dbgs() << printReg(PhysReg, TRI) << ' ' << Uses[SplitBefore] |
| 2281 | << '-' << Uses[SplitAfter] << " i=" << MaxGap); |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2282 | |
| 2283 | // Stop before the interval gets so big we wouldn't be making progress. |
| 2284 | if (!LiveBefore && !LiveAfter) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2285 | LLVM_DEBUG(dbgs() << " all\n"); |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2286 | break; |
| 2287 | } |
| 2288 | // Should the interval be extended or shrunk? |
| 2289 | bool Shrink = true; |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2290 | |
| Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 2291 | // How many gaps would the new range have? |
| 2292 | unsigned NewGaps = LiveBefore + SplitAfter - SplitBefore + LiveAfter; |
| 2293 | |
| 2294 | // Legally, without causing looping? |
| 2295 | bool Legal = !ProgressRequired || NewGaps < NumGaps; |
| 2296 | |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 2297 | if (Legal && MaxGap < huge_valf) { |
| Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 2298 | // Estimate the new spill weight. Each instruction reads or writes the |
| 2299 | // register. Conservatively assume there are no read-modify-write |
| 2300 | // instructions. |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2301 | // |
| Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 2302 | // Try to guess the size of the new interval. |
| Arnaud A. de Grandmaison | 829dd81 | 2014-11-04 20:51:24 +0000 | [diff] [blame] | 2303 | const float EstWeight = normalizeSpillWeight( |
| 2304 | blockFreq * (NewGaps + 1), |
| 2305 | Uses[SplitBefore].distance(Uses[SplitAfter]) + |
| 2306 | (LiveBefore + LiveAfter) * SlotIndex::InstrDist, |
| 2307 | 1); |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2308 | // Would this split be possible to allocate? |
| 2309 | // Never allocate all gaps, we wouldn't be making progress. |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2310 | LLVM_DEBUG(dbgs() << " w=" << EstWeight); |
| Jakob Stoklund Olesen | 357dd36 | 2011-04-30 05:07:46 +0000 | [diff] [blame] | 2311 | if (EstWeight * Hysteresis >= MaxGap) { |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2312 | Shrink = false; |
| Jakob Stoklund Olesen | 357dd36 | 2011-04-30 05:07:46 +0000 | [diff] [blame] | 2313 | float Diff = EstWeight - MaxGap; |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2314 | if (Diff > BestDiff) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2315 | LLVM_DEBUG(dbgs() << " (best)"); |
| Jakob Stoklund Olesen | 357dd36 | 2011-04-30 05:07:46 +0000 | [diff] [blame] | 2316 | BestDiff = Hysteresis * Diff; |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2317 | BestBefore = SplitBefore; |
| 2318 | BestAfter = SplitAfter; |
| 2319 | } |
| 2320 | } |
| 2321 | } |
| 2322 | |
| 2323 | // Try to shrink. |
| 2324 | if (Shrink) { |
| Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 2325 | if (++SplitBefore < SplitAfter) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2326 | LLVM_DEBUG(dbgs() << " shrink\n"); |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2327 | // Recompute the max when necessary. |
| 2328 | if (GapWeight[SplitBefore - 1] >= MaxGap) { |
| 2329 | MaxGap = GapWeight[SplitBefore]; |
| 2330 | for (unsigned i = SplitBefore + 1; i != SplitAfter; ++i) |
| 2331 | MaxGap = std::max(MaxGap, GapWeight[i]); |
| 2332 | } |
| 2333 | continue; |
| 2334 | } |
| 2335 | MaxGap = 0; |
| 2336 | } |
| 2337 | |
| 2338 | // Try to extend the interval. |
| 2339 | if (SplitAfter >= NumGaps) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2340 | LLVM_DEBUG(dbgs() << " end\n"); |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2341 | break; |
| 2342 | } |
| 2343 | |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2344 | LLVM_DEBUG(dbgs() << " extend\n"); |
| Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 2345 | MaxGap = std::max(MaxGap, GapWeight[SplitAfter++]); |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2346 | } |
| 2347 | } |
| 2348 | |
| 2349 | // Didn't find any candidates? |
| 2350 | if (BestBefore == NumGaps) |
| 2351 | return 0; |
| 2352 | |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2353 | LLVM_DEBUG(dbgs() << "Best local split range: " << Uses[BestBefore] << '-' |
| 2354 | << Uses[BestAfter] << ", " << BestDiff << ", " |
| 2355 | << (BestAfter - BestBefore + 1) << " instrs\n"); |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2356 | |
| Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 2357 | LiveRangeEdit LREdit(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats); |
| Jakob Stoklund Olesen | c960198 | 2011-03-03 01:29:13 +0000 | [diff] [blame] | 2358 | SE->reset(LREdit); |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2359 | |
| Jakob Stoklund Olesen | c960198 | 2011-03-03 01:29:13 +0000 | [diff] [blame] | 2360 | SE->openIntv(); |
| 2361 | SlotIndex SegStart = SE->enterIntvBefore(Uses[BestBefore]); |
| 2362 | SlotIndex SegStop = SE->leaveIntvAfter(Uses[BestAfter]); |
| 2363 | SE->useIntv(SegStart, SegStop); |
| Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 2364 | SmallVector<unsigned, 8> IntvMap; |
| 2365 | SE->finish(&IntvMap); |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 2366 | DebugVars->splitRegister(VirtReg.reg, LREdit.regs(), *LIS); |
| Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 2367 | |
| 2368 | // If the new range has the same number of instructions as before, mark it as |
| Jakob Stoklund Olesen | 4501117 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 2369 | // RS_Split2 so the next split will be forced to make progress. Otherwise, |
| Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 2370 | // leave the new intervals as RS_New so they can compete. |
| 2371 | bool LiveBefore = BestBefore != 0 || BI.LiveIn; |
| 2372 | bool LiveAfter = BestAfter != NumGaps || BI.LiveOut; |
| 2373 | unsigned NewGaps = LiveBefore + BestAfter - BestBefore + LiveAfter; |
| 2374 | if (NewGaps >= NumGaps) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2375 | LLVM_DEBUG(dbgs() << "Tagging non-progress ranges: "); |
| Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 2376 | assert(!ProgressRequired && "Didn't make progress when it was required."); |
| Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 2377 | for (unsigned i = 0, e = IntvMap.size(); i != e; ++i) |
| 2378 | if (IntvMap[i] == 1) { |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 2379 | setStage(LIS->getInterval(LREdit.get(i)), RS_Split2); |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2380 | LLVM_DEBUG(dbgs() << printReg(LREdit.get(i))); |
| Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 2381 | } |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2382 | LLVM_DEBUG(dbgs() << '\n'); |
| Jakob Stoklund Olesen | df47627 | 2011-06-06 23:55:20 +0000 | [diff] [blame] | 2383 | } |
| Jakob Stoklund Olesen | 99827e8 | 2011-02-17 22:53:48 +0000 | [diff] [blame] | 2384 | ++NumLocalSplits; |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2385 | |
| 2386 | return 0; |
| 2387 | } |
| 2388 | |
| 2389 | //===----------------------------------------------------------------------===// |
| Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 2390 | // Live Range Splitting |
| 2391 | //===----------------------------------------------------------------------===// |
| 2392 | |
| 2393 | /// trySplit - Try to split VirtReg or one of its interferences, making it |
| 2394 | /// assignable. |
| 2395 | /// @return Physreg when VirtReg may be assigned and/or new NewVRegs. |
| 2396 | unsigned RAGreedy::trySplit(LiveInterval &VirtReg, AllocationOrder &Order, |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 2397 | SmallVectorImpl<unsigned>&NewVRegs) { |
| Jakob Stoklund Olesen | d4bb1d4 | 2011-08-05 23:50:33 +0000 | [diff] [blame] | 2398 | // Ranges must be Split2 or less. |
| 2399 | if (getStage(VirtReg) >= RS_Spill) |
| 2400 | return 0; |
| 2401 | |
| Jakob Stoklund Olesen | 93c8736 | 2011-02-17 19:13:53 +0000 | [diff] [blame] | 2402 | // Local intervals are handled separately. |
| Jakob Stoklund Olesen | 609bc44 | 2011-02-19 00:38:40 +0000 | [diff] [blame] | 2403 | if (LIS->intervalIsInOneMBB(VirtReg)) { |
| Matthias Braun | 9f15a79 | 2016-11-18 19:43:18 +0000 | [diff] [blame] | 2404 | NamedRegionTimer T("local_split", "Local Splitting", TimerGroupName, |
| 2405 | TimerGroupDescription, TimePassesIsEnabled); |
| Jakob Stoklund Olesen | 5f9f081 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 2406 | SA->analyze(&VirtReg); |
| Jakob Stoklund Olesen | 0ce9049 | 2012-05-23 22:37:27 +0000 | [diff] [blame] | 2407 | unsigned PhysReg = tryLocalSplit(VirtReg, Order, NewVRegs); |
| 2408 | if (PhysReg || !NewVRegs.empty()) |
| 2409 | return PhysReg; |
| 2410 | return tryInstructionSplit(VirtReg, Order, NewVRegs); |
| Jakob Stoklund Olesen | 609bc44 | 2011-02-19 00:38:40 +0000 | [diff] [blame] | 2411 | } |
| 2412 | |
| Matthias Braun | 9f15a79 | 2016-11-18 19:43:18 +0000 | [diff] [blame] | 2413 | NamedRegionTimer T("global_split", "Global Splitting", TimerGroupName, |
| 2414 | TimerGroupDescription, TimePassesIsEnabled); |
| Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 2415 | |
| Jakob Stoklund Olesen | 5f9f081 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 2416 | SA->analyze(&VirtReg); |
| 2417 | |
| Jakob Stoklund Olesen | eaa6ed1 | 2011-05-03 20:42:13 +0000 | [diff] [blame] | 2418 | // FIXME: SplitAnalysis may repair broken live ranges coming from the |
| 2419 | // coalescer. That may cause the range to become allocatable which means that |
| 2420 | // tryRegionSplit won't be making progress. This check should be replaced with |
| 2421 | // an assertion when the coalescer is fixed. |
| 2422 | if (SA->didRepairRange()) { |
| 2423 | // VirtReg has changed, so all cached queries are invalid. |
| Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 2424 | Matrix->invalidateVirtRegs(); |
| Jakob Stoklund Olesen | eaa6ed1 | 2011-05-03 20:42:13 +0000 | [diff] [blame] | 2425 | if (unsigned PhysReg = tryAssign(VirtReg, Order, NewVRegs)) |
| 2426 | return PhysReg; |
| 2427 | } |
| 2428 | |
| Jakob Stoklund Olesen | 4501117 | 2011-07-25 15:25:43 +0000 | [diff] [blame] | 2429 | // First try to split around a region spanning multiple blocks. RS_Split2 |
| 2430 | // ranges already made dubious progress with region splitting, so they go |
| 2431 | // straight to single block splitting. |
| 2432 | if (getStage(VirtReg) < RS_Split2) { |
| 2433 | unsigned PhysReg = tryRegionSplit(VirtReg, Order, NewVRegs); |
| 2434 | if (PhysReg || !NewVRegs.empty()) |
| 2435 | return PhysReg; |
| 2436 | } |
| Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 2437 | |
| Jakob Stoklund Olesen | cef5d8f | 2011-08-05 23:04:18 +0000 | [diff] [blame] | 2438 | // Then isolate blocks. |
| 2439 | return tryBlockSplit(VirtReg, Order, NewVRegs); |
| Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 2440 | } |
| 2441 | |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2442 | //===----------------------------------------------------------------------===// |
| 2443 | // Last Chance Recoloring |
| 2444 | //===----------------------------------------------------------------------===// |
| 2445 | |
| Mikael Holmen | 07f1e2e | 2017-09-28 08:22:35 +0000 | [diff] [blame] | 2446 | /// Return true if \p reg has any tied def operand. |
| 2447 | static bool hasTiedDef(MachineRegisterInfo *MRI, unsigned reg) { |
| 2448 | for (const MachineOperand &MO : MRI->def_operands(reg)) |
| 2449 | if (MO.isTied()) |
| 2450 | return true; |
| 2451 | |
| 2452 | return false; |
| 2453 | } |
| 2454 | |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2455 | /// mayRecolorAllInterferences - Check if the virtual registers that |
| 2456 | /// interfere with \p VirtReg on \p PhysReg (or one of its aliases) may be |
| 2457 | /// recolored to free \p PhysReg. |
| 2458 | /// When true is returned, \p RecoloringCandidates has been augmented with all |
| 2459 | /// the live intervals that need to be recolored in order to free \p PhysReg |
| 2460 | /// for \p VirtReg. |
| 2461 | /// \p FixedRegisters contains all the virtual registers that cannot be |
| 2462 | /// recolored. |
| 2463 | bool |
| 2464 | RAGreedy::mayRecolorAllInterferences(unsigned PhysReg, LiveInterval &VirtReg, |
| 2465 | SmallLISet &RecoloringCandidates, |
| 2466 | const SmallVirtRegSet &FixedRegisters) { |
| 2467 | const TargetRegisterClass *CurRC = MRI->getRegClass(VirtReg.reg); |
| 2468 | |
| 2469 | for (MCRegUnitIterator Units(PhysReg, TRI); Units.isValid(); ++Units) { |
| 2470 | LiveIntervalUnion::Query &Q = Matrix->query(VirtReg, *Units); |
| 2471 | // If there is LastChanceRecoloringMaxInterference or more interferences, |
| 2472 | // chances are one would not be recolorable. |
| 2473 | if (Q.collectInterferingVRegs(LastChanceRecoloringMaxInterference) >= |
| Quentin Colombet | 567e30b | 2014-04-11 21:39:44 +0000 | [diff] [blame] | 2474 | LastChanceRecoloringMaxInterference && !ExhaustiveSearch) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2475 | LLVM_DEBUG(dbgs() << "Early abort: too many interferences.\n"); |
| Quentin Colombet | 96bd2a1 | 2014-04-04 02:05:21 +0000 | [diff] [blame] | 2476 | CutOffInfo |= CO_Interf; |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2477 | return false; |
| 2478 | } |
| 2479 | for (unsigned i = Q.interferingVRegs().size(); i; --i) { |
| 2480 | LiveInterval *Intf = Q.interferingVRegs()[i - 1]; |
| 2481 | // If Intf is done and sit on the same register class as VirtReg, |
| 2482 | // it would not be recolorable as it is in the same state as VirtReg. |
| Mikael Holmen | 07f1e2e | 2017-09-28 08:22:35 +0000 | [diff] [blame] | 2483 | // However, if VirtReg has tied defs and Intf doesn't, then |
| 2484 | // there is still a point in examining if it can be recolorable. |
| 2485 | if (((getStage(*Intf) == RS_Done && |
| 2486 | MRI->getRegClass(Intf->reg) == CurRC) && |
| 2487 | !(hasTiedDef(MRI, VirtReg.reg) && !hasTiedDef(MRI, Intf->reg))) || |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2488 | FixedRegisters.count(Intf->reg)) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2489 | LLVM_DEBUG( |
| 2490 | dbgs() << "Early abort: the interference is not recolorable.\n"); |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2491 | return false; |
| 2492 | } |
| 2493 | RecoloringCandidates.insert(Intf); |
| 2494 | } |
| 2495 | } |
| 2496 | return true; |
| 2497 | } |
| 2498 | |
| 2499 | /// tryLastChanceRecoloring - Try to assign a color to \p VirtReg by recoloring |
| 2500 | /// its interferences. |
| 2501 | /// Last chance recoloring chooses a color for \p VirtReg and recolors every |
| 2502 | /// virtual register that was using it. The recoloring process may recursively |
| 2503 | /// use the last chance recoloring. Therefore, when a virtual register has been |
| 2504 | /// assigned a color by this mechanism, it is marked as Fixed, i.e., it cannot |
| 2505 | /// be last-chance-recolored again during this recoloring "session". |
| 2506 | /// E.g., |
| 2507 | /// Let |
| 2508 | /// vA can use {R1, R2 } |
| 2509 | /// vB can use { R2, R3} |
| 2510 | /// vC can use {R1 } |
| 2511 | /// Where vA, vB, and vC cannot be split anymore (they are reloads for |
| 2512 | /// instance) and they all interfere. |
| 2513 | /// |
| 2514 | /// vA is assigned R1 |
| 2515 | /// vB is assigned R2 |
| 2516 | /// vC tries to evict vA but vA is already done. |
| 2517 | /// Regular register allocation fails. |
| 2518 | /// |
| 2519 | /// Last chance recoloring kicks in: |
| 2520 | /// vC does as if vA was evicted => vC uses R1. |
| 2521 | /// vC is marked as fixed. |
| 2522 | /// vA needs to find a color. |
| 2523 | /// None are available. |
| 2524 | /// vA cannot evict vC: vC is a fixed virtual register now. |
| 2525 | /// vA does as if vB was evicted => vA uses R2. |
| 2526 | /// vB needs to find a color. |
| 2527 | /// R3 is available. |
| 2528 | /// Recoloring => vC = R1, vA = R2, vB = R3 |
| 2529 | /// |
| Alp Toker | 70b3699 | 2014-02-25 04:21:15 +0000 | [diff] [blame] | 2530 | /// \p Order defines the preferred allocation order for \p VirtReg. |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2531 | /// \p NewRegs will contain any new virtual register that have been created |
| 2532 | /// (split, spill) during the process and that must be assigned. |
| 2533 | /// \p FixedRegisters contains all the virtual registers that cannot be |
| 2534 | /// recolored. |
| 2535 | /// \p Depth gives the current depth of the last chance recoloring. |
| 2536 | /// \return a physical register that can be used for VirtReg or ~0u if none |
| 2537 | /// exists. |
| 2538 | unsigned RAGreedy::tryLastChanceRecoloring(LiveInterval &VirtReg, |
| 2539 | AllocationOrder &Order, |
| 2540 | SmallVectorImpl<unsigned> &NewVRegs, |
| 2541 | SmallVirtRegSet &FixedRegisters, |
| 2542 | unsigned Depth) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2543 | LLVM_DEBUG(dbgs() << "Try last chance recoloring for " << VirtReg << '\n'); |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2544 | // Ranges must be Done. |
| Quentin Colombet | 0e3b5e0 | 2014-02-13 05:17:37 +0000 | [diff] [blame] | 2545 | assert((getStage(VirtReg) >= RS_Done || !VirtReg.isSpillable()) && |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2546 | "Last chance recoloring should really be last chance"); |
| 2547 | // Set the max depth to LastChanceRecoloringMaxDepth. |
| 2548 | // We may want to reconsider that if we end up with a too large search space |
| 2549 | // for target with hundreds of registers. |
| 2550 | // Indeed, in that case we may want to cut the search space earlier. |
| Quentin Colombet | 567e30b | 2014-04-11 21:39:44 +0000 | [diff] [blame] | 2551 | if (Depth >= LastChanceRecoloringMaxDepth && !ExhaustiveSearch) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2552 | LLVM_DEBUG(dbgs() << "Abort because max depth has been reached.\n"); |
| Quentin Colombet | 96bd2a1 | 2014-04-04 02:05:21 +0000 | [diff] [blame] | 2553 | CutOffInfo |= CO_Depth; |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2554 | return ~0u; |
| 2555 | } |
| 2556 | |
| 2557 | // Set of Live intervals that will need to be recolored. |
| 2558 | SmallLISet RecoloringCandidates; |
| 2559 | // Record the original mapping virtual register to physical register in case |
| 2560 | // the recoloring fails. |
| 2561 | DenseMap<unsigned, unsigned> VirtRegToPhysReg; |
| 2562 | // Mark VirtReg as fixed, i.e., it will not be recolored pass this point in |
| 2563 | // this recoloring "session". |
| 2564 | FixedRegisters.insert(VirtReg.reg); |
| Quentin Colombet | 318582f | 2016-09-16 22:00:50 +0000 | [diff] [blame] | 2565 | SmallVector<unsigned, 4> CurrentNewVRegs; |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2566 | |
| 2567 | Order.rewind(); |
| 2568 | while (unsigned PhysReg = Order.next()) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2569 | LLVM_DEBUG(dbgs() << "Try to assign: " << VirtReg << " to " |
| 2570 | << printReg(PhysReg, TRI) << '\n'); |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2571 | RecoloringCandidates.clear(); |
| 2572 | VirtRegToPhysReg.clear(); |
| Quentin Colombet | 318582f | 2016-09-16 22:00:50 +0000 | [diff] [blame] | 2573 | CurrentNewVRegs.clear(); |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2574 | |
| 2575 | // It is only possible to recolor virtual register interference. |
| 2576 | if (Matrix->checkInterference(VirtReg, PhysReg) > |
| 2577 | LiveRegMatrix::IK_VirtReg) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2578 | LLVM_DEBUG( |
| 2579 | dbgs() << "Some interferences are not with virtual registers.\n"); |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2580 | |
| 2581 | continue; |
| 2582 | } |
| 2583 | |
| 2584 | // Early give up on this PhysReg if it is obvious we cannot recolor all |
| 2585 | // the interferences. |
| 2586 | if (!mayRecolorAllInterferences(PhysReg, VirtReg, RecoloringCandidates, |
| 2587 | FixedRegisters)) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2588 | LLVM_DEBUG(dbgs() << "Some interferences cannot be recolored.\n"); |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2589 | continue; |
| 2590 | } |
| 2591 | |
| 2592 | // RecoloringCandidates contains all the virtual registers that interfer |
| 2593 | // with VirtReg on PhysReg (or one of its aliases). |
| 2594 | // Enqueue them for recoloring and perform the actual recoloring. |
| 2595 | PQueue RecoloringQueue; |
| 2596 | for (SmallLISet::iterator It = RecoloringCandidates.begin(), |
| 2597 | EndIt = RecoloringCandidates.end(); |
| 2598 | It != EndIt; ++It) { |
| 2599 | unsigned ItVirtReg = (*It)->reg; |
| 2600 | enqueue(RecoloringQueue, *It); |
| 2601 | assert(VRM->hasPhys(ItVirtReg) && |
| 2602 | "Interferences are supposed to be with allocated vairables"); |
| 2603 | |
| 2604 | // Record the current allocation. |
| 2605 | VirtRegToPhysReg[ItVirtReg] = VRM->getPhys(ItVirtReg); |
| 2606 | // unset the related struct. |
| 2607 | Matrix->unassign(**It); |
| 2608 | } |
| 2609 | |
| 2610 | // Do as if VirtReg was assigned to PhysReg so that the underlying |
| 2611 | // recoloring has the right information about the interferes and |
| 2612 | // available colors. |
| 2613 | Matrix->assign(VirtReg, PhysReg); |
| 2614 | |
| 2615 | // Save the current recoloring state. |
| 2616 | // If we cannot recolor all the interferences, we will have to start again |
| 2617 | // at this point for the next physical register. |
| 2618 | SmallVirtRegSet SaveFixedRegisters(FixedRegisters); |
| Quentin Colombet | 318582f | 2016-09-16 22:00:50 +0000 | [diff] [blame] | 2619 | if (tryRecoloringCandidates(RecoloringQueue, CurrentNewVRegs, |
| 2620 | FixedRegisters, Depth)) { |
| 2621 | // Push the queued vregs into the main queue. |
| 2622 | for (unsigned NewVReg : CurrentNewVRegs) |
| 2623 | NewVRegs.push_back(NewVReg); |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2624 | // Do not mess up with the global assignment process. |
| 2625 | // I.e., VirtReg must be unassigned. |
| 2626 | Matrix->unassign(VirtReg); |
| 2627 | return PhysReg; |
| 2628 | } |
| 2629 | |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2630 | LLVM_DEBUG(dbgs() << "Fail to assign: " << VirtReg << " to " |
| 2631 | << printReg(PhysReg, TRI) << '\n'); |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2632 | |
| 2633 | // The recoloring attempt failed, undo the changes. |
| 2634 | FixedRegisters = SaveFixedRegisters; |
| 2635 | Matrix->unassign(VirtReg); |
| 2636 | |
| Wei Mi | b5cf9e5 | 2016-11-08 18:19:36 +0000 | [diff] [blame] | 2637 | // For a newly created vreg which is also in RecoloringCandidates, |
| 2638 | // don't add it to NewVRegs because its physical register will be restored |
| 2639 | // below. Other vregs in CurrentNewVRegs are created by calling |
| 2640 | // selectOrSplit and should be added into NewVRegs. |
| Quentin Colombet | 318582f | 2016-09-16 22:00:50 +0000 | [diff] [blame] | 2641 | for (SmallVectorImpl<unsigned>::iterator Next = CurrentNewVRegs.begin(), |
| 2642 | End = CurrentNewVRegs.end(); |
| 2643 | Next != End; ++Next) { |
| Wei Mi | b5cf9e5 | 2016-11-08 18:19:36 +0000 | [diff] [blame] | 2644 | if (RecoloringCandidates.count(&LIS->getInterval(*Next))) |
| Quentin Colombet | 318582f | 2016-09-16 22:00:50 +0000 | [diff] [blame] | 2645 | continue; |
| 2646 | NewVRegs.push_back(*Next); |
| 2647 | } |
| 2648 | |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2649 | for (SmallLISet::iterator It = RecoloringCandidates.begin(), |
| 2650 | EndIt = RecoloringCandidates.end(); |
| 2651 | It != EndIt; ++It) { |
| 2652 | unsigned ItVirtReg = (*It)->reg; |
| 2653 | if (VRM->hasPhys(ItVirtReg)) |
| 2654 | Matrix->unassign(**It); |
| Matthias Braun | 953393a | 2015-07-14 17:38:17 +0000 | [diff] [blame] | 2655 | unsigned ItPhysReg = VirtRegToPhysReg[ItVirtReg]; |
| 2656 | Matrix->assign(**It, ItPhysReg); |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2657 | } |
| 2658 | } |
| 2659 | |
| 2660 | // Last chance recoloring did not worked either, give up. |
| 2661 | return ~0u; |
| 2662 | } |
| 2663 | |
| 2664 | /// tryRecoloringCandidates - Try to assign a new color to every register |
| 2665 | /// in \RecoloringQueue. |
| 2666 | /// \p NewRegs will contain any new virtual register created during the |
| 2667 | /// recoloring process. |
| 2668 | /// \p FixedRegisters[in/out] contains all the registers that have been |
| 2669 | /// recolored. |
| 2670 | /// \return true if all virtual registers in RecoloringQueue were successfully |
| 2671 | /// recolored, false otherwise. |
| 2672 | bool RAGreedy::tryRecoloringCandidates(PQueue &RecoloringQueue, |
| 2673 | SmallVectorImpl<unsigned> &NewVRegs, |
| 2674 | SmallVirtRegSet &FixedRegisters, |
| 2675 | unsigned Depth) { |
| 2676 | while (!RecoloringQueue.empty()) { |
| 2677 | LiveInterval *LI = dequeue(RecoloringQueue); |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2678 | LLVM_DEBUG(dbgs() << "Try to recolor: " << *LI << '\n'); |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2679 | unsigned PhysReg; |
| 2680 | PhysReg = selectOrSplitImpl(*LI, NewVRegs, FixedRegisters, Depth + 1); |
| Quentin Colombet | 52ffa67 | 2016-10-13 19:27:48 +0000 | [diff] [blame] | 2681 | // When splitting happens, the live-range may actually be empty. |
| 2682 | // In that case, this is okay to continue the recoloring even |
| 2683 | // if we did not find an alternative color for it. Indeed, |
| 2684 | // there will not be anything to color for LI in the end. |
| 2685 | if (PhysReg == ~0u || (!PhysReg && !LI->empty())) |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2686 | return false; |
| Quentin Colombet | 52ffa67 | 2016-10-13 19:27:48 +0000 | [diff] [blame] | 2687 | |
| 2688 | if (!PhysReg) { |
| 2689 | assert(LI->empty() && "Only empty live-range do not require a register"); |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2690 | LLVM_DEBUG(dbgs() << "Recoloring of " << *LI |
| 2691 | << " succeeded. Empty LI.\n"); |
| Quentin Colombet | 52ffa67 | 2016-10-13 19:27:48 +0000 | [diff] [blame] | 2692 | continue; |
| 2693 | } |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2694 | LLVM_DEBUG(dbgs() << "Recoloring of " << *LI |
| 2695 | << " succeeded with: " << printReg(PhysReg, TRI) << '\n'); |
| Quentin Colombet | 52ffa67 | 2016-10-13 19:27:48 +0000 | [diff] [blame] | 2696 | |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2697 | Matrix->assign(*LI, PhysReg); |
| 2698 | FixedRegisters.insert(LI->reg); |
| 2699 | } |
| 2700 | return true; |
| 2701 | } |
| Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 2702 | |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 2703 | //===----------------------------------------------------------------------===// |
| Jakob Stoklund Olesen | 0acb69d | 2010-12-22 22:01:30 +0000 | [diff] [blame] | 2704 | // Main Entry Point |
| 2705 | //===----------------------------------------------------------------------===// |
| 2706 | |
| 2707 | unsigned RAGreedy::selectOrSplit(LiveInterval &VirtReg, |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 2708 | SmallVectorImpl<unsigned> &NewVRegs) { |
| Quentin Colombet | 96bd2a1 | 2014-04-04 02:05:21 +0000 | [diff] [blame] | 2709 | CutOffInfo = CO_None; |
| Matthias Braun | f1caa28 | 2017-12-15 22:22:58 +0000 | [diff] [blame] | 2710 | LLVMContext &Ctx = MF->getFunction().getContext(); |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2711 | SmallVirtRegSet FixedRegisters; |
| Quentin Colombet | 96bd2a1 | 2014-04-04 02:05:21 +0000 | [diff] [blame] | 2712 | unsigned Reg = selectOrSplitImpl(VirtReg, NewVRegs, FixedRegisters); |
| 2713 | if (Reg == ~0U && (CutOffInfo != CO_None)) { |
| 2714 | uint8_t CutOffEncountered = CutOffInfo & (CO_Depth | CO_Interf); |
| 2715 | if (CutOffEncountered == CO_Depth) |
| Quentin Colombet | 567e30b | 2014-04-11 21:39:44 +0000 | [diff] [blame] | 2716 | Ctx.emitError("register allocation failed: maximum depth for recoloring " |
| 2717 | "reached. Use -fexhaustive-register-search to skip " |
| 2718 | "cutoffs"); |
| Quentin Colombet | 96bd2a1 | 2014-04-04 02:05:21 +0000 | [diff] [blame] | 2719 | else if (CutOffEncountered == CO_Interf) |
| 2720 | Ctx.emitError("register allocation failed: maximum interference for " |
| Quentin Colombet | 567e30b | 2014-04-11 21:39:44 +0000 | [diff] [blame] | 2721 | "recoloring reached. Use -fexhaustive-register-search " |
| 2722 | "to skip cutoffs"); |
| Quentin Colombet | 96bd2a1 | 2014-04-04 02:05:21 +0000 | [diff] [blame] | 2723 | else if (CutOffEncountered == (CO_Depth | CO_Interf)) |
| 2724 | Ctx.emitError("register allocation failed: maximum interference and " |
| Quentin Colombet | 567e30b | 2014-04-11 21:39:44 +0000 | [diff] [blame] | 2725 | "depth for recoloring reached. Use " |
| 2726 | "-fexhaustive-register-search to skip cutoffs"); |
| Quentin Colombet | 96bd2a1 | 2014-04-04 02:05:21 +0000 | [diff] [blame] | 2727 | } |
| 2728 | return Reg; |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2729 | } |
| 2730 | |
| Manman Ren | 9dee449 | 2014-03-27 21:21:57 +0000 | [diff] [blame] | 2731 | /// Using a CSR for the first time has a cost because it causes push|pop |
| 2732 | /// to be added to prologue|epilogue. Splitting a cold section of the live |
| 2733 | /// range can have lower cost than using the CSR for the first time; |
| 2734 | /// Spilling a live range in the cold path can have lower cost than using |
| 2735 | /// the CSR for the first time. Returns the physical register if we decide |
| 2736 | /// to use the CSR; otherwise return 0. |
| 2737 | unsigned RAGreedy::tryAssignCSRFirstTime(LiveInterval &VirtReg, |
| 2738 | AllocationOrder &Order, |
| 2739 | unsigned PhysReg, |
| 2740 | unsigned &CostPerUseLimit, |
| 2741 | SmallVectorImpl<unsigned> &NewVRegs) { |
| Manman Ren | 9dee449 | 2014-03-27 21:21:57 +0000 | [diff] [blame] | 2742 | if (getStage(VirtReg) == RS_Spill && VirtReg.isSpillable()) { |
| 2743 | // We choose spill over using the CSR for the first time if the spill cost |
| 2744 | // is lower than CSRCost. |
| 2745 | SA->analyze(&VirtReg); |
| 2746 | if (calcSpillCost() >= CSRCost) |
| 2747 | return PhysReg; |
| 2748 | |
| 2749 | // We are going to spill, set CostPerUseLimit to 1 to make sure that |
| 2750 | // we will not use a callee-saved register in tryEvict. |
| 2751 | CostPerUseLimit = 1; |
| 2752 | return 0; |
| 2753 | } |
| 2754 | if (getStage(VirtReg) < RS_Split) { |
| 2755 | // We choose pre-splitting over using the CSR for the first time if |
| 2756 | // the cost of splitting is lower than CSRCost. |
| 2757 | SA->analyze(&VirtReg); |
| 2758 | unsigned NumCands = 0; |
| Duncan P. N. Exon Smith | a5df813 | 2014-04-08 19:18:56 +0000 | [diff] [blame] | 2759 | BlockFrequency BestCost = CSRCost; // Don't modify CSRCost. |
| 2760 | unsigned BestCand = calculateRegionSplitCost(VirtReg, Order, BestCost, |
| 2761 | NumCands, true /*IgnoreCSR*/); |
| Manman Ren | 9dee449 | 2014-03-27 21:21:57 +0000 | [diff] [blame] | 2762 | if (BestCand == NoCand) |
| 2763 | // Use the CSR if we can't find a region split below CSRCost. |
| 2764 | return PhysReg; |
| 2765 | |
| 2766 | // Perform the actual pre-splitting. |
| 2767 | doRegionSplit(VirtReg, BestCand, false/*HasCompact*/, NewVRegs); |
| 2768 | return 0; |
| 2769 | } |
| 2770 | return PhysReg; |
| 2771 | } |
| 2772 | |
| Quentin Colombet | a799e2e | 2015-01-08 01:16:39 +0000 | [diff] [blame] | 2773 | void RAGreedy::aboutToRemoveInterval(LiveInterval &LI) { |
| 2774 | // Do not keep invalid information around. |
| 2775 | SetOfBrokenHints.remove(&LI); |
| 2776 | } |
| 2777 | |
| Duncan P. N. Exon Smith | a5df813 | 2014-04-08 19:18:56 +0000 | [diff] [blame] | 2778 | void RAGreedy::initializeCSRCost() { |
| 2779 | // We use the larger one out of the command-line option and the value report |
| 2780 | // by TRI. |
| 2781 | CSRCost = BlockFrequency( |
| 2782 | std::max((unsigned)CSRFirstTimeCost, TRI->getCSRFirstUseCost())); |
| 2783 | if (!CSRCost.getFrequency()) |
| 2784 | return; |
| 2785 | |
| 2786 | // Raw cost is relative to Entry == 2^14; scale it appropriately. |
| 2787 | uint64_t ActualEntry = MBFI->getEntryFreq(); |
| 2788 | if (!ActualEntry) { |
| 2789 | CSRCost = 0; |
| 2790 | return; |
| 2791 | } |
| 2792 | uint64_t FixedEntry = 1 << 14; |
| 2793 | if (ActualEntry < FixedEntry) |
| 2794 | CSRCost *= BranchProbability(ActualEntry, FixedEntry); |
| 2795 | else if (ActualEntry <= UINT32_MAX) |
| 2796 | // Invert the fraction and divide. |
| 2797 | CSRCost /= BranchProbability(FixedEntry, ActualEntry); |
| 2798 | else |
| 2799 | // Can't use BranchProbability in general, since it takes 32-bit numbers. |
| 2800 | CSRCost = CSRCost.getFrequency() * (ActualEntry / FixedEntry); |
| 2801 | } |
| 2802 | |
| Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 2803 | /// Collect the hint info for \p Reg. |
| Quentin Colombet | a799e2e | 2015-01-08 01:16:39 +0000 | [diff] [blame] | 2804 | /// The results are stored into \p Out. |
| 2805 | /// \p Out is not cleared before being populated. |
| 2806 | void RAGreedy::collectHintInfo(unsigned Reg, HintsInfo &Out) { |
| 2807 | for (const MachineInstr &Instr : MRI->reg_nodbg_instructions(Reg)) { |
| 2808 | if (!Instr.isFullCopy()) |
| 2809 | continue; |
| 2810 | // Look for the other end of the copy. |
| 2811 | unsigned OtherReg = Instr.getOperand(0).getReg(); |
| 2812 | if (OtherReg == Reg) { |
| 2813 | OtherReg = Instr.getOperand(1).getReg(); |
| 2814 | if (OtherReg == Reg) |
| 2815 | continue; |
| 2816 | } |
| 2817 | // Get the current assignment. |
| 2818 | unsigned OtherPhysReg = TargetRegisterInfo::isPhysicalRegister(OtherReg) |
| 2819 | ? OtherReg |
| 2820 | : VRM->getPhys(OtherReg); |
| 2821 | // Push the collected information. |
| 2822 | Out.push_back(HintInfo(MBFI->getBlockFreq(Instr.getParent()), OtherReg, |
| 2823 | OtherPhysReg)); |
| 2824 | } |
| 2825 | } |
| 2826 | |
| Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 2827 | /// Using the given \p List, compute the cost of the broken hints if |
| Quentin Colombet | a799e2e | 2015-01-08 01:16:39 +0000 | [diff] [blame] | 2828 | /// \p PhysReg was used. |
| 2829 | /// \return The cost of \p List for \p PhysReg. |
| 2830 | BlockFrequency RAGreedy::getBrokenHintFreq(const HintsInfo &List, |
| 2831 | unsigned PhysReg) { |
| 2832 | BlockFrequency Cost = 0; |
| 2833 | for (const HintInfo &Info : List) { |
| 2834 | if (Info.PhysReg != PhysReg) |
| 2835 | Cost += Info.Freq; |
| 2836 | } |
| 2837 | return Cost; |
| 2838 | } |
| 2839 | |
| Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 2840 | /// Using the register assigned to \p VirtReg, try to recolor |
| Quentin Colombet | a799e2e | 2015-01-08 01:16:39 +0000 | [diff] [blame] | 2841 | /// all the live ranges that are copy-related with \p VirtReg. |
| 2842 | /// The recoloring is then propagated to all the live-ranges that have |
| 2843 | /// been recolored and so on, until no more copies can be coalesced or |
| 2844 | /// it is not profitable. |
| 2845 | /// For a given live range, profitability is determined by the sum of the |
| 2846 | /// frequencies of the non-identity copies it would introduce with the old |
| 2847 | /// and new register. |
| 2848 | void RAGreedy::tryHintRecoloring(LiveInterval &VirtReg) { |
| 2849 | // We have a broken hint, check if it is possible to fix it by |
| 2850 | // reusing PhysReg for the copy-related live-ranges. Indeed, we evicted |
| 2851 | // some register and PhysReg may be available for the other live-ranges. |
| 2852 | SmallSet<unsigned, 4> Visited; |
| 2853 | SmallVector<unsigned, 2> RecoloringCandidates; |
| 2854 | HintsInfo Info; |
| 2855 | unsigned Reg = VirtReg.reg; |
| 2856 | unsigned PhysReg = VRM->getPhys(Reg); |
| 2857 | // Start the recoloring algorithm from the input live-interval, then |
| 2858 | // it will propagate to the ones that are copy-related with it. |
| 2859 | Visited.insert(Reg); |
| 2860 | RecoloringCandidates.push_back(Reg); |
| 2861 | |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2862 | LLVM_DEBUG(dbgs() << "Trying to reconcile hints for: " << printReg(Reg, TRI) |
| 2863 | << '(' << printReg(PhysReg, TRI) << ")\n"); |
| Quentin Colombet | a799e2e | 2015-01-08 01:16:39 +0000 | [diff] [blame] | 2864 | |
| 2865 | do { |
| 2866 | Reg = RecoloringCandidates.pop_back_val(); |
| 2867 | |
| Hiroshi Inoue | a86c920 | 2017-07-10 12:44:25 +0000 | [diff] [blame] | 2868 | // We cannot recolor physical register. |
| Quentin Colombet | a799e2e | 2015-01-08 01:16:39 +0000 | [diff] [blame] | 2869 | if (TargetRegisterInfo::isPhysicalRegister(Reg)) |
| 2870 | continue; |
| 2871 | |
| 2872 | assert(VRM->hasPhys(Reg) && "We have unallocated variable!!"); |
| 2873 | |
| 2874 | // Get the live interval mapped with this virtual register to be able |
| 2875 | // to check for the interference with the new color. |
| 2876 | LiveInterval &LI = LIS->getInterval(Reg); |
| 2877 | unsigned CurrPhys = VRM->getPhys(Reg); |
| 2878 | // Check that the new color matches the register class constraints and |
| 2879 | // that it is free for this live range. |
| 2880 | if (CurrPhys != PhysReg && (!MRI->getRegClass(Reg)->contains(PhysReg) || |
| 2881 | Matrix->checkInterference(LI, PhysReg))) |
| 2882 | continue; |
| 2883 | |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2884 | LLVM_DEBUG(dbgs() << printReg(Reg, TRI) << '(' << printReg(CurrPhys, TRI) |
| 2885 | << ") is recolorable.\n"); |
| Quentin Colombet | a799e2e | 2015-01-08 01:16:39 +0000 | [diff] [blame] | 2886 | |
| 2887 | // Gather the hint info. |
| 2888 | Info.clear(); |
| 2889 | collectHintInfo(Reg, Info); |
| 2890 | // Check if recoloring the live-range will increase the cost of the |
| 2891 | // non-identity copies. |
| 2892 | if (CurrPhys != PhysReg) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2893 | LLVM_DEBUG(dbgs() << "Checking profitability:\n"); |
| Quentin Colombet | a799e2e | 2015-01-08 01:16:39 +0000 | [diff] [blame] | 2894 | BlockFrequency OldCopiesCost = getBrokenHintFreq(Info, CurrPhys); |
| 2895 | BlockFrequency NewCopiesCost = getBrokenHintFreq(Info, PhysReg); |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2896 | LLVM_DEBUG(dbgs() << "Old Cost: " << OldCopiesCost.getFrequency() |
| 2897 | << "\nNew Cost: " << NewCopiesCost.getFrequency() |
| 2898 | << '\n'); |
| Quentin Colombet | a799e2e | 2015-01-08 01:16:39 +0000 | [diff] [blame] | 2899 | if (OldCopiesCost < NewCopiesCost) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2900 | LLVM_DEBUG(dbgs() << "=> Not profitable.\n"); |
| Quentin Colombet | a799e2e | 2015-01-08 01:16:39 +0000 | [diff] [blame] | 2901 | continue; |
| 2902 | } |
| 2903 | // At this point, the cost is either cheaper or equal. If it is |
| 2904 | // equal, we consider this is profitable because it may expose |
| 2905 | // more recoloring opportunities. |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2906 | LLVM_DEBUG(dbgs() << "=> Profitable.\n"); |
| Quentin Colombet | a799e2e | 2015-01-08 01:16:39 +0000 | [diff] [blame] | 2907 | // Recolor the live-range. |
| 2908 | Matrix->unassign(LI); |
| 2909 | Matrix->assign(LI, PhysReg); |
| 2910 | } |
| 2911 | // Push all copy-related live-ranges to keep reconciling the broken |
| 2912 | // hints. |
| 2913 | for (const HintInfo &HI : Info) { |
| 2914 | if (Visited.insert(HI.Reg).second) |
| 2915 | RecoloringCandidates.push_back(HI.Reg); |
| 2916 | } |
| 2917 | } while (!RecoloringCandidates.empty()); |
| 2918 | } |
| 2919 | |
| Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 2920 | /// Try to recolor broken hints. |
| Quentin Colombet | a799e2e | 2015-01-08 01:16:39 +0000 | [diff] [blame] | 2921 | /// Broken hints may be repaired by recoloring when an evicted variable |
| 2922 | /// freed up a register for a larger live-range. |
| 2923 | /// Consider the following example: |
| 2924 | /// BB1: |
| 2925 | /// a = |
| 2926 | /// b = |
| 2927 | /// BB2: |
| 2928 | /// ... |
| 2929 | /// = b |
| 2930 | /// = a |
| 2931 | /// Let us assume b gets split: |
| 2932 | /// BB1: |
| 2933 | /// a = |
| 2934 | /// b = |
| 2935 | /// BB2: |
| 2936 | /// c = b |
| 2937 | /// ... |
| 2938 | /// d = c |
| 2939 | /// = d |
| 2940 | /// = a |
| 2941 | /// Because of how the allocation work, b, c, and d may be assigned different |
| 2942 | /// colors. Now, if a gets evicted later: |
| 2943 | /// BB1: |
| 2944 | /// a = |
| 2945 | /// st a, SpillSlot |
| 2946 | /// b = |
| 2947 | /// BB2: |
| 2948 | /// c = b |
| 2949 | /// ... |
| 2950 | /// d = c |
| 2951 | /// = d |
| 2952 | /// e = ld SpillSlot |
| 2953 | /// = e |
| 2954 | /// This is likely that we can assign the same register for b, c, and d, |
| 2955 | /// getting rid of 2 copies. |
| 2956 | void RAGreedy::tryHintsRecoloring() { |
| 2957 | for (LiveInterval *LI : SetOfBrokenHints) { |
| 2958 | assert(TargetRegisterInfo::isVirtualRegister(LI->reg) && |
| 2959 | "Recoloring is possible only for virtual registers"); |
| 2960 | // Some dead defs may be around (e.g., because of debug uses). |
| 2961 | // Ignore those. |
| 2962 | if (!VRM->hasPhys(LI->reg)) |
| 2963 | continue; |
| 2964 | tryHintRecoloring(*LI); |
| 2965 | } |
| 2966 | } |
| 2967 | |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 2968 | unsigned RAGreedy::selectOrSplitImpl(LiveInterval &VirtReg, |
| 2969 | SmallVectorImpl<unsigned> &NewVRegs, |
| 2970 | SmallVirtRegSet &FixedRegisters, |
| 2971 | unsigned Depth) { |
| Manman Ren | 78cf02a | 2014-03-25 00:16:25 +0000 | [diff] [blame] | 2972 | unsigned CostPerUseLimit = ~0u; |
| Jakob Stoklund Olesen | 0acb69d | 2010-12-22 22:01:30 +0000 | [diff] [blame] | 2973 | // First try assigning a free register. |
| Matthias Braun | 5d1f12d | 2015-07-15 22:16:00 +0000 | [diff] [blame] | 2974 | AllocationOrder Order(VirtReg.reg, *VRM, RegClassInfo, Matrix); |
| Manman Ren | 78cf02a | 2014-03-25 00:16:25 +0000 | [diff] [blame] | 2975 | if (unsigned PhysReg = tryAssign(VirtReg, Order, NewVRegs)) { |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 2976 | // If VirtReg got an assignment, the eviction info is no longre relevant. |
| 2977 | LastEvicted.clearEvicteeInfo(VirtReg.reg); |
| Manman Ren | 9dee449 | 2014-03-27 21:21:57 +0000 | [diff] [blame] | 2978 | // When NewVRegs is not empty, we may have made decisions such as evicting |
| 2979 | // a virtual register, go with the earlier decisions and use the physical |
| 2980 | // register. |
| Matthias Braun | 953393a | 2015-07-14 17:38:17 +0000 | [diff] [blame] | 2981 | if (CSRCost.getFrequency() && isUnusedCalleeSavedReg(PhysReg) && |
| 2982 | NewVRegs.empty()) { |
| Manman Ren | 9dee449 | 2014-03-27 21:21:57 +0000 | [diff] [blame] | 2983 | unsigned CSRReg = tryAssignCSRFirstTime(VirtReg, Order, PhysReg, |
| 2984 | CostPerUseLimit, NewVRegs); |
| 2985 | if (CSRReg || !NewVRegs.empty()) |
| 2986 | // Return now if we decide to use a CSR or create new vregs due to |
| 2987 | // pre-splitting. |
| 2988 | return CSRReg; |
| Manman Ren | 78cf02a | 2014-03-25 00:16:25 +0000 | [diff] [blame] | 2989 | } else |
| 2990 | return PhysReg; |
| 2991 | } |
| Andrew Trick | ccef098 | 2010-12-09 18:15:21 +0000 | [diff] [blame] | 2992 | |
| Jakob Stoklund Olesen | 25d5745 | 2011-05-25 23:58:36 +0000 | [diff] [blame] | 2993 | LiveRangeStage Stage = getStage(VirtReg); |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2994 | LLVM_DEBUG(dbgs() << StageName[Stage] << " Cascade " |
| 2995 | << ExtraRegInfo[VirtReg.reg].Cascade << '\n'); |
| Jakob Stoklund Olesen | 25d5745 | 2011-05-25 23:58:36 +0000 | [diff] [blame] | 2996 | |
| Jakob Stoklund Olesen | e9cc8e9 | 2011-06-01 18:45:02 +0000 | [diff] [blame] | 2997 | // Try to evict a less worthy live range, but only for ranges from the primary |
| Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 2998 | // queue. The RS_Split ranges already failed to do this, and they should not |
| Jakob Stoklund Olesen | e9cc8e9 | 2011-06-01 18:45:02 +0000 | [diff] [blame] | 2999 | // get a second chance until they have been split. |
| Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 3000 | if (Stage != RS_Split) |
| Quentin Colombet | a799e2e | 2015-01-08 01:16:39 +0000 | [diff] [blame] | 3001 | if (unsigned PhysReg = |
| 3002 | tryEvict(VirtReg, Order, NewVRegs, CostPerUseLimit)) { |
| 3003 | unsigned Hint = MRI->getSimpleHint(VirtReg.reg); |
| 3004 | // If VirtReg has a hint and that hint is broken record this |
| 3005 | // virtual register as a recoloring candidate for broken hint. |
| 3006 | // Indeed, since we evicted a variable in its neighborhood it is |
| 3007 | // likely we can at least partially recolor some of the |
| 3008 | // copy-related live-ranges. |
| 3009 | if (Hint && Hint != PhysReg) |
| 3010 | SetOfBrokenHints.insert(&VirtReg); |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 3011 | // If VirtReg eviction someone, the eviction info for it as an evictee is |
| 3012 | // no longre relevant. |
| 3013 | LastEvicted.clearEvicteeInfo(VirtReg.reg); |
| Jakob Stoklund Olesen | e9cc8e9 | 2011-06-01 18:45:02 +0000 | [diff] [blame] | 3014 | return PhysReg; |
| Quentin Colombet | a799e2e | 2015-01-08 01:16:39 +0000 | [diff] [blame] | 3015 | } |
| Andrew Trick | ccef098 | 2010-12-09 18:15:21 +0000 | [diff] [blame] | 3016 | |
| Quentin Colombet | 6317686 | 2016-09-16 22:00:42 +0000 | [diff] [blame] | 3017 | assert((NewVRegs.empty() || Depth) && "Cannot append to existing NewVRegs"); |
| Jakob Stoklund Olesen | 9fb0401 | 2011-01-19 22:11:48 +0000 | [diff] [blame] | 3018 | |
| Jakob Stoklund Olesen | e68a27e | 2011-02-24 23:21:36 +0000 | [diff] [blame] | 3019 | // The first time we see a live range, don't try to split or spill. |
| 3020 | // Wait until the second time, when all smaller ranges have been allocated. |
| 3021 | // This gives a better picture of the interference to split around. |
| Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 3022 | if (Stage < RS_Split) { |
| 3023 | setStage(VirtReg, RS_Split); |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 3024 | LLVM_DEBUG(dbgs() << "wait for second round\n"); |
| Mark Lacey | f9ea885 | 2013-08-14 23:50:04 +0000 | [diff] [blame] | 3025 | NewVRegs.push_back(VirtReg.reg); |
| Jakob Stoklund Olesen | e68a27e | 2011-02-24 23:21:36 +0000 | [diff] [blame] | 3026 | return 0; |
| 3027 | } |
| 3028 | |
| Dylan McKay | c328fe5 | 2016-10-11 01:04:36 +0000 | [diff] [blame] | 3029 | if (Stage < RS_Spill) { |
| 3030 | // Try splitting VirtReg or interferences. |
| 3031 | unsigned NewVRegSizeBefore = NewVRegs.size(); |
| 3032 | unsigned PhysReg = trySplit(VirtReg, Order, NewVRegs); |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 3033 | if (PhysReg || (NewVRegs.size() - NewVRegSizeBefore)) { |
| 3034 | // If VirtReg got split, the eviction info is no longre relevant. |
| 3035 | LastEvicted.clearEvicteeInfo(VirtReg.reg); |
| Dylan McKay | c328fe5 | 2016-10-11 01:04:36 +0000 | [diff] [blame] | 3036 | return PhysReg; |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 3037 | } |
| Dylan McKay | c328fe5 | 2016-10-11 01:04:36 +0000 | [diff] [blame] | 3038 | } |
| 3039 | |
| Jakob Stoklund Olesen | a5c8899 | 2011-05-06 21:58:30 +0000 | [diff] [blame] | 3040 | // If we couldn't allocate a register from spilling, there is probably some |
| Hiroshi Inoue | ff8453d | 2017-06-29 18:03:28 +0000 | [diff] [blame] | 3041 | // invalid inline assembly. The base class will report it. |
| Jakob Stoklund Olesen | 3ef8cf1 | 2011-07-25 15:25:41 +0000 | [diff] [blame] | 3042 | if (Stage >= RS_Done || !VirtReg.isSpillable()) |
| Quentin Colombet | 8776971 | 2014-02-05 22:13:59 +0000 | [diff] [blame] | 3043 | return tryLastChanceRecoloring(VirtReg, Order, NewVRegs, FixedRegisters, |
| 3044 | Depth); |
| Jakob Stoklund Olesen | 5f9f081 | 2011-03-01 21:10:07 +0000 | [diff] [blame] | 3045 | |
| Jakob Stoklund Olesen | 0acb69d | 2010-12-22 22:01:30 +0000 | [diff] [blame] | 3046 | // Finally spill VirtReg itself. |
| Quentin Colombet | 1192294 | 2015-07-17 23:04:06 +0000 | [diff] [blame] | 3047 | if (EnableDeferredSpilling && getStage(VirtReg) < RS_Memory) { |
| 3048 | // TODO: This is experimental and in particular, we do not model |
| 3049 | // the live range splitting done by spilling correctly. |
| 3050 | // We would need a deep integration with the spiller to do the |
| 3051 | // right thing here. Anyway, that is still good for early testing. |
| 3052 | setStage(VirtReg, RS_Memory); |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 3053 | LLVM_DEBUG(dbgs() << "Do as if this register is in memory\n"); |
| Quentin Colombet | 1192294 | 2015-07-17 23:04:06 +0000 | [diff] [blame] | 3054 | NewVRegs.push_back(VirtReg.reg); |
| 3055 | } else { |
| Matthias Braun | 9f15a79 | 2016-11-18 19:43:18 +0000 | [diff] [blame] | 3056 | NamedRegionTimer T("spill", "Spiller", TimerGroupName, |
| 3057 | TimerGroupDescription, TimePassesIsEnabled); |
| Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 3058 | LiveRangeEdit LRE(&VirtReg, NewVRegs, *MF, *LIS, VRM, this, &DeadRemats); |
| Quentin Colombet | 1192294 | 2015-07-17 23:04:06 +0000 | [diff] [blame] | 3059 | spiller().spill(LRE); |
| 3060 | setStage(NewVRegs.begin(), NewVRegs.end(), RS_Done); |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 3061 | |
| Quentin Colombet | 1192294 | 2015-07-17 23:04:06 +0000 | [diff] [blame] | 3062 | if (VerifyEnabled) |
| 3063 | MF->verify(this, "After spilling"); |
| 3064 | } |
| Jakob Stoklund Olesen | 557a82c | 2011-03-16 22:56:08 +0000 | [diff] [blame] | 3065 | |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 3066 | // The live virtual register requesting allocation was spilled, so tell |
| 3067 | // the caller not to allocate anything during this round. |
| 3068 | return 0; |
| 3069 | } |
| 3070 | |
| Adam Nemet | a964066 | 2017-01-25 23:20:33 +0000 | [diff] [blame] | 3071 | void RAGreedy::reportNumberOfSplillsReloads(MachineLoop *L, unsigned &Reloads, |
| 3072 | unsigned &FoldedReloads, |
| 3073 | unsigned &Spills, |
| 3074 | unsigned &FoldedSpills) { |
| 3075 | Reloads = 0; |
| 3076 | FoldedReloads = 0; |
| 3077 | Spills = 0; |
| 3078 | FoldedSpills = 0; |
| 3079 | |
| 3080 | // Sum up the spill and reloads in subloops. |
| 3081 | for (MachineLoop *SubLoop : *L) { |
| 3082 | unsigned SubReloads; |
| 3083 | unsigned SubFoldedReloads; |
| 3084 | unsigned SubSpills; |
| 3085 | unsigned SubFoldedSpills; |
| 3086 | |
| 3087 | reportNumberOfSplillsReloads(SubLoop, SubReloads, SubFoldedReloads, |
| 3088 | SubSpills, SubFoldedSpills); |
| 3089 | Reloads += SubReloads; |
| 3090 | FoldedReloads += SubFoldedReloads; |
| 3091 | Spills += SubSpills; |
| 3092 | FoldedSpills += SubFoldedSpills; |
| 3093 | } |
| 3094 | |
| 3095 | const MachineFrameInfo &MFI = MF->getFrameInfo(); |
| 3096 | const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo(); |
| 3097 | int FI; |
| 3098 | |
| 3099 | for (MachineBasicBlock *MBB : L->getBlocks()) |
| 3100 | // Handle blocks that were not included in subloops. |
| 3101 | if (Loops->getLoopFor(MBB) == L) |
| 3102 | for (MachineInstr &MI : *MBB) { |
| 3103 | const MachineMemOperand *MMO; |
| 3104 | |
| 3105 | if (TII->isLoadFromStackSlot(MI, FI) && MFI.isSpillSlotObjectIndex(FI)) |
| 3106 | ++Reloads; |
| 3107 | else if (TII->hasLoadFromStackSlot(MI, MMO, FI) && |
| 3108 | MFI.isSpillSlotObjectIndex(FI)) |
| 3109 | ++FoldedReloads; |
| 3110 | else if (TII->isStoreToStackSlot(MI, FI) && |
| 3111 | MFI.isSpillSlotObjectIndex(FI)) |
| 3112 | ++Spills; |
| 3113 | else if (TII->hasStoreToStackSlot(MI, MMO, FI) && |
| 3114 | MFI.isSpillSlotObjectIndex(FI)) |
| 3115 | ++FoldedSpills; |
| 3116 | } |
| 3117 | |
| 3118 | if (Reloads || FoldedReloads || Spills || FoldedSpills) { |
| 3119 | using namespace ore; |
| Eugene Zelenko | fb69e66 | 2017-06-06 22:22:41 +0000 | [diff] [blame] | 3120 | |
| Vivek Pandya | 9590658 | 2017-10-11 17:12:59 +0000 | [diff] [blame] | 3121 | ORE->emit([&]() { |
| 3122 | MachineOptimizationRemarkMissed R(DEBUG_TYPE, "LoopSpillReload", |
| 3123 | L->getStartLoc(), L->getHeader()); |
| 3124 | if (Spills) |
| 3125 | R << NV("NumSpills", Spills) << " spills "; |
| 3126 | if (FoldedSpills) |
| 3127 | R << NV("NumFoldedSpills", FoldedSpills) << " folded spills "; |
| 3128 | if (Reloads) |
| 3129 | R << NV("NumReloads", Reloads) << " reloads "; |
| 3130 | if (FoldedReloads) |
| 3131 | R << NV("NumFoldedReloads", FoldedReloads) << " folded reloads "; |
| 3132 | R << "generated in loop"; |
| 3133 | return R; |
| 3134 | }); |
| Adam Nemet | a964066 | 2017-01-25 23:20:33 +0000 | [diff] [blame] | 3135 | } |
| 3136 | } |
| 3137 | |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 3138 | bool RAGreedy::runOnMachineFunction(MachineFunction &mf) { |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 3139 | LLVM_DEBUG(dbgs() << "********** GREEDY REGISTER ALLOCATION **********\n" |
| 3140 | << "********** Function: " << mf.getName() << '\n'); |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 3141 | |
| 3142 | MF = &mf; |
| Eric Christopher | 6062180 | 2014-10-14 07:22:00 +0000 | [diff] [blame] | 3143 | TRI = MF->getSubtarget().getRegisterInfo(); |
| 3144 | TII = MF->getSubtarget().getInstrInfo(); |
| Quentin Colombet | 1fb3362a | 2014-01-02 22:47:22 +0000 | [diff] [blame] | 3145 | RCI.runOnMachineFunction(mf); |
| Quentin Colombet | 5caa6a2 | 2014-07-02 18:32:04 +0000 | [diff] [blame] | 3146 | |
| 3147 | EnableLocalReassign = EnableLocalReassignment || |
| Eric Christopher | 6062180 | 2014-10-14 07:22:00 +0000 | [diff] [blame] | 3148 | MF->getSubtarget().enableRALocalReassignment( |
| 3149 | MF->getTarget().getOptLevel()); |
| Quentin Colombet | 5caa6a2 | 2014-07-02 18:32:04 +0000 | [diff] [blame] | 3150 | |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 3151 | EnableAdvancedRASplitCost = ConsiderLocalIntervalCost || |
| 3152 | MF->getSubtarget().enableAdvancedRASplitCost(); |
| 3153 | |
| Jakob Stoklund Olesen | 2e98ee3 | 2010-12-17 23:16:35 +0000 | [diff] [blame] | 3154 | if (VerifyEnabled) |
| Jakob Stoklund Olesen | bf4550e | 2010-12-18 00:06:56 +0000 | [diff] [blame] | 3155 | MF->verify(this, "Before greedy register allocator"); |
| Jakob Stoklund Olesen | 2e98ee3 | 2010-12-17 23:16:35 +0000 | [diff] [blame] | 3156 | |
| Jakob Stoklund Olesen | 2d2dec9 | 2012-06-20 22:52:29 +0000 | [diff] [blame] | 3157 | RegAllocBase::init(getAnalysis<VirtRegMap>(), |
| 3158 | getAnalysis<LiveIntervals>(), |
| 3159 | getAnalysis<LiveRegMatrix>()); |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 3160 | Indexes = &getAnalysis<SlotIndexes>(); |
| Benjamin Kramer | e2a1d89 | 2013-06-17 19:00:36 +0000 | [diff] [blame] | 3161 | MBFI = &getAnalysis<MachineBlockFrequencyInfo>(); |
| Jakob Stoklund Olesen | 1740e00 | 2010-12-17 23:16:32 +0000 | [diff] [blame] | 3162 | DomTree = &getAnalysis<MachineDominatorTree>(); |
| Adam Nemet | a964066 | 2017-01-25 23:20:33 +0000 | [diff] [blame] | 3163 | ORE = &getAnalysis<MachineOptimizationRemarkEmitterPass>().getORE(); |
| Jakob Stoklund Olesen | adecb5e | 2010-12-10 22:54:44 +0000 | [diff] [blame] | 3164 | SpillerInstance.reset(createInlineSpiller(*this, *MF, *VRM)); |
| Jakob Stoklund Olesen | e7601e9 | 2010-12-15 23:46:13 +0000 | [diff] [blame] | 3165 | Loops = &getAnalysis<MachineLoopInfo>(); |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 3166 | Bundles = &getAnalysis<EdgeBundles>(); |
| 3167 | SpillPlacer = &getAnalysis<SpillPlacement>(); |
| Jakob Stoklund Olesen | f8da028 | 2011-05-06 18:00:02 +0000 | [diff] [blame] | 3168 | DebugVars = &getAnalysis<LiveDebugVariables>(); |
| Wei Mi | c022370 | 2016-07-08 21:08:09 +0000 | [diff] [blame] | 3169 | AA = &getAnalysis<AAResultsWrapperPass>().getAAResults(); |
| Jakob Stoklund Olesen | 267f6c1 | 2011-01-18 21:13:27 +0000 | [diff] [blame] | 3170 | |
| Duncan P. N. Exon Smith | a5df813 | 2014-04-08 19:18:56 +0000 | [diff] [blame] | 3171 | initializeCSRCost(); |
| 3172 | |
| Robert Lougher | 11a44b7 | 2015-08-10 11:59:44 +0000 | [diff] [blame] | 3173 | calculateSpillWeightsAndHints(*LIS, mf, VRM, *Loops, *MBFI); |
| Arnaud A. de Grandmaison | 760c1e0 | 2013-11-10 17:46:31 +0000 | [diff] [blame] | 3174 | |
| Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 3175 | LLVM_DEBUG(LIS->dump()); |
| Andrew Trick | 9706496 | 2013-07-25 07:26:26 +0000 | [diff] [blame] | 3176 | |
| Jakob Stoklund Olesen | f1a60a6 | 2011-02-19 00:53:42 +0000 | [diff] [blame] | 3177 | SA.reset(new SplitAnalysis(*VRM, *LIS, *Loops)); |
| Wei Mi | c022370 | 2016-07-08 21:08:09 +0000 | [diff] [blame] | 3178 | SE.reset(new SplitEditor(*SA, *AA, *LIS, *VRM, *DomTree, *MBFI)); |
| Jakob Stoklund Olesen | 30a8563 | 2011-07-02 01:37:09 +0000 | [diff] [blame] | 3179 | ExtraRegInfo.clear(); |
| 3180 | ExtraRegInfo.resize(MRI->getNumVirtRegs()); |
| 3181 | NextCascade = 1; |
| Jakob Stoklund Olesen | 96eebf0 | 2012-06-20 22:52:26 +0000 | [diff] [blame] | 3182 | IntfCache.init(MF, Matrix->getLiveUnions(), Indexes, LIS, TRI); |
| Jakob Stoklund Olesen | dab4b9a | 2011-07-26 23:41:46 +0000 | [diff] [blame] | 3183 | GlobalCand.resize(32); // This will grow as needed. |
| Quentin Colombet | a799e2e | 2015-01-08 01:16:39 +0000 | [diff] [blame] | 3184 | SetOfBrokenHints.clear(); |
| Marina Yatsina | f9371d8 | 2017-10-22 17:59:38 +0000 | [diff] [blame] | 3185 | LastEvicted.clear(); |
| Jakob Stoklund Olesen | e7601e9 | 2010-12-15 23:46:13 +0000 | [diff] [blame] | 3186 | |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 3187 | allocatePhysRegs(); |
| Quentin Colombet | a799e2e | 2015-01-08 01:16:39 +0000 | [diff] [blame] | 3188 | tryHintsRecoloring(); |
| Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 3189 | postOptimization(); |
| Adam Nemet | a964066 | 2017-01-25 23:20:33 +0000 | [diff] [blame] | 3190 | reportNumberOfSplillsReloads(); |
| Wei Mi | 9a16d65 | 2016-04-13 03:08:27 +0000 | [diff] [blame] | 3191 | |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 3192 | releaseMemory(); |
| Jakob Stoklund Olesen | b8812a1 | 2010-12-08 03:26:16 +0000 | [diff] [blame] | 3193 | return true; |
| 3194 | } |