14#ifndef LLVM_ANALYSIS_PROFILESUMMARYINFO_H
15#define LLVM_ANALYSIS_PROFILESUMMARYINFO_H
29class BlockFrequencyInfo;
45 std::unique_ptr<ProfileSummary> Summary;
46 void computeThresholds();
48 std::optional<uint64_t> HotCountThreshold, ColdCountThreshold;
52 std::optional<bool> HasHugeWorkingSetSize;
56 std::optional<bool> HasLargeWorkingSetSize;
106 bool AllowSynthetic =
false)
const;
119 std::optional<Function::ProfileCount> FunctionCount = getEntryCount(
F);
123 return FunctionCount &&
isHotCount(FunctionCount->getCount());
127 template <
typename FuncT,
typename BFIT>
131 if (
auto FunctionCount = getEntryCount(
F))
135 if (
auto TotalCallCount = getTotalCallCount(
F))
139 for (
const auto &BB : *
F)
147 template <
typename FuncT,
typename BFIT>
151 if (
auto FunctionCount = getEntryCount(
F))
155 if (
auto TotalCallCount = getTotalCallCount(
F))
159 for (
const auto &BB : *
F)
168 template <
typename FuncT,
typename BFIT>
170 const FuncT *
F, BFIT &BFI)
const {
171 return isFunctionHotOrColdInCallGraphNthPercentile<true, FuncT, BFIT>(
176 template <
typename FuncT,
typename BFIT>
178 const FuncT *
F, BFIT &BFI)
const {
179 return isFunctionHotOrColdInCallGraphNthPercentile<false, FuncT, BFIT>(
199 template <
typename BBType,
typename BFIT>
201 auto Count = BFI->getBlockProfileCount(BB);
206 template <
typename BBType,
typename BFIT>
208 auto Count = BFI->getBlockProfileCount(BB);
212 template <
typename BFIT>
214 auto Count = BFI->getProfileCountFromFreq(BlockFreq);
218 template <
typename BBType,
typename BFIT>
225 template <
typename BFIT>
236 template <
typename BBType,
typename BFIT>
242 template <
typename BFIT>
262 return HotCountThreshold.value_or(0);
266 return ColdCountThreshold.value_or(0);
270 template <
typename FuncT>
271 std::optional<uint64_t> getTotalCallCount(
const FuncT *
F)
const {
275 template <
bool isHot,
typename FuncT,
typename BFIT>
281 if (
auto FunctionCount = getEntryCount(
F)) {
286 FunctionCount->getCount()))
289 if (
auto TotalCallCount = getTotalCallCount(
F)) {
296 for (
const auto &BB : *
F) {
305 template <
bool isHot>
308 template <
bool isHot,
typename BBType,
typename BFIT>
311 auto Count =
BFI->getBlockProfileCount(BB);
318 template <
bool isHot,
typename BFIT>
320 BlockFrequency BlockFreq,
322 auto Count =
BFI->getProfileCountFromFreq(BlockFreq);
329 template <
typename FuncT>
330 std::optional<Function::ProfileCount> getEntryCount(
const FuncT *
F)
const {
331 return F->getEntryCount();
336inline std::optional<uint64_t>
337ProfileSummaryInfo::getTotalCallCount<Function>(
const Function *
F)
const {
341 for (
const auto &BB : *
F)
342 for (
const auto &
I : BB)
343 if (isa<CallInst>(
I) || isa<InvokeInst>(
I))
345 TotalCallCount += *CallCount;
346 return TotalCallCount;
353std::optional<Function::ProfileCount>
354ProfileSummaryInfo::getEntryCount<MachineFunction>(
355 const MachineFunction *
F)
const;
359 std::unique_ptr<ProfileSummaryInfo> PSI;
368 bool doInitialization(
Module &M)
override;
369 bool doFinalization(
Module &M)
override;
This file defines the DenseMap class.
This header defines various interfaces for pass management in LLVM.
static cl::opt< unsigned > PercentileCutoff("mfs-psi-cutoff", cl::desc("Percentile profile summary cutoff used to " "determine cold blocks. Unused if set to zero."), cl::init(999950), cl::Hidden)
API to communicate dependencies between analyses during invalidation.
A container for analyses that lazily runs them and caches their results.
Represent the analysis usage information of a pass.
void setPreservesAll()
Set by analyses that do not transform their input at all.
BlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate IR basic block frequen...
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
This class represents a function call, abstracting a target machine's calling convention.
ImmutablePass class - This class is used to provide information that does not need to be run.
A Module instance is used to store all the information related to an LLVM module.
A set of analyses that are preserved following a run of a transformation pass.
An analysis pass based on the new PM to deliver ProfileSummaryInfo.
ProfileSummaryInfo Result
LLVM_ABI Result run(Module &M, ModuleAnalysisManager &)
An analysis pass based on legacy pass manager to deliver ProfileSummaryInfo.
ProfileSummaryInfoWrapperPass()
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - This function should be overriden by passes that need analysis information to do t...
ProfileSummaryInfo & getPSI()
const ProfileSummaryInfo & getPSI() const
Analysis providing profile information.
bool hasCSInstrumentationProfile() const
Returns true if module M has context sensitive instrumentation profile.
LLVM_ABI uint64_t getOrCompColdCountThreshold() const
Returns ColdCountThreshold if set.
bool hasProfileSummary() const
Returns true if profile summary is available.
bool isHotBlockNthPercentile(int PercentileCutoff, const BBType *BB, BFIT *BFI) const
bool isFunctionColdInCallGraph(const FuncT *F, BFIT &BFI) const
Returns true if F contains only cold code.
LLVM_ABI bool isFunctionHotnessUnknown(const Function &F) const
Returns true if the hotness of F is unknown.
bool hasInstrumentationProfile() const
Returns true if module M has instrumentation profile.
LLVM_ABI std::optional< uint64_t > getProfileCount(const CallBase &CallInst, BlockFrequencyInfo *BFI, bool AllowSynthetic=false) const
Returns the profile count for CallInst.
bool isFunctionColdInCallGraphNthPercentile(int PercentileCutoff, const FuncT *F, BFIT &BFI) const
Returns true if F contains cold code with regard to a given cold percentile cutoff value.
bool hasSampleProfile() const
Returns true if module M has sample profile.
bool isFunctionEntryHot(const FuncT *F) const
Returns true if F has hot function entry.
bool isColdBlock(const BBType *BB, BFIT *BFI) const
Returns true if BasicBlock BB is considered cold.
LLVM_ABI bool isColdCount(uint64_t C) const
Returns true if count C is considered cold.
bool isFunctionHotInCallGraphNthPercentile(int PercentileCutoff, const FuncT *F, BFIT &BFI) const
Returns true if F contains hot code with regard to a given hot percentile cutoff value.
LLVM_ABI bool isColdCountNthPercentile(int PercentileCutoff, uint64_t C) const
Returns true if count C is considered cold with regard to a given cold percentile cutoff value.
LLVM_ABI void refresh(std::unique_ptr< ProfileSummary > &&Other=nullptr)
If a summary is provided as argument, use that.
LLVM_ABI bool isHotCountNthPercentile(int PercentileCutoff, uint64_t C) const
Returns true if count C is considered hot with regard to a given hot percentile cutoff value.
uint64_t getColdCountThreshold() const
Returns ColdCountThreshold if set.
bool isFunctionHotInCallGraph(const FuncT *F, BFIT &BFI) const
Returns true if F contains hot code.
bool isColdBlock(BlockFrequency BlockFreq, const BFIT *BFI) const
LLVM_ABI bool hasPartialSampleProfile() const
Returns true if module M has partial-profile sample profile.
LLVM_ABI bool hasLargeWorkingSetSize() const
Returns true if the working set size of the code is considered large.
LLVM_ABI bool isColdCallSite(const CallBase &CB, BlockFrequencyInfo *BFI) const
Returns true if call site CB is considered cold.
ProfileSummaryInfo(ProfileSummaryInfo &&Arg)=default
LLVM_ABI bool isHotCallSite(const CallBase &CB, BlockFrequencyInfo *BFI) const
Returns true if the call site CB is considered hot.
ProfileSummaryInfo(const Module &M)
uint64_t getHotCountThreshold() const
Returns HotCountThreshold if set.
bool isHotBlock(const BBType *BB, BFIT *BFI) const
Returns true if BasicBlock BB is considered hot.
bool isColdBlockNthPercentile(int PercentileCutoff, BlockFrequency BlockFreq, BFIT *BFI) const
LLVM_ABI bool isHotCount(uint64_t C) const
Returns true if count C is considered hot.
LLVM_ABI bool hasHugeWorkingSetSize() const
Returns true if the working set size of the code is considered huge.
bool isColdBlockNthPercentile(int PercentileCutoff, const BBType *BB, BFIT *BFI) const
Returns true if BasicBlock BB is considered cold with regard to a given cold percentile cutoff value.
LLVM_ABI uint64_t getOrCompHotCountThreshold() const
Returns HotCountThreshold if set.
bool isHotBlockNthPercentile(int PercentileCutoff, BlockFrequency BlockFreq, BFIT *BFI) const
bool invalidate(Module &, const PreservedAnalyses &, ModuleAnalysisManager::Invalidator &)
Handle the invalidation of this information.
LLVM_ABI bool isFunctionEntryCold(const Function *F) const
Returns true if F has cold function entry.
Printer pass that uses ProfileSummaryAnalysis.
ProfileSummaryPrinterPass(raw_ostream &OS)
LLVM_ABI PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)
This class implements an extremely fast bulk output stream that can only output to a stream.
@ C
The default llvm calling convention, compatible with C.
This is an optimization pass for GlobalISel generic memory operations.
A CRTP mix-in that provides informational APIs needed for analysis passes.
A special type used by analysis passes to provide an address that identifies that particular analysis...
A CRTP mix-in to automatically provide informational APIs needed for passes.