LLVM 22.0.0git
MemoryProfileInfo.h
Go to the documentation of this file.
1//===- llvm/Analysis/MemoryProfileInfo.h - memory profile info ---*- C++ -*-==//
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 utilities to analyze memory profile information.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_ANALYSIS_MEMORYPROFILEINFO_H
14#define LLVM_ANALYSIS_MEMORYPROFILEINFO_H
15
16#include "llvm/IR/Metadata.h"
19#include <map>
20
21namespace llvm {
22
24
25namespace memprof {
26
27/// Whether the alloc memeprof metadata will include context size info for all
28/// MIBs.
30
31/// Whether the alloc memprof metadata may include context size info for some
32/// MIBs (but possibly not all).
34
35/// Whether we need to record the context size info in the alloc trie used to
36/// build metadata.
38
39/// Build callstack metadata from the provided list of call stack ids. Returns
40/// the resulting metadata node.
42 LLVMContext &Ctx);
43
44/// Returns the stack node from an MIB metadata node.
46
47/// Returns the allocation type from an MIB metadata node.
49
50/// Returns the string to use in attributes with the given type.
52
53/// True if the AllocTypes bitmask contains just a single type.
54LLVM_ABI bool hasSingleAllocType(uint8_t AllocTypes);
55
56/// Removes any existing "ambiguous" memprof attribute. Called before we apply a
57/// specific allocation type such as "cold", "notcold", or "hot".
59
60/// Adds an "ambiguous" memprof attribute to call with a matched allocation
61/// profile but that we haven't yet been able to disambiguate.
63
64/// Class to build a trie of call stack contexts for a particular profiled
65/// allocation call, along with their associated allocation types.
66/// The allocation will be at the root of the trie, which is then used to
67/// compute the minimum lists of context ids needed to associate a call context
68/// with a single allocation type.
70private:
71 struct CallStackTrieNode {
72 // Allocation types for call context sharing the context prefix at this
73 // node.
74 uint8_t AllocTypes;
75 // If the user has requested reporting of hinted sizes, keep track of the
76 // associated full stack id and profiled sizes. Can have more than one
77 // after trimming (e.g. when building from metadata). This is only placed on
78 // the last (root-most) trie node for each allocation context.
79 std::vector<ContextTotalSize> ContextSizeInfo;
80 // Map of caller stack id to the corresponding child Trie node.
81 std::map<uint64_t, CallStackTrieNode *> Callers;
82 CallStackTrieNode(AllocationType Type)
83 : AllocTypes(static_cast<uint8_t>(Type)) {}
84 void addAllocType(AllocationType AllocType) {
85 AllocTypes |= static_cast<uint8_t>(AllocType);
86 }
87 void removeAllocType(AllocationType AllocType) {
88 AllocTypes &= ~static_cast<uint8_t>(AllocType);
89 }
90 bool hasAllocType(AllocationType AllocType) const {
91 return AllocTypes & static_cast<uint8_t>(AllocType);
92 }
93 };
94
95 // The node for the allocation at the root.
96 CallStackTrieNode *Alloc = nullptr;
97 // The allocation's leaf stack id.
98 uint64_t AllocStackId = 0;
99
100 // If the client provides a remarks emitter object, we will emit remarks on
101 // allocations for which we apply non-context sensitive allocation hints.
103
104 // The maximum size of a cold allocation context, from the profile summary.
105 uint64_t MaxColdSize;
106
107 // Tracks whether we have built the Trie from existing MD_memprof metadata. We
108 // apply different heuristics for determining whether to discard non-cold
109 // contexts when rebuilding as we have lost information available during the
110 // original profile match.
111 bool BuiltFromExistingMetadata = false;
112
113 void deleteTrieNode(CallStackTrieNode *Node) {
114 if (!Node)
115 return;
116 for (auto C : Node->Callers)
117 deleteTrieNode(C.second);
118 delete Node;
119 }
120
121 // Recursively build up a complete list of context size information from the
122 // trie nodes reached form the given Node, for hint size reporting.
123 void collectContextSizeInfo(CallStackTrieNode *Node,
124 std::vector<ContextTotalSize> &ContextSizeInfo);
125
126 // Recursively convert hot allocation types to notcold, since we don't
127 // actually do any cloning for hot contexts, to facilitate more aggressive
128 // pruning of contexts.
129 void convertHotToNotCold(CallStackTrieNode *Node);
130
131 // Recursive helper to trim contexts and create metadata nodes.
132 bool buildMIBNodes(CallStackTrieNode *Node, LLVMContext &Ctx,
133 std::vector<uint64_t> &MIBCallStack,
134 std::vector<Metadata *> &MIBNodes,
135 bool CalleeHasAmbiguousCallerContext, uint64_t &TotalBytes,
136 uint64_t &ColdBytes);
137
138public:
140 uint64_t MaxColdSize = 0)
141 : ORE(ORE), MaxColdSize(MaxColdSize) {}
142 ~CallStackTrie() { deleteTrieNode(Alloc); }
143
144 bool empty() const { return Alloc == nullptr; }
145
146 /// Add a call stack context with the given allocation type to the Trie.
147 /// The context is represented by the list of stack ids (computed during
148 /// matching via a debug location hash), expected to be in order from the
149 /// allocation call down to the bottom of the call stack (i.e. callee to
150 /// caller order).
151 LLVM_ABI void
153 std::vector<ContextTotalSize> ContextSizeInfo = {});
154
155 /// Add the call stack context along with its allocation type from the MIB
156 /// metadata to the Trie.
157 LLVM_ABI void addCallStack(MDNode *MIB);
158
159 /// Build and attach the minimal necessary MIB metadata. If the alloc has a
160 /// single allocation type, add a function attribute instead. The reason for
161 /// adding an attribute in this case is that it matches how the behavior for
162 /// allocation calls will be communicated to lib call simplification after
163 /// cloning or another optimization to distinguish the allocation types,
164 /// which is lower overhead and more direct than maintaining this metadata.
165 /// Returns true if memprof metadata attached, false if not (attribute added).
167
168 /// Add an attribute for the given allocation type to the call instruction.
169 /// If hinted by reporting is enabled, a message is emitted with the given
170 /// descriptor used to identify the category of single allocation type.
172 StringRef Descriptor);
173};
174
175/// Helper class to iterate through stack ids in both metadata (memprof MIB and
176/// callsite) and the corresponding ThinLTO summary data structures
177/// (CallsiteInfo and MIBInfo). This simplifies implementation of client code
178/// which doesn't need to worry about whether we are operating with IR (Regular
179/// LTO), or summary (ThinLTO).
180template <class NodeT, class IteratorT> class CallStack {
181public:
182 CallStack(const NodeT *N = nullptr) : N(N) {}
183
184 // Implement minimum required methods for range-based for loop.
185 // The default implementation assumes we are operating on ThinLTO data
186 // structures, which have a vector of StackIdIndices. There are specialized
187 // versions provided to iterate through metadata.
189 const NodeT *N = nullptr;
190 IteratorT Iter;
191 CallStackIterator(const NodeT *N, bool End);
193 bool operator==(const CallStackIterator &rhs) { return Iter == rhs.Iter; }
194 bool operator!=(const CallStackIterator &rhs) { return !(*this == rhs); }
195 void operator++() { ++Iter; }
196 };
197
198 bool empty() const { return N == nullptr; }
199
200 CallStackIterator begin() const;
201 CallStackIterator end() const { return CallStackIterator(N, /*End*/ true); }
202 CallStackIterator beginAfterSharedPrefix(const CallStack &Other);
203 uint64_t back() const;
204
205private:
206 const NodeT *N = nullptr;
207};
208
209template <class NodeT, class IteratorT>
211 const NodeT *N, bool End)
212 : N(N) {
213 if (!N) {
214 Iter = nullptr;
215 return;
216 }
217 Iter = End ? N->StackIdIndices.end() : N->StackIdIndices.begin();
218}
219
220template <class NodeT, class IteratorT>
222 assert(Iter != N->StackIdIndices.end());
223 return *Iter;
224}
225
226template <class NodeT, class IteratorT>
228 assert(N);
229 return N->StackIdIndices.back();
230}
231
232template <class NodeT, class IteratorT>
235 return CallStackIterator(N, /*End*/ false);
236}
237
238template <class NodeT, class IteratorT>
241 CallStackIterator Cur = begin();
242 for (CallStackIterator OtherCur = Other.begin();
243 Cur != end() && OtherCur != Other.end(); ++Cur, ++OtherCur)
244 assert(*Cur == *OtherCur);
245 return Cur;
246}
247
248/// Specializations for iterating through IR metadata stack contexts.
249template <>
252 const MDNode *N, bool End);
253template <>
256template <>
258
259} // end namespace memprof
260} // end namespace llvm
261
262#endif
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
#define LLVM_ABI
Definition Compiler.h:213
AllocType
This file contains the declarations for metadata subclasses.
ModuleSummaryIndex.h This file contains the declarations the classes that hold the module index and s...
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
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.
Definition LLVMContext.h:68
Metadata node.
Definition Metadata.h:1078
The optimization diagnostic interface.
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:45
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.
CallStackTrie(OptimizationRemarkEmitter *ORE=nullptr, uint64_t MaxColdSize=0)
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 beginAfterSharedPrefix(const CallStack &Other)
CallStackIterator end() const
@ C
The default llvm calling convention, compatible with C.
Definition CallingConv.h:34
LLVM_ABI MDNode * buildCallstackMetadata(ArrayRef< uint64_t > CallStack, LLVMContext &Ctx)
Build callstack metadata from the provided list of call stack ids.
LLVM_ABI bool recordContextSizeInfoForAnalysis()
Whether we need to record the context size info in the alloc trie used to build metadata.
LLVM_ABI bool metadataIncludesAllContextSizeInfo()
Whether the alloc memeprof metadata will include context size info for all MIBs.
LLVM_ABI AllocationType getMIBAllocType(const MDNode *MIB)
Returns the allocation type from an MIB metadata node.
LLVM_ABI bool metadataMayIncludeContextSizeInfo()
Whether the alloc memprof metadata may include context size info for some MIBs (but possibly not all)...
LLVM_ABI bool hasSingleAllocType(uint8_t AllocTypes)
True if the AllocTypes bitmask contains just a single type.
LLVM_ABI std::string getAllocTypeAttributeString(AllocationType Type)
Returns the string to use in attributes with the given type.
LLVM_ABI MDNode * getMIBStackNode(const MDNode *MIB)
Returns the stack node from an MIB metadata node.
LLVM_ABI void removeAnyExistingAmbiguousAttribute(CallBase *CB)
Removes any existing "ambiguous" memprof attribute.
LLVM_ABI void addAmbiguousAttribute(CallBase *CB)
Adds an "ambiguous" memprof attribute to call with a matched allocation profile but that we haven't y...
This is an optimization pass for GlobalISel generic memory operations.
@ Other
Any other memory.
Definition ModRef.h:68
#define N
bool operator!=(const CallStackIterator &rhs)
bool operator==(const CallStackIterator &rhs)