LLVM 24.0.0git
BlockFrequencyInfoImpl.cpp
Go to the documentation of this file.
1//===- BlockFrequencyImplInfo.cpp - Block Frequency Info Implementation ---===//
2//
3// 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
6//
7//===----------------------------------------------------------------------===//
8//
9// Loops should be simplified before this analysis.
10//
11//===----------------------------------------------------------------------===//
12
14#include "llvm/ADT/APInt.h"
15#include "llvm/ADT/DenseMap.h"
18#include "llvm/Config/llvm-config.h"
19#include "llvm/IR/Function.h"
23#include "llvm/Support/Debug.h"
27#include <algorithm>
28#include <cassert>
29#include <cstddef>
30#include <cstdint>
31#include <iterator>
32#include <list>
33#include <numeric>
34#include <optional>
35#include <utility>
36#include <vector>
37
38using namespace llvm;
39using namespace llvm::bfi_detail;
40
41#define DEBUG_TYPE "block-freq"
42
43namespace llvm {
45 "check-bfi-unknown-block-queries",
46 cl::init(false), cl::Hidden,
47 cl::desc("Check if block frequency is queried for an unknown block "
48 "for debugging missed BFI updates"));
49
51 "use-iterative-bfi-inference", cl::Hidden,
52 cl::desc("Apply an iterative post-processing to infer correct BFI counts"));
53
55 "iterative-bfi-max-iterations-per-block", cl::init(1000), cl::Hidden,
56 cl::desc("Iterative inference: maximum number of update iterations "
57 "per block"));
58
60 "iterative-bfi-precision", cl::init(1e-12), cl::Hidden,
61 cl::desc("Iterative inference: delta convergence precision; smaller values "
62 "typically lead to better results at the cost of worsen runtime"));
63} // namespace llvm
64
66 if (isFull())
67 return ScaledNumber<uint64_t>(1, 0);
68 return ScaledNumber<uint64_t>(getMass() + 1, -64);
69}
70
71#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
73#endif
74
75static char getHexDigit(int N) {
76 assert(N < 16);
77 if (N < 10)
78 return '0' + N;
79 return 'a' + N - 10;
80}
81
83 for (int Digits = 0; Digits < 16; ++Digits)
84 OS << getHexDigit(Mass >> (60 - Digits * 4) & 0xf);
85 return OS;
86}
87
88namespace {
89
97
98/// Dithering mass distributer.
99///
100/// This class splits up a single mass into portions by weight, dithering to
101/// spread out error. No mass is lost. The dithering precision depends on the
102/// precision of the product of \a BlockMass and \a BranchProbability.
103///
104/// The distribution algorithm follows.
105///
106/// 1. Initialize by saving the sum of the weights in \a RemWeight and the
107/// mass to distribute in \a RemMass.
108///
109/// 2. For each portion:
110///
111/// 1. Construct a branch probability, P, as the portion's weight divided
112/// by the current value of \a RemWeight.
113/// 2. Calculate the portion's mass as \a RemMass times P.
114/// 3. Update \a RemWeight and \a RemMass at each portion by subtracting
115/// the current portion's weight and mass.
116struct DitheringDistributer {
117 uint32_t RemWeight;
118 BlockMass RemMass;
119
120 DitheringDistributer(Distribution &Dist, const BlockMass &Mass);
121
122 BlockMass takeMass(uint32_t Weight);
123};
124
125} // end anonymous namespace
126
127DitheringDistributer::DitheringDistributer(Distribution &Dist,
128 const BlockMass &Mass) {
129 Dist.normalize();
130 RemWeight = Dist.Total;
131 RemMass = Mass;
132}
133
134BlockMass DitheringDistributer::takeMass(uint32_t Weight) {
135 assert(Weight && "invalid weight");
136 assert(Weight <= RemWeight);
137 BlockMass Mass = RemMass * BranchProbability(Weight, RemWeight);
138
139 // Decrement totals (dither).
140 RemWeight -= Weight;
141 RemMass -= Mass;
142 return Mass;
143}
144
145void Distribution::add(const BlockNode &Node, uint64_t Amount,
146 Weight::DistType Type) {
147 assert(Amount && "invalid weight of 0");
148 uint64_t NewTotal = Total + Amount;
149
150 // Check for overflow. It should be impossible to overflow twice.
151 bool IsOverflow = NewTotal < Total;
152 assert(!(DidOverflow && IsOverflow) && "unexpected repeated overflow");
153 DidOverflow |= IsOverflow;
154
155 // Update the total.
156 Total = NewTotal;
157
158 // Save the weight.
159 Weights.push_back(Weight(Type, Node, Amount));
160}
161
162static void combineWeight(Weight &W, const Weight &OtherW) {
163 assert(OtherW.TargetNode.isValid());
164 if (!W.Amount) {
165 W = OtherW;
166 return;
167 }
168 assert(W.Type == OtherW.Type);
169 assert(W.TargetNode == OtherW.TargetNode);
170 assert(OtherW.Amount && "Expected non-zero weight");
171 if (W.Amount > W.Amount + OtherW.Amount)
172 // Saturate on overflow.
173 W.Amount = UINT64_MAX;
174 else
175 W.Amount += OtherW.Amount;
176}
177
178static void combineWeightsBySorting(WeightList &Weights) {
179 // Sort so edges to the same node are adjacent.
180 llvm::sort(Weights, [](const Weight &L, const Weight &R) {
181 return L.TargetNode < R.TargetNode;
182 });
183
184 // Combine adjacent edges.
185 WeightList::iterator O = Weights.begin();
186 for (WeightList::const_iterator I = O, L = O, E = Weights.end(); I != E;
187 ++O, (I = L)) {
188 *O = *I;
189
190 // Find the adjacent weights to the same node.
191 for (++L; L != E && I->TargetNode == L->TargetNode; ++L)
192 combineWeight(*O, *L);
193 }
194
195 // Erase extra entries.
196 Weights.erase(O, Weights.end());
197}
198
199static void combineWeightsByHashing(WeightList &Weights) {
200 // Collect weights into a DenseMap.
202
203 HashTable Combined(NextPowerOf2(2 * Weights.size()));
204 for (const Weight &W : Weights)
205 combineWeight(Combined[W.TargetNode.Index], W);
206
207 // Check whether anything changed.
208 if (Weights.size() == Combined.size())
209 return;
210
211 // Fill in the new weights.
212 Weights.clear();
213 Weights.reserve(Combined.size());
214 for (const auto &I : Combined)
215 Weights.push_back(I.second);
216}
217
218static void combineWeights(WeightList &Weights) {
219 // Use a hash table for many successors to keep this linear.
220 if (Weights.size() > 128) {
222 return;
223 }
224
226}
227
229 assert(Shift >= 0);
230 assert(Shift < 64);
231 if (!Shift)
232 return N;
233 return (N >> Shift) + (UINT64_C(1) & N >> (Shift - 1));
234}
235
237 // Early exit for termination nodes.
238 if (Weights.empty())
239 return;
240
241 // Only bother if there are multiple successors.
242 if (Weights.size() > 1)
244
245 // Early exit when combined into a single successor.
246 if (Weights.size() == 1) {
247 Total = 1;
248 Weights.front().Amount = 1;
249 return;
250 }
251
252 // Determine how much to shift right so that the total fits into 32-bits.
253 //
254 // If we shift at all, shift by 1 extra. Otherwise, the lower limit of 1
255 // for each weight can cause a 32-bit overflow.
256 int Shift = 0;
257 if (DidOverflow)
258 Shift = 33;
259 else if (Total > UINT32_MAX)
260 Shift = 33 - llvm::countl_zero(Total);
261
262 // Early exit if nothing needs to be scaled.
263 if (!Shift) {
264 // If we didn't overflow then combineWeights() shouldn't have changed the
265 // sum of the weights, but let's double-check.
266 assert(Total == std::accumulate(Weights.begin(), Weights.end(), UINT64_C(0),
267 [](uint64_t Sum, const Weight &W) {
268 return Sum + W.Amount;
269 }) &&
270 "Expected total to be correct");
271 return;
272 }
273
274 // Recompute the total through accumulation (rather than shifting it) so that
275 // it's accurate after shifting and any changes combineWeights() made above.
276 Total = 0;
277
278 // Sum the weights to each node and shift right if necessary.
279 for (Weight &W : Weights) {
280 // Scale down below UINT32_MAX. Since Shift is larger than necessary, we
281 // can round here without concern about overflow.
282 assert(W.TargetNode.isValid());
283 W.Amount = std::max(UINT64_C(1), shiftRightAndRound(W.Amount, Shift));
284 assert(W.Amount <= UINT32_MAX);
285
286 // Update the total.
287 Total += W.Amount;
288 }
289 assert(Total <= UINT32_MAX);
290}
291
293 // Swap with a default-constructed std::vector, since std::vector<>::clear()
294 // does not actually clear heap storage.
295 std::vector<FrequencyData>().swap(Freqs);
296 IsIrrLoopHeader.clear();
297 std::vector<WorkingData>().swap(Working);
298 Loops.clear();
300}
301
302/// Clear all memory not needed downstream.
303///
304/// Releases all memory not used downstream. In particular, saves Freqs.
306 std::vector<FrequencyData> SavedFreqs(std::move(BFI.Freqs));
307 SparseBitVector<> SavedIsIrrLoopHeader(std::move(BFI.IsIrrLoopHeader));
308 BFI.clear();
309 BFI.Freqs = std::move(SavedFreqs);
310 BFI.IsIrrLoopHeader = std::move(SavedIsIrrLoopHeader);
311}
312
314 const LoopData *OuterLoop,
315 const BlockNode &Pred,
316 const BlockNode &Succ,
318 if (!Weight)
319 Weight = 1;
320
321 auto isLoopHeader = [&OuterLoop](const BlockNode &Node) {
322 return OuterLoop && OuterLoop->isHeader(Node);
323 };
324
325 BlockNode Resolved = Working[Succ.Index].getResolvedNode();
326
327#ifndef NDEBUG
328 auto debugSuccessor = [&](const char *Type) {
329 dbgs() << " =>"
330 << " [" << Type << "] weight = " << Weight;
331 if (!isLoopHeader(Resolved))
332 dbgs() << ", succ = " << getBlockName(Succ);
333 dbgs() << ", pred = " << getBlockName(Pred);
334 if (Resolved != Succ)
335 dbgs() << ", resolved = " << getBlockName(Resolved);
336 dbgs() << "\n";
337 };
338 (void)debugSuccessor;
339#endif
340
341 if (isLoopHeader(Resolved)) {
342 LLVM_DEBUG(debugSuccessor("backedge"));
343 Dist.addBackedge(Resolved, Weight);
344 return;
345 }
346
347 if (Working[Resolved.Index].getContainingLoop() != OuterLoop) {
348 LLVM_DEBUG(debugSuccessor(" exit "));
349 Dist.addExit(Resolved, Weight);
350 return;
351 }
352
353 if (Resolved < Pred) {
354 // Every irreducible SCC is packaged before mass distribution, so this is
355 // a false backedge from a secondary header of an irreducible OuterLoop.
356 assert(isLoopHeader(Pred) && OuterLoop->isIrreducible() &&
357 "unhandled irreducible control flow");
358 }
359
360 LLVM_DEBUG(debugSuccessor(" local "));
361 Dist.addLocal(Resolved, Weight);
362}
363
365 const LoopData *OuterLoop, LoopData &Loop, Distribution &Dist) {
366 // Copy the exit map into Dist.
367 for (const auto &I : Loop.Exits)
368 addToDist(Dist, OuterLoop, Loop.getHeader(), I.first, I.second.getMass());
369}
370
371/// Compute the loop scale for a loop.
373 // Compute loop scale.
374 LLVM_DEBUG(dbgs() << "compute-loop-scale: " << getLoopName(Loop) << "\n");
375
376 // Infinite loops need special handling. If we give the back edge an infinite
377 // mass, they may saturate all the other scales in the function down to 1,
378 // making all the other region temperatures look exactly the same. Choose an
379 // arbitrary scale to avoid these issues.
380 //
381 // FIXME: An alternate way would be to select a symbolic scale which is later
382 // replaced to be the maximum of all computed scales plus 1. This would
383 // appropriately describe the loop as having a large scale, without skewing
384 // the final frequency computation.
385 const Scaled64 InfiniteLoopScale(1, 12);
386
387 // LoopScale == 1 / ExitMass
388 // ExitMass == HeadMass - BackedgeMass
389 BlockMass TotalBackedgeMass;
390 for (auto &Mass : Loop.BackedgeMass)
391 TotalBackedgeMass += Mass;
392 BlockMass ExitMass = BlockMass::getFull() - TotalBackedgeMass;
393
394 // Block scale stores the inverse of the scale. If this is an infinite loop,
395 // its exit mass will be zero. In this case, use an arbitrary scale for the
396 // loop scale.
397 Loop.Scale =
398 ExitMass.isEmpty() ? InfiniteLoopScale : ExitMass.toScaled().inverse();
399
400 LLVM_DEBUG(dbgs() << " - exit-mass = " << ExitMass << " ("
401 << BlockMass::getFull() << " - " << TotalBackedgeMass
402 << ")\n"
403 << " - scale = " << Loop.Scale << "\n");
404}
405
406/// Package up a loop.
408 LLVM_DEBUG(dbgs() << "packaging-loop: " << getLoopName(Loop) << "\n");
409
410 // Clear the subloop exits to prevent quadratic memory usage.
411 for (const BlockNode &M : Loop.Nodes) {
412 if (auto *Loop = Working[M.Index].getPackagedLoop())
413 Loop->Exits.clear();
414 LLVM_DEBUG(dbgs() << " - node: " << getBlockName(M.Index) << "\n");
415 }
416 Loop.IsPackaged = true;
417}
418
419#ifndef NDEBUG
421 const DitheringDistributer &D, const BlockNode &T,
422 const BlockMass &M, const char *Desc) {
423 dbgs() << " => assign " << M << " (" << D.RemMass << ")";
424 if (Desc)
425 dbgs() << " [" << Desc << "]";
426 if (T.isValid())
427 dbgs() << " to " << BFI.getBlockName(T);
428 dbgs() << "\n";
429}
430#endif
431
433 LoopData *OuterLoop,
434 Distribution &Dist) {
435 BlockMass Mass = Working[Source.Index].getMass();
436 LLVM_DEBUG(dbgs() << " => mass: " << Mass << "\n");
437
438 // Distribute mass to successors as laid out in Dist.
439 DitheringDistributer D(Dist, Mass);
440
441 for (const Weight &W : Dist.Weights) {
442 // Check for a local edge (non-backedge and non-exit).
443 BlockMass Taken = D.takeMass(W.Amount);
444 if (W.Type == Weight::Local) {
445 Working[W.TargetNode.Index].getMass() += Taken;
446 LLVM_DEBUG(debugAssign(*this, D, W.TargetNode, Taken, nullptr));
447 continue;
448 }
449
450 // Backedges and exits only make sense if we're processing a loop.
451 assert(OuterLoop && "backedge or exit outside of loop");
452
453 // Check for a backedge.
454 if (W.Type == Weight::Backedge) {
455 OuterLoop->BackedgeMass[OuterLoop->getHeaderIndex(W.TargetNode)] += Taken;
456 LLVM_DEBUG(debugAssign(*this, D, W.TargetNode, Taken, "back"));
457 continue;
458 }
459
460 // This must be an exit.
461 assert(W.Type == Weight::Exit);
462 OuterLoop->Exits.push_back(std::make_pair(W.TargetNode, Taken));
463 LLVM_DEBUG(debugAssign(*this, D, W.TargetNode, Taken, "exit"));
464 }
465}
466
468 auto Max = Scaled64::getZero();
469 for (const FrequencyData &F : BFI.Freqs)
470 Max = std::max(Max, F.Scaled);
471
472 // Scale the Factor to a size that creates integers. If possible scale
473 // integers so that Max == UINT64_MAX so that they can be best differentiated.
474 // It is possible that the range between min and max cannot be accurately
475 // represented in a 64bit integer without either loosing precision for small
476 // values (so small unequal numbers all map to 1) or saturaturing big numbers
477 // loosing precision for big numbers (so unequal big numbers may map to
478 // UINT64_MAX). We choose to loose precision for small numbers.
479 const unsigned MaxBits = sizeof(Scaled64::DigitsType) * CHAR_BIT;
480 // Users often add up multiple BlockFrequency values or multiply them with
481 // things like instruction costs. Leave some room to avoid saturating
482 // operations reaching UIN64_MAX too early.
483 const unsigned Slack = 10;
484 Scaled64 ScalingFactor = Scaled64(1, MaxBits - Slack) / Max;
485
486 // Translate the floats to integers.
487 LLVM_DEBUG({
488 auto Min = Scaled64::getLargest();
489 for (const FrequencyData &F : BFI.Freqs)
490 Min = std::min(Min, F.Scaled);
491 dbgs() << "float-to-int: min = " << Min << ", max = " << Max
492 << ", factor = " << ScalingFactor << "\n";
493 });
494 for (size_t Index = 0; Index < BFI.Freqs.size(); ++Index) {
495 Scaled64 Scaled = BFI.Freqs[Index].Scaled * ScalingFactor;
496 BFI.Freqs[Index].Integer = std::max(UINT64_C(1), Scaled.toInt<uint64_t>());
497 LLVM_DEBUG(dbgs() << " - " << BFI.getBlockName(Index) << ": float = "
498 << BFI.Freqs[Index].Scaled << ", scaled = " << Scaled
499 << ", int = " << BFI.Freqs[Index].Integer << "\n");
500 }
501}
502
503/// Unwrap a loop package.
504///
505/// Visits all the members of a loop, adjusting their BlockData according to
506/// the loop's pseudo-node.
507static void unwrapLoop(BlockFrequencyInfoImplBase &BFI, LoopData &Loop) {
508 LLVM_DEBUG(dbgs() << "unwrap-loop-package: " << BFI.getLoopName(Loop)
509 << ": mass = " << Loop.Mass << ", scale = " << Loop.Scale
510 << "\n");
511 Loop.Scale *= Loop.Mass.toScaled();
512 Loop.IsPackaged = false;
513 LLVM_DEBUG(dbgs() << " => combined-scale = " << Loop.Scale << "\n");
514
515 // Propagate the head scale through the loop. Since members are visited in
516 // RPO, the head scale will be updated by the loop scale first, and then the
517 // final head scale will be used for updated the rest of the members.
518 for (const BlockNode &N : Loop.Nodes) {
519 const auto &Working = BFI.Working[N.Index];
520 Scaled64 &F = Working.isAPackage() ? Working.getPackagedLoop()->Scale
521 : BFI.Freqs[N.Index].Scaled;
522 Scaled64 New = Loop.Scale * F;
523 LLVM_DEBUG(dbgs() << " - " << BFI.getBlockName(N) << ": " << F << " => "
524 << New << "\n");
525 F = New;
526 }
527}
528
530 // Set initial frequencies from loop-local masses.
531 for (size_t Index = 0; Index < Working.size(); ++Index)
532 Freqs[Index].Scaled = Working[Index].Mass.toScaled();
533
534 for (LoopData &Loop : Loops)
535 unwrapLoop(*this, Loop);
536}
537
539 // Convert to integers.
541
542 // Clean up data structures.
543 cleanup(*this);
544
545 // Print out the final stats.
546 LLVM_DEBUG(dump());
547}
548
551 if (!Node.isValid()) {
552#ifndef NDEBUG
556 OS << "*** Detected BFI query for unknown block " << getBlockName(Node);
558 }
559#endif
560 return BlockFrequency(0);
561 }
562 return BlockFrequency(Freqs[Node.Index].Integer);
563}
564
565std::optional<uint64_t>
570
571std::optional<uint64_t>
573 BlockFrequency Freq) const {
574 auto EntryCount = F.getEntryCount();
575 if (!EntryCount)
576 return std::nullopt;
577 // Use 128 bit APInt to do the arithmetic to avoid overflow.
578 APInt BlockCount(128, *EntryCount);
579 APInt BlockFreq(128, Freq.getFrequency());
580 APInt EntryFreq(128, getEntryFreq().getFrequency());
581 BlockCount *= BlockFreq;
582 // Rounded division of BlockCount by EntryFreq. Since EntryFreq is unsigned
583 // lshr by 1 gives EntryFreq/2.
584 BlockCount = (BlockCount + EntryFreq.lshr(1)).udiv(EntryFreq);
585 return BlockCount.getLimitedValue();
586}
587
588bool
590 if (!Node.isValid())
591 return false;
592 return IsIrrLoopHeader.test(Node.Index);
593}
594
595Scaled64
597 if (!Node.isValid())
598 return Scaled64::getZero();
599 return Freqs[Node.Index].Scaled;
600}
601
603 BlockFrequency Freq) {
604 assert(Node.isValid() && "Expected valid node");
605 assert(Node.Index < Freqs.size() && "Expected legal index");
606 Freqs[Node.Index].Integer = Freq.getFrequency();
607}
608
609std::string
611 return {};
612}
613
614std::string
616 return getBlockName(Loop.getHeader()) + (Loop.isIrreducible() ? "**" : "*");
617}
618
620 Start = OuterLoop.getHeader();
621 Nodes.reserve(OuterLoop.Nodes.size());
622 for (auto N : OuterLoop.Nodes)
623 addNode(N);
624 indexNodes();
625}
626
628 Start = 0;
629 for (uint32_t Index = 0; Index < BFI.Working.size(); ++Index)
630 if (!BFI.Working[Index].isPackaged())
631 addNode(Index);
632 indexNodes();
633}
634
636 for (auto &I : Nodes)
637 Lookup[I.Node.Index] = &I;
638}
639
641 const BFIBase::LoopData *OuterLoop) {
642 if (OuterLoop && OuterLoop->isHeader(Succ))
643 return;
644 auto L = Lookup.find(Succ.Index);
645 if (L == Lookup.end())
646 return;
647 IrrNode &SuccIrr = *L->second;
648 Irr.Succs.push_back(&SuccIrr);
649}
650
651namespace llvm {
652
653template <> struct GraphTraits<IrreducibleGraph> {
655 using NodeRef = const GraphT::IrrNode *;
656 using ChildIteratorType = GraphT::IrrNode::iterator;
657
658 static NodeRef getEntryNode(const GraphT &G) { return G.StartIrr; }
659 static ChildIteratorType child_begin(NodeRef N) { return N->succ_begin(); }
660 static ChildIteratorType child_end(NodeRef N) { return N->succ_end(); }
661};
662
663} // end namespace llvm
664
665/// Package \c SCC into a loop, headed by the nodes marked in \c IsEntry or
666/// \c Extra.
667static void
669 const IrreducibleGraph &G, LoopData *OuterLoop,
670 std::list<LoopData>::iterator Insert,
672 const BitVector &IsEntry, const BitVector &Extra) {
673 LLVM_DEBUG(dbgs() << " - found-scc\n");
674
675 LoopData::NodeList Headers;
676 LoopData::NodeList Others;
677 for (const auto *I : SCC)
678 if (IsEntry.test(G.getIndex(I))) {
679 Headers.push_back(I->Node);
680 LLVM_DEBUG(dbgs() << " => entry = " << BFI.getBlockName(I->Node)
681 << "\n");
682 }
683 assert(Headers.size() >= 2 &&
684 "Expected irreducible CFG; -loop-info is likely invalid");
685
686 for (const auto *I : SCC) {
687 if (IsEntry.test(G.getIndex(I)))
688 continue;
689 if (Extra.test(G.getIndex(I))) {
690 Headers.push_back(I->Node);
691 LLVM_DEBUG(dbgs() << " => extra = " << BFI.getBlockName(I->Node)
692 << "\n");
693 } else {
694 Others.push_back(I->Node);
695 LLVM_DEBUG(dbgs() << " => other = " << BFI.getBlockName(I->Node)
696 << "\n");
697 }
698 }
699 llvm::sort(Headers);
700 llvm::sort(Others);
701
702 auto Loop = BFI.Loops.emplace(Insert, OuterLoop, Headers.begin(),
703 Headers.end(), Others.begin(), Others.end());
704
705 // Update loop hierarchy.
706 for (const auto &N : Loop->Nodes)
707 if (BFI.Working[N.Index].isLoopHeader())
708 BFI.Working[N.Index].Loop->Parent = &*Loop;
709 else
710 BFI.Working[N.Index].Loop = &*Loop;
711}
712
713iterator_range<std::list<LoopData>::iterator>
715 const IrreducibleGraph &G, LoopData *OuterLoop,
716 std::list<LoopData>::iterator Insert) {
717 assert((OuterLoop == nullptr) == (Insert == Loops.begin()));
718 auto Prev = OuterLoop ? std::prev(Insert) : Loops.end();
719
720 // Number every node's SCC, as the sweeps below compare an edge's two ends.
721 // Only multi-node SCCs become loops, so keep just their members.
722 SmallVector<unsigned> SccId(G.Nodes.size(), ~0u);
724 unsigned Id = 0;
725 for (auto I = scc_begin(G); !I.isAtEnd(); ++I, ++Id) {
726 for (const auto *N : *I)
727 SccId[G.getIndex(N)] = Id;
728 if (I->size() >= 2)
729 SCCs.emplace_back(I->begin(), I->end());
730 }
731
732 // A node is an entry if an edge from another SCC reaches it, and an extra
733 // header if a backedge within its SCC targets it. Backedges from entries
734 // can have inverted ordering, so they do not make a header.
735 BitVector IsEntry(G.Nodes.size());
736 BitVector Extra(G.Nodes.size());
737 for (const auto &U : G.Nodes)
738 for (const auto *V : U.Succs)
739 if (SccId[G.getIndex(&U)] != SccId[G.getIndex(V)])
740 IsEntry.set(G.getIndex(V));
741 for (const auto &U : G.Nodes) {
742 if (IsEntry.test(G.getIndex(&U)))
743 continue;
744 for (const auto *V : U.Succs)
745 if (SccId[G.getIndex(V)] == SccId[G.getIndex(&U)] && !(U.Node < V->Node))
746 Extra.set(G.getIndex(V));
747 }
748
749 for (const auto &SCC : SCCs)
750 createIrreducibleLoop(*this, G, OuterLoop, Insert, SCC, IsEntry, Extra);
751
752 if (OuterLoop)
753 return make_range(std::next(Prev), Insert);
754 return make_range(Loops.begin(), Insert);
755}
756
758 assert(Loop.isIrreducible() && "this only makes sense on irreducible loops");
759
760 // Since the loop has more than one header block, the mass flowing back into
761 // each header will be different. Adjust the mass in each header loop to
762 // reflect the masses flowing through back edges.
763 //
764 // To do this, we distribute the initial mass using the backedge masses
765 // as weights for the distribution.
766 BlockMass LoopMass = BlockMass::getFull();
767 Distribution Dist;
768
769 LLVM_DEBUG(dbgs() << "adjust-loop-header-mass:\n");
770 for (uint32_t H = 0; H < Loop.NumHeaders; ++H) {
771 auto &HeaderNode = Loop.Nodes[H];
772 auto &BackedgeMass = Loop.BackedgeMass[H];
773 LLVM_DEBUG(dbgs() << " - Add back edge mass for node "
774 << getBlockName(HeaderNode) << ": " << BackedgeMass
775 << "\n");
776 if (BackedgeMass.getMass() > 0)
777 Dist.addLocal(HeaderNode, BackedgeMass.getMass());
778 else
779 LLVM_DEBUG(dbgs() << " Nothing added. Back edge mass is zero\n");
780 }
781
782 DitheringDistributer D(Dist, LoopMass);
783
784 LLVM_DEBUG(dbgs() << " Distribute loop mass " << LoopMass
785 << " to headers using above weights\n");
786 for (const Weight &W : Dist.Weights) {
787 BlockMass Taken = D.takeMass(W.Amount);
788 assert(W.Type == Weight::Local && "all weights should be local");
789 Working[W.TargetNode.Index].getMass() = Taken;
790 LLVM_DEBUG(debugAssign(*this, D, W.TargetNode, Taken, nullptr));
791 }
792}
793
795 BlockMass LoopMass = BlockMass::getFull();
796 DitheringDistributer D(Dist, LoopMass);
797 for (const Weight &W : Dist.Weights) {
798 BlockMass Taken = D.takeMass(W.Amount);
799 assert(W.Type == Weight::Local && "all weights should be local");
800 Working[W.TargetNode.Index].getMass() = Taken;
801 LLVM_DEBUG(debugAssign(*this, D, W.TargetNode, Taken, nullptr));
802 }
803}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
This file implements a class to represent arbitrary precision integral constant values and operations...
@ Scaled
static void combineWeightsBySorting(WeightList &Weights)
static void convertFloatingToInteger(BlockFrequencyInfoImplBase &BFI)
static void cleanup(BlockFrequencyInfoImplBase &BFI)
Clear all memory not needed downstream.
static void combineWeightsByHashing(WeightList &Weights)
static void unwrapLoop(BlockFrequencyInfoImplBase &BFI, LoopData &Loop)
Unwrap a loop package.
static void combineWeight(Weight &W, const Weight &OtherW)
static void debugAssign(const BlockFrequencyInfoImplBase &BFI, const DitheringDistributer &D, const BlockNode &T, const BlockMass &M, const char *Desc)
static void combineWeights(WeightList &Weights)
static char getHexDigit(int N)
static void createIrreducibleLoop(BlockFrequencyInfoImplBase &BFI, const IrreducibleGraph &G, LoopData *OuterLoop, std::list< LoopData >::iterator Insert, ArrayRef< const IrreducibleGraph::IrrNode * > SCC, const BitVector &IsEntry, const BitVector &Extra)
Package SCC into a loop, headed by the nodes marked in IsEntry or Extra.
static uint64_t shiftRightAndRound(uint64_t N, int Shift)
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
#define LLVM_DUMP_METHOD
Mark debug helper function definitions like dump() that should not be stripped from debug builds.
Definition Compiler.h:678
This file defines the DenseMap class.
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
#define G(x, y, z)
Definition MD5.cpp:55
#define H(x, y, z)
Definition MD5.cpp:56
#define T
This builds on the llvm/ADT/GraphTraits.h file to find the strongly connected components (SCCs) of a ...
const char * Msg
This file defines the SmallString class.
#define LLVM_DEBUG(...)
Definition Debug.h:119
Class for arbitrary precision integers.
Definition APInt.h:78
LLVM_ABI APInt udiv(const APInt &RHS) const
Unsigned division operation.
Definition APInt.cpp:1599
uint64_t getLimitedValue(uint64_t Limit=UINT64_MAX) const
If this value is smaller than the specified limit, return it, otherwise return the limit value.
Definition APInt.h:476
APInt lshr(unsigned shiftAmt) const
Logical right-shift function.
Definition APInt.h:858
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
bool test(unsigned Idx) const
Returns true if bit Idx is set.
Definition BitVector.h:482
BitVector & set()
Set all bits in the bitvector.
Definition BitVector.h:366
Base class for BlockFrequencyInfoImpl.
std::vector< WorkingData > Working
Loop data: see initializeLoops().
std::optional< uint64_t > getProfileCountFromFreq(const Function &F, BlockFrequency Freq) const
std::list< LoopData > Loops
Indexed information about loops.
void addToDist(Distribution &Dist, const LoopData *OuterLoop, const BlockNode &Pred, const BlockNode &Succ, uint64_t Weight)
Add an edge to the distribution.
std::optional< uint64_t > getBlockProfileCount(const Function &F, const BlockNode &Node) const
std::string getLoopName(const LoopData &Loop) const
bool TopContainsIrreducible
Has an irreducible SCC outside every loop.
bool isIrrLoopHeader(const BlockNode &Node)
void computeLoopScale(LoopData &Loop)
Compute the loop scale for a loop.
void packageLoop(LoopData &Loop)
Package up a loop.
virtual std::string getBlockName(const BlockNode &Node) const
void finalizeMetrics()
Finalize frequency metrics.
void setBlockFreq(const BlockNode &Node, BlockFrequency Freq)
BlockFrequency getBlockFreq(const BlockNode &Node) const
void distributeIrrLoopHeaderMass(Distribution &Dist)
iterator_range< std::list< LoopData >::iterator > analyzeIrreducible(const bfi_detail::IrreducibleGraph &G, LoopData *OuterLoop, std::list< LoopData >::iterator Insert)
Analyze irreducible SCCs.
Scaled64 getFloatingBlockFreq(const BlockNode &Node) const
void distributeMass(const BlockNode &Source, LoopData *OuterLoop, Distribution &Dist)
Distribute mass according to a distribution.
SparseBitVector IsIrrLoopHeader
Whether each block is an irreducible loop header.
void addLoopSuccessorsToDist(const LoopData *OuterLoop, LoopData &Loop, Distribution &Dist)
Add all edges out of a packaged loop to the distribution.
std::vector< FrequencyData > Freqs
Data about each block. This is used downstream.
void adjustLoopHeaderMass(LoopData &Loop)
Adjust the mass of all headers in an irreducible loop.
uint64_t getFrequency() const
Returns the frequency as a fixpoint number scaled by the entry frequency.
BlockT * getHeader() const
Represents a single loop in the control flow graph.
Definition LoopInfo.h:40
Simple representation of a scaled number.
ScaledNumber inverse() const
static ScaledNumber getZero()
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
Definition SmallString.h:26
reference emplace_back(ArgTypes &&... Args)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
LLVM_ABI raw_ostream & print(raw_ostream &OS) const
LLVM_ABI ScaledNumber< uint64_t > toScaled() const
Convert to scaled number.
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition raw_ostream.h:53
A raw_ostream that writes to an SmallVector or SmallString.
StringRef str() const
Return a StringRef for the vector contents.
#define UINT64_MAX
Definition DataTypes.h:77
std::string getBlockName(const BlockT *BB)
Get the name of a MachineBasicBlock.
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
void dump(const SparseBitVector< ElementSize > &LHS, raw_ostream &out)
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
scc_iterator< T > scc_begin(const T &G)
Construct the begin iterator for a deduced graph type T.
Op::Description Desc
LLVM_ABI llvm::cl::opt< unsigned > IterativeBFIMaxIterationsPerBlock
int countl_zero(T Val)
Count number of 0's from the most significant bit to the least stopping at the first 1.
Definition bit.h:263
void sort(IteratorTy Start, IteratorTy End)
Definition STLExtras.h:1636
LLVM_ABI llvm::cl::opt< bool > UseIterativeBFIInference
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:209
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
Definition Error.cpp:163
LLVM_ABI llvm::cl::opt< bool > CheckBFIUnknownBlockQueries
LLVM_ABI llvm::cl::opt< double > IterativeBFIPrecision
constexpr uint64_t NextPowerOf2(uint64_t A)
Returns the next power of two (in 64-bits) that is strictly greater than A.
Definition MathExtras.h:374
#define N
Distribution of unscaled probability weight.
void addBackedge(const BlockNode &Node, uint64_t Amount)
WeightList Weights
Individual successor weights.
LLVM_ABI void normalize()
Normalize the distribution.
void addExit(const BlockNode &Node, uint64_t Amount)
void addLocal(const BlockNode &Node, uint64_t Amount)
ExitMap Exits
Successor edges (and weights).
NodeList Nodes
Header and the members of the loop.
HeaderMassList BackedgeMass
Mass returned to each loop header.
HeaderMassList::difference_type getHeaderIndex(const BlockNode &B)
static ChildIteratorType child_begin(NodeRef N)
static ChildIteratorType child_end(NodeRef N)
static NodeRef getEntryNode(const GraphT &G)
Graph of irreducible control flow.
LLVM_ABI void addEdge(IrrNode &Irr, const BlockNode &Succ, const BFIBase::LoopData *OuterLoop)
SmallDenseMap< uint32_t, IrrNode *, 4 > Lookup
LLVM_ABI void addNodesInLoop(const BFIBase::LoopData &OuterLoop)