Thanks to visit codestin.com
Credit goes to llvm.org

LLVM 22.0.0git
ProfileVerify.cpp
Go to the documentation of this file.
1//===- ProfileVerify.cpp - Verify profile info for testing ----------------===//
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
11#include "llvm/ADT/STLExtras.h"
13#include "llvm/IR/Analysis.h"
14#include "llvm/IR/Dominators.h"
15#include "llvm/IR/Function.h"
17#include "llvm/IR/LLVMContext.h"
18#include "llvm/IR/MDBuilder.h"
22
23using namespace llvm;
25 DefaultFunctionEntryCount("profcheck-default-function-entry-count",
26 cl::init(1000));
27static cl::opt<bool>
28 AnnotateSelect("profcheck-annotate-select", cl::init(true),
29 cl::desc("Also inject (if missing) and verify MD_prof for "
30 "`select` instructions"));
31static cl::opt<bool>
32 WeightsForTest("profcheck-weights-for-test", cl::init(false),
33 cl::desc("Generate weights with small values for tests."));
34
36 "profcheck-default-select-true-weight", cl::init(2U),
37 cl::desc("When annotating `select` instructions, this value will be used "
38 "for the first ('true') case."));
40 "profcheck-default-select-false-weight", cl::init(3U),
41 cl::desc("When annotating `select` instructions, this value will be used "
42 "for the second ('false') case."));
43namespace {
44class ProfileInjector {
45 Function &F;
47
48public:
49 static const Instruction *
50 getTerminatorBenefitingFromMDProf(const BasicBlock &BB) {
51 if (succ_size(&BB) < 2)
52 return nullptr;
53 auto *Term = BB.getTerminator();
54 return (isa<BranchInst>(Term) || isa<SwitchInst>(Term) ||
56 ? Term
57 : nullptr;
58 }
59
60 static Instruction *getTerminatorBenefitingFromMDProf(BasicBlock &BB) {
61 return const_cast<Instruction *>(
62 getTerminatorBenefitingFromMDProf(const_cast<const BasicBlock &>(BB)));
63 }
64
65 ProfileInjector(Function &F, FunctionAnalysisManager &FAM) : F(F), FAM(FAM) {}
66 bool inject();
67};
68} // namespace
69
70// FIXME: currently this injects only for terminators. Select isn't yet
71// supported.
72bool ProfileInjector::inject() {
73 // Get whatever branch probability info can be derived from the given IR -
74 // whether it has or not metadata. The main intention for this pass is to
75 // ensure that other passes don't drop or "forget" to update MD_prof. We do
76 // this as a mode in which lit tests would run. We want to avoid changing the
77 // behavior of those tests. A pass may use BPI (or BFI, which is computed from
78 // BPI). If no metadata is present, BPI is guesstimated by
79 // BranchProbabilityAnalysis. The injector (this pass) only persists whatever
80 // information the analysis provides, in other words, the pass being tested
81 // will get the same BPI it does if the injector wasn't running.
82 auto &BPI = FAM.getResult<BranchProbabilityAnalysis>(F);
83
84 // Inject a function count if there's none. It's reasonable for a pass to
85 // want to clear the MD_prof of a function with zero entry count. If the
86 // original profile (iFDO or AFDO) is empty for a function, it's simpler to
87 // require assigning it the 0-entry count explicitly than to mark every branch
88 // as cold (we do want some explicit information in the spirit of what this
89 // verifier wants to achieve - make dropping / corrupting MD_prof
90 // unit-testable)
91 if (!F.getEntryCount(/*AllowSynthetic=*/true))
92 F.setEntryCount(DefaultFunctionEntryCount);
93 // If there is an entry count that's 0, then don't bother injecting. We won't
94 // verify these either.
95 if (F.getEntryCount(/*AllowSynthetic=*/true)->getCount() == 0)
96 return false;
97 bool Changed = false;
98 // Cycle through the weights list. If we didn't, tests with more than (say)
99 // one conditional branch would have the same !prof metadata on all of them,
100 // and numerically that may make for a poor unit test.
101 uint32_t WeightsForTestOffset = 0;
102 for (auto &BB : F) {
103 if (AnnotateSelect) {
104 for (auto &I : BB) {
105 if (isa<SelectInst>(I) && !I.getMetadata(LLVMContext::MD_prof))
107 /*IsExpected=*/false);
108 }
109 }
110 auto *Term = getTerminatorBenefitingFromMDProf(BB);
111 if (!Term || Term->getMetadata(LLVMContext::MD_prof))
112 continue;
113 SmallVector<BranchProbability> Probs;
114
115 SmallVector<uint32_t> Weights;
116 Weights.reserve(Term->getNumSuccessors());
117 if (WeightsForTest) {
118 static const std::array Primes{3, 5, 7, 11, 13, 17, 19, 23, 29, 31,
119 37, 41, 43, 47, 53, 59, 61, 67, 71};
120 for (uint32_t I = 0, E = Term->getNumSuccessors(); I < E; ++I)
121 Weights.emplace_back(
122 Primes[(WeightsForTestOffset + I) % Primes.size()]);
123 ++WeightsForTestOffset;
124 } else {
125 Probs.reserve(Term->getNumSuccessors());
126 for (auto I = 0U, E = Term->getNumSuccessors(); I < E; ++I)
127 Probs.emplace_back(BPI.getEdgeProbability(&BB, Term->getSuccessor(I)));
128
129 assert(llvm::find_if(Probs,
130 [](const BranchProbability &P) {
131 return P.isUnknown();
132 }) == Probs.end() &&
133 "All branch probabilities should be valid");
134 const auto *FirstZeroDenominator =
135 find_if(Probs, [](const BranchProbability &P) {
136 return P.getDenominator() == 0;
137 });
138 (void)FirstZeroDenominator;
139 assert(FirstZeroDenominator == Probs.end());
140 const auto *FirstNonZeroNumerator = find_if(
141 Probs, [](const BranchProbability &P) { return !P.isZero(); });
142 assert(FirstNonZeroNumerator != Probs.end());
143 DynamicAPInt LCM(Probs[0].getDenominator());
144 DynamicAPInt GCD(FirstNonZeroNumerator->getNumerator());
145 for (const auto &Prob : drop_begin(Probs)) {
146 if (!Prob.getNumerator())
147 continue;
148 LCM = llvm::lcm(LCM, DynamicAPInt(Prob.getDenominator()));
149 GCD = llvm::gcd(GCD, DynamicAPInt(Prob.getNumerator()));
150 }
151 for (const auto &Prob : Probs) {
152 DynamicAPInt W =
153 (Prob.getNumerator() * LCM / GCD) / Prob.getDenominator();
154 Weights.emplace_back(static_cast<uint32_t>((int64_t)W));
155 }
156 }
157 setBranchWeights(*Term, Weights, /*IsExpected=*/false);
158 Changed = true;
159 }
160 return Changed;
161}
162
165 ProfileInjector PI(F, FAM);
166 if (!PI.inject())
167 return PreservedAnalyses::all();
168
170}
171
174 const auto EntryCount = F.getEntryCount(/*AllowSynthetic=*/true);
175 if (!EntryCount) {
176 auto *MD = F.getMetadata(LLVMContext::MD_prof);
177 if (!MD || !isExplicitlyUnknownProfileMetadata(*MD)) {
178 F.getContext().emitError("Profile verification failed: function entry "
179 "count missing (set to 0 if cold)");
180 return PreservedAnalyses::all();
181 }
182 } else if (EntryCount->getCount() == 0) {
183 return PreservedAnalyses::all();
184 }
185 for (const auto &BB : F) {
186 if (AnnotateSelect) {
187 for (const auto &I : BB)
188 if (isa<SelectInst>(I) && !I.getMetadata(LLVMContext::MD_prof))
189 F.getContext().emitError(
190 "Profile verification failed: select annotation missing");
191 }
192 if (const auto *Term =
193 ProfileInjector::getTerminatorBenefitingFromMDProf(BB))
194 if (!Term->getMetadata(LLVMContext::MD_prof))
195 F.getContext().emitError(
196 "Profile verification failed: branch annotation missing");
197 }
198 return PreservedAnalyses::all();
199}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
#define F(x, y, z)
Definition MD5.cpp:55
#define I(x, y, z)
Definition MD5.cpp:58
#define P(N)
FunctionAnalysisManager FAM
This file contains the declarations for profiling metadata utility functions.
static cl::opt< bool > WeightsForTest("profcheck-weights-for-test", cl::init(false), cl::desc("Generate weights with small values for tests."))
static cl::opt< uint32_t > SelectFalseWeight("profcheck-default-select-false-weight", cl::init(3U), cl::desc("When annotating `select` instructions, this value will be used " "for the second ('false') case."))
static cl::opt< int64_t > DefaultFunctionEntryCount("profcheck-default-function-entry-count", cl::init(1000))
static cl::opt< bool > AnnotateSelect("profcheck-annotate-select", cl::init(true), cl::desc("Also inject (if missing) and verify MD_prof for " "`select` instructions"))
static cl::opt< uint32_t > SelectTrueWeight("profcheck-default-select-true-weight", cl::init(2U), cl::desc("When annotating `select` instructions, this value will be used " "for the first ('true') case."))
This file contains some templates that are useful if you are working with the STL at all.
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
LLVM Basic Block Representation.
Definition BasicBlock.h:62
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction if the block is well formed or null if the block is not well forme...
Definition BasicBlock.h:233
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
static PreservedAnalyses none()
Convenience factory function for the empty preserved set.
Definition Analysis.h:115
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition Analysis.h:118
LLVM_ABI PreservedAnalyses run(Function &F, FunctionAnalysisManager &FAM)
LLVM_ABI PreservedAnalyses run(Function &F, FunctionAnalysisManager &FAM)
reference emplace_back(ArgTypes &&... Args)
void reserve(size_type N)
Changed
Pass manager infrastructure for declaring and invalidating analyses.
@ BasicBlock
Various leaf nodes.
Definition ISDOpcodes.h:81
initializer< Ty > init(const Ty &Val)
friend class Instruction
Iterator for Instructions in a `BasicBlock.
Definition BasicBlock.h:73
This is an optimization pass for GlobalISel generic memory operations.
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
Definition STLExtras.h:318
LLVM_ATTRIBUTE_ALWAYS_INLINE DynamicAPInt gcd(const DynamicAPInt &A, const DynamicAPInt &B)
LLVM_ABI bool isExplicitlyUnknownProfileMetadata(const MDNode &MD)
LLVM_ABI void setBranchWeights(Instruction &I, ArrayRef< uint32_t > Weights, bool IsExpected)
Create a new branch_weights metadata node and add or overwrite a prof metadata reference to instructi...
auto succ_size(const MachineBasicBlock *BB)
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
Definition Casting.h:548
LLVM_ATTRIBUTE_ALWAYS_INLINE DynamicAPInt lcm(const DynamicAPInt &A, const DynamicAPInt &B)
Returns the least common multiple of A and B.
auto find_if(R &&Range, UnaryPredicate P)
Provide wrappers to std::find_if which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1738
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.