45#define DEBUG_TYPE "memprof"
58 "memprof-match-hot-cold-new",
60 "Match allocation profiles onto existing hot/cold operator new calls"),
65 cl::desc(
"Print matching stats for each allocation "
66 "context in this module's profiles"),
70 "memprof-print-matched-alloc-stack",
71 cl::desc(
"Print full stack context for matched "
72 "allocations with -memprof-print-match-info."),
77 cl::desc(
"Print function GUIDs computed for matching"),
82 cl::desc(
"Salvage stale MemProf profile"),
86 "memprof-attach-calleeguids",
88 "Attach calleeguids as value profile metadata for indirect calls."),
93 cl::desc(
"Min percent of cold bytes matched to hint allocation cold"));
97 cl::desc(
"If true, annotate the static data section prefix"));
100STATISTIC(NumOfMemProfMissing,
"Number of functions without memory profile.");
102 "Number of functions having mismatched memory profile hash.");
103STATISTIC(NumOfMemProfFunc,
"Number of functions having valid memory profile.");
105 "Number of alloc contexts in memory profile.");
107 "Number of callsites in memory profile.");
109 "Number of matched memory profile alloc contexts.");
111 "Number of matched memory profile allocs.");
113 "Number of matched memory profile callsites.");
115 "Number of global vars annotated with 'hot' section prefix.");
117 "Number of global vars annotated with 'unlikely' section prefix.");
119 "Number of global vars with unknown hotness (no section prefix).");
121 "Number of global vars with user-specified section (not annotated).");
126 I.setMetadata(LLVMContext::MD_callsite,
137 std::memcpy(&Id, Hash.data(),
sizeof(Hash));
155 for (
const auto &StackFrame :
AllocInfo->CallStack)
158 std::vector<ContextTotalSize> ContextSizeInfo;
160 auto TotalSize =
AllocInfo->Info.getTotalSize();
163 ContextSizeInfo.push_back({FullStackId, TotalSize});
175 return ProfileCallStack.
size() >= InlinedCallStack.
size() &&
178 return computeStackId(F) == StackId;
191 case LibFunc_ZnwmRKSt9nothrow_t:
192 case LibFunc_ZnwmSt11align_val_t:
193 case LibFunc_ZnwmSt11align_val_tRKSt9nothrow_t:
195 case LibFunc_ZnamRKSt9nothrow_t:
196 case LibFunc_ZnamSt11align_val_t:
197 case LibFunc_ZnamSt11align_val_tRKSt9nothrow_t:
198 case LibFunc_size_returning_new:
199 case LibFunc_size_returning_new_aligned:
201 case LibFunc_Znwm12__hot_cold_t:
202 case LibFunc_ZnwmRKSt9nothrow_t12__hot_cold_t:
203 case LibFunc_ZnwmSt11align_val_t12__hot_cold_t:
204 case LibFunc_ZnwmSt11align_val_tRKSt9nothrow_t12__hot_cold_t:
205 case LibFunc_Znam12__hot_cold_t:
206 case LibFunc_ZnamRKSt9nothrow_t12__hot_cold_t:
207 case LibFunc_ZnamSt11align_val_t12__hot_cold_t:
208 case LibFunc_ZnamSt11align_val_tRKSt9nothrow_t12__hot_cold_t:
209 case LibFunc_size_returning_new_hot_cold:
210 case LibFunc_size_returning_new_aligned_hot_cold:
220 "Should not handle AnnotationOK here");
224 ++NumOfMemProfExplicitSectionGlobalVars;
225 Reason.
append(
"explicit section name");
228 Reason.
append(
"linker declaration");
231 Reason.
append(
"name starts with `llvm.`");
242static std::optional<uint64_t>
283 return (DIL->getLine() - DIL->getScope()->getSubprogram()->getLine()) &
288 if (
F.isDeclaration())
297 auto *CalledFunction = CB->getCalledFunction();
299 if (!CalledFunction || CalledFunction->isIntrinsic())
302 StringRef CalleeName = CalledFunction->getName();
310 DIL = DIL->getInlinedAt()) {
311 StringRef CallerName = DIL->getSubprogramLinkageName();
313 "Be sure to enable -fdebug-info-for-profiling");
323 }
else if (!IsPresentInProfile(CalleeGUID)) {
335 Calls[CallerGUID].emplace_back(
Loc, CalleeGUID);
336 CalleeName = CallerName;
344 for (
auto &[CallerGUID, CallList] : Calls) {
361 return CallsFromProfile.
contains(GUID);
365 for (
const auto &[CallerGUID, IRAnchors] : CallsFromIR) {
366 auto It = CallsFromProfile.
find(CallerGUID);
367 if (It == CallsFromProfile.
end())
369 const auto &ProfileAnchors = It->second;
373 ProfileAnchors, IRAnchors, std::equal_to<GlobalValue::GUID>(),
375 [[maybe_unused]]
bool Inserted =
376 UndriftMaps.
try_emplace(CallerGUID, std::move(Matchings)).second;
391 auto UndriftCallStack = [&](std::vector<Frame> &
CallStack) {
393 auto I = UndriftMaps.
find(
F.Function);
394 if (
I == UndriftMaps.
end())
397 if (J ==
I->second.end())
399 auto &NewLoc = J->second;
400 F.LineOffset = NewLoc.LineOffset;
401 F.Column = NewLoc.Column;
406 UndriftCallStack(AS.CallStack);
409 UndriftCallStack(CS.Frames);
424 if (
I.getMetadata(LLVMContext::MD_prof)) {
428 UINT32_MAX, TotalCount);
432 const size_t OriginalSize = VDs.
size();
438 VDs, [](
const InstrProfValueData &Entry) {
return Entry.Value; }));
443 for (
auto G : CalleeGuids) {
444 if (!ExistingValues.insert(
G).second)
446 InstrProfValueData NewEntry;
453 TotalCount += NewEntry.Count;
459 if (VDs.
size() == OriginalSize)
463 I.setMetadata(LLVMContext::MD_prof,
nullptr);
474 const std::set<const AllocationInfo *> &AllocInfoSet,
475 std::map<uint64_t, AllocMatchInfo> &FullStackIdToAllocMatchInfo) {
482 auto [It, Inserted] =
488 auto CurSize = It->second->Info.getTotalSize();
489 auto NewSize =
AllocInfo->Info.getTotalSize();
490 if ((CurSize > NewSize) ||
491 (CurSize == NewSize &&
502 for (
auto &[FullStackId,
AllocInfo] : UniqueFullContextIdAllocInfo) {
508 NumOfMemProfMatchedAllocContexts++;
510 TotalSize +=
AllocInfo->Info.getTotalSize();
512 TotalColdSize +=
AllocInfo->Info.getTotalSize();
517 auto [Iter, Inserted] = FullStackIdToAllocMatchInfo.try_emplace(
521 Iter->second.MatchedFramesSet.insert(InlinedCallStack.
size());
523 Iter->second.CallStack.insert(Iter->second.CallStack.begin(),
529 <<
ore::NV(
"AllocationCall", CI) <<
" in function "
531 <<
" matched alloc context with alloc type "
534 <<
" full context id " <<
ore::NV(
"Context", FullStackId)
535 <<
" frame count " <<
ore::NV(
"Frames", InlinedCallStack.
size()));
550 if (!AllocTrie.
empty()) {
551 NumOfMemProfMatchedAllocs++;
555 assert(MemprofMDAttached ==
I.hasMetadata(LLVMContext::MD_memprof));
556 if (MemprofMDAttached) {
581 const std::vector<CallSiteEntry> &CallSiteEntries,
583 std::set<std::vector<uint64_t>> &MatchedCallSites,
585 auto &Ctx = M.getContext();
591 bool CallsiteMDAdded =
false;
597 NumOfMemProfMatchedCallSites++;
600 if (!CallsiteMDAdded) {
607 MatchedCallSites.insert(std::move(
CallStack));
611 <<
ore::NV(
"Caller",
I.getFunction())
612 <<
" matched callsite with frame count "
615 for (
uint64_t StackId : InlinedCallStack)
622 CallsiteMDAdded =
true;
625 assert(!CalledFunction &&
"Didn't expect direct call");
641 bool ProfileHasColumns) {
643 return (DIL->getLine() - DIL->getScope()->getSubprogram()->getLine()) &
652 DIL = DIL->getInlinedAt()) {
653 StringRef Name = DIL->getScope()->getSubprogram()->getLinkageName();
655 Name = DIL->getScope()->getSubprogram()->getName();
658 ProfileHasColumns ? DIL->getColumn() : 0);
659 if (SeenFrames.
insert(FrameID).second) {
662 DictOS <<
"frame: " << FrameID <<
" " << Name <<
":" << GetOffset(DIL)
663 <<
":" << (ProfileHasColumns ? DIL->getColumn() : 0);
672 CallStackOS << FrameID;
677 if (SeenStacks.
insert(StackHash).second) {
680 OS <<
"inline call stack: " <<
CallStack;
689 std::map<uint64_t, AllocMatchInfo> &FullStackIdToAllocMatchInfo,
690 std::set<std::vector<uint64_t>> &MatchedCallSites,
694 auto &Ctx = M.getContext();
702 auto FuncName =
F.getName();
705 errs() <<
"MemProf: Function GUID " << FuncGUID <<
" is " << FuncName
707 std::optional<memprof::MemProfRecord> MemProfRec;
708 auto Err =
MemProfReader->getMemProfRecord(FuncGUID).moveInto(MemProfRec);
711 auto Err = IPE.
get();
712 bool SkipWarning =
false;
713 LLVM_DEBUG(
dbgs() <<
"Error in reading profile for Func " << FuncName
716 NumOfMemProfMissing++;
720 NumOfMemProfMismatch++;
726 LLVM_DEBUG(
dbgs() <<
"hash mismatch (skip=" << SkipWarning <<
")");
732 std::string Msg = (IPE.
message() +
Twine(
" ") +
F.getName().str() +
733 Twine(
" Hash = ") + std::to_string(FuncGUID))
753 bool ProfileHasColumns =
false;
757 std::map<uint64_t, std::set<const AllocationInfo *>> LocHashToAllocInfo;
761 std::map<uint64_t, std::vector<CallSiteEntry>> LocHashToCallSites;
762 for (
auto &AI : MemProfRec->AllocSites) {
763 NumOfMemProfAllocContextProfiles++;
768 LocHashToAllocInfo[StackId].insert(&AI);
769 ProfileHasColumns |= AI.CallStack[0].Column;
771 for (
auto &CS : MemProfRec->CallSites) {
772 NumOfMemProfCallSiteProfiles++;
776 for (
auto &StackFrame : CS.Frames) {
783 LocHashToCallSites[StackId].push_back(
784 {FrameSlice, (Idx == 1 ? CS.CalleeGuids
786 CS.Frames[Idx - 2].Function))});
788 ProfileHasColumns |= StackFrame.Column;
790 if (StackFrame.Function == FuncGUID)
793 assert(Idx <= CS.Frames.size() && CS.Frames[Idx - 1].Function == FuncGUID);
797 return (DIL->getLine() - DIL->getScope()->getSubprogram()->getLine()) &
805 if (
I.isDebugOrPseudoInst())
812 auto *CalledFunction = CI->getCalledFunction();
813 if (CalledFunction && CalledFunction->isIntrinsic())
824 bool LeafFound =
false;
830 auto AllocInfoIter = LocHashToAllocInfo.
end();
831 auto CallSitesIter = LocHashToCallSites.end();
832 for (
const DILocation *DIL =
I.getDebugLoc(); DIL !=
nullptr;
833 DIL = DIL->getInlinedAt()) {
836 StringRef Name = DIL->getScope()->getSubprogram()->getLinkageName();
838 Name = DIL->getScope()->getSubprogram()->getName();
841 ProfileHasColumns ? DIL->getColumn() : 0);
847 AllocInfoIter = LocHashToAllocInfo.find(StackId);
848 CallSitesIter = LocHashToCallSites.find(StackId);
849 if (AllocInfoIter != LocHashToAllocInfo.end() ||
850 CallSitesIter != LocHashToCallSites.end())
864 if (AllocInfoIter != LocHashToAllocInfo.end() &&
868 AllocInfoIter->second, FullStackIdToAllocMatchInfo);
869 else if (CallSitesIter != LocHashToCallSites.end())
874 CallSitesIter->second, M, MatchedCallSites, ORE);
881 : MemoryProfileFileName(MemoryProfileFile), FS(FS) {
889 if (M.empty() && M.globals().empty())
893 auto &Ctx = M.getContext();
895 if (
Error E = ReaderOrErr.takeError()) {
904 std::move(ReaderOrErr.get());
907 MemoryProfileFileName.data(),
StringRef(
"Cannot get MemProfReader")));
913 "Not a memory profile"));
918 annotateGlobalVariables(M,
MemProfReader->getDataAccessProfileData());
936 std::map<uint64_t, AllocMatchInfo> FullStackIdToAllocMatchInfo;
940 std::set<std::vector<uint64_t>> MatchedCallSites;
947 MaxColdSize = MemProfSum->getMaxColdTotalSize();
950 if (
F.isDeclaration())
956 MatchedCallSites, UndriftMaps, ORE, MaxColdSize, SeenStacks,
961 for (
const auto &[Id, Info] : FullStackIdToAllocMatchInfo) {
962 for (
auto Frames : Info.MatchedFramesSet) {
967 <<
" context with id " << Id <<
" has total profiled size "
968 << Info.TotalSize <<
" is matched with " << Frames <<
" frames";
970 errs() <<
" and call stack";
971 for (
auto &
F : Info.CallStack)
978 for (
const auto &
CallStack : MatchedCallSites) {
979 errs() <<
"MemProf callsite match for inline call stack";
981 errs() <<
" " << StackId;
989bool MemProfUsePass::annotateGlobalVariables(
994 if (!DataAccessProf) {
1009 assert(!GVar.getSectionPrefix().has_value() &&
1010 "GVar shouldn't have section prefix yet");
1017 StringRef
Name = GVar.getName();
1022 if (
Name.starts_with(
".str"))
1025 if (
Name.starts_with(
".str")) {
1028 LLVM_DEBUG(
dbgs() <<
"Cannot compute content hash for string literal "
1037 std::optional<DataAccessProfRecord>
Record =
1045 if (Record &&
Record->AccessCount > 0) {
1046 ++NumOfMemProfHotGlobalVars;
1047 Changed |= GVar.setSectionPrefix(
"hot");
1049 <<
" is annotated as hot\n");
1051 ++NumOfMemProfColdGlobalVars;
1052 Changed |= GVar.setSectionPrefix(
"unlikely");
1055 <<
" is annotated as unlikely\n");
1057 ++NumOfMemProfUnknownGlobalVars;
1058 LLVM_DEBUG(
dbgs() <<
"Global variable " << Name <<
" is not annotated\n");
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
This file defines the DenseSet and SmallDenseSet classes.
Module.h This file contains the declarations for the Module class.
static std::optional< uint64_t > getStringContentHash(const GlobalVariable &GVar)
static void addCallsiteMetadata(Instruction &I, ArrayRef< uint64_t > InlinedCallStack, LLVMContext &Ctx)
static bool isAllocationWithHotColdVariant(const Function *Callee, const TargetLibraryInfo &TLI)
static cl::opt< bool > ClMemProfAttachCalleeGuids("memprof-attach-calleeguids", cl::desc("Attach calleeguids as value profile metadata for indirect calls."), cl::init(true), cl::Hidden)
static void HandleUnsupportedAnnotationKinds(GlobalVariable &GVar, AnnotationKind Kind)
static void undriftMemProfRecord(const DenseMap< uint64_t, LocToLocMap > &UndriftMaps, memprof::MemProfRecord &MemProfRec)
static uint64_t computeStackId(GlobalValue::GUID Function, uint32_t LineOffset, uint32_t Column)
static cl::opt< bool > PrintMatchedAllocStack("memprof-print-matched-alloc-stack", cl::desc("Print full stack context for matched " "allocations with -memprof-print-match-info."), cl::Hidden, cl::init(false))
static void handleCallSite(Instruction &I, const Function *CalledFunction, ArrayRef< uint64_t > InlinedCallStack, const std::vector< CallSiteEntry > &CallSiteEntries, Module &M, std::set< std::vector< uint64_t > > &MatchedCallSites, OptimizationRemarkEmitter &ORE)
static cl::opt< bool > ClPrintMemProfMatchInfo("memprof-print-match-info", cl::desc("Print matching stats for each allocation " "context in this module's profiles"), cl::Hidden, cl::init(false))
static void addVPMetadata(Module &M, Instruction &I, ArrayRef< GlobalValue::GUID > CalleeGuids)
static cl::opt< bool > PrintFunctionGuids("memprof-print-function-guids", cl::desc("Print function GUIDs computed for matching"), cl::Hidden, cl::init(false))
static cl::opt< bool > AnnotateStaticDataSectionPrefix("memprof-annotate-static-data-prefix", cl::init(false), cl::Hidden, cl::desc("If true, annotate the static data section prefix"))
static void handleAllocSite(Instruction &I, CallBase *CI, ArrayRef< uint64_t > InlinedCallStack, LLVMContext &Ctx, OptimizationRemarkEmitter &ORE, uint64_t MaxColdSize, const std::set< const AllocationInfo * > &AllocInfoSet, std::map< uint64_t, AllocMatchInfo > &FullStackIdToAllocMatchInfo)
static cl::opt< bool > SalvageStaleProfile("memprof-salvage-stale-profile", cl::desc("Salvage stale MemProf profile"), cl::init(false), cl::Hidden)
static cl::opt< unsigned > MinMatchedColdBytePercent("memprof-matching-cold-threshold", cl::init(100), cl::Hidden, cl::desc("Min percent of cold bytes matched to hint allocation cold"))
static void readMemprof(Module &M, Function &F, IndexedInstrProfReader *MemProfReader, const TargetLibraryInfo &TLI, std::map< uint64_t, AllocMatchInfo > &FullStackIdToAllocMatchInfo, std::set< std::vector< uint64_t > > &MatchedCallSites, DenseMap< uint64_t, LocToLocMap > &UndriftMaps, OptimizationRemarkEmitter &ORE, uint64_t MaxColdSize, DenseSet< uint64_t > &SeenStacks, DenseSet< uint64_t > &SeenFrames)
static void dumpInlineCallStack(Instruction &I, CallBase *CI, OptimizationRemarkEmitter &ORE, DenseSet< uint64_t > &SeenFrames, DenseSet< uint64_t > &SeenStacks, bool ProfileHasColumns)
static cl::opt< bool > ClMemProfMatchHotColdNew("memprof-match-hot-cold-new", cl::desc("Match allocation profiles onto existing hot/cold operator new calls"), cl::Hidden, cl::init(false))
static AllocationType addCallStack(CallStackTrie &AllocTrie, const AllocationInfo *AllocInfo, uint64_t FullStackId)
static bool stackFrameIncludesInlinedCallStack(ArrayRef< Frame > ProfileCallStack, ArrayRef< uint64_t > InlinedCallStack)
FunctionAnalysisManager FAM
This file defines the SmallVector class.
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
Defines the virtual file system interface vfs::FileSystem.
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
ArrayRef< T > take_front(size_t N=1) const
Return a copy of *this with only the first N elements.
ArrayRef< T > drop_front(size_t N=1) const
Drop the first N elements of the array.
size_t size() const
size - Get the array size.
bool empty() const
empty - Check if the array is empty.
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
iterator find(const_arg_type_t< KeyT > Val)
std::pair< iterator, bool > try_emplace(KeyT &&Key, Ts &&...Args)
bool contains(const_arg_type_t< KeyT > Val) const
Return true if the specified key is in the map, false otherwise.
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
Implements a dense probed hash-table based set.
Diagnostic information for the PGO profiler.
Base class for error info classes.
virtual std::string message() const
Return the error message as a string.
Lightweight error class with error context and mandatory checking.
static LLVM_ABI GUID getGUIDAssumingExternalLinkage(StringRef GlobalName)
Return a 64-bit global unique ID constructed from the name of a global symbol.
uint64_t GUID
Declare a type to represent a global unique identifier for a global value.
@ AvailableExternallyLinkage
Available for inspection, not emission.
const Constant * getInitializer() const
getInitializer - Return the initializer for this global variable.
HashResultTy< HasherT_ > final()
Forward to HasherT::final() if available.
Interface to help hash various types through a hasher type.
std::enable_if_t< hashbuilder_detail::IsHashableData< T >::value, HashBuilder & > add(T Value)
Implement hashing for hashable data types, e.g. integral or enum values.
Reader for the indexed binary instrprof format.
static Expected< std::unique_ptr< IndexedInstrProfReader > > create(const Twine &Path, vfs::FileSystem &FS, const Twine &RemappingPath="")
Factory method to create an indexed reader.
instrprof_error get() const
std::string message() const override
Return the error message as a string.
LLVM_ABI const Function * getFunction() const
Return the function this instruction belongs to.
A smart pointer to a reference-counted object that inherits from RefCountedBase or ThreadSafeRefCount...
This is an important class for using LLVM in a threaded context.
LLVM_ABI PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)
LLVM_ABI MemProfUsePass(std::string MemoryProfileFile, IntrusiveRefCntPtr< vfs::FileSystem > FS=nullptr)
A Module instance is used to store all the information related to an LLVM module.
@ Warning
Emits a warning if two values disagree.
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses none()
Convenience factory function for the empty preserved set.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
A vector that has set insertion semantics.
ArrayRef< value_type > getArrayRef() const
bool insert(const value_type &X)
Insert a new element into the SetVector.
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
void append(StringRef RHS)
Append from a StringRef.
void reserve(size_type N)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StringRef - Represent a constant reference to a string, i.e.
constexpr bool empty() const
empty - Check if the string is empty.
Analysis pass providing the TargetLibraryInfo.
Provides information about what library functions are available for the current target.
bool getLibFunc(StringRef funcName, LibFunc &F) const
Searches for a particular function name.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
std::pair< iterator, bool > insert(const ValueT &V)
An efficient, type-erasing, non-owning reference to a callable.
Class to build a trie of call stack contexts for a particular profiled allocation call,...
LLVM_ABI void addCallStack(AllocationType AllocType, ArrayRef< uint64_t > StackIds, std::vector< ContextTotalSize > ContextSizeInfo={})
Add a call stack context with the given allocation type to the Trie.
LLVM_ABI void addSingleAllocTypeAttribute(CallBase *CI, AllocationType AT, StringRef Descriptor)
Add an attribute for the given allocation type to the call instruction.
LLVM_ABI bool buildAndAttachMIBMetadata(CallBase *CI)
Build and attach the minimal necessary MIB metadata.
Helper class to iterate through stack ids in both metadata (memprof MIB and callsite) and the corresp...
Encapsulates the data access profile data and the methods to operate on it.
LLVM_ABI std::optional< DataAccessProfRecord > getProfileRecord(const SymbolHandleRef SymID) const
Returns a profile record for SymbolID, or std::nullopt if there isn't a record.
LLVM_ABI bool isKnownColdSymbol(const SymbolHandleRef SymID) const
Returns true if SymID is seen in profiled binaries and cold.
A raw_ostream that writes to an std::string.
std::string & str()
Returns the string's reference.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ C
The default llvm calling convention, compatible with C.
initializer< Ty > init(const Ty &Val)
LLVM_ABI DenseMap< uint64_t, LocToLocMap > computeUndriftMap(Module &M, IndexedInstrProfReader *MemProfReader, const TargetLibraryInfo &TLI)
LLVM_ABI MDNode * buildCallstackMetadata(ArrayRef< uint64_t > CallStack, LLVMContext &Ctx)
Build callstack metadata from the provided list of call stack ids.
LLVM_ABI AllocationType getAllocType(uint64_t TotalLifetimeAccessDensity, uint64_t AllocCount, uint64_t TotalLifetime)
Return the allocation type for a given set of memory profile values.
LLVM_ABI bool recordContextSizeInfoForAnalysis()
Whether we need to record the context size info in the alloc trie used to build metadata.
std::unordered_map< LineLocation, LineLocation, LineLocationHash > LocToLocMap
LLVM_ABI uint64_t computeFullStackId(ArrayRef< Frame > CallStack)
Helper to generate a single hash id for a given callstack, used for emitting matching statistics and ...
std::variant< StringRef, uint64_t > SymbolHandleRef
LLVM_ABI DenseMap< uint64_t, SmallVector< CallEdgeTy, 0 > > extractCallsFromIR(Module &M, const TargetLibraryInfo &TLI, function_ref< bool(uint64_t)> IsPresentInProfile=[](uint64_t) { return true;})
AnnotationKind getAnnotationKind(const GlobalVariable &GV)
Returns the annotation kind of the global variable GV.
LLVM_ABI GlobalValue::GUID getGUID(const StringRef FunctionName)
LLVM_ABI std::string getAllocTypeAttributeString(AllocationType Type)
Returns the string to use in attributes with the given type.
DiagnosticInfoOptimizationBase::Argument NV
uint64_t MD5Hash(const FunctionId &Obj)
LLVM_ABI IntrusiveRefCntPtr< FileSystem > getRealFileSystem()
Gets an vfs::FileSystem for the 'real' file system, as seen by the operating system.
This is an optimization pass for GlobalISel generic memory operations.
std::array< uint8_t, NumBytes > BLAKE3Result
The constant LLVM_BLAKE3_OUT_LEN provides the default output length, 32 bytes, which is recommended f...
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
void handleAllErrors(Error E, HandlerTs &&... Handlers)
Behaves the same as handleErrors, except that by contract all errors must be handled by the given han...
constexpr from_range_t from_range
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
InnerAnalysisManagerProxy< FunctionAnalysisManager, Module > FunctionAnalysisManagerModuleProxy
Provide the FunctionAnalysisManager to Module proxy.
cl::opt< bool > PGOWarnMissing
auto unique(Range &&R, Predicate P)
auto map_range(ContainerTy &&C, FuncTy F)
Return a range that applies F to the elements of C.
LLVM_ABI void annotateValueSite(Module &M, Instruction &Inst, const InstrProfRecord &InstrProfR, InstrProfValueKind ValueKind, uint32_t SiteIndx, uint32_t MaxMDCount=3)
Get the value profile data for value site SiteIdx from InstrProfR and annotate the instruction Inst w...
void sort(IteratorTy Start, IteratorTy End)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
cl::opt< bool > AnnotateStringLiteralSectionPrefix("memprof-annotate-string-literal-section-prefix", cl::init(false), cl::Hidden, cl::desc("If true, annotate the string literal data section prefix"))
LLVM_ABI SmallVector< InstrProfValueData, 4 > getValueProfDataFromInst(const Instruction &Inst, InstrProfValueKind ValueKind, uint32_t MaxNumValueData, uint64_t &TotalC, bool GetNoICPValue=false)
Extract the value profile data from Inst and returns them if Inst is annotated with value profile dat...
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...
cl::opt< bool > NoPGOWarnMismatch
LLVM_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
@ First
Helpers to iterate all locations in the MemoryEffectsBase class.
cl::opt< bool > SalvageStaleProfile("salvage-stale-profile", cl::Hidden, cl::init(false), cl::desc("Salvage stale profile by fuzzy matching and use the remapped " "location for sample profile query."))
void longestCommonSequence(AnchorList AnchorList1, AnchorList AnchorList2, llvm::function_ref< bool(const Function &, const Function &)> FunctionMatchesProfile, llvm::function_ref< void(Loc, Loc)> InsertMatching)
ArrayRef(const T &OneElt) -> ArrayRef< T >
bool equal(L &&LRange, R &&RRange)
Wrapper function around std::equal to detect if pair-wise elements between two ranges are the same.
AnalysisManager< Module > ModuleAnalysisManager
Convenience typedef for the Module analysis manager.
cl::opt< bool > NoPGOWarnMismatchComdatWeak
std::set< unsigned > MatchedFramesSet
std::vector< Frame > CallStack
AllocMatchInfo(uint64_t TotalSize, AllocationType AllocType)
ArrayRef< GlobalValue::GUID > CalleeGuids
Summary of memprof metadata on allocations.
GlobalValue::GUID Function
llvm::SmallVector< CallSiteInfo > CallSites
llvm::SmallVector< AllocationInfo > AllocSites