14#ifndef LLVM_ANALYSIS_BLOCKFREQUENCYINFOIMPL_H
15#define LLVM_ANALYSIS_BLOCKFREQUENCYINFOIMPL_H
54#define DEBUG_TYPE "block-freq"
63class BranchProbabilityInfo;
66class MachineBasicBlock;
67class MachineBranchProbabilityInfo;
68class MachineCycleInfo;
99 return BlockMass(std::numeric_limits<uint64_t>::max());
104 bool isFull()
const {
return Mass == std::numeric_limits<uint64_t>::max(); }
114 Mass = Sum < Mass ? std::numeric_limits<uint64_t>::max() : Sum;
124 Mass = Diff > Mass ? 0 : Diff;
129 Mass =
P.scale(Mass);
207 return std::numeric_limits<uint32_t>::max() - 1;
275 while (L && L->isHeader(
Node))
295 return L ? L->getHeader() :
Node;
306 while (L->Parent && L->Parent->IsPackaged)
443 std::list<LoopData>::iterator Insert);
478 Scaled64 getFloatingBlockFreq(
const BlockNode &
Node)
const;
481 std::optional<uint64_t> getBlockProfileCount(
const Function &
F,
482 const BlockNode &
Node)
const;
483 std::optional<uint64_t> getProfileCountFromFreq(
const Function &
F,
485 bool isIrrLoopHeader(
const BlockNode &
Node);
495namespace bfi_detail {
519 assert(BB &&
"Unexpected nullptr");
520 auto MachineName =
"BB" +
Twine(BB->getNumber());
521 if (BB->getBasicBlock())
522 return (MachineName +
"[" + BB->getName() +
"]").str();
523 return MachineName.str();
527 assert(BB &&
"Unexpected nullptr");
579 template <
class BlockEdgesAdder>
581 BlockEdgesAdder addBlockEdges) :
BFI(
BFI) {
585 template <
class BlockEdgesAdder>
586 void initialize(
const BFIBase::LoopData *OuterLoop,
587 BlockEdgesAdder addBlockEdges);
594 "mass distributed before the region was packaged");
598 template <
class BlockEdgesAdder>
600 BlockEdgesAdder addBlockEdges);
602 const BFIBase::LoopData *OuterLoop);
605template <
class BlockEdgesAdder>
607 BlockEdgesAdder addBlockEdges) {
610 for (
auto N : OuterLoop->
Nodes)
614 for (
uint32_t Index = 0; Index <
BFI.Working.size(); ++Index)
615 addEdges(Index, OuterLoop, addBlockEdges);
620template <
class BlockEdgesAdder>
623 BlockEdgesAdder addBlockEdges) {
628 const auto &Working =
BFI.Working[
Node.Index];
630 if (Working.isAPackage())
631 for (
const auto &
I : Working.Loop->Exits)
634 addBlockEdges(*
this, Irr, OuterLoop);
757 using BranchProbabilityInfoT =
763 const BranchProbabilityInfoT *BPI =
nullptr;
764 const CycleInfoT *CI =
nullptr;
765 const FunctionT *F =
nullptr;
768 std::vector<const BlockT *> RPOT;
771 unsigned BlockNumberEpoch;
773 BlockNode getNode(
const BlockT *BB)
const {
774 assert(BlockNumberEpoch ==
777 return BlockNumber < Nodes.size() ? Nodes[BlockNumber] :
BlockNode();
782 return RPOT[
Node.Index];
786 void initializeRPOT();
795 void initializeLoops();
829 void computeIrreducibleMass(
LoopData *OuterLoop,
830 std::list<LoopData>::iterator Insert);
837 void computeMassInLoops();
846 void computeMassInFunction();
848 std::string getBlockName(
const BlockNode &
Node)
const override {
862 bool needIterativeInference()
const;
865 void applyIterativeInference();
867 using ProbMatrixType = std::vector<std::vector<std::pair<size_t, Scaled64>>>;
870 void iterativeInference(
const ProbMatrixType &ProbMatrix,
872 std::vector<Scaled64> &Freq)
const;
876 void findReachableBlocks(
BitVector &Blocks)
const;
880 void initTransitionProbabilities(
const BitVector &Blocks,
881 ProbMatrixType &ProbMatrix)
const;
886 Scaled64 discrepancy(
const ProbMatrixType &ProbMatrix,
887 const std::vector<Scaled64> &Freq)
const;
895 void calculate(
const FunctionT &F,
const BranchProbabilityInfoT &BPI,
896 const CycleInfoT &CI);
905 const BlockT *BB)
const {
924 const BranchProbabilityInfoT &
getBPI()
const {
return *BPI; }
946 const BranchProbabilityInfoT &BPI,
947 const CycleInfoT &CI) {
959 <<
"\n================="
960 << std::string(F.getName().size(),
'=') <<
"\n");
971 computeMassInLoops();
972 computeMassInFunction();
977 if (needIterativeInference())
978 applyIterativeInference();
985 for (
const BlockT &BB : F)
998 if (Nodes.size() <= BlockNumber)
1001 if (!
Node.isValid()) {
1006 Freqs.emplace_back();
1011template <
class BT>
void BlockFrequencyInfoImpl<BT>::initializeRPOT() {
1012 const BlockT *Entry = &
F->front();
1013 RPOT.reserve(
F->size());
1015 RPOT.emplace_back(BB);
1016 std::reverse(RPOT.begin(), RPOT.end());
1018 assert(RPOT.size() - 1 <= BlockNode::getMaxIndex() &&
1019 "More nodes in function than Block Frequency Info supports");
1025 BlockNode
Node = BlockNode(Idx);
1030 Working.reserve(RPOT.size());
1031 for (
size_t Index = 0; Index < RPOT.size(); ++Index)
1032 Working.emplace_back(Index);
1033 Freqs.resize(RPOT.size());
1036template <
class BT>
void BlockFrequencyInfoImpl<BT>::initializeLoops() {
1047 if (!CI->isReducible(
C))
1049 for (
CycleRef A = CI->getParentCycle(
C);
A;
A = CI->getParentCycle(
A))
1050 if (!CI->isReducible(
A) && CI->isEntry(
A, CI->getHeader(
C)))
1056 std::deque<std::pair<CycleRef, LoopData *>> Q;
1057 for (
CycleRef C : CI->toplevel_cycles())
1058 Q.emplace_back(
C,
nullptr);
1061 while (!Q.empty()) {
1063 LoopData *Parent = Q.front().second;
1066 if (hasLoop(Cycle)) {
1067 BlockNode Header =
getNode(CI->getHeader(Cycle));
1068 Loops.emplace_back(Parent, Header);
1070 Working[Header.Index].Loop = &
Loops.back();
1072 Parent = &
Loops.back();
1073 }
else if (!CI->isReducible(Cycle)) {
1077 Parent->ContainsIrreducible =
true;
1079 TopContainsIrreducible =
true;
1083 Q.emplace_back(
C, Parent);
1088 for (
size_t Index = 0;
Index < RPOT.size(); ++
Index) {
1090 if (Working[Index].isLoopHeader()) {
1091 LoopData *ContainingLoop = Working[
Index].getContainingLoop();
1093 ContainingLoop->Nodes.push_back(Index);
1097 CycleRef Cycle = CI->getCycle(RPOT[Index]);
1098 while (Cycle && !hasLoop(Cycle))
1099 Cycle = CI->getParentCycle(Cycle);
1104 BlockNode Header =
getNode(CI->getHeader(Cycle));
1105 assert(Header.isValid());
1106 const auto &HeaderData = Working[Header.Index];
1107 assert(HeaderData.isLoopHeader());
1109 Working[
Index].Loop = HeaderData.Loop;
1110 HeaderData.Loop->Nodes.push_back(Index);
1116template <
class BT>
void BlockFrequencyInfoImpl<BT>::computeMassInLoops() {
1119 for (
auto L =
Loops.end(),
B =
Loops.begin(); L !=
B;) {
1121 if (
L->ContainsIrreducible)
1122 computeIrreducibleMass(&*L, std::next(L));
1123 computeMassInLoop(*L);
1128void BlockFrequencyInfoImpl<BT>::computeMassInLoop(LoopData &
Loop) {
1131 if (
Loop.isIrreducible()) {
1133 solveIrreducibleMass(
Loop);
1135 Working[
Loop.
getHeader().Index].getMass() = BlockMass::getFull();
1137 for (
const BlockNode &M :
Loop.members())
1138 propagateMassToSuccessors(&
Loop, M);
1141 computeLoopScale(
Loop);
1146void BlockFrequencyInfoImpl<BT>::getSuccWeights(
1147 const BlockNode &Node,
1150 if (
auto *L = Working[
Node.Index].getPackagedLoop()) {
1151 for (
const auto &
E :
L->Exits)
1152 Out.emplace_back(Working[
E.first.Index].getResolvedNode(),
1153 E.second.getMass());
1156 const BlockT *BB = getBlock(Node);
1158 BlockNode Succ =
getNode(It.value());
1159 if (!Succ.isValid())
1163 Out.emplace_back(Working[Succ.Index].getResolvedNode(),
1164 std::max<uint64_t>(1, W));
1173void BlockFrequencyInfoImpl<BT>::solveIrreducibleMass(LoopData &
Loop) {
1174 const size_t N =
Loop.Nodes.size();
1179 for (
size_t I = 0;
I !=
N; ++
I) {
1180 getSuccWeights(
Loop.Nodes[
I], Succs);
1184 Scaled64 InvTotal = Scaled64::getInverse(
Total);
1185 for (
const auto &S : Succs) {
1186 Scaled64 Pr = Scaled64(S.second, 0) * InvTotal;
1190 if (It !=
Loop.Nodes.
end() && *It == S.first)
1193 Ex.emplace_back(
I, S.first, Pr);
1203 for (
size_t I = 0;
I !=
N; ++
I)
1204 if (
auto W = getBlock(
Loop.Nodes[
I])->getIrrLoopHeaderWeight()) {
1205 F[
I] = Scaled64(*W, 0);
1210 Pinned.assign(
N,
false);
1211 F.assign(
N, Scaled64::getInverse(
N));
1216 const unsigned MaxIterations = 16;
1219 for (
unsigned It = 0; It != MaxIterations; ++It) {
1220 G.assign(
N, Scaled64::getZero());
1221 for (
auto [
I, J, Pr] :
P)
1224 for (
size_t I = 0;
I !=
N; ++
I) {
1231 Scaled64 Ratio =
New / Sum;
1233 for (
size_t I = 0;
I !=
N; ++
I) {
1234 Scaled64 Was = Ratio *
F[
I];
1235 Delta +=
G[
I] >= Was ?
G[
I] - Was : Was -
G[
I];
1239 if (Delta < New * Scaled64(1, -32))
1247 for (
size_t I = 0;
I !=
N; ++
I)
1250 BlockMass TotalExit;
1251 for (
auto [
I, Succ, Pr] : Ex) {
1253 Loop.Exits.emplace_back(Succ, BlockMass(M));
1254 TotalExit += BlockMass(M);
1256 Loop.BackedgeMass = BlockMass::getFull() - TotalExit;
1259template <
class BT>
void BlockFrequencyInfoImpl<BT>::computeMassInFunction() {
1260 if (TopContainsIrreducible)
1261 computeIrreducibleMass(
nullptr,
Loops.begin());
1264 assert(!Working.empty() &&
"no blocks in function");
1265 assert(!Working[0].isLoopHeader() &&
"entry block is a loop header");
1267 Working[0].getMass() = BlockMass::getFull();
1268 for (
size_t i = 0, n = RPOT.size(); i != n; ++i) {
1270 if (Working[i].isPackaged())
1273 propagateMassToSuccessors(
nullptr, BlockNode(i));
1278bool BlockFrequencyInfoImpl<BT>::needIterativeInference()
const {
1281 if (!
F->getFunction().hasProfileData())
1285 for (
auto L =
Loops.rbegin(),
E =
Loops.rend(); L !=
E; ++L) {
1286 if (
L->isIrreducible())
1292template <
class BT>
void BlockFrequencyInfoImpl<BT>::applyIterativeInference() {
1298 findReachableBlocks(ReachableBlocks);
1299 if (ReachableBlocks.none())
1303 auto Freq = std::vector<Scaled64>(ReachableBlocks.size());
1305 for (
const BlockT &BB : *
F) {
1307 if (!ReachableBlocks[
Number])
1309 Freq[
Number] = getFloatingBlockFreq(&BB);
1312 assert(!SumFreq.isZero() &&
"empty initial block frequencies");
1314 LLVM_DEBUG(
dbgs() <<
"Applying iterative inference for " <<
F->getName()
1315 <<
" with " << ReachableBlocks.count() <<
" blocks\n");
1318 for (
auto &
Value : Freq) {
1324 ProbMatrixType ProbMatrix;
1325 initTransitionProbabilities(ReachableBlocks, ProbMatrix);
1328 iterativeInference(ProbMatrix, ReachableBlocks, Freq);
1331 for (
const BlockT &BB : *
F) {
1333 if (!
Node.isValid())
1336 Freqs[
Node.Index].Scaled =
1337 ReachableBlocks[
Number] ? Freq[
Number] : Scaled64::getZero();
1342void BlockFrequencyInfoImpl<BT>::iterativeInference(
1343 const ProbMatrixType &ProbMatrix,
const BitVector &Blocks,
1344 std::vector<Scaled64> &Freq)
const {
1346 "incorrectly specified precision");
1348 const auto Precision =
1350 const size_t MaxIterations =
1355 << discrepancy(ProbMatrix, Freq).
toString() <<
"\n");
1359 auto Successors = std::vector<std::vector<size_t>>(Freq.size());
1360 for (
size_t I = 0;
I < Freq.size();
I++) {
1361 for (
const auto &Jump : ProbMatrix[
I]) {
1362 Successors[Jump.first].push_back(
I);
1370 auto IsActive =
BitVector(Freq.size(),
false);
1371 std::queue<size_t> ActiveSet;
1372 for (
unsigned I : Blocks.set_bits()) {
1381 while (It++ < MaxIterations && !ActiveSet.empty()) {
1382 size_t I = ActiveSet.front();
1384 IsActive[
I] =
false;
1390 Scaled64 OneMinusSelfProb = Scaled64::getOne();
1391 for (
const auto &Jump : ProbMatrix[
I]) {
1392 if (Jump.first ==
I) {
1393 OneMinusSelfProb -= Jump.second;
1395 NewFreq += Freq[Jump.first] * Jump.second;
1398 if (OneMinusSelfProb != Scaled64::getOne())
1399 NewFreq /= OneMinusSelfProb;
1403 auto Change = Freq[
I] >= NewFreq ? Freq[
I] - NewFreq : NewFreq - Freq[
I];
1404 if (Change > Precision) {
1407 for (
size_t Succ : Successors[
I]) {
1408 if (!IsActive[Succ]) {
1409 ActiveSet.push(Succ);
1410 IsActive[Succ] =
true;
1419 LLVM_DEBUG(
dbgs() <<
" Completed " << It <<
" inference iterations"
1420 <<
format(
" (%0.0f per block)",
double(It) / Freq.size())
1424 << discrepancy(ProbMatrix, Freq).
toString() <<
"\n");
1429void BlockFrequencyInfoImpl<BT>::findReachableBlocks(
BitVector &Blocks)
const {
1431 auto number = [](
const BlockT *BB) {
1437 std::queue<const BlockT *>
Queue;
1439 const BlockT *
Entry = &
F->front();
1441 Reachable.set(
number(Entry));
1442 while (!
Queue.empty()) {
1443 const BlockT *SrcBB =
Queue.front();
1446 auto EP = BPI->getEdgeProbability(SrcBB, It.index());
1450 if (!Reachable.test(
Number)) {
1452 Queue.push(It.value());
1460 for (
const BlockT &BB : *
F) {
1463 if (!HasSucc && Reachable.test(
number(&BB))) {
1465 InverseReachable.set(
number(&BB));
1468 while (!
Queue.empty()) {
1469 const BlockT *SrcBB =
Queue.front();
1472 auto EP = BPI->getEdgeProbability(DstBB, SrcBB);
1476 if (!InverseReachable.test(
Number)) {
1477 InverseReachable.set(
Number);
1484 Reachable &= InverseReachable;
1485 Blocks = std::move(Reachable);
1489void BlockFrequencyInfoImpl<BT>::initTransitionProbabilities(
1490 const BitVector &Blocks, ProbMatrixType &ProbMatrix)
const {
1491 const size_t NumBlocks = Blocks.size();
1492 auto Succs = std::vector<std::vector<std::pair<size_t, Scaled64>>>(NumBlocks);
1493 auto SumProb = std::vector<Scaled64>(NumBlocks);
1496 for (
const BlockT &BB : *
F) {
1502 const BlockT *
SI = It.value();
1508 if (!UniqueSuccs.insert(
SI).second)
1511 auto EP = BPI->getEdgeProbability(&BB, It.index());
1516 Scaled64::getFraction(EP.getNumerator(), EP.getDenominator());
1517 Succs[Src].push_back(std::make_pair(Dst, EdgeProb));
1518 SumProb[Src] += EdgeProb;
1523 ProbMatrix = ProbMatrixType(NumBlocks);
1524 for (
size_t Src = 0; Src < NumBlocks; Src++) {
1526 if (Succs[Src].
empty())
1529 assert(!SumProb[Src].
isZero() &&
"Zero sum probability of non-exit block");
1530 for (
auto &Jump : Succs[Src]) {
1531 size_t Dst = Jump.first;
1532 Scaled64 Prob = Jump.second;
1533 ProbMatrix[Dst].push_back(std::make_pair(Src, Prob / SumProb[Src]));
1539 for (
size_t Src = 0; Src < NumBlocks; Src++) {
1540 if (Blocks[Src] && Succs[Src].
empty()) {
1541 ProbMatrix[EntryIdx].push_back(std::make_pair(Src, Scaled64::getOne()));
1549 const ProbMatrixType &ProbMatrix,
const std::vector<Scaled64> &Freq)
const {
1551 assert(Freq[EntryIdx] > 0 &&
1552 "Incorrectly computed frequency of the entry block");
1553 Scaled64 Discrepancy;
1554 for (
size_t I = 0;
I < ProbMatrix.size();
I++) {
1556 for (
const auto &Jump : ProbMatrix[
I]) {
1557 Sum += Freq[Jump.first] * Jump.second;
1559 Discrepancy += Freq[
I] >= Sum ? Freq[
I] - Sum : Sum - Freq[
I];
1562 return Discrepancy / Freq[EntryIdx];
1567void BlockFrequencyInfoImpl<BT>::computeIrreducibleMass(
1568 LoopData *OuterLoop, std::list<LoopData>::iterator Insert) {
1570 if (OuterLoop)
dbgs()
1571 <<
"loop: " << getLoopName(*OuterLoop) <<
"\n";
1572 else dbgs() <<
"function\n");
1576 auto addBlockEdges = [&](IrreducibleGraph &
G, IrreducibleGraph::IrrNode &Irr,
1577 const LoopData *OuterLoop) {
1578 const BlockT *BB = RPOT[Irr.Node.Index];
1580 G.addEdge(Irr,
getNode(Succ), OuterLoop);
1582 IrreducibleGraph
G(*
this, OuterLoop, addBlockEdges);
1584 for (
auto &L : analyzeIrreducible(
G, OuterLoop, Insert))
1585 computeMassInLoop(L);
1591 assert(OuterLoop->Exits.empty() &&
"unexpected exits before distribution");
1592 assert(OuterLoop->BackedgeMass.isEmpty() &&
1593 "unexpected backedge mass before distribution");
1594 auto O = OuterLoop->Nodes.begin() + 1;
1595 for (
auto I = O,
E = OuterLoop->Nodes.end();
I !=
E; ++
I)
1596 if (!Working[
I->Index].isPackaged())
1598 OuterLoop->Nodes.erase(O, OuterLoop->Nodes.end());
1607void BlockFrequencyInfoImpl<BT>::propagateMassToSuccessors(
1608 LoopData *OuterLoop,
const BlockNode &
Node) {
1612 if (
auto *
Loop = Working[
Node.Index].getPackagedLoop()) {
1613 assert(
Loop != OuterLoop &&
"Cannot propagate mass in a packaged loop");
1614 addLoopSuccessorsToDist(OuterLoop, *
Loop, Dist);
1616 const BlockT *BB = getBlock(Node);
1619 Dist, OuterLoop, Node,
getNode(It.value()),
1625 distributeMass(Node, OuterLoop, Dist);
1632 OS <<
"block-frequency-info: " << F->getName() <<
"\n";
1633 for (
const BlockT &BB : *F) {
1637 if (std::optional<uint64_t> ProfileCount =
1639 F->getFunction(), getNode(&BB)))
1640 OS <<
", count = " << *ProfileCount;
1641 if (std::optional<uint64_t> IrrLoopHeaderWeight =
1642 BB.getIrrLoopHeaderWeight())
1643 OS <<
", irr_loop_header_weight = " << *IrrLoopHeaderWeight;
1660 for (
const auto &BB : *F)
1663 size_t MinSize = std::min(Nodes.size(),
Other.Nodes.size());
1664 for (
size_t i = 0; i < MinSize; ++i) {
1670 <<
" existence mismatch.\n";
1671 }
else if (Nodes[i].
isValid()) {
1672 const auto &Freq =
Freqs[Nodes[i].Index];
1673 const auto &OtherFreq =
Other.Freqs[
Other.Nodes[i].Index];
1674 if (Freq.Integer != OtherFreq.Integer) {
1677 <<
" " << Freq.Integer <<
" vs " << OtherFreq.Integer <<
"\n";
1682 for (
size_t i = MinSize; i < Nodes.size(); ++i) {
1686 <<
" existence mismatch.\n";
1689 for (
size_t i = MinSize; i <
Other.Nodes.size(); ++i) {
1690 if (
Other.Nodes[i].isValid()) {
1693 <<
" existence mismatch.\n";
1700 dbgs() <<
"Other\n";
1703 assert(Match &&
"BFI mismatch");
1711template <
class BlockFrequencyInfoT,
class BranchProbabilityInfoT>
1724 return G->getFunction()->getName();
1728 unsigned HotPercentThreshold = 0) {
1730 if (!HotPercentThreshold)
1740 std::max(
MaxFrequency, Graph->getBlockFreq(
N).getFrequency());
1756 GVDAGType GType,
int layout_order = -1) {
1760 if (layout_order != -1)
1761 OS <<
Node->getName() <<
"[" << layout_order <<
"] : ";
1763 OS <<
Node->getName() <<
" : ";
1769 OS << Graph->getBlockFreq(
Node).getFrequency();
1772 auto Count = Graph->getBlockProfileCount(
Node);
1781 "never reach this point.");
1787 const BlockFrequencyInfoT *BFI,
1788 const BranchProbabilityInfoT *BPI,
1789 unsigned HotPercentThreshold = 0) {
1802 if (HotPercentThreshold) {
1807 if (EFreq >= HotFreq)
1808 OS <<
",color=\"red\"";
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static msgpack::DocNode getNode(msgpack::DocNode DN, msgpack::Type Type, MCValue Val)
static void print(raw_ostream &Out, object::Archive::Kind Kind, T Val)
This file implements the BitVector class.
static constexpr std::size_t number(BlockVerifier::State S)
static uint64_t scale(uint64_t Num, uint32_t N, uint32_t D)
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
This file defines the DenseMap class.
Find all cycles in a control-flow graph, including irreducible loops.
This file defines the little GraphTraits<X> template class that should be specialized by classes that...
static bool isZero(Value *V, const DataLayout &DL, DominatorTree *DT, AssumptionCache *AC)
Branch Probability Basic Block static false std::string getBlockName(const MachineBasicBlock *BB)
Helper to print the name of a MBB.
This file builds on the ADT/GraphTraits.h file to build a generic graph post order iterator.
static bool isValid(const char C)
Returns true if C is a valid mangled character: <0-9a-zA-Z_>.
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
This file defines the SparseBitVector class.
LLVM Basic Block Representation.
Base class for BlockFrequencyInfoImpl.
std::vector< WorkingData > Working
Loop data: see initializeLoops().
std::optional< uint64_t > getProfileCountFromFreq(const Function &F, BlockFrequency Freq) const
virtual ~BlockFrequencyInfoImplBase()=default
Virtual destructor.
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
ScaledNumber< uint64_t > Scaled64
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.
bfi_detail::BlockMass BlockMass
void packageLoop(LoopData &Loop)
Package up a loop.
virtual raw_ostream & print(raw_ostream &OS) const
void finalizeMetrics()
Finalize frequency metrics.
void setBlockFreq(const BlockNode &Node, BlockFrequency Freq)
BlockFrequency getEntryFreq() const
void clear()
Clear all memory.
BlockFrequency getBlockFreq(const BlockNode &Node) const
iterator_range< std::list< LoopData >::iterator > analyzeIrreducible(const bfi_detail::IrreducibleGraph &G, LoopData *OuterLoop, std::list< LoopData >::iterator Insert)
Analyze irreducible SCCs.
void unwrapLoops()
Unwrap loops.
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.
bool isIrrLoopHeader(const BlockT *BB)
std::optional< uint64_t > getProfileCountFromFreq(const Function &F, BlockFrequency Freq) const
const BranchProbabilityInfoT & getBPI() const
const FunctionT * getFunction() const
void verifyMatch(BlockFrequencyInfoImpl< BT > &Other) const
std::optional< uint64_t > getBlockProfileCount(const Function &F, const BlockT *BB) const
Scaled64 getFloatingBlockFreq(const BlockT *BB) const
void setBlockFreq(const BlockT *BB, BlockFrequency Freq)
void calculate(const FunctionT &F, const BranchProbabilityInfoT &BPI, const CycleInfoT &CI)
BlockFrequencyInfoImpl()=default
raw_ostream & print(raw_ostream &OS) const override
Print the frequencies for the current function.
BlockFrequency getBlockFreq(const BlockT *BB) const
Analysis providing branch probability information.
static LLVM_ABI BranchProbability getBranchProbability(uint64_t Numerator, uint64_t Denominator)
static uint32_t getDenominator()
uint32_t getNumerator() const
Opaque handle to a cycle within a GenericCycleInfo that wraps the cycle's preorder index.
BlockT * getHeader() const
Represents a single loop in the control flow graph.
Simple representation of a scaled number.
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
typename SuperClass::const_iterator const_iterator
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Represent a constant reference to a string, i.e.
std::string str() const
Get the contents as an std::string.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
The instances of the Type class are immutable: once they are created, they are never changed.
LLVM Value Representation.
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
bool operator<(BlockMass X) const
bool operator>(BlockMass X) const
LLVM_ABI raw_ostream & print(raw_ostream &OS) const
bool operator==(BlockMass X) const
static BlockMass getEmpty()
LLVM_ABI void dump() const
BlockMass & operator-=(BlockMass X)
Subtract another mass.
bool operator<=(BlockMass X) const
BlockMass & operator*=(BranchProbability P)
static BlockMass getFull()
bool operator!=(BlockMass X) const
BlockMass & operator+=(BlockMass X)
Add another mass.
bool operator>=(BlockMass X) const
LLVM_ABI ScaledNumber< uint64_t > toScaled() const
Convert to scaled number.
A range adaptor for a pair of iterators.
This class implements an extremely fast bulk output stream that can only output to a stream.
A raw_ostream that writes to an std::string.
This provides a very simple, boring adaptor for a begin and end iterator into a range type.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
std::string getBlockName(const BlockT *BB)
Get the name of a MachineBasicBlock.
BlockMass operator*(BlockMass L, BranchProbability R)
BlockMass operator+(BlockMass L, BlockMass R)
raw_ostream & operator<<(raw_ostream &OS, BlockMass X)
BlockMass operator-(BlockMass L, BlockMass R)
NodeAddr< NodeBase * > Node
This is an optimization pass for GlobalISel generic memory operations.
Printable print(const GCNRegPressure &RP, const GCNSubtarget *ST=nullptr, unsigned DynamicVGPRBlockSize=0)
uint32_t getWeightFromBranchProb(const BranchProbability Prob)
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
LLVM_ABI llvm::cl::opt< unsigned > IterativeBFIMaxIterationsPerBlock
LLVM_ABI llvm::cl::opt< bool > UseIterativeBFIInference
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
auto post_order(const T &G)
Post-order traversal of a graph.
format_object< Ts... > format(const char *Fmt, const Ts &... Vals)
These are helper functions used to produce formatted output.
LLVM_ABI llvm::cl::opt< bool > CheckBFIUnknownBlockQueries
RNSuccIterator< NodeRef, BlockT, RegionT > succ_begin(NodeRef Node)
auto lower_bound(R &&Range, T &&Value)
Provide wrappers to std::lower_bound which take ranges instead of having to pass begin/end explicitly...
constexpr NextUseDistance max(NextUseDistance A, NextUseDistance B)
iterator_range< typename GraphTraits< Inverse< GraphType > >::ChildIteratorType > inverse_children(const typename GraphTraits< GraphType >::NodeRef &G)
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Count
std::string toString(const APInt &I, unsigned Radix, bool Signed, bool formatAsCLiteral=false, bool UpperCase=true, bool InsertSeparators=false)
auto make_second_range(ContainerTy &&c)
Given a container of pairs, return a range over the second elements.
auto sum_of(R &&Range, E Init=E{0})
Returns the sum of all values in Range with Init initial value.
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
iterator_range< typename GraphTraits< GraphType >::ChildIteratorType > children(const typename GraphTraits< GraphType >::NodeRef &G)
LLVM_ABI Printable printBlockFreq(const BlockFrequencyInfo &BFI, BlockFrequency Freq)
Print the block frequency Freq relative to the current functions entry frequency.
LLVM_ABI llvm::cl::opt< double > IterativeBFIPrecision
Implement std::hash so that hash_code can be used in STL containers.
GraphTraits< BlockFrequencyInfoT * > GTraits
std::string getNodeAttributes(NodeRef Node, const BlockFrequencyInfoT *Graph, unsigned HotPercentThreshold=0)
typename GTraits::nodes_iterator NodeIter
typename GTraits::NodeRef NodeRef
typename GTraits::ChildIteratorType EdgeIter
std::string getNodeLabel(NodeRef Node, const BlockFrequencyInfoT *Graph, GVDAGType GType, int layout_order=-1)
std::string getEdgeAttributes(NodeRef Node, EdgeIter EI, const BlockFrequencyInfoT *BFI, const BranchProbabilityInfoT *BPI, unsigned HotPercentThreshold=0)
BFIDOTGraphTraitsBase(bool isSimple=false)
static StringRef getGraphName(const BlockFrequencyInfoT *G)
Representative of a block.
bool operator==(const BlockNode &X) const
bool operator!=(const BlockNode &X) const
bool operator<(const BlockNode &X) const
bool operator>=(const BlockNode &X) const
BlockNode(IndexType Index)
static size_t getMaxIndex()
bool operator<=(const BlockNode &X) const
bool operator>(const BlockNode &X) const
Distribution of unscaled probability weight.
void addBackedge(const BlockNode &Node, uint64_t Amount)
SmallVector< Weight, 4 > WeightList
WeightList Weights
Individual successor weights.
uint64_t Total
Sum of all weights.
void addExit(const BlockNode &Node, uint64_t Amount)
bool DidOverflow
Whether Total did overflow.
void addLocal(const BlockNode &Node, uint64_t Amount)
Stats about a block itself.
bool isHeader(const BlockNode &Node) const
SmallVector< std::pair< BlockNode, BlockMass >, 4 > ExitMap
LoopData * Parent
The parent loop.
ExitMap Exits
Successor edges (and weights).
bool IsPackaged
Whether this has been packaged.
LoopData(LoopData *Parent, const BlockNode &Header)
SmallVector< BlockNode, 4 > NodeList
BlockMass BackedgeMass
Mass that circulates, not exits.
NodeList::const_iterator members_end() const
NodeList::const_iterator members_begin() const
bool isIrreducible() const
BlockNode getHeader() const
NodeList Nodes
Header and the members of the loop.
LoopData(LoopData *Parent, NodeList &&Members)
An irreducible SCC.
iterator_range< NodeList::const_iterator > members() const
Unscaled probability weight.
Weight(DistType Type, BlockNode TargetNode, uint64_t Amount)
bool isPackaged() const
Has ContainingLoop been packaged up?
BlockMass Mass
Mass distribution from the entry block.
BlockMass & getMass()
The mass slot for Node: its own, or that of the outermost packaged loop it heads.
WorkingData(const BlockNode &Node)
bool isAPackage() const
Has Loop been packaged up?
bool isLoopHeader() const
LoopData * Loop
The loop this block is inside.
LoopData * getContainingLoop() const
The innermost loop containing Node that Node does not head.
LoopData * getPackagedLoop() const
The outermost loop containing Node that is currently packaged, if any.
BlockNode getResolvedNode() const
Resolve a node to its representative.
DefaultDOTGraphTraits(bool simple=false)
static nodes_iterator nodes_end(const BlockFrequencyInfo *G)
static nodes_iterator nodes_begin(const BlockFrequencyInfo *G)
typename BlockFrequencyInfoT *::UnknownGraphTypeError NodeRef
IrrNode(const BlockNode &Node)
SmallVectorImpl< const IrrNode * >::const_iterator iterator
SmallVector< const IrrNode *, 4 > Succs
iterator succ_begin() const
iterator succ_end() const
Graph of irreducible control flow.
LLVM_ABI void addNodesInFunction()
IrreducibleGraph(BFIBase &BFI, const BFIBase::LoopData *OuterLoop, BlockEdgesAdder addBlockEdges)
Construct an explicit graph containing irreducible control flow.
LLVM_ABI void indexNodes()
LLVM_ABI void addEdge(IrrNode &Irr, const BlockNode &Succ, const BFIBase::LoopData *OuterLoop)
unsigned getIndex(const IrrNode *N) const
The position of N in Nodes, for indexing side tables.
BlockFrequencyInfoImplBase BFIBase
void addEdges(const BlockNode &Node, const BFIBase::LoopData *OuterLoop, BlockEdgesAdder addBlockEdges)
BFIBase::BlockNode BlockNode
std::vector< IrrNode > Nodes
SmallDenseMap< uint32_t, IrrNode *, 4 > Lookup
void initialize(const BFIBase::LoopData *OuterLoop, BlockEdgesAdder addBlockEdges)
void addNode(const BlockNode &Node)
LLVM_ABI void addNodesInLoop(const BFIBase::LoopData &OuterLoop)
BranchProbabilityInfo BranchProbabilityInfoT
MachineFunction FunctionT
MachineBranchProbabilityInfo BranchProbabilityInfoT
MachineCycleInfo CycleInfoT