29 cl::desc(
"Specify the current profile is used as a partial profile."));
34 "If true, scale the working set size of the partial sample profile "
35 "by the partial profile ratio to reflect the size of the program "
39 "partial-sample-profile-working-set-size-scale-factor",
cl::Hidden,
41 cl::desc(
"The scale factor used to scale the working set size of the "
42 "partial sample profile along with the partial profile ratio. "
43 "This includes the factor of the profile counter per block "
44 "and the factor to scale the working set size to use the same "
45 "shared thresholds as PGO."));
76 assert((isa<CallInst>(Call) || isa<InvokeInst>(Call)) &&
77 "We can only get profile count for call/invoke instruction.");
84 if (Call.extractProfTotalWeight(TotalCount))
89 return BFI->getBlockProfileCount(Call.getParent(), AllowSynthetic);
95 return !
F.getEntryCount();
104 if (
F->hasFnAttribute(Attribute::Cold))
108 auto FunctionCount =
F->getEntryCount();
112 return FunctionCount &&
isColdCount(FunctionCount->getCount());
116void ProfileSummaryInfo::computeThresholds() {
117 auto &DetailedSummary = Summary->getDetailedSummary();
128 if (HotCountThreshold == ColdCountThreshold) {
129 if (ColdCountThreshold > 0)
130 (*ColdCountThreshold)--;
132 (*HotCountThreshold)++;
134 assert(ColdCountThreshold < HotCountThreshold &&
135 "Cold count threshold should be less than hot count threshold!");
137 HasHugeWorkingSetSize =
139 HasLargeWorkingSetSize =
144 double PartialProfileRatio = Summary->getPartialProfileRatio();
146 static_cast<uint64_t>(HotEntry.NumCounts * PartialProfileRatio *
148 HasHugeWorkingSetSize =
150 HasLargeWorkingSetSize =
155std::optional<uint64_t>
162 auto &DetailedSummary = Summary->getDetailedSummary();
171 return HasHugeWorkingSetSize && *HasHugeWorkingSetSize;
175 return HasLargeWorkingSetSize && *HasLargeWorkingSetSize;
179 return HotCountThreshold &&
C >= *HotCountThreshold;
183 return ColdCountThreshold &&
C <= *ColdCountThreshold;
207 return HotCountThreshold.value_or(
UINT64_MAX);
211 return ColdCountThreshold.value_or(0);
238 "Profile summary info",
false,
true)
263 OS <<
"Functions in " << M.getName() <<
" with hot/cold annotations: \n";
267 OS <<
" :hot entry ";
269 OS <<
" :cold entry ";
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
std::optional< std::vector< StOtherPiece > > Other
static cl::opt< unsigned > CountThreshold("hexagon-cext-threshold", cl::init(3), cl::Hidden, cl::desc("Minimum number of extenders to trigger replacement"))
Module.h This file contains the declarations for the Module class.
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)
LLVM_ABI cl::opt< bool > ScalePartialSampleProfileWorkingSetSize
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
static cl::opt< bool > PartialProfile("partial-profile", cl::Hidden, cl::init(false), cl::desc("Specify the current profile is used as a partial profile."))
static cl::opt< double > PartialSampleProfileWorkingSetSizeScaleFactor("partial-sample-profile-working-set-size-scale-factor", cl::Hidden, cl::init(0.008), cl::desc("The scale factor used to scale the working set size of the " "partial sample profile along with the partial profile ratio. " "This includes the factor of the profile counter per block " "and the factor to scale the working set size to use the same " "shared thresholds as PGO."))
A container for analyses that lazily runs them and caches their results.
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
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...
LLVM_ABI Function * getCaller()
Helper to get the caller (the parent function).
std::pair< iterator, bool > try_emplace(KeyT &&Key, Ts &&...Args)
bool hasProfileData(bool IncludeSynthetic=false) const
Return true if the function is annotated with profile data.
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.
Metadata * getProfileSummary(bool IsCS) const
Returns profile summary metadata.
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
An analysis pass based on the new PM to deliver ProfileSummaryInfo.
LLVM_ABI Result run(Module &M, ModuleAnalysisManager &)
static LLVM_ABI const ProfileSummaryEntry & getEntryForPercentile(const SummaryEntryVector &DS, uint64_t Percentile)
Find the summary entry for a desired percentile of counts.
static LLVM_ABI uint64_t getHotCountThreshold(const SummaryEntryVector &DS)
static LLVM_ABI uint64_t getColdCountThreshold(const SummaryEntryVector &DS)
An analysis pass based on legacy pass manager to deliver ProfileSummaryInfo.
bool doFinalization(Module &M) override
doFinalization - Virtual method overriden by subclasses to do any necessary clean up after all passes...
bool doInitialization(Module &M) override
doInitialization - Virtual method overridden by subclasses to do any necessary initialization before ...
Analysis providing profile information.
LLVM_ABI uint64_t getOrCompColdCountThreshold() const
Returns ColdCountThreshold if set.
bool hasProfileSummary() const
Returns true if profile summary is available.
LLVM_ABI bool isFunctionHotnessUnknown(const Function &F) const
Returns true if the hotness of F is unknown.
LLVM_ABI std::optional< uint64_t > getProfileCount(const CallBase &CallInst, BlockFrequencyInfo *BFI, bool AllowSynthetic=false) const
Returns the profile count for CallInst.
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.
LLVM_ABI bool isColdCount(uint64_t C) const
Returns true if count C is considered cold.
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.
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.
LLVM_ABI bool isHotCallSite(const CallBase &CB, BlockFrequencyInfo *BFI) const
Returns true if the call site CB is considered hot.
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.
LLVM_ABI uint64_t getOrCompHotCountThreshold() const
Returns HotCountThreshold if set.
LLVM_ABI bool isFunctionEntryCold(const Function *F) const
Returns true if F has cold function entry.
LLVM_ABI PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)
static LLVM_ABI ProfileSummary * getFromMD(Metadata *MD)
Construct profile summary from metdata.
@ C
The default llvm calling convention, compatible with C.
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI cl::opt< unsigned > ProfileSummaryLargeWorkingSetSizeThreshold
LLVM_ABI cl::opt< int > ProfileSummaryCutoffHot
LLVM_ABI cl::opt< unsigned > ProfileSummaryHugeWorkingSetSizeThreshold
A special type used by analysis passes to provide an address that identifies that particular analysis...