We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed99d51 commit 3554a47Copy full SHA for 3554a47
llvm/include/llvm/ProfileData/MemProf.h
@@ -963,8 +963,11 @@ using CallEdgeTy = std::pair<LineLocation, uint64_t>;
963
//
964
// auto Pairs = std::move(Extractor.CallerCalleePairs);
965
struct CallerCalleePairExtractor {
966
+ // The base address of the radix tree array.
967
const unsigned char *CallStackBase;
968
+ // A functor to convert a linear FrameId to a Frame.
969
std::function<Frame(LinearFrameId)> FrameIdToFrame;
970
+ // A map from caller GUIDs to lists of call sites in respective callers.
971
DenseMap<uint64_t, SmallVector<CallEdgeTy, 0>> CallerCalleePairs;
972
973
CallerCalleePairExtractor() = delete;
0 commit comments