blob: f0b9ea6f553ec8d41c6d838b21db9a9f6c08baca [file] [log] [blame]
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +00001//===- BlockFrequencyImplInfo.cpp - Block Frequency Info Implementation ---===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +00006//
7//===----------------------------------------------------------------------===//
8//
9// Loops should be simplified before this analysis.
10//
11//===----------------------------------------------------------------------===//
12
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +000013#include "llvm/Analysis/BlockFrequencyInfoImpl.h"
Eugene Zelenko38c02bc2017-07-21 21:37:46 +000014#include "llvm/ADT/APInt.h"
15#include "llvm/ADT/DenseMap.h"
16#include "llvm/ADT/GraphTraits.h"
17#include "llvm/ADT/None.h"
Duncan P. N. Exon Smith87c40fd2014-05-06 01:57:42 +000018#include "llvm/ADT/SCCIterator.h"
Nico Weber432a3882018-04-30 14:59:11 +000019#include "llvm/Config/llvm-config.h"
Xinliang David Lib12b3532016-06-22 17:12:12 +000020#include "llvm/IR/Function.h"
Eugene Zelenko38c02bc2017-07-21 21:37:46 +000021#include "llvm/Support/BlockFrequency.h"
22#include "llvm/Support/BranchProbability.h"
23#include "llvm/Support/Compiler.h"
24#include "llvm/Support/Debug.h"
25#include "llvm/Support/ScaledNumber.h"
26#include "llvm/Support/MathExtras.h"
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +000027#include "llvm/Support/raw_ostream.h"
Eugene Zelenko38c02bc2017-07-21 21:37:46 +000028#include <algorithm>
29#include <cassert>
30#include <cstddef>
31#include <cstdint>
32#include <iterator>
33#include <list>
Duncan P. N. Exon Smith57cbdfc2014-12-05 19:13:42 +000034#include <numeric>
Eugene Zelenko38c02bc2017-07-21 21:37:46 +000035#include <utility>
36#include <vector>
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +000037
38using namespace llvm;
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +000039using namespace llvm::bfi_detail;
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +000040
Chandler Carruth1b9dde02014-04-22 02:02:50 +000041#define DEBUG_TYPE "block-freq"
42
Duncan P. N. Exon Smithbeaf8132014-06-24 00:26:13 +000043ScaledNumber<uint64_t> BlockMass::toScaled() const {
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +000044 if (isFull())
Duncan P. N. Exon Smithc379c872014-06-23 23:36:17 +000045 return ScaledNumber<uint64_t>(1, 0);
46 return ScaledNumber<uint64_t>(getMass() + 1, -64);
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +000047}
48
Aaron Ballman615eb472017-10-15 14:32:27 +000049#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Yaron Kereneb2a2542016-01-29 20:50:44 +000050LLVM_DUMP_METHOD void BlockMass::dump() const { print(dbgs()); }
Matthias Braun8c209aa2017-01-28 02:02:38 +000051#endif
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +000052
53static char getHexDigit(int N) {
54 assert(N < 16);
55 if (N < 10)
56 return '0' + N;
57 return 'a' + N - 10;
58}
Eugene Zelenkoecefe5a2016-02-02 18:20:45 +000059
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +000060raw_ostream &BlockMass::print(raw_ostream &OS) const {
61 for (int Digits = 0; Digits < 16; ++Digits)
62 OS << getHexDigit(Mass >> (60 - Digits * 4) & 0xf);
63 return OS;
64}
65
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +000066namespace {
67
Eugene Zelenko38c02bc2017-07-21 21:37:46 +000068using BlockNode = BlockFrequencyInfoImplBase::BlockNode;
69using Distribution = BlockFrequencyInfoImplBase::Distribution;
70using WeightList = BlockFrequencyInfoImplBase::Distribution::WeightList;
71using Scaled64 = BlockFrequencyInfoImplBase::Scaled64;
72using LoopData = BlockFrequencyInfoImplBase::LoopData;
73using Weight = BlockFrequencyInfoImplBase::Weight;
74using FrequencyData = BlockFrequencyInfoImplBase::FrequencyData;
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +000075
Adrian Prantl5f8f34e42018-05-01 15:54:18 +000076/// Dithering mass distributer.
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +000077///
78/// This class splits up a single mass into portions by weight, dithering to
79/// spread out error. No mass is lost. The dithering precision depends on the
80/// precision of the product of \a BlockMass and \a BranchProbability.
81///
82/// The distribution algorithm follows.
83///
84/// 1. Initialize by saving the sum of the weights in \a RemWeight and the
85/// mass to distribute in \a RemMass.
86///
87/// 2. For each portion:
88///
89/// 1. Construct a branch probability, P, as the portion's weight divided
90/// by the current value of \a RemWeight.
91/// 2. Calculate the portion's mass as \a RemMass times P.
92/// 3. Update \a RemWeight and \a RemMass at each portion by subtracting
93/// the current portion's weight and mass.
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +000094struct DitheringDistributer {
95 uint32_t RemWeight;
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +000096 BlockMass RemMass;
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +000097
98 DitheringDistributer(Distribution &Dist, const BlockMass &Mass);
99
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000100 BlockMass takeMass(uint32_t Weight);
101};
Duncan P. N. Exon Smithb5650e52014-07-11 23:56:50 +0000102
Eugene Zelenkoecefe5a2016-02-02 18:20:45 +0000103} // end anonymous namespace
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000104
105DitheringDistributer::DitheringDistributer(Distribution &Dist,
106 const BlockMass &Mass) {
107 Dist.normalize();
108 RemWeight = Dist.Total;
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000109 RemMass = Mass;
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000110}
111
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000112BlockMass DitheringDistributer::takeMass(uint32_t Weight) {
113 assert(Weight && "invalid weight");
114 assert(Weight <= RemWeight);
115 BlockMass Mass = RemMass * BranchProbability(Weight, RemWeight);
116
117 // Decrement totals (dither).
118 RemWeight -= Weight;
119 RemMass -= Mass;
120 return Mass;
121}
122
123void Distribution::add(const BlockNode &Node, uint64_t Amount,
124 Weight::DistType Type) {
125 assert(Amount && "invalid weight of 0");
126 uint64_t NewTotal = Total + Amount;
127
128 // Check for overflow. It should be impossible to overflow twice.
129 bool IsOverflow = NewTotal < Total;
130 assert(!(DidOverflow && IsOverflow) && "unexpected repeated overflow");
131 DidOverflow |= IsOverflow;
132
133 // Update the total.
134 Total = NewTotal;
135
136 // Save the weight.
Duncan P. N. Exon Smith60755102014-07-12 00:26:00 +0000137 Weights.push_back(Weight(Type, Node, Amount));
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000138}
139
140static void combineWeight(Weight &W, const Weight &OtherW) {
141 assert(OtherW.TargetNode.isValid());
142 if (!W.Amount) {
143 W = OtherW;
144 return;
145 }
146 assert(W.Type == OtherW.Type);
147 assert(W.TargetNode == OtherW.TargetNode);
Duncan P. N. Exon Smith57cbdfc2014-12-05 19:13:42 +0000148 assert(OtherW.Amount && "Expected non-zero weight");
149 if (W.Amount > W.Amount + OtherW.Amount)
150 // Saturate on overflow.
151 W.Amount = UINT64_MAX;
152 else
153 W.Amount += OtherW.Amount;
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000154}
Eugene Zelenkoecefe5a2016-02-02 18:20:45 +0000155
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000156static void combineWeightsBySorting(WeightList &Weights) {
157 // Sort so edges to the same node are adjacent.
Fangrui Song0cac7262018-09-27 02:13:45 +0000158 llvm::sort(Weights, [](const Weight &L, const Weight &R) {
159 return L.TargetNode < R.TargetNode;
160 });
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000161
162 // Combine adjacent edges.
163 WeightList::iterator O = Weights.begin();
164 for (WeightList::const_iterator I = O, L = O, E = Weights.end(); I != E;
165 ++O, (I = L)) {
166 *O = *I;
167
168 // Find the adjacent weights to the same node.
169 for (++L; L != E && I->TargetNode == L->TargetNode; ++L)
170 combineWeight(*O, *L);
171 }
172
173 // Erase extra entries.
174 Weights.erase(O, Weights.end());
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000175}
Eugene Zelenkoecefe5a2016-02-02 18:20:45 +0000176
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000177static void combineWeightsByHashing(WeightList &Weights) {
178 // Collect weights into a DenseMap.
Eugene Zelenko38c02bc2017-07-21 21:37:46 +0000179 using HashTable = DenseMap<BlockNode::IndexType, Weight>;
180
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000181 HashTable Combined(NextPowerOf2(2 * Weights.size()));
182 for (const Weight &W : Weights)
183 combineWeight(Combined[W.TargetNode.Index], W);
184
185 // Check whether anything changed.
186 if (Weights.size() == Combined.size())
187 return;
188
189 // Fill in the new weights.
190 Weights.clear();
191 Weights.reserve(Combined.size());
192 for (const auto &I : Combined)
193 Weights.push_back(I.second);
194}
Eugene Zelenkoecefe5a2016-02-02 18:20:45 +0000195
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000196static void combineWeights(WeightList &Weights) {
197 // Use a hash table for many successors to keep this linear.
198 if (Weights.size() > 128) {
199 combineWeightsByHashing(Weights);
200 return;
201 }
202
203 combineWeightsBySorting(Weights);
204}
Eugene Zelenkoecefe5a2016-02-02 18:20:45 +0000205
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000206static uint64_t shiftRightAndRound(uint64_t N, int Shift) {
207 assert(Shift >= 0);
208 assert(Shift < 64);
209 if (!Shift)
210 return N;
211 return (N >> Shift) + (UINT64_C(1) & N >> (Shift - 1));
212}
Eugene Zelenkoecefe5a2016-02-02 18:20:45 +0000213
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000214void Distribution::normalize() {
215 // Early exit for termination nodes.
216 if (Weights.empty())
217 return;
218
219 // Only bother if there are multiple successors.
220 if (Weights.size() > 1)
221 combineWeights(Weights);
222
223 // Early exit when combined into a single successor.
224 if (Weights.size() == 1) {
225 Total = 1;
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000226 Weights.front().Amount = 1;
227 return;
228 }
229
230 // Determine how much to shift right so that the total fits into 32-bits.
231 //
232 // If we shift at all, shift by 1 extra. Otherwise, the lower limit of 1
233 // for each weight can cause a 32-bit overflow.
234 int Shift = 0;
235 if (DidOverflow)
236 Shift = 33;
237 else if (Total > UINT32_MAX)
238 Shift = 33 - countLeadingZeros(Total);
239
240 // Early exit if nothing needs to be scaled.
Duncan P. N. Exon Smith57cbdfc2014-12-05 19:13:42 +0000241 if (!Shift) {
242 // If we didn't overflow then combineWeights() shouldn't have changed the
243 // sum of the weights, but let's double-check.
244 assert(Total == std::accumulate(Weights.begin(), Weights.end(), UINT64_C(0),
245 [](uint64_t Sum, const Weight &W) {
246 return Sum + W.Amount;
247 }) &&
248 "Expected total to be correct");
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000249 return;
Duncan P. N. Exon Smith57cbdfc2014-12-05 19:13:42 +0000250 }
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000251
252 // Recompute the total through accumulation (rather than shifting it) so that
Duncan P. N. Exon Smith57cbdfc2014-12-05 19:13:42 +0000253 // it's accurate after shifting and any changes combineWeights() made above.
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000254 Total = 0;
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000255
256 // Sum the weights to each node and shift right if necessary.
257 for (Weight &W : Weights) {
258 // Scale down below UINT32_MAX. Since Shift is larger than necessary, we
259 // can round here without concern about overflow.
260 assert(W.TargetNode.isValid());
261 W.Amount = std::max(UINT64_C(1), shiftRightAndRound(W.Amount, Shift));
262 assert(W.Amount <= UINT32_MAX);
263
264 // Update the total.
265 Total += W.Amount;
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000266 }
267 assert(Total <= UINT32_MAX);
268}
269
270void BlockFrequencyInfoImplBase::clear() {
Duncan P. N. Exon Smithdc2d66e2014-04-22 03:31:34 +0000271 // Swap with a default-constructed std::vector, since std::vector<>::clear()
272 // does not actually clear heap storage.
273 std::vector<FrequencyData>().swap(Freqs);
Hiroshi Yamauchidce9def2017-11-02 22:26:51 +0000274 IsIrrLoopHeader.clear();
Duncan P. N. Exon Smithdc2d66e2014-04-22 03:31:34 +0000275 std::vector<WorkingData>().swap(Working);
Duncan P. N. Exon Smithfc7dc932014-04-25 04:30:06 +0000276 Loops.clear();
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000277}
278
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000279/// Clear all memory not needed downstream.
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000280///
281/// Releases all memory not used downstream. In particular, saves Freqs.
282static void cleanup(BlockFrequencyInfoImplBase &BFI) {
283 std::vector<FrequencyData> SavedFreqs(std::move(BFI.Freqs));
Hiroshi Yamauchidce9def2017-11-02 22:26:51 +0000284 SparseBitVector<> SavedIsIrrLoopHeader(std::move(BFI.IsIrrLoopHeader));
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000285 BFI.clear();
286 BFI.Freqs = std::move(SavedFreqs);
Hiroshi Yamauchidce9def2017-11-02 22:26:51 +0000287 BFI.IsIrrLoopHeader = std::move(SavedIsIrrLoopHeader);
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000288}
289
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000290bool BlockFrequencyInfoImplBase::addToDist(Distribution &Dist,
Duncan P. N. Exon Smithd1320402014-04-25 04:38:01 +0000291 const LoopData *OuterLoop,
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000292 const BlockNode &Pred,
293 const BlockNode &Succ,
294 uint64_t Weight) {
295 if (!Weight)
296 Weight = 1;
297
Duncan P. N. Exon Smith39cc6482014-04-25 04:38:06 +0000298 auto isLoopHeader = [&OuterLoop](const BlockNode &Node) {
299 return OuterLoop && OuterLoop->isHeader(Node);
300 };
Duncan P. N. Exon Smithd1320402014-04-25 04:38:01 +0000301
Duncan P. N. Exon Smithda5eaed2014-04-25 18:47:04 +0000302 BlockNode Resolved = Working[Succ.Index].getResolvedNode();
303
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000304#ifndef NDEBUG
Duncan P. N. Exon Smithda5eaed2014-04-25 18:47:04 +0000305 auto debugSuccessor = [&](const char *Type) {
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000306 dbgs() << " =>"
307 << " [" << Type << "] weight = " << Weight;
Duncan P. N. Exon Smithda5eaed2014-04-25 18:47:04 +0000308 if (!isLoopHeader(Resolved))
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000309 dbgs() << ", succ = " << getBlockName(Succ);
310 if (Resolved != Succ)
311 dbgs() << ", resolved = " << getBlockName(Resolved);
312 dbgs() << "\n";
313 };
314 (void)debugSuccessor;
315#endif
316
Duncan P. N. Exon Smithda5eaed2014-04-25 18:47:04 +0000317 if (isLoopHeader(Resolved)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000318 LLVM_DEBUG(debugSuccessor("backedge"));
Diego Novillo9a779622015-06-16 19:10:58 +0000319 Dist.addBackedge(Resolved, Weight);
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000320 return true;
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000321 }
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000322
Duncan P. N. Exon Smith39cc6482014-04-25 04:38:06 +0000323 if (Working[Resolved.Index].getContainingLoop() != OuterLoop) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000324 LLVM_DEBUG(debugSuccessor(" exit "));
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000325 Dist.addExit(Resolved, Weight);
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000326 return true;
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000327 }
328
Duncan P. N. Exon Smithb3380ea2014-04-22 03:31:53 +0000329 if (Resolved < Pred) {
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000330 if (!isLoopHeader(Pred)) {
331 // If OuterLoop is an irreducible loop, we can't actually handle this.
332 assert((!OuterLoop || !OuterLoop->isIrreducible()) &&
333 "unhandled irreducible control flow");
334
335 // Irreducible backedge. Abort.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000336 LLVM_DEBUG(debugSuccessor("abort!!!"));
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000337 return false;
338 }
339
340 // If "Pred" is a loop header, then this isn't really a backedge; rather,
341 // OuterLoop must be irreducible. These false backedges can come only from
342 // secondary loop headers.
343 assert(OuterLoop && OuterLoop->isIrreducible() && !isLoopHeader(Resolved) &&
344 "unhandled irreducible control flow");
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000345 }
346
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000347 LLVM_DEBUG(debugSuccessor(" local "));
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000348 Dist.addLocal(Resolved, Weight);
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000349 return true;
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000350}
351
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000352bool BlockFrequencyInfoImplBase::addLoopSuccessorsToDist(
Duncan P. N. Exon Smithd1320402014-04-25 04:38:01 +0000353 const LoopData *OuterLoop, LoopData &Loop, Distribution &Dist) {
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000354 // Copy the exit map into Dist.
Duncan P. N. Exon Smithd1320402014-04-25 04:38:01 +0000355 for (const auto &I : Loop.Exits)
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000356 if (!addToDist(Dist, OuterLoop, Loop.getHeader(), I.first,
357 I.second.getMass()))
358 // Irreducible backedge.
359 return false;
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000360
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000361 return true;
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000362}
363
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000364/// Compute the loop scale for a loop.
Duncan P. N. Exon Smithd1320402014-04-25 04:38:01 +0000365void BlockFrequencyInfoImplBase::computeLoopScale(LoopData &Loop) {
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000366 // Compute loop scale.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000367 LLVM_DEBUG(dbgs() << "compute-loop-scale: " << getLoopName(Loop) << "\n");
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000368
Diego Novilloa354f482015-04-01 17:42:27 +0000369 // Infinite loops need special handling. If we give the back edge an infinite
370 // mass, they may saturate all the other scales in the function down to 1,
371 // making all the other region temperatures look exactly the same. Choose an
372 // arbitrary scale to avoid these issues.
373 //
374 // FIXME: An alternate way would be to select a symbolic scale which is later
375 // replaced to be the maximum of all computed scales plus 1. This would
376 // appropriately describe the loop as having a large scale, without skewing
377 // the final frequency computation.
Sanjay Patel0fb98802016-05-09 16:07:45 +0000378 const Scaled64 InfiniteLoopScale(1, 12);
Diego Novilloa354f482015-04-01 17:42:27 +0000379
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000380 // LoopScale == 1 / ExitMass
381 // ExitMass == HeadMass - BackedgeMass
Diego Novillo9a779622015-06-16 19:10:58 +0000382 BlockMass TotalBackedgeMass;
383 for (auto &Mass : Loop.BackedgeMass)
384 TotalBackedgeMass += Mass;
385 BlockMass ExitMass = BlockMass::getFull() - TotalBackedgeMass;
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000386
Diego Novilloa354f482015-04-01 17:42:27 +0000387 // Block scale stores the inverse of the scale. If this is an infinite loop,
388 // its exit mass will be zero. In this case, use an arbitrary scale for the
389 // loop scale.
390 Loop.Scale =
Sanjay Patel0fb98802016-05-09 16:07:45 +0000391 ExitMass.isEmpty() ? InfiniteLoopScale : ExitMass.toScaled().inverse();
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000392
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000393 LLVM_DEBUG(dbgs() << " - exit-mass = " << ExitMass << " ("
394 << BlockMass::getFull() << " - " << TotalBackedgeMass
395 << ")\n"
396 << " - scale = " << Loop.Scale << "\n");
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000397}
398
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000399/// Package up a loop.
Duncan P. N. Exon Smithd1320402014-04-25 04:38:01 +0000400void BlockFrequencyInfoImplBase::packageLoop(LoopData &Loop) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000401 LLVM_DEBUG(dbgs() << "packaging-loop: " << getLoopName(Loop) << "\n");
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000402
403 // Clear the subloop exits to prevent quadratic memory usage.
404 for (const BlockNode &M : Loop.Nodes) {
405 if (auto *Loop = Working[M.Index].getPackagedLoop())
406 Loop->Exits.clear();
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000407 LLVM_DEBUG(dbgs() << " - node: " << getBlockName(M.Index) << "\n");
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000408 }
Duncan P. N. Exon Smithd1320402014-04-25 04:38:01 +0000409 Loop.IsPackaged = true;
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000410}
411
Diego Novillo9a779622015-06-16 19:10:58 +0000412#ifndef NDEBUG
413static void debugAssign(const BlockFrequencyInfoImplBase &BFI,
414 const DitheringDistributer &D, const BlockNode &T,
415 const BlockMass &M, const char *Desc) {
416 dbgs() << " => assign " << M << " (" << D.RemMass << ")";
417 if (Desc)
418 dbgs() << " [" << Desc << "]";
419 if (T.isValid())
420 dbgs() << " to " << BFI.getBlockName(T);
421 dbgs() << "\n";
422}
423#endif
424
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000425void BlockFrequencyInfoImplBase::distributeMass(const BlockNode &Source,
Duncan P. N. Exon Smithd1320402014-04-25 04:38:01 +0000426 LoopData *OuterLoop,
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000427 Distribution &Dist) {
Duncan P. N. Exon Smithda5eaed2014-04-25 18:47:04 +0000428 BlockMass Mass = Working[Source.Index].getMass();
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000429 LLVM_DEBUG(dbgs() << " => mass: " << Mass << "\n");
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000430
431 // Distribute mass to successors as laid out in Dist.
432 DitheringDistributer D(Dist, Mass);
433
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000434 for (const Weight &W : Dist.Weights) {
Duncan P. N. Exon Smithcb7d29d2014-04-25 04:38:43 +0000435 // Check for a local edge (non-backedge and non-exit).
436 BlockMass Taken = D.takeMass(W.Amount);
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000437 if (W.Type == Weight::Local) {
Duncan P. N. Exon Smithda5eaed2014-04-25 18:47:04 +0000438 Working[W.TargetNode.Index].getMass() += Taken;
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000439 LLVM_DEBUG(debugAssign(*this, D, W.TargetNode, Taken, nullptr));
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000440 continue;
441 }
442
443 // Backedges and exits only make sense if we're processing a loop.
Duncan P. N. Exon Smithd1320402014-04-25 04:38:01 +0000444 assert(OuterLoop && "backedge or exit outside of loop");
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000445
446 // Check for a backedge.
447 if (W.Type == Weight::Backedge) {
Diego Novillo8c49a572015-06-17 16:28:22 +0000448 OuterLoop->BackedgeMass[OuterLoop->getHeaderIndex(W.TargetNode)] += Taken;
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000449 LLVM_DEBUG(debugAssign(*this, D, W.TargetNode, Taken, "back"));
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000450 continue;
451 }
452
453 // This must be an exit.
454 assert(W.Type == Weight::Exit);
Duncan P. N. Exon Smithcb7d29d2014-04-25 04:38:43 +0000455 OuterLoop->Exits.push_back(std::make_pair(W.TargetNode, Taken));
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000456 LLVM_DEBUG(debugAssign(*this, D, W.TargetNode, Taken, "exit"));
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000457 }
458}
459
460static void convertFloatingToInteger(BlockFrequencyInfoImplBase &BFI,
Duncan P. N. Exon Smithbeaf8132014-06-24 00:26:13 +0000461 const Scaled64 &Min, const Scaled64 &Max) {
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000462 // Scale the Factor to a size that creates integers. Ideally, integers would
463 // be scaled so that Max == UINT64_MAX so that they can be best
Diego Novilloa354f482015-04-01 17:42:27 +0000464 // differentiated. However, in the presence of large frequency values, small
465 // frequencies are scaled down to 1, making it impossible to differentiate
466 // small, unequal numbers. When the spread between Min and Max frequencies
467 // fits well within MaxBits, we make the scale be at least 8.
468 const unsigned MaxBits = 64;
469 const unsigned SpreadBits = (Max / Min).lg();
470 Scaled64 ScalingFactor;
471 if (SpreadBits <= MaxBits - 3) {
472 // If the values are small enough, make the scaling factor at least 8 to
473 // allow distinguishing small values.
474 ScalingFactor = Min.inverse();
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000475 ScalingFactor <<= 3;
Diego Novilloa354f482015-04-01 17:42:27 +0000476 } else {
477 // If the values need more than MaxBits to be represented, saturate small
478 // frequency values down to 1 by using a scaling factor that benefits large
479 // frequency values.
480 ScalingFactor = Scaled64(1, MaxBits) / Max;
481 }
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000482
483 // Translate the floats to integers.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000484 LLVM_DEBUG(dbgs() << "float-to-int: min = " << Min << ", max = " << Max
485 << ", factor = " << ScalingFactor << "\n");
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000486 for (size_t Index = 0; Index < BFI.Freqs.size(); ++Index) {
Duncan P. N. Exon Smithbeaf8132014-06-24 00:26:13 +0000487 Scaled64 Scaled = BFI.Freqs[Index].Scaled * ScalingFactor;
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000488 BFI.Freqs[Index].Integer = std::max(UINT64_C(1), Scaled.toInt<uint64_t>());
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000489 LLVM_DEBUG(dbgs() << " - " << BFI.getBlockName(Index) << ": float = "
490 << BFI.Freqs[Index].Scaled << ", scaled = " << Scaled
491 << ", int = " << BFI.Freqs[Index].Integer << "\n");
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000492 }
493}
494
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000495/// Unwrap a loop package.
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000496///
497/// Visits all the members of a loop, adjusting their BlockData according to
498/// the loop's pseudo-node.
Duncan P. N. Exon Smith0633f0e2014-04-25 04:38:25 +0000499static void unwrapLoop(BlockFrequencyInfoImplBase &BFI, LoopData &Loop) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000500 LLVM_DEBUG(dbgs() << "unwrap-loop-package: " << BFI.getLoopName(Loop)
501 << ": mass = " << Loop.Mass << ", scale = " << Loop.Scale
502 << "\n");
Duncan P. N. Exon Smithbeaf8132014-06-24 00:26:13 +0000503 Loop.Scale *= Loop.Mass.toScaled();
Duncan P. N. Exon Smith5291d2a2014-04-25 04:38:27 +0000504 Loop.IsPackaged = false;
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000505 LLVM_DEBUG(dbgs() << " => combined-scale = " << Loop.Scale << "\n");
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000506
507 // Propagate the head scale through the loop. Since members are visited in
508 // RPO, the head scale will be updated by the loop scale first, and then the
509 // final head scale will be used for updated the rest of the members.
Duncan P. N. Exon Smith5291d2a2014-04-25 04:38:27 +0000510 for (const BlockNode &N : Loop.Nodes) {
511 const auto &Working = BFI.Working[N.Index];
Duncan P. N. Exon Smithbeaf8132014-06-24 00:26:13 +0000512 Scaled64 &F = Working.isAPackage() ? Working.getPackagedLoop()->Scale
513 : BFI.Freqs[N.Index].Scaled;
514 Scaled64 New = Loop.Scale * F;
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000515 LLVM_DEBUG(dbgs() << " - " << BFI.getBlockName(N) << ": " << F << " => "
516 << New << "\n");
Duncan P. N. Exon Smith5291d2a2014-04-25 04:38:27 +0000517 F = New;
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000518 }
519}
520
Duncan P. N. Exon Smith46d9a562014-04-25 04:38:17 +0000521void BlockFrequencyInfoImplBase::unwrapLoops() {
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000522 // Set initial frequencies from loop-local masses.
523 for (size_t Index = 0; Index < Working.size(); ++Index)
Duncan P. N. Exon Smithbeaf8132014-06-24 00:26:13 +0000524 Freqs[Index].Scaled = Working[Index].Mass.toScaled();
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000525
Duncan P. N. Exon Smithda0b21c2014-04-25 04:38:23 +0000526 for (LoopData &Loop : Loops)
Duncan P. N. Exon Smith0633f0e2014-04-25 04:38:25 +0000527 unwrapLoop(*this, Loop);
Duncan P. N. Exon Smith46d9a562014-04-25 04:38:17 +0000528}
529
530void BlockFrequencyInfoImplBase::finalizeMetrics() {
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000531 // Unwrap loop packages in reverse post-order, tracking min and max
532 // frequencies.
Duncan P. N. Exon Smithbeaf8132014-06-24 00:26:13 +0000533 auto Min = Scaled64::getLargest();
534 auto Max = Scaled64::getZero();
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000535 for (size_t Index = 0; Index < Working.size(); ++Index) {
Duncan P. N. Exon Smith46d9a562014-04-25 04:38:17 +0000536 // Update min/max scale.
Duncan P. N. Exon Smithbeaf8132014-06-24 00:26:13 +0000537 Min = std::min(Min, Freqs[Index].Scaled);
538 Max = std::max(Max, Freqs[Index].Scaled);
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000539 }
540
541 // Convert to integers.
542 convertFloatingToInteger(*this, Min, Max);
543
544 // Clean up data structures.
545 cleanup(*this);
546
547 // Print out the final stats.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000548 LLVM_DEBUG(dump());
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000549}
550
551BlockFrequency
552BlockFrequencyInfoImplBase::getBlockFreq(const BlockNode &Node) const {
553 if (!Node.isValid())
554 return 0;
555 return Freqs[Node.Index].Integer;
556}
Eugene Zelenkoecefe5a2016-02-02 18:20:45 +0000557
Xinliang David Lib12b3532016-06-22 17:12:12 +0000558Optional<uint64_t>
559BlockFrequencyInfoImplBase::getBlockProfileCount(const Function &F,
560 const BlockNode &Node) const {
Sean Silvaf8015752016-08-02 02:15:45 +0000561 return getProfileCountFromFreq(F, getBlockFreq(Node).getFrequency());
562}
563
564Optional<uint64_t>
565BlockFrequencyInfoImplBase::getProfileCountFromFreq(const Function &F,
566 uint64_t Freq) const {
Xinliang David Lib12b3532016-06-22 17:12:12 +0000567 auto EntryCount = F.getEntryCount();
568 if (!EntryCount)
569 return None;
570 // Use 128 bit APInt to do the arithmetic to avoid overflow.
Easwaran Ramane5b8de22018-01-17 22:24:23 +0000571 APInt BlockCount(128, EntryCount.getCount());
Sean Silvaf8015752016-08-02 02:15:45 +0000572 APInt BlockFreq(128, Freq);
Xinliang David Lib12b3532016-06-22 17:12:12 +0000573 APInt EntryFreq(128, getEntryFreq());
574 BlockCount *= BlockFreq;
Easwaran Ramanaca738b2018-08-16 00:26:59 +0000575 // Rounded division of BlockCount by EntryFreq. Since EntryFreq is unsigned
576 // lshr by 1 gives EntryFreq/2.
577 BlockCount = (BlockCount + EntryFreq.lshr(1)).udiv(EntryFreq);
Xinliang David Lib12b3532016-06-22 17:12:12 +0000578 return BlockCount.getLimitedValue();
579}
580
Hiroshi Yamauchidce9def2017-11-02 22:26:51 +0000581bool
582BlockFrequencyInfoImplBase::isIrrLoopHeader(const BlockNode &Node) {
583 if (!Node.isValid())
584 return false;
585 return IsIrrLoopHeader.test(Node.Index);
586}
587
Duncan P. N. Exon Smithbeaf8132014-06-24 00:26:13 +0000588Scaled64
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000589BlockFrequencyInfoImplBase::getFloatingBlockFreq(const BlockNode &Node) const {
590 if (!Node.isValid())
Duncan P. N. Exon Smithbeaf8132014-06-24 00:26:13 +0000591 return Scaled64::getZero();
592 return Freqs[Node.Index].Scaled;
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000593}
594
Manman Ren72d44b12015-10-15 14:59:40 +0000595void BlockFrequencyInfoImplBase::setBlockFreq(const BlockNode &Node,
596 uint64_t Freq) {
597 assert(Node.isValid() && "Expected valid node");
598 assert(Node.Index < Freqs.size() && "Expected legal index");
599 Freqs[Node.Index].Integer = Freq;
600}
601
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000602std::string
603BlockFrequencyInfoImplBase::getBlockName(const BlockNode &Node) const {
Eugene Zelenko38c02bc2017-07-21 21:37:46 +0000604 return {};
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000605}
Eugene Zelenkoecefe5a2016-02-02 18:20:45 +0000606
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000607std::string
608BlockFrequencyInfoImplBase::getLoopName(const LoopData &Loop) const {
609 return getBlockName(Loop.getHeader()) + (Loop.isIrreducible() ? "**" : "*");
610}
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000611
612raw_ostream &
613BlockFrequencyInfoImplBase::printBlockFreq(raw_ostream &OS,
614 const BlockNode &Node) const {
615 return OS << getFloatingBlockFreq(Node);
616}
617
618raw_ostream &
619BlockFrequencyInfoImplBase::printBlockFreq(raw_ostream &OS,
620 const BlockFrequency &Freq) const {
Duncan P. N. Exon Smithbeaf8132014-06-24 00:26:13 +0000621 Scaled64 Block(Freq.getFrequency(), 0);
622 Scaled64 Entry(getEntryFreq(), 0);
Duncan P. N. Exon Smith10be9a82014-04-21 17:57:07 +0000623
624 return OS << Block / Entry;
625}
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000626
627void IrreducibleGraph::addNodesInLoop(const BFIBase::LoopData &OuterLoop) {
628 Start = OuterLoop.getHeader();
629 Nodes.reserve(OuterLoop.Nodes.size());
630 for (auto N : OuterLoop.Nodes)
631 addNode(N);
632 indexNodes();
633}
Eugene Zelenkoecefe5a2016-02-02 18:20:45 +0000634
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000635void IrreducibleGraph::addNodesInFunction() {
636 Start = 0;
637 for (uint32_t Index = 0; Index < BFI.Working.size(); ++Index)
638 if (!BFI.Working[Index].isPackaged())
639 addNode(Index);
640 indexNodes();
641}
Eugene Zelenkoecefe5a2016-02-02 18:20:45 +0000642
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000643void IrreducibleGraph::indexNodes() {
644 for (auto &I : Nodes)
645 Lookup[I.Node.Index] = &I;
646}
Eugene Zelenkoecefe5a2016-02-02 18:20:45 +0000647
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000648void IrreducibleGraph::addEdge(IrrNode &Irr, const BlockNode &Succ,
649 const BFIBase::LoopData *OuterLoop) {
650 if (OuterLoop && OuterLoop->isHeader(Succ))
651 return;
652 auto L = Lookup.find(Succ.Index);
653 if (L == Lookup.end())
654 return;
655 IrrNode &SuccIrr = *L->second;
656 Irr.Edges.push_back(&SuccIrr);
657 SuccIrr.Edges.push_front(&Irr);
658 ++SuccIrr.NumIn;
659}
660
661namespace llvm {
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000662
Eugene Zelenko38c02bc2017-07-21 21:37:46 +0000663template <> struct GraphTraits<IrreducibleGraph> {
664 using GraphT = bfi_detail::IrreducibleGraph;
665 using NodeRef = const GraphT::IrrNode *;
666 using ChildIteratorType = GraphT::IrrNode::iterator;
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000667
Tim Shenf2187ed2016-08-22 21:09:30 +0000668 static NodeRef getEntryNode(const GraphT &G) { return G.StartIrr; }
669 static ChildIteratorType child_begin(NodeRef N) { return N->succ_begin(); }
670 static ChildIteratorType child_end(NodeRef N) { return N->succ_end(); }
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000671};
Eugene Zelenko38c02bc2017-07-21 21:37:46 +0000672
Eugene Zelenkoecefe5a2016-02-02 18:20:45 +0000673} // end namespace llvm
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000674
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000675/// Find extra irreducible headers.
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000676///
677/// Find entry blocks and other blocks with backedges, which exist when \c G
678/// contains irreducible sub-SCCs.
679static void findIrreducibleHeaders(
680 const BlockFrequencyInfoImplBase &BFI,
681 const IrreducibleGraph &G,
682 const std::vector<const IrreducibleGraph::IrrNode *> &SCC,
683 LoopData::NodeList &Headers, LoopData::NodeList &Others) {
684 // Map from nodes in the SCC to whether it's an entry block.
685 SmallDenseMap<const IrreducibleGraph::IrrNode *, bool, 8> InSCC;
686
687 // InSCC also acts the set of nodes in the graph. Seed it.
688 for (const auto *I : SCC)
689 InSCC[I] = false;
690
691 for (auto I = InSCC.begin(), E = InSCC.end(); I != E; ++I) {
692 auto &Irr = *I->first;
693 for (const auto *P : make_range(Irr.pred_begin(), Irr.pred_end())) {
694 if (InSCC.count(P))
695 continue;
696
697 // This is an entry block.
698 I->second = true;
699 Headers.push_back(Irr.Node);
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000700 LLVM_DEBUG(dbgs() << " => entry = " << BFI.getBlockName(Irr.Node)
701 << "\n");
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000702 break;
703 }
704 }
Duncan P. N. Exon Smitha7a90a22014-10-06 17:42:00 +0000705 assert(Headers.size() >= 2 &&
706 "Expected irreducible CFG; -loop-info is likely invalid");
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000707 if (Headers.size() == InSCC.size()) {
708 // Every block is a header.
Fangrui Song0cac7262018-09-27 02:13:45 +0000709 llvm::sort(Headers);
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000710 return;
711 }
712
713 // Look for extra headers from irreducible sub-SCCs.
714 for (const auto &I : InSCC) {
715 // Entry blocks are already headers.
716 if (I.second)
717 continue;
718
719 auto &Irr = *I.first;
720 for (const auto *P : make_range(Irr.pred_begin(), Irr.pred_end())) {
721 // Skip forward edges.
722 if (P->Node < Irr.Node)
723 continue;
724
725 // Skip predecessors from entry blocks. These can have inverted
726 // ordering.
727 if (InSCC.lookup(P))
728 continue;
729
730 // Store the extra header.
731 Headers.push_back(Irr.Node);
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000732 LLVM_DEBUG(dbgs() << " => extra = " << BFI.getBlockName(Irr.Node)
733 << "\n");
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000734 break;
735 }
736 if (Headers.back() == Irr.Node)
737 // Added this as a header.
738 continue;
739
740 // This is not a header.
741 Others.push_back(Irr.Node);
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000742 LLVM_DEBUG(dbgs() << " => other = " << BFI.getBlockName(Irr.Node) << "\n");
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000743 }
Fangrui Song0cac7262018-09-27 02:13:45 +0000744 llvm::sort(Headers);
745 llvm::sort(Others);
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000746}
747
748static void createIrreducibleLoop(
749 BlockFrequencyInfoImplBase &BFI, const IrreducibleGraph &G,
750 LoopData *OuterLoop, std::list<LoopData>::iterator Insert,
751 const std::vector<const IrreducibleGraph::IrrNode *> &SCC) {
752 // Translate the SCC into RPO.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000753 LLVM_DEBUG(dbgs() << " - found-scc\n");
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000754
755 LoopData::NodeList Headers;
756 LoopData::NodeList Others;
757 findIrreducibleHeaders(BFI, G, SCC, Headers, Others);
758
759 auto Loop = BFI.Loops.emplace(Insert, OuterLoop, Headers.begin(),
760 Headers.end(), Others.begin(), Others.end());
761
762 // Update loop hierarchy.
763 for (const auto &N : Loop->Nodes)
764 if (BFI.Working[N.Index].isLoopHeader())
765 BFI.Working[N.Index].Loop->Parent = &*Loop;
766 else
767 BFI.Working[N.Index].Loop = &*Loop;
768}
769
770iterator_range<std::list<LoopData>::iterator>
771BlockFrequencyInfoImplBase::analyzeIrreducible(
772 const IrreducibleGraph &G, LoopData *OuterLoop,
773 std::list<LoopData>::iterator Insert) {
774 assert((OuterLoop == nullptr) == (Insert == Loops.begin()));
775 auto Prev = OuterLoop ? std::prev(Insert) : Loops.end();
776
777 for (auto I = scc_begin(G); !I.isAtEnd(); ++I) {
778 if (I->size() < 2)
779 continue;
780
781 // Translate the SCC into RPO.
782 createIrreducibleLoop(*this, G, OuterLoop, Insert, *I);
783 }
784
785 if (OuterLoop)
786 return make_range(std::next(Prev), Insert);
787 return make_range(Loops.begin(), Insert);
788}
789
790void
791BlockFrequencyInfoImplBase::updateLoopWithIrreducible(LoopData &OuterLoop) {
792 OuterLoop.Exits.clear();
Diego Novillo9a779622015-06-16 19:10:58 +0000793 for (auto &Mass : OuterLoop.BackedgeMass)
794 Mass = BlockMass::getEmpty();
Duncan P. N. Exon Smithc5a31392014-04-28 20:02:29 +0000795 auto O = OuterLoop.Nodes.begin() + 1;
796 for (auto I = O, E = OuterLoop.Nodes.end(); I != E; ++I)
797 if (!Working[I->Index].isPackaged())
798 *O++ = *I;
799 OuterLoop.Nodes.erase(O, OuterLoop.Nodes.end());
800}
Diego Novillo9a779622015-06-16 19:10:58 +0000801
802void BlockFrequencyInfoImplBase::adjustLoopHeaderMass(LoopData &Loop) {
803 assert(Loop.isIrreducible() && "this only makes sense on irreducible loops");
804
805 // Since the loop has more than one header block, the mass flowing back into
806 // each header will be different. Adjust the mass in each header loop to
807 // reflect the masses flowing through back edges.
808 //
809 // To do this, we distribute the initial mass using the backedge masses
810 // as weights for the distribution.
811 BlockMass LoopMass = BlockMass::getFull();
812 Distribution Dist;
813
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000814 LLVM_DEBUG(dbgs() << "adjust-loop-header-mass:\n");
Diego Novillo9a779622015-06-16 19:10:58 +0000815 for (uint32_t H = 0; H < Loop.NumHeaders; ++H) {
816 auto &HeaderNode = Loop.Nodes[H];
Diego Novillo8c49a572015-06-17 16:28:22 +0000817 auto &BackedgeMass = Loop.BackedgeMass[Loop.getHeaderIndex(HeaderNode)];
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000818 LLVM_DEBUG(dbgs() << " - Add back edge mass for node "
819 << getBlockName(HeaderNode) << ": " << BackedgeMass
820 << "\n");
Diego Novillof9aa39b2015-09-08 19:22:17 +0000821 if (BackedgeMass.getMass() > 0)
822 Dist.addLocal(HeaderNode, BackedgeMass.getMass());
823 else
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000824 LLVM_DEBUG(dbgs() << " Nothing added. Back edge mass is zero\n");
Diego Novillo9a779622015-06-16 19:10:58 +0000825 }
826
827 DitheringDistributer D(Dist, LoopMass);
828
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000829 LLVM_DEBUG(dbgs() << " Distribute loop mass " << LoopMass
830 << " to headers using above weights\n");
Diego Novillo9a779622015-06-16 19:10:58 +0000831 for (const Weight &W : Dist.Weights) {
832 BlockMass Taken = D.takeMass(W.Amount);
833 assert(W.Type == Weight::Local && "all weights should be local");
834 Working[W.TargetNode.Index].getMass() = Taken;
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000835 LLVM_DEBUG(debugAssign(*this, D, W.TargetNode, Taken, nullptr));
Diego Novillo9a779622015-06-16 19:10:58 +0000836 }
837}
Hiroshi Yamauchidce9def2017-11-02 22:26:51 +0000838
839void BlockFrequencyInfoImplBase::distributeIrrLoopHeaderMass(Distribution &Dist) {
840 BlockMass LoopMass = BlockMass::getFull();
841 DitheringDistributer D(Dist, LoopMass);
842 for (const Weight &W : Dist.Weights) {
843 BlockMass Taken = D.takeMass(W.Amount);
844 assert(W.Type == Weight::Local && "all weights should be local");
845 Working[W.TargetNode.Index].getMass() = Taken;
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000846 LLVM_DEBUG(debugAssign(*this, D, W.TargetNode, Taken, nullptr));
Hiroshi Yamauchidce9def2017-11-02 22:26:51 +0000847 }
848}