13#ifndef LLVM_ANALYSIS_MEMORYPROFILEINFO_H
14#define LLVM_ANALYSIS_MEMORYPROFILEINFO_H
55 struct CallStackTrieNode {
63 std::vector<ContextTotalSize> ContextSizeInfo;
65 std::map<uint64_t, CallStackTrieNode *> Callers;
71 CallStackTrieNode *Alloc =
nullptr;
75 void deleteTrieNode(CallStackTrieNode *
Node) {
78 for (
auto C :
Node->Callers)
79 deleteTrieNode(
C.second);
85 void collectContextSizeInfo(CallStackTrieNode *
Node,
86 std::vector<ContextTotalSize> &ContextSizeInfo);
90 std::vector<uint64_t> &MIBCallStack,
91 std::vector<Metadata *> &MIBNodes,
92 bool CalleeHasAmbiguousCallerContext);
98 bool empty()
const {
return Alloc ==
nullptr; }
106 std::vector<ContextTotalSize> ContextSizeInfo = {});
133template <
class NodeT,
class IteratorT>
class CallStack {
142 const NodeT *
N =
nullptr;
151 bool empty()
const {
return N ==
nullptr; }
153 CallStackIterator
begin()
const;
159 const NodeT *N =
nullptr;
162template <
class NodeT,
class IteratorT>
164 const NodeT *
N,
bool End)
170 Iter =
End ?
N->StackIdIndices.end() :
N->StackIdIndices.begin();
173template <
class NodeT,
class IteratorT>
175 assert(Iter != N->StackIdIndices.end());
179template <
class NodeT,
class IteratorT>
182 return N->StackIdIndices.back();
185template <
class NodeT,
class IteratorT>
191template <
class NodeT,
class IteratorT>
196 Cur !=
end() && OtherCur !=
Other.end(); ++Cur, ++OtherCur)
197 assert(*Cur == *OtherCur);
ModuleSummaryIndex.h This file contains the declarations the classes that hold the module index and s...
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
This is an important class for using LLVM in a threaded context.
StringRef - Represent a constant reference to a string, i.e.
The instances of the Type class are immutable: once they are created, they are never changed.
Class to build a trie of call stack contexts for a particular profiled allocation call,...
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.
void addSingleAllocTypeAttribute(CallBase *CI, AllocationType AT, StringRef Descriptor)
Add an attribute for the given allocation type to the call instruction.
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...
CallStack(const NodeT *N=nullptr)
CallStackIterator begin() const
CallStackIterator end() const
CallStackIterator beginAfterSharedPrefix(CallStack &Other)
@ C
The default llvm calling convention, compatible with C.
MDNode * buildCallstackMetadata(ArrayRef< uint64_t > CallStack, LLVMContext &Ctx)
Build callstack metadata from the provided list of call stack ids.
AllocationType getAllocType(uint64_t TotalLifetimeAccessDensity, uint64_t AllocCount, uint64_t TotalLifetime)
Return the allocation type for a given set of memory profile values.
MDNode * buildContextSizeMetadata(ArrayRef< ContextTotalSize > ContextSizeInfo, LLVMContext &Ctx)
Build metadata from the provided list of full stack id and profiled size, to use when reporting of hi...
AllocationType getMIBAllocType(const MDNode *MIB)
Returns the allocation type from an MIB metadata node.
bool hasSingleAllocType(uint8_t AllocTypes)
True if the AllocTypes bitmask contains just a single type.
std::string getAllocTypeAttributeString(AllocationType Type)
Returns the string to use in attributes with the given type.
MDNode * getMIBStackNode(const MDNode *MIB)
Returns the stack node from an MIB metadata node.
This is an optimization pass for GlobalISel generic memory operations.
bool operator!=(const CallStackIterator &rhs)
bool operator==(const CallStackIterator &rhs)
CallStackIterator(const NodeT *N, bool End)