Eugene Zelenko | 79ea5b5 | 2017-09-21 23:20:16 +0000 | [diff] [blame] | 1 | //===- SpillPlacement.cpp - Optimal Spill Code Placement ------------------===// |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +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 implements the spill code placement analysis. |
| 11 | // |
| 12 | // Each edge bundle corresponds to a node in a Hopfield network. Constraints on |
| 13 | // basic blocks are weighted by the block frequency and added to become the node |
| 14 | // bias. |
| 15 | // |
| 16 | // Transparent basic blocks have the variable live through, but don't care if it |
| 17 | // is spilled or in a register. These blocks become connections in the Hopfield |
| 18 | // network, again weighted by block frequency. |
| 19 | // |
| 20 | // The Hopfield network minimizes (possibly locally) its energy function: |
| 21 | // |
| 22 | // E = -sum_n V_n * ( B_n + sum_{n, m linked by b} V_m * F_b ) |
| 23 | // |
| 24 | // The energy function represents the expected spill code execution frequency, |
| 25 | // or the cost of spilling. This is a Lyapunov function which never increases |
| 26 | // when a node is updated. It is guaranteed to converge to a local minimum. |
| 27 | // |
| 28 | //===----------------------------------------------------------------------===// |
| 29 | |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 30 | #include "SpillPlacement.h" |
Eugene Zelenko | 79ea5b5 | 2017-09-21 23:20:16 +0000 | [diff] [blame] | 31 | #include "llvm/ADT/ArrayRef.h" |
Jakub Staszak | f31034d | 2013-03-18 23:45:45 +0000 | [diff] [blame] | 32 | #include "llvm/ADT/BitVector.h" |
Eugene Zelenko | 79ea5b5 | 2017-09-21 23:20:16 +0000 | [diff] [blame] | 33 | #include "llvm/ADT/SmallVector.h" |
| 34 | #include "llvm/ADT/SparseSet.h" |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 35 | #include "llvm/CodeGen/EdgeBundles.h" |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 36 | #include "llvm/CodeGen/MachineBasicBlock.h" |
Benjamin Kramer | 4eed756 | 2013-06-17 19:00:36 +0000 | [diff] [blame] | 37 | #include "llvm/CodeGen/MachineBlockFrequencyInfo.h" |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 38 | #include "llvm/CodeGen/MachineFunction.h" |
| 39 | #include "llvm/CodeGen/MachineLoopInfo.h" |
| 40 | #include "llvm/CodeGen/Passes.h" |
Eugene Zelenko | 79ea5b5 | 2017-09-21 23:20:16 +0000 | [diff] [blame] | 41 | #include "llvm/Pass.h" |
| 42 | #include "llvm/Support/BlockFrequency.h" |
| 43 | #include <algorithm> |
| 44 | #include <cassert> |
| 45 | #include <cstdint> |
| 46 | #include <utility> |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 47 | |
| 48 | using namespace llvm; |
| 49 | |
Matthias Braun | 94c4904 | 2017-05-25 21:26:32 +0000 | [diff] [blame] | 50 | #define DEBUG_TYPE "spill-code-placement" |
Chandler Carruth | 8677f2f | 2014-04-22 02:02:50 +0000 | [diff] [blame] | 51 | |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 52 | char SpillPlacement::ID = 0; |
Eugene Zelenko | 79ea5b5 | 2017-09-21 23:20:16 +0000 | [diff] [blame] | 53 | |
| 54 | char &llvm::SpillPlacementID = SpillPlacement::ID; |
| 55 | |
Matthias Braun | 94c4904 | 2017-05-25 21:26:32 +0000 | [diff] [blame] | 56 | INITIALIZE_PASS_BEGIN(SpillPlacement, DEBUG_TYPE, |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 57 | "Spill Code Placement Analysis", true, true) |
| 58 | INITIALIZE_PASS_DEPENDENCY(EdgeBundles) |
| 59 | INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo) |
Matthias Braun | 94c4904 | 2017-05-25 21:26:32 +0000 | [diff] [blame] | 60 | INITIALIZE_PASS_END(SpillPlacement, DEBUG_TYPE, |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 61 | "Spill Code Placement Analysis", true, true) |
| 62 | |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 63 | void SpillPlacement::getAnalysisUsage(AnalysisUsage &AU) const { |
| 64 | AU.setPreservesAll(); |
Benjamin Kramer | 4eed756 | 2013-06-17 19:00:36 +0000 | [diff] [blame] | 65 | AU.addRequired<MachineBlockFrequencyInfo>(); |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 66 | AU.addRequiredTransitive<EdgeBundles>(); |
| 67 | AU.addRequiredTransitive<MachineLoopInfo>(); |
| 68 | MachineFunctionPass::getAnalysisUsage(AU); |
| 69 | } |
| 70 | |
| 71 | /// Node - Each edge bundle corresponds to a Hopfield node. |
| 72 | /// |
| 73 | /// The node contains precomputed frequency data that only depends on the CFG, |
| 74 | /// but Bias and Links are computed each time placeSpills is called. |
| 75 | /// |
| 76 | /// The node Value is positive when the variable should be in a register. The |
| 77 | /// value can change when linked nodes change, but convergence is very fast |
| 78 | /// because all weights are positive. |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 79 | struct SpillPlacement::Node { |
Jakob Stoklund Olesen | 6d9fe79 | 2013-07-16 18:26:15 +0000 | [diff] [blame] | 80 | /// BiasN - Sum of blocks that prefer a spill. |
| 81 | BlockFrequency BiasN; |
Eugene Zelenko | 79ea5b5 | 2017-09-21 23:20:16 +0000 | [diff] [blame] | 82 | |
Jakob Stoklund Olesen | 6d9fe79 | 2013-07-16 18:26:15 +0000 | [diff] [blame] | 83 | /// BiasP - Sum of blocks that prefer a register. |
| 84 | BlockFrequency BiasP; |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 85 | |
| 86 | /// Value - Output value of this node computed from the Bias and links. |
Jakob Stoklund Olesen | 6d9fe79 | 2013-07-16 18:26:15 +0000 | [diff] [blame] | 87 | /// This is always on of the values {-1, 0, 1}. A positive number means the |
| 88 | /// variable should go in a register through this bundle. |
| 89 | int Value; |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 90 | |
Eugene Zelenko | 79ea5b5 | 2017-09-21 23:20:16 +0000 | [diff] [blame] | 91 | using LinkVector = SmallVector<std::pair<BlockFrequency, unsigned>, 4>; |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 92 | |
| 93 | /// Links - (Weight, BundleNo) for all transparent blocks connecting to other |
Jakob Stoklund Olesen | 6d9fe79 | 2013-07-16 18:26:15 +0000 | [diff] [blame] | 94 | /// bundles. The weights are all positive block frequencies. |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 95 | LinkVector Links; |
| 96 | |
Jakob Stoklund Olesen | 6d9fe79 | 2013-07-16 18:26:15 +0000 | [diff] [blame] | 97 | /// SumLinkWeights - Cached sum of the weights of all links + ThresHold. |
| 98 | BlockFrequency SumLinkWeights; |
| 99 | |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 100 | /// preferReg - Return true when this node prefers to be in a register. |
| 101 | bool preferReg() const { |
| 102 | // Undecided nodes (Value==0) go on the stack. |
| 103 | return Value > 0; |
| 104 | } |
| 105 | |
| 106 | /// mustSpill - Return True if this node is so biased that it must spill. |
| 107 | bool mustSpill() const { |
Jakob Stoklund Olesen | 6d9fe79 | 2013-07-16 18:26:15 +0000 | [diff] [blame] | 108 | // We must spill if Bias < -sum(weights) or the MustSpill flag was set. |
| 109 | // BiasN is saturated when MustSpill is set, make sure this still returns |
| 110 | // true when the RHS saturates. Note that SumLinkWeights includes Threshold. |
| 111 | return BiasN >= BiasP + SumLinkWeights; |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | /// clear - Reset per-query data, but preserve frequencies that only depend on |
Eugene Zelenko | 79ea5b5 | 2017-09-21 23:20:16 +0000 | [diff] [blame] | 115 | /// the CFG. |
Chandler Carruth | bbb28e7 | 2014-10-02 22:23:14 +0000 | [diff] [blame] | 116 | void clear(const BlockFrequency &Threshold) { |
Jakob Stoklund Olesen | 6d9fe79 | 2013-07-16 18:26:15 +0000 | [diff] [blame] | 117 | BiasN = BiasP = Value = 0; |
Chandler Carruth | bbb28e7 | 2014-10-02 22:23:14 +0000 | [diff] [blame] | 118 | SumLinkWeights = Threshold; |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 119 | Links.clear(); |
| 120 | } |
| 121 | |
| 122 | /// addLink - Add a link to bundle b with weight w. |
Jakob Stoklund Olesen | 6d9fe79 | 2013-07-16 18:26:15 +0000 | [diff] [blame] | 123 | void addLink(unsigned b, BlockFrequency w) { |
| 124 | // Update cached sum. |
| 125 | SumLinkWeights += w; |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 126 | |
| 127 | // There can be multiple links to the same bundle, add them up. |
| 128 | for (LinkVector::iterator I = Links.begin(), E = Links.end(); I != E; ++I) |
| 129 | if (I->second == b) { |
| 130 | I->first += w; |
| 131 | return; |
| 132 | } |
| 133 | // This must be the first link to b. |
| 134 | Links.push_back(std::make_pair(w, b)); |
| 135 | } |
| 136 | |
Jakob Stoklund Olesen | 6d9fe79 | 2013-07-16 18:26:15 +0000 | [diff] [blame] | 137 | /// addBias - Bias this node. |
| 138 | void addBias(BlockFrequency freq, BorderConstraint direction) { |
| 139 | switch (direction) { |
| 140 | default: |
| 141 | break; |
| 142 | case PrefReg: |
| 143 | BiasP += freq; |
| 144 | break; |
| 145 | case PrefSpill: |
| 146 | BiasN += freq; |
| 147 | break; |
| 148 | case MustSpill: |
| 149 | BiasN = BlockFrequency::getMaxFrequency(); |
| 150 | break; |
| 151 | } |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | /// update - Recompute Value from Bias and Links. Return true when node |
| 155 | /// preference changes. |
Chandler Carruth | bbb28e7 | 2014-10-02 22:23:14 +0000 | [diff] [blame] | 156 | bool update(const Node nodes[], const BlockFrequency &Threshold) { |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 157 | // Compute the weighted sum of inputs. |
Jakob Stoklund Olesen | 6d9fe79 | 2013-07-16 18:26:15 +0000 | [diff] [blame] | 158 | BlockFrequency SumN = BiasN; |
| 159 | BlockFrequency SumP = BiasP; |
| 160 | for (LinkVector::iterator I = Links.begin(), E = Links.end(); I != E; ++I) { |
| 161 | if (nodes[I->second].Value == -1) |
| 162 | SumN += I->first; |
| 163 | else if (nodes[I->second].Value == 1) |
| 164 | SumP += I->first; |
| 165 | } |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 166 | |
Jakob Stoklund Olesen | 6d9fe79 | 2013-07-16 18:26:15 +0000 | [diff] [blame] | 167 | // Each weighted sum is going to be less than the total frequency of the |
| 168 | // bundle. Ideally, we should simply set Value = sign(SumP - SumN), but we |
| 169 | // will add a dead zone around 0 for two reasons: |
| 170 | // |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 171 | // 1. It avoids arbitrary bias when all links are 0 as is possible during |
| 172 | // initial iterations. |
| 173 | // 2. It helps tame rounding errors when the links nominally sum to 0. |
Jakob Stoklund Olesen | 6d9fe79 | 2013-07-16 18:26:15 +0000 | [diff] [blame] | 174 | // |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 175 | bool Before = preferReg(); |
Chandler Carruth | bbb28e7 | 2014-10-02 22:23:14 +0000 | [diff] [blame] | 176 | if (SumN >= SumP + Threshold) |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 177 | Value = -1; |
Chandler Carruth | bbb28e7 | 2014-10-02 22:23:14 +0000 | [diff] [blame] | 178 | else if (SumP >= SumN + Threshold) |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 179 | Value = 1; |
| 180 | else |
| 181 | Value = 0; |
| 182 | return Before != preferReg(); |
| 183 | } |
Quentin Colombet | a499216 | 2016-05-19 22:40:37 +0000 | [diff] [blame] | 184 | |
| 185 | void getDissentingNeighbors(SparseSet<unsigned> &List, |
| 186 | const Node nodes[]) const { |
| 187 | for (const auto &Elt : Links) { |
| 188 | unsigned n = Elt.second; |
| 189 | // Neighbors that already have the same value are not going to |
| 190 | // change because of this node changing. |
| 191 | if (Value != nodes[n].Value) |
| 192 | List.insert(n); |
| 193 | } |
| 194 | } |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 195 | }; |
| 196 | |
| 197 | bool SpillPlacement::runOnMachineFunction(MachineFunction &mf) { |
| 198 | MF = &mf; |
| 199 | bundles = &getAnalysis<EdgeBundles>(); |
| 200 | loops = &getAnalysis<MachineLoopInfo>(); |
| 201 | |
| 202 | assert(!nodes && "Leaking node array"); |
| 203 | nodes = new Node[bundles->getNumBundles()]; |
Quentin Colombet | a499216 | 2016-05-19 22:40:37 +0000 | [diff] [blame] | 204 | TodoList.clear(); |
| 205 | TodoList.setUniverse(bundles->getNumBundles()); |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 206 | |
| 207 | // Compute total ingoing and outgoing block frequencies for all bundles. |
Jakob Stoklund Olesen | 6d9fe79 | 2013-07-16 18:26:15 +0000 | [diff] [blame] | 208 | BlockFrequencies.resize(mf.getNumBlockIDs()); |
Michael Gottesman | 1a938c2 | 2013-12-14 00:25:47 +0000 | [diff] [blame] | 209 | MBFI = &getAnalysis<MachineBlockFrequencyInfo>(); |
Duncan P. N. Exon Smith | 861e4db | 2014-04-08 19:18:56 +0000 | [diff] [blame] | 210 | setThreshold(MBFI->getEntryFreq()); |
Duncan P. N. Exon Smith | ac4d7b6 | 2015-10-09 22:56:24 +0000 | [diff] [blame] | 211 | for (auto &I : mf) { |
| 212 | unsigned Num = I.getNumber(); |
| 213 | BlockFrequencies[Num] = MBFI->getBlockFreq(&I); |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 214 | } |
| 215 | |
| 216 | // We never change the function. |
| 217 | return false; |
| 218 | } |
| 219 | |
| 220 | void SpillPlacement::releaseMemory() { |
| 221 | delete[] nodes; |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 222 | nodes = nullptr; |
Quentin Colombet | a499216 | 2016-05-19 22:40:37 +0000 | [diff] [blame] | 223 | TodoList.clear(); |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | /// activate - mark node n as active if it wasn't already. |
| 227 | void SpillPlacement::activate(unsigned n) { |
Quentin Colombet | a499216 | 2016-05-19 22:40:37 +0000 | [diff] [blame] | 228 | TodoList.insert(n); |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 229 | if (ActiveNodes->test(n)) |
| 230 | return; |
| 231 | ActiveNodes->set(n); |
Chandler Carruth | bbb28e7 | 2014-10-02 22:23:14 +0000 | [diff] [blame] | 232 | nodes[n].clear(Threshold); |
Jakob Stoklund Olesen | 1dc12aa | 2012-05-21 03:11:23 +0000 | [diff] [blame] | 233 | |
| 234 | // Very large bundles usually come from big switches, indirect branches, |
| 235 | // landing pads, or loops with many 'continue' statements. It is difficult to |
| 236 | // allocate registers when so many different blocks are involved. |
| 237 | // |
Jakob Stoklund Olesen | 6d9fe79 | 2013-07-16 18:26:15 +0000 | [diff] [blame] | 238 | // Give a small negative bias to large bundles such that a substantial |
| 239 | // fraction of the connected blocks need to be interested before we consider |
| 240 | // expanding the region through the bundle. This helps compile time by |
| 241 | // limiting the number of blocks visited and the number of links in the |
| 242 | // Hopfield network. |
| 243 | if (bundles->getBlocks(n).size() > 100) { |
| 244 | nodes[n].BiasP = 0; |
Michael Gottesman | 523823b | 2013-12-14 02:37:38 +0000 | [diff] [blame] | 245 | nodes[n].BiasN = (MBFI->getEntryFreq() / 16); |
Jakob Stoklund Olesen | 6d9fe79 | 2013-07-16 18:26:15 +0000 | [diff] [blame] | 246 | } |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 247 | } |
| 248 | |
Adrian Prantl | 26b584c | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 249 | /// Set the threshold for a given entry frequency. |
Chandler Carruth | bbb28e7 | 2014-10-02 22:23:14 +0000 | [diff] [blame] | 250 | /// |
| 251 | /// Set the threshold relative to \c Entry. Since the threshold is used as a |
| 252 | /// bound on the open interval (-Threshold;Threshold), 1 is the minimum |
| 253 | /// threshold. |
| 254 | void SpillPlacement::setThreshold(const BlockFrequency &Entry) { |
| 255 | // Apparently 2 is a good threshold when Entry==2^14, but we need to scale |
| 256 | // it. Divide by 2^13, rounding as appropriate. |
| 257 | uint64_t Freq = Entry.getFrequency(); |
| 258 | uint64_t Scaled = (Freq >> 13) + bool(Freq & (1 << 12)); |
| 259 | Threshold = std::max(UINT64_C(1), Scaled); |
| 260 | } |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 261 | |
Jakob Stoklund Olesen | 9efa2a2 | 2011-04-06 19:13:57 +0000 | [diff] [blame] | 262 | /// addConstraints - Compute node biases and weights from a set of constraints. |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 263 | /// Set a bit in NodeMask for each active node. |
Jakob Stoklund Olesen | 9efa2a2 | 2011-04-06 19:13:57 +0000 | [diff] [blame] | 264 | void SpillPlacement::addConstraints(ArrayRef<BlockConstraint> LiveBlocks) { |
| 265 | for (ArrayRef<BlockConstraint>::iterator I = LiveBlocks.begin(), |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 266 | E = LiveBlocks.end(); I != E; ++I) { |
Jakob Stoklund Olesen | 6d9fe79 | 2013-07-16 18:26:15 +0000 | [diff] [blame] | 267 | BlockFrequency Freq = BlockFrequencies[I->Number]; |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 268 | |
| 269 | // Live-in to block? |
| 270 | if (I->Entry != DontCare) { |
Eugene Zelenko | 79ea5b5 | 2017-09-21 23:20:16 +0000 | [diff] [blame] | 271 | unsigned ib = bundles->getBundle(I->Number, false); |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 272 | activate(ib); |
Jakob Stoklund Olesen | 6d9fe79 | 2013-07-16 18:26:15 +0000 | [diff] [blame] | 273 | nodes[ib].addBias(Freq, I->Entry); |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | // Live-out from block? |
| 277 | if (I->Exit != DontCare) { |
Eugene Zelenko | 79ea5b5 | 2017-09-21 23:20:16 +0000 | [diff] [blame] | 278 | unsigned ob = bundles->getBundle(I->Number, true); |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 279 | activate(ob); |
Jakob Stoklund Olesen | 6d9fe79 | 2013-07-16 18:26:15 +0000 | [diff] [blame] | 280 | nodes[ob].addBias(Freq, I->Exit); |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 281 | } |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 282 | } |
| 283 | } |
| 284 | |
Jakob Stoklund Olesen | e60f103 | 2011-07-23 03:10:19 +0000 | [diff] [blame] | 285 | /// addPrefSpill - Same as addConstraints(PrefSpill) |
Jakob Stoklund Olesen | b87f91b | 2011-08-03 23:09:38 +0000 | [diff] [blame] | 286 | void SpillPlacement::addPrefSpill(ArrayRef<unsigned> Blocks, bool Strong) { |
Jakob Stoklund Olesen | e60f103 | 2011-07-23 03:10:19 +0000 | [diff] [blame] | 287 | for (ArrayRef<unsigned>::iterator I = Blocks.begin(), E = Blocks.end(); |
| 288 | I != E; ++I) { |
Jakob Stoklund Olesen | 6d9fe79 | 2013-07-16 18:26:15 +0000 | [diff] [blame] | 289 | BlockFrequency Freq = BlockFrequencies[*I]; |
Jakob Stoklund Olesen | b87f91b | 2011-08-03 23:09:38 +0000 | [diff] [blame] | 290 | if (Strong) |
| 291 | Freq += Freq; |
Eugene Zelenko | 79ea5b5 | 2017-09-21 23:20:16 +0000 | [diff] [blame] | 292 | unsigned ib = bundles->getBundle(*I, false); |
| 293 | unsigned ob = bundles->getBundle(*I, true); |
Jakob Stoklund Olesen | e60f103 | 2011-07-23 03:10:19 +0000 | [diff] [blame] | 294 | activate(ib); |
| 295 | activate(ob); |
Jakob Stoklund Olesen | 6d9fe79 | 2013-07-16 18:26:15 +0000 | [diff] [blame] | 296 | nodes[ib].addBias(Freq, PrefSpill); |
| 297 | nodes[ob].addBias(Freq, PrefSpill); |
Jakob Stoklund Olesen | e60f103 | 2011-07-23 03:10:19 +0000 | [diff] [blame] | 298 | } |
| 299 | } |
| 300 | |
Jakob Stoklund Olesen | 7b41fbe | 2011-04-07 17:27:46 +0000 | [diff] [blame] | 301 | void SpillPlacement::addLinks(ArrayRef<unsigned> Links) { |
| 302 | for (ArrayRef<unsigned>::iterator I = Links.begin(), E = Links.end(); I != E; |
| 303 | ++I) { |
| 304 | unsigned Number = *I; |
Eugene Zelenko | 79ea5b5 | 2017-09-21 23:20:16 +0000 | [diff] [blame] | 305 | unsigned ib = bundles->getBundle(Number, false); |
| 306 | unsigned ob = bundles->getBundle(Number, true); |
Jakob Stoklund Olesen | 7b41fbe | 2011-04-07 17:27:46 +0000 | [diff] [blame] | 307 | |
| 308 | // Ignore self-loops. |
| 309 | if (ib == ob) |
| 310 | continue; |
| 311 | activate(ib); |
| 312 | activate(ob); |
Jakob Stoklund Olesen | 6d9fe79 | 2013-07-16 18:26:15 +0000 | [diff] [blame] | 313 | BlockFrequency Freq = BlockFrequencies[Number]; |
| 314 | nodes[ib].addLink(ob, Freq); |
| 315 | nodes[ob].addLink(ib, Freq); |
Jakob Stoklund Olesen | 7b41fbe | 2011-04-07 17:27:46 +0000 | [diff] [blame] | 316 | } |
| 317 | } |
| 318 | |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 319 | bool SpillPlacement::scanActiveBundles() { |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 320 | RecentPositive.clear(); |
Francis Visoiu Mistrih | 1179b5e | 2017-05-17 01:07:53 +0000 | [diff] [blame] | 321 | for (unsigned n : ActiveNodes->set_bits()) { |
Quentin Colombet | a499216 | 2016-05-19 22:40:37 +0000 | [diff] [blame] | 322 | update(n); |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 323 | // A node that must spill, or a node without any links is not going to |
| 324 | // change its value ever again, so exclude it from iterations. |
| 325 | if (nodes[n].mustSpill()) |
| 326 | continue; |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 327 | if (nodes[n].preferReg()) |
| 328 | RecentPositive.push_back(n); |
| 329 | } |
| 330 | return !RecentPositive.empty(); |
| 331 | } |
| 332 | |
Quentin Colombet | a499216 | 2016-05-19 22:40:37 +0000 | [diff] [blame] | 333 | bool SpillPlacement::update(unsigned n) { |
| 334 | if (!nodes[n].update(nodes, Threshold)) |
| 335 | return false; |
| 336 | nodes[n].getDissentingNeighbors(TodoList, nodes); |
| 337 | return true; |
| 338 | } |
| 339 | |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 340 | /// iterate - Repeatedly update the Hopfield nodes until stability or the |
| 341 | /// maximum number of iterations is reached. |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 342 | void SpillPlacement::iterate() { |
Quentin Colombet | a499216 | 2016-05-19 22:40:37 +0000 | [diff] [blame] | 343 | // We do not need to push those node in the todolist. |
| 344 | // They are already been proceeded as part of the previous iteration. |
| 345 | RecentPositive.clear(); |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 346 | |
Quentin Colombet | a499216 | 2016-05-19 22:40:37 +0000 | [diff] [blame] | 347 | // Since the last iteration, the todolist have been augmented by calls |
| 348 | // to addConstraints, addLinks, and co. |
| 349 | // Update the network energy starting at this new frontier. |
| 350 | // The call to ::update will add the nodes that changed into the todolist. |
| 351 | unsigned Limit = bundles->getNumBundles() * 10; |
| 352 | while(Limit-- > 0 && !TodoList.empty()) { |
| 353 | unsigned n = TodoList.pop_back_val(); |
| 354 | if (!update(n)) |
| 355 | continue; |
| 356 | if (nodes[n].preferReg()) |
| 357 | RecentPositive.push_back(n); |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 358 | } |
| 359 | } |
| 360 | |
Jakob Stoklund Olesen | 9efa2a2 | 2011-04-06 19:13:57 +0000 | [diff] [blame] | 361 | void SpillPlacement::prepare(BitVector &RegBundles) { |
Jakob Stoklund Olesen | f4afdfc | 2011-04-09 02:59:09 +0000 | [diff] [blame] | 362 | RecentPositive.clear(); |
Quentin Colombet | a499216 | 2016-05-19 22:40:37 +0000 | [diff] [blame] | 363 | TodoList.clear(); |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 364 | // Reuse RegBundles as our ActiveNodes vector. |
| 365 | ActiveNodes = &RegBundles; |
| 366 | ActiveNodes->clear(); |
| 367 | ActiveNodes->resize(bundles->getNumBundles()); |
Jakob Stoklund Olesen | 9efa2a2 | 2011-04-06 19:13:57 +0000 | [diff] [blame] | 368 | } |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 369 | |
Jakob Stoklund Olesen | 9efa2a2 | 2011-04-06 19:13:57 +0000 | [diff] [blame] | 370 | bool |
| 371 | SpillPlacement::finish() { |
| 372 | assert(ActiveNodes && "Call prepare() first"); |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 373 | |
Jakob Stoklund Olesen | 9efa2a2 | 2011-04-06 19:13:57 +0000 | [diff] [blame] | 374 | // Write preferences back to ActiveNodes. |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 375 | bool Perfect = true; |
Francis Visoiu Mistrih | 1179b5e | 2017-05-17 01:07:53 +0000 | [diff] [blame] | 376 | for (unsigned n : ActiveNodes->set_bits()) |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 377 | if (!nodes[n].preferReg()) { |
Jakob Stoklund Olesen | 9efa2a2 | 2011-04-06 19:13:57 +0000 | [diff] [blame] | 378 | ActiveNodes->reset(n); |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 379 | Perfect = false; |
| 380 | } |
Craig Topper | 4ba8443 | 2014-04-14 00:51:57 +0000 | [diff] [blame] | 381 | ActiveNodes = nullptr; |
Jakob Stoklund Olesen | 8bfe508 | 2011-01-06 01:21:53 +0000 | [diff] [blame] | 382 | return Perfect; |
| 383 | } |