[ARM] Generate 8.1-m CSINC, CSNEG and CSINV instructions.
[llvm-core.git] / lib / Analysis / ProfileSummaryInfo.cpp
blobdce19d6d546e2dbbf3941a369a86c31fd1d599ba
1 //===- ProfileSummaryInfo.cpp - Global profile summary information --------===//
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 // This file contains a pass that provides access to the global profile summary
10 // information.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/Analysis/ProfileSummaryInfo.h"
15 #include "llvm/Analysis/BlockFrequencyInfo.h"
16 #include "llvm/IR/BasicBlock.h"
17 #include "llvm/IR/CallSite.h"
18 #include "llvm/IR/Metadata.h"
19 #include "llvm/IR/Module.h"
20 #include "llvm/IR/ProfileSummary.h"
21 using namespace llvm;
23 // The following two parameters determine the threshold for a count to be
24 // considered hot/cold. These two parameters are percentile values (multiplied
25 // by 10000). If the counts are sorted in descending order, the minimum count to
26 // reach ProfileSummaryCutoffHot gives the threshold to determine a hot count.
27 // Similarly, the minimum count to reach ProfileSummaryCutoffCold gives the
28 // threshold for determining cold count (everything <= this threshold is
29 // considered cold).
31 static cl::opt<int> ProfileSummaryCutoffHot(
32 "profile-summary-cutoff-hot", cl::Hidden, cl::init(990000), cl::ZeroOrMore,
33 cl::desc("A count is hot if it exceeds the minimum count to"
34 " reach this percentile of total counts."));
36 static cl::opt<int> ProfileSummaryCutoffCold(
37 "profile-summary-cutoff-cold", cl::Hidden, cl::init(999999), cl::ZeroOrMore,
38 cl::desc("A count is cold if it is below the minimum count"
39 " to reach this percentile of total counts."));
41 static cl::opt<unsigned> ProfileSummaryHugeWorkingSetSizeThreshold(
42 "profile-summary-huge-working-set-size-threshold", cl::Hidden,
43 cl::init(15000), cl::ZeroOrMore,
44 cl::desc("The code working set size is considered huge if the number of"
45 " blocks required to reach the -profile-summary-cutoff-hot"
46 " percentile exceeds this count."));
48 // The next two options override the counts derived from summary computation and
49 // are useful for debugging purposes.
50 static cl::opt<int> ProfileSummaryHotCount(
51 "profile-summary-hot-count", cl::ReallyHidden, cl::ZeroOrMore,
52 cl::desc("A fixed hot count that overrides the count derived from"
53 " profile-summary-cutoff-hot"));
55 static cl::opt<int> ProfileSummaryColdCount(
56 "profile-summary-cold-count", cl::ReallyHidden, cl::ZeroOrMore,
57 cl::desc("A fixed cold count that overrides the count derived from"
58 " profile-summary-cutoff-cold"));
60 // Find the summary entry for a desired percentile of counts.
61 static const ProfileSummaryEntry &getEntryForPercentile(SummaryEntryVector &DS,
62 uint64_t Percentile) {
63 auto It = partition_point(DS, [=](const ProfileSummaryEntry &Entry) {
64 return Entry.Cutoff < Percentile;
65 });
66 // The required percentile has to be <= one of the percentiles in the
67 // detailed summary.
68 if (It == DS.end())
69 report_fatal_error("Desired percentile exceeds the maximum cutoff");
70 return *It;
73 // The profile summary metadata may be attached either by the frontend or by
74 // any backend passes (IR level instrumentation, for example). This method
75 // checks if the Summary is null and if so checks if the summary metadata is now
76 // available in the module and parses it to get the Summary object. Returns true
77 // if a valid Summary is available.
78 bool ProfileSummaryInfo::computeSummary() {
79 if (Summary)
80 return true;
81 // First try to get context sensitive ProfileSummary.
82 auto *SummaryMD = M.getProfileSummary(/* IsCS */ true);
83 if (SummaryMD) {
84 Summary.reset(ProfileSummary::getFromMD(SummaryMD));
85 return true;
87 // This will actually return PSK_Instr or PSK_Sample summary.
88 SummaryMD = M.getProfileSummary(/* IsCS */ false);
89 if (!SummaryMD)
90 return false;
91 Summary.reset(ProfileSummary::getFromMD(SummaryMD));
92 return true;
95 Optional<uint64_t>
96 ProfileSummaryInfo::getProfileCount(const Instruction *Inst,
97 BlockFrequencyInfo *BFI,
98 bool AllowSynthetic) {
99 if (!Inst)
100 return None;
101 assert((isa<CallInst>(Inst) || isa<InvokeInst>(Inst)) &&
102 "We can only get profile count for call/invoke instruction.");
103 if (hasSampleProfile()) {
104 // In sample PGO mode, check if there is a profile metadata on the
105 // instruction. If it is present, determine hotness solely based on that,
106 // since the sampled entry count may not be accurate. If there is no
107 // annotated on the instruction, return None.
108 uint64_t TotalCount;
109 if (Inst->extractProfTotalWeight(TotalCount))
110 return TotalCount;
111 return None;
113 if (BFI)
114 return BFI->getBlockProfileCount(Inst->getParent(), AllowSynthetic);
115 return None;
118 /// Returns true if the function's entry is hot. If it returns false, it
119 /// either means it is not hot or it is unknown whether it is hot or not (for
120 /// example, no profile data is available).
121 bool ProfileSummaryInfo::isFunctionEntryHot(const Function *F) {
122 if (!F || !computeSummary())
123 return false;
124 auto FunctionCount = F->getEntryCount();
125 // FIXME: The heuristic used below for determining hotness is based on
126 // preliminary SPEC tuning for inliner. This will eventually be a
127 // convenience method that calls isHotCount.
128 return FunctionCount && isHotCount(FunctionCount.getCount());
131 /// Returns true if the function contains hot code. This can include a hot
132 /// function entry count, hot basic block, or (in the case of Sample PGO)
133 /// hot total call edge count.
134 /// If it returns false, it either means it is not hot or it is unknown
135 /// (for example, no profile data is available).
136 bool ProfileSummaryInfo::isFunctionHotInCallGraph(const Function *F,
137 BlockFrequencyInfo &BFI) {
138 if (!F || !computeSummary())
139 return false;
140 if (auto FunctionCount = F->getEntryCount())
141 if (isHotCount(FunctionCount.getCount()))
142 return true;
144 if (hasSampleProfile()) {
145 uint64_t TotalCallCount = 0;
146 for (const auto &BB : *F)
147 for (const auto &I : BB)
148 if (isa<CallInst>(I) || isa<InvokeInst>(I))
149 if (auto CallCount = getProfileCount(&I, nullptr))
150 TotalCallCount += CallCount.getValue();
151 if (isHotCount(TotalCallCount))
152 return true;
154 for (const auto &BB : *F)
155 if (isHotBlock(&BB, &BFI))
156 return true;
157 return false;
160 /// Returns true if the function only contains cold code. This means that
161 /// the function entry and blocks are all cold, and (in the case of Sample PGO)
162 /// the total call edge count is cold.
163 /// If it returns false, it either means it is not cold or it is unknown
164 /// (for example, no profile data is available).
165 bool ProfileSummaryInfo::isFunctionColdInCallGraph(const Function *F,
166 BlockFrequencyInfo &BFI) {
167 if (!F || !computeSummary())
168 return false;
169 if (auto FunctionCount = F->getEntryCount())
170 if (!isColdCount(FunctionCount.getCount()))
171 return false;
173 if (hasSampleProfile()) {
174 uint64_t TotalCallCount = 0;
175 for (const auto &BB : *F)
176 for (const auto &I : BB)
177 if (isa<CallInst>(I) || isa<InvokeInst>(I))
178 if (auto CallCount = getProfileCount(&I, nullptr))
179 TotalCallCount += CallCount.getValue();
180 if (!isColdCount(TotalCallCount))
181 return false;
183 for (const auto &BB : *F)
184 if (!isColdBlock(&BB, &BFI))
185 return false;
186 return true;
189 /// Returns true if the function's entry is a cold. If it returns false, it
190 /// either means it is not cold or it is unknown whether it is cold or not (for
191 /// example, no profile data is available).
192 bool ProfileSummaryInfo::isFunctionEntryCold(const Function *F) {
193 if (!F)
194 return false;
195 if (F->hasFnAttribute(Attribute::Cold))
196 return true;
197 if (!computeSummary())
198 return false;
199 auto FunctionCount = F->getEntryCount();
200 // FIXME: The heuristic used below for determining coldness is based on
201 // preliminary SPEC tuning for inliner. This will eventually be a
202 // convenience method that calls isHotCount.
203 return FunctionCount && isColdCount(FunctionCount.getCount());
206 /// Compute the hot and cold thresholds.
207 void ProfileSummaryInfo::computeThresholds() {
208 if (!computeSummary())
209 return;
210 auto &DetailedSummary = Summary->getDetailedSummary();
211 auto &HotEntry =
212 getEntryForPercentile(DetailedSummary, ProfileSummaryCutoffHot);
213 HotCountThreshold = HotEntry.MinCount;
214 if (ProfileSummaryHotCount.getNumOccurrences() > 0)
215 HotCountThreshold = ProfileSummaryHotCount;
216 auto &ColdEntry =
217 getEntryForPercentile(DetailedSummary, ProfileSummaryCutoffCold);
218 ColdCountThreshold = ColdEntry.MinCount;
219 if (ProfileSummaryColdCount.getNumOccurrences() > 0)
220 ColdCountThreshold = ProfileSummaryColdCount;
221 assert(ColdCountThreshold <= HotCountThreshold &&
222 "Cold count threshold cannot exceed hot count threshold!");
223 HasHugeWorkingSetSize =
224 HotEntry.NumCounts > ProfileSummaryHugeWorkingSetSizeThreshold;
227 bool ProfileSummaryInfo::hasHugeWorkingSetSize() {
228 if (!HasHugeWorkingSetSize)
229 computeThresholds();
230 return HasHugeWorkingSetSize && HasHugeWorkingSetSize.getValue();
233 bool ProfileSummaryInfo::isHotCount(uint64_t C) {
234 if (!HotCountThreshold)
235 computeThresholds();
236 return HotCountThreshold && C >= HotCountThreshold.getValue();
239 bool ProfileSummaryInfo::isColdCount(uint64_t C) {
240 if (!ColdCountThreshold)
241 computeThresholds();
242 return ColdCountThreshold && C <= ColdCountThreshold.getValue();
245 uint64_t ProfileSummaryInfo::getOrCompHotCountThreshold() {
246 if (!HotCountThreshold)
247 computeThresholds();
248 return HotCountThreshold ? HotCountThreshold.getValue() : UINT64_MAX;
251 uint64_t ProfileSummaryInfo::getOrCompColdCountThreshold() {
252 if (!ColdCountThreshold)
253 computeThresholds();
254 return ColdCountThreshold ? ColdCountThreshold.getValue() : 0;
257 bool ProfileSummaryInfo::isHotBlock(const BasicBlock *BB, BlockFrequencyInfo *BFI) {
258 auto Count = BFI->getBlockProfileCount(BB);
259 return Count && isHotCount(*Count);
262 bool ProfileSummaryInfo::isColdBlock(const BasicBlock *BB,
263 BlockFrequencyInfo *BFI) {
264 auto Count = BFI->getBlockProfileCount(BB);
265 return Count && isColdCount(*Count);
268 bool ProfileSummaryInfo::isHotCallSite(const CallSite &CS,
269 BlockFrequencyInfo *BFI) {
270 auto C = getProfileCount(CS.getInstruction(), BFI);
271 return C && isHotCount(*C);
274 bool ProfileSummaryInfo::isColdCallSite(const CallSite &CS,
275 BlockFrequencyInfo *BFI) {
276 auto C = getProfileCount(CS.getInstruction(), BFI);
277 if (C)
278 return isColdCount(*C);
280 // In SamplePGO, if the caller has been sampled, and there is no profile
281 // annotated on the callsite, we consider the callsite as cold.
282 return hasSampleProfile() && CS.getCaller()->hasProfileData();
285 INITIALIZE_PASS(ProfileSummaryInfoWrapperPass, "profile-summary-info",
286 "Profile summary info", false, true)
288 ProfileSummaryInfoWrapperPass::ProfileSummaryInfoWrapperPass()
289 : ImmutablePass(ID) {
290 initializeProfileSummaryInfoWrapperPassPass(*PassRegistry::getPassRegistry());
293 bool ProfileSummaryInfoWrapperPass::doInitialization(Module &M) {
294 PSI.reset(new ProfileSummaryInfo(M));
295 return false;
298 bool ProfileSummaryInfoWrapperPass::doFinalization(Module &M) {
299 PSI.reset();
300 return false;
303 AnalysisKey ProfileSummaryAnalysis::Key;
304 ProfileSummaryInfo ProfileSummaryAnalysis::run(Module &M,
305 ModuleAnalysisManager &) {
306 return ProfileSummaryInfo(M);
309 PreservedAnalyses ProfileSummaryPrinterPass::run(Module &M,
310 ModuleAnalysisManager &AM) {
311 ProfileSummaryInfo &PSI = AM.getResult<ProfileSummaryAnalysis>(M);
313 OS << "Functions in " << M.getName() << " with hot/cold annotations: \n";
314 for (auto &F : M) {
315 OS << F.getName();
316 if (PSI.isFunctionEntryHot(&F))
317 OS << " :hot entry ";
318 else if (PSI.isFunctionEntryCold(&F))
319 OS << " :cold entry ";
320 OS << "\n";
322 return PreservedAnalyses::all();
325 char ProfileSummaryInfoWrapperPass::ID = 0;