LLVM 24.0.0git
SampleProf.h
Go to the documentation of this file.
1//===- SampleProf.h - Sampling profiling format support ---------*- 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 common definitions used in the reading and writing of
10// sample profile data.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_PROFILEDATA_SAMPLEPROF_H
15#define LLVM_PROFILEDATA_SAMPLEPROF_H
16
17#include "llvm/ADT/DenseMap.h"
18#include "llvm/ADT/DenseSet.h"
19#include "llvm/ADT/Eytzinger.h"
20#include "llvm/ADT/MapVector.h"
24#include "llvm/ADT/StringRef.h"
25#include "llvm/IR/Function.h"
26#include "llvm/IR/GlobalValue.h"
31#include "llvm/Support/Debug.h"
34#include <algorithm>
35#include <atomic>
36#include <cstdint>
37#include <list>
38#include <map>
39#include <sstream>
40#include <string>
41#include <system_error>
42#include <unordered_map>
43#include <utility>
44
45namespace llvm {
46
47class DILocation;
48class raw_ostream;
49
50LLVM_ABI const std::error_category &sampleprof_category();
51
70
71inline std::error_code make_error_code(sampleprof_error E) {
72 return std::error_code(static_cast<int>(E), sampleprof_category());
73}
74
76 sampleprof_error Result) {
77 // Prefer first error encountered as later errors may be secondary effects of
78 // the initial problem.
81 Accumulator = Result;
82 return Accumulator;
83}
84
85} // end namespace llvm
86
87namespace std {
88
89template <>
90struct is_error_code_enum<llvm::sampleprof_error> : std::true_type {};
91
92} // end namespace std
93
94namespace llvm {
95namespace sampleprof {
96
97constexpr char kVTableProfPrefix[] = "vtables ";
98
101 SPF_Text = 0x1,
102 SPF_Compact_Binary = 0x2, // Deprecated
103 SPF_GCC = 0x3,
106};
107
113
115 return uint64_t('S') << (64 - 8) | uint64_t('P') << (64 - 16) |
116 uint64_t('R') << (64 - 24) | uint64_t('O') << (64 - 32) |
117 uint64_t('F') << (64 - 40) | uint64_t('4') << (64 - 48) |
118 uint64_t('2') << (64 - 56) | uint64_t(Format);
119}
120
121// The oldest version of the extensible binary format we support.
122static constexpr uint64_t MinSupportedVersion = 103;
123
124// The default version of the extensible binary profile format written by the
125// compiler. We default to v103 as v104 is work in progress.
126static constexpr uint64_t DefaultVersion = 103;
127
128// The latest supported version of the extensible binary profile format.
129static constexpr uint64_t LatestVersion = 104;
130
131// Query if a given format version is supported by this compiler.
135
136// Unused. Retained for downstream uses only.
137LLVM_DEPRECATED("Use DefaultVersion or LatestVersion instead", "DefaultVersion")
138static inline uint64_t SPVersion() { return 103; }
139
140// Section Type used by SampleProfileExtBinaryBaseReader and
141// SampleProfileExtBinaryBaseWriter. Never change the existing
142// value of enum. Only append new ones.
155
156static inline std::string getSecName(SecType Type) {
157 switch (static_cast<int>(Type)) { // Avoid -Wcovered-switch-default
158 case SecInValid:
159 return "InvalidSection";
160 case SecProfSummary:
161 return "ProfileSummarySection";
162 case SecNameTable:
163 return "NameTableSection";
165 return "ProfileSymbolListSection";
167 return "FuncOffsetTableSection";
168 case SecFuncMetadata:
169 return "FunctionMetadata";
170 case SecCSNameTable:
171 return "CSNameTableSection";
172 case SecLBRProfile:
173 return "LBRProfileSection";
174 default:
175 return "UnknownSection";
176 }
177}
178
179// Entry type of section header table used by SampleProfileExtBinaryBaseReader
180// and SampleProfileExtBinaryBaseWriter.
186 // The index indicating the location of the current entry in
187 // SectionHdrLayout table.
189};
190
191// Flags common for all sections are defined here. In SecHdrTableEntry::Flags,
192// common flags will be saved in the lower 32bits and section specific flags
193// will be saved in the higher 32 bits.
196 SecFlagCompress = (1 << 0),
197 // Indicate the section contains flat profiles (without callsite samples).
198 SecFlagFlat = (1 << 1)
199};
200
201// Section specific flags are defined here.
202// !!!Note: Everytime a new enum class is created here, please add
203// a new check in verifySecFlag.
206 SecFlagMD5Name = (1 << 0),
207 // Store MD5 in fixed length instead of ULEB128 so NameTable can be
208 // accessed like an array.
210 // Profile contains ".__uniq." suffix name. Compiler shouldn't strip
211 // the suffix when doing profile matching when seeing the flag.
213 // Name table is stored in 3-span Eytzinger layout (Nested, Flat, Inlinees).
215};
216
217enum class EytzingerSpan : size_t { Nested, Flat, Inlinee, NumSpans };
218
225 /// SecFlagPartial means the profile is for common/shared code.
226 /// The common profile is usually merged from profiles collected
227 /// from running other targets.
228 SecFlagPartial = (1 << 0),
229 /// SecFlagContext means this is context-sensitive flat profile for
230 /// CSSPGO
232 /// SecFlagFSDiscriminator means this profile uses flow-sensitive
233 /// discriminators.
235 /// SecFlagIsPreInlined means this profile contains ShouldBeInlined
236 /// contexts thus this is CS preinliner computed.
238
239 /// SecFlagHasVTableTypeProf means this profile contains vtable type profiles.
241};
242
248
251 // Store function offsets in an order of contexts. The order ensures that
252 // callee contexts of a given context laid out next to it.
253 SecFlagOrdered = (1 << 0),
254 // Store function offsets in a parallel array aligned with Eytzinger NameTable
255 // span.
257};
258
259// Verify section specific flag is used for the correct section.
260template <class SecFlagType>
261static inline void verifySecFlag(SecType Type, SecFlagType Flag) {
262 // No verification is needed for common flags.
263 if (std::is_same<SecCommonFlags, SecFlagType>())
264 return;
265
266 // Verification starts here for section specific flag.
267 bool IsFlagLegal = false;
268 switch (Type) {
269 case SecNameTable:
270 IsFlagLegal = std::is_same<SecNameTableFlags, SecFlagType>();
271 break;
273 IsFlagLegal = std::is_same<SecProfileSymbolListFlags, SecFlagType>();
274 break;
275 case SecProfSummary:
276 IsFlagLegal = std::is_same<SecProfSummaryFlags, SecFlagType>();
277 break;
278 case SecFuncMetadata:
279 IsFlagLegal = std::is_same<SecFuncMetadataFlags, SecFlagType>();
280 break;
282 IsFlagLegal = std::is_same<SecFuncOffsetFlags, SecFlagType>();
283 break;
284 default:
285 break;
286 }
287 if (!IsFlagLegal)
288 llvm_unreachable("Misuse of a flag in an incompatible section");
289}
290
291template <class SecFlagType>
292static inline void addSecFlag(SecHdrTableEntry &Entry, SecFlagType Flag) {
293 verifySecFlag(Entry.Type, Flag);
294 auto FVal = static_cast<uint64_t>(Flag);
295 bool IsCommon = std::is_same<SecCommonFlags, SecFlagType>();
296 Entry.Flags |= IsCommon ? FVal : (FVal << 32);
297}
298
299template <class SecFlagType>
300static inline void removeSecFlag(SecHdrTableEntry &Entry, SecFlagType Flag) {
301 verifySecFlag(Entry.Type, Flag);
302 auto FVal = static_cast<uint64_t>(Flag);
303 bool IsCommon = std::is_same<SecCommonFlags, SecFlagType>();
304 Entry.Flags &= ~(IsCommon ? FVal : (FVal << 32));
305}
306
307template <class SecFlagType>
308static inline bool hasSecFlag(const SecHdrTableEntry &Entry, SecFlagType Flag) {
309 verifySecFlag(Entry.Type, Flag);
310 auto FVal = static_cast<uint64_t>(Flag);
311 bool IsCommon = std::is_same<SecCommonFlags, SecFlagType>();
312 return Entry.Flags & (IsCommon ? FVal : (FVal << 32));
313}
314
315/// Represents the relative location of an instruction.
316///
317/// Instruction locations are specified by the line offset from the
318/// beginning of the function (marked by the line where the function
319/// header is) and the discriminator value within that line.
320///
321/// The discriminator value is useful to distinguish instructions
322/// that are on the same line but belong to different basic blocks
323/// (e.g., the two post-increment instructions in "if (p) x++; else y++;").
326
327 LLVM_ABI void print(raw_ostream &OS) const;
328 LLVM_ABI void dump() const;
329
330 // Serialize the line location to the output stream using ULEB128 encoding.
331 LLVM_ABI void serialize(raw_ostream &OS) const;
332
333 bool operator<(const LineLocation &O) const {
334 return std::tie(LineOffset, Discriminator) <
335 std::tie(O.LineOffset, O.Discriminator);
336 }
337
338 bool operator==(const LineLocation &O) const {
339 return LineOffset == O.LineOffset && Discriminator == O.Discriminator;
340 }
341
342 bool operator!=(const LineLocation &O) const {
343 return LineOffset != O.LineOffset || Discriminator != O.Discriminator;
344 }
345
347 return ((uint64_t)Discriminator << 32) | LineOffset;
348 }
349
352};
353
355
356} // end namespace sampleprof
357
359 static unsigned getHashValue(const sampleprof::LineLocation &Val) {
361 }
362
365 return LHS == RHS;
366 }
367};
368
369namespace sampleprof {
370
371/// Key represents type of a C++ polymorphic class type by its vtable and value
372/// represents its counter.
373/// TODO: The class name FunctionId should be renamed to SymbolId in a refactor
374/// change.
376
377/// Write \p Map to the output stream. Keys are linearized using \p NameTable
378/// and written as ULEB128. Values are written as ULEB128 as well.
379LLVM_ABI std::error_code
381 const MapVector<FunctionId, uint32_t> &NameTable,
382 raw_ostream &OS);
383
384/// Representation of a single sample record.
385///
386/// A sample record is represented by a positive integer value, which
387/// indicates how frequently was the associated line location executed.
388///
389/// Additionally, if the associated location contains a function call,
390/// the record will hold a list of all the possible called targets and the types
391/// for virtual table dispatches. For direct calls, this will be the exact
392/// function being invoked. For indirect calls (function pointers, virtual table
393/// dispatch), this will be a list of one or more functions. For virtual table
394/// dispatches, this record will also hold the type of the object.
396public:
397 using CallTarget = std::pair<FunctionId, uint64_t>;
399 bool operator()(const CallTarget &LHS, const CallTarget &RHS) const {
400 if (LHS.second != RHS.second)
401 return LHS.second > RHS.second;
402
403 return LHS.first < RHS.first;
404 }
405 };
406
409 SampleRecord() = default;
410
411 /// Increment the number of samples for this record by \p S.
412 /// Optionally scale sample count \p S by \p Weight.
413 ///
414 /// Sample counts accumulate using saturating arithmetic, to avoid wrapping
415 /// around unsigned integers.
417 bool Overflowed;
418 NumSamples = SaturatingMultiplyAdd(S, Weight, NumSamples, &Overflowed);
419 return Overflowed ? sampleprof_error::counter_overflow
421 }
422
423 /// Decrease the number of samples for this record by \p S. Return the amout
424 /// of samples actually decreased.
426 if (S > NumSamples)
427 S = NumSamples;
428 NumSamples -= S;
429 return S;
430 }
431
432 /// Add called function \p F with samples \p S.
433 /// Optionally scale sample count \p S by \p Weight.
434 ///
435 /// Sample counts accumulate using saturating arithmetic, to avoid wrapping
436 /// around unsigned integers.
438 uint64_t Weight = 1) {
439 uint64_t &TargetSamples = CallTargets[F];
440 bool Overflowed;
441 TargetSamples =
442 SaturatingMultiplyAdd(S, Weight, TargetSamples, &Overflowed);
443 return Overflowed ? sampleprof_error::counter_overflow
445 }
446
447 /// Remove called function from the call target map. Return the target sample
448 /// count of the called function.
450 uint64_t Count = 0;
451 auto I = CallTargets.find(F);
452 if (I != CallTargets.end()) {
453 Count = I->second;
454 CallTargets.erase(I);
455 }
456 return Count;
457 }
458
459 /// Return true if this sample record contains function calls.
460 bool hasCalls() const { return !CallTargets.empty(); }
461
462 uint64_t getSamples() const { return NumSamples; }
463 /// Return the call targets collected in this sample record.
464 /// The returned reference may be invalidated by subsequent modifications to
465 /// this SampleRecord.
467 return CallTargets;
468 }
470 return sortCallTargets(CallTargets);
471 }
472
474 uint64_t Sum = 0;
475 for (const auto &I : CallTargets)
476 Sum += I.second;
477 return Sum;
478 }
479
480 /// Sort call targets in descending order of call frequency.
482 auto SortedTargets = llvm::to_vector_of<CallTarget>(Targets);
483 llvm::sort(SortedTargets, CallTargetComparator());
484 return SortedTargets;
485 }
486
487 /// Prorate call targets by a distribution factor.
488 static const CallTargetMap adjustCallTargets(const CallTargetMap &Targets,
489 float DistributionFactor) {
490 CallTargetMap AdjustedTargets;
491 for (const auto &[Target, Frequency] : Targets) {
492 AdjustedTargets[Target] = Frequency * DistributionFactor;
493 }
494 return AdjustedTargets;
495 }
496
497 /// Merge the samples in \p Other into this record.
498 /// Optionally scale sample counts by \p Weight.
500 uint64_t Weight = 1);
501 LLVM_ABI void print(raw_ostream &OS, unsigned Indent) const;
502 LLVM_ABI void dump() const;
503 /// Serialize the sample record to the output stream using ULEB128 encoding.
504 /// The \p NameTable is used to map function names to their IDs.
505 LLVM_ABI std::error_code
507 const MapVector<FunctionId, uint32_t> &NameTable) const;
508
509 bool operator==(const SampleRecord &Other) const {
510 return NumSamples == Other.NumSamples && CallTargets == Other.CallTargets;
511 }
512
513 bool operator!=(const SampleRecord &Other) const { return !(*this == Other); }
514
515private:
516 uint64_t NumSamples = 0;
517 CallTargetMap CallTargets;
518};
519
521
522// State of context associated with FunctionSamples
524 UnknownContext = 0x0, // Profile without context
525 RawContext = 0x1, // Full context profile from input profile
526 SyntheticContext = 0x2, // Synthetic context created for context promotion
527 InlinedContext = 0x4, // Profile for context that is inlined into caller
528 MergedContext = 0x8 // Profile for context merged into base profile
529};
530
531// Attribute of context associated with FunctionSamples
534 ContextWasInlined = 0x1, // Leaf of context was inlined in previous build
535 ContextShouldBeInlined = 0x2, // Leaf of context should be inlined
537 0x4, // Leaf of context is duplicated into the base profile
538};
539
540// Represents a context frame with profile function and line location
544
546
549
550 bool operator==(const SampleContextFrame &That) const {
551 return Location == That.Location && Func == That.Func;
552 }
553
554 bool operator!=(const SampleContextFrame &That) const {
555 return !(*this == That);
556 }
557
558 std::string toString(bool OutputLineLocation) const {
559 std::ostringstream OContextStr;
560 OContextStr << Func.str();
561 if (OutputLineLocation) {
562 OContextStr << ":" << Location.LineOffset;
563 if (Location.Discriminator)
564 OContextStr << "." << Location.Discriminator;
565 }
566 return OContextStr.str();
567 }
568
570 // Context frame hash is heavily used in llvm-profgen context-sensitive
571 // pre-inliner. Use a lightweight hashing here to avoid speed regression.
572 uint64_t NameHash = 0;
573 if (Func.isStringRef())
574 NameHash = std::hash<std::string>{}(Func.str());
575 else
576 NameHash = Func.getHashCode();
577 uint64_t LocId = Location.getHashCode();
578 return NameHash + (LocId << 5) + LocId;
579 }
580};
581
582static inline hash_code hash_value(const SampleContextFrame &arg) {
583 return arg.getHashCode();
584}
585
588
594
595// Sample context for FunctionSamples. It consists of the calling context,
596// the function name and context state. Internally sample context is represented
597// using ArrayRef, which is also the input for constructing a `SampleContext`.
598// It can accept and represent both full context string as well as context-less
599// function name.
600// For a CS profile, a full context vector can look like:
601// `main:3 _Z5funcAi:1 _Z8funcLeafi`
602// For a base CS profile without calling context, the context vector should only
603// contain the leaf frame name.
604// For a non-CS profile, the context vector should be empty.
606public:
607 SampleContext() : State(UnknownContext), Attributes(ContextNone) {}
608
610 : Func(Name), State(UnknownContext), Attributes(ContextNone) {
611 assert(!Name.empty() && "Name is empty");
612 }
613
615 : Func(Func), State(UnknownContext), Attributes(ContextNone) {}
616
619 : Attributes(ContextNone) {
620 assert(!Context.empty() && "Context is empty");
621 setContext(Context, CState);
622 }
623
624 // Give a context string, decode and populate internal states like
625 // Function name, Calling context and context state. Example of input
626 // `ContextStr`: `[main:3 @ _Z5funcAi:1 @ _Z8funcLeafi]`
628 std::list<SampleContextFrameVector> &CSNameTable,
630 : Attributes(ContextNone) {
631 assert(!ContextStr.empty());
632 // Note that `[]` wrapped input indicates a full context string, otherwise
633 // it's treated as context-less function name only.
634 bool HasContext = ContextStr.starts_with("[");
635 if (!HasContext) {
636 State = UnknownContext;
637 Func = FunctionId(ContextStr);
638 } else {
639 CSNameTable.emplace_back();
640 SampleContextFrameVector &Context = CSNameTable.back();
641 createCtxVectorFromStr(ContextStr, Context);
642 setContext(Context, CState);
643 }
644 }
645
646 /// Create a context vector from a given context string and save it in
647 /// `Context`.
648 static void createCtxVectorFromStr(StringRef ContextStr,
649 SampleContextFrameVector &Context) {
650 // Remove encapsulating '[' and ']' if any
651 ContextStr = ContextStr.substr(1, ContextStr.size() - 2);
652 StringRef ContextRemain = ContextStr;
653 StringRef ChildContext;
654 FunctionId Callee;
655 while (!ContextRemain.empty()) {
656 auto ContextSplit = ContextRemain.split(" @ ");
657 ChildContext = ContextSplit.first;
658 ContextRemain = ContextSplit.second;
659 LineLocation CallSiteLoc(0, 0);
660 decodeContextString(ChildContext, Callee, CallSiteLoc);
661 Context.emplace_back(Callee, CallSiteLoc);
662 }
663 }
664
665 // Decode context string for a frame to get function name and location.
666 // `ContextStr` is in the form of `FuncName:StartLine.Discriminator`.
667 static void decodeContextString(StringRef ContextStr, FunctionId &Func,
668 LineLocation &LineLoc) {
669 // Get function name
670 auto EntrySplit = ContextStr.split(':');
671 Func = FunctionId(EntrySplit.first);
672
673 LineLoc = {0, 0};
674 if (!EntrySplit.second.empty()) {
675 // Get line offset, use signed int for getAsInteger so string will
676 // be parsed as signed.
677 int LineOffset = 0;
678 auto LocSplit = EntrySplit.second.split('.');
679 LocSplit.first.getAsInteger(10, LineOffset);
680 LineLoc.LineOffset = LineOffset;
681
682 // Get discriminator
683 if (!LocSplit.second.empty())
684 LocSplit.second.getAsInteger(10, LineLoc.Discriminator);
685 }
686 }
687
688 operator SampleContextFrames() const { return FullContext; }
689 bool hasAttribute(ContextAttributeMask A) { return Attributes & (uint32_t)A; }
690 void setAttribute(ContextAttributeMask A) { Attributes |= (uint32_t)A; }
691 uint32_t getAllAttributes() { return Attributes; }
692 void setAllAttributes(uint32_t A) { Attributes = A; }
693 bool hasState(ContextStateMask S) { return State & (uint32_t)S; }
694 void setState(ContextStateMask S) { State |= (uint32_t)S; }
695 void clearState(ContextStateMask S) { State &= (uint32_t)~S; }
696 bool hasContext() const { return State != UnknownContext; }
697 bool isBaseContext() const { return FullContext.size() == 1; }
698 FunctionId getFunction() const { return Func; }
699 SampleContextFrames getContextFrames() const { return FullContext; }
700
701 static std::string getContextString(SampleContextFrames Context,
702 bool IncludeLeafLineLocation = false) {
703 std::ostringstream OContextStr;
704 for (uint32_t I = 0; I < Context.size(); I++) {
705 if (OContextStr.str().size()) {
706 OContextStr << " @ ";
707 }
708 OContextStr << Context[I].toString(I != Context.size() - 1 ||
709 IncludeLeafLineLocation);
710 }
711 return OContextStr.str();
712 }
713
714 std::string toString() const {
715 if (!hasContext())
716 return Func.str();
717 return getContextString(FullContext, false);
718 }
719
721 if (hasContext())
723 return getFunction().getHashCode();
724 }
725
726 /// Set the name of the function and clear the current context.
727 void setFunction(FunctionId NewFunctionID) {
728 Func = NewFunctionID;
729 FullContext = SampleContextFrames();
730 State = UnknownContext;
731 }
732
734 ContextStateMask CState = RawContext) {
735 assert(CState != UnknownContext);
736 FullContext = Context;
737 Func = Context.back().Func;
738 State = CState;
739 }
740
741 bool operator==(const SampleContext &That) const {
742 return State == That.State && Func == That.Func &&
743 FullContext == That.FullContext;
744 }
745
746 bool operator!=(const SampleContext &That) const { return !(*this == That); }
747
748 bool operator<(const SampleContext &That) const {
749 if (State != That.State)
750 return State < That.State;
751
752 if (!hasContext()) {
753 return Func < That.Func;
754 }
755
756 uint64_t I = 0;
757 while (I < std::min(FullContext.size(), That.FullContext.size())) {
758 auto &Context1 = FullContext[I];
759 auto &Context2 = That.FullContext[I];
760 auto V = Context1.Func.compare(Context2.Func);
761 if (V)
762 return V < 0;
763 if (Context1.Location != Context2.Location)
764 return Context1.Location < Context2.Location;
765 I++;
766 }
767
768 return FullContext.size() < That.FullContext.size();
769 }
770
771 struct Hash {
772 uint64_t operator()(const SampleContext &Context) const {
773 return Context.getHashCode();
774 }
775 };
776
777 bool isPrefixOf(const SampleContext &That) const {
778 auto ThisContext = FullContext;
779 auto ThatContext = That.FullContext;
780 if (ThatContext.size() < ThisContext.size())
781 return false;
782 ThatContext = ThatContext.take_front(ThisContext.size());
783 // Compare Leaf frame first
784 if (ThisContext.back().Func != ThatContext.back().Func)
785 return false;
786 // Compare leading context
787 return ThisContext.drop_back() == ThatContext.drop_back();
788 }
789
790private:
791 // The function associated with this context. If CS profile, this is the leaf
792 // function.
793 FunctionId Func;
794 // Full context including calling context and leaf function name
795 SampleContextFrames FullContext;
796 // State of the associated sample profile
797 uint32_t State;
798 // Attribute of the associated sample profile
799 uint32_t Attributes;
800};
801
802static inline hash_code hash_value(const SampleContext &Context) {
803 return Context.getHashCode();
804}
805
806inline raw_ostream &operator<<(raw_ostream &OS, const SampleContext &Context) {
807 return OS << Context.toString();
808}
809
810class FunctionSamples;
812
814// NOTE: Using a StringMap here makes parsed profiles consume around 17% more
815// memory, which is *very* significant for large profiles.
816using FunctionSamplesMap = std::map<FunctionId, FunctionSamples>;
817using CallsiteSampleMap = std::map<LineLocation, FunctionSamplesMap>;
820
821/// Representation of the samples collected for a function.
822///
823/// This data structure contains all the collected samples for the body
824/// of a function. Each sample corresponds to a LineLocation instance
825/// within the body of the function.
827public:
828 FunctionSamples() = default;
829
830 LLVM_ABI void print(raw_ostream &OS = dbgs(), unsigned Indent = 0) const;
831 LLVM_ABI void dump() const;
832
834 bool Overflowed;
835 TotalSamples =
836 SaturatingMultiplyAdd(Num, Weight, TotalSamples, &Overflowed);
837 return Overflowed ? sampleprof_error::counter_overflow
839 }
840
842 if (TotalSamples < Num)
843 TotalSamples = 0;
844 else
845 TotalSamples -= Num;
846 }
847
848 void setTotalSamples(uint64_t Num) { TotalSamples = Num; }
849
850 void setHeadSamples(uint64_t Num) { TotalHeadSamples = Num; }
851
853 bool Overflowed;
854 TotalHeadSamples =
855 SaturatingMultiplyAdd(Num, Weight, TotalHeadSamples, &Overflowed);
856 return Overflowed ? sampleprof_error::counter_overflow
858 }
859
861 uint64_t Num, uint64_t Weight = 1) {
862 return BodySamples[LineLocation(LineOffset, Discriminator)].addSamples(
863 Num, Weight);
864 }
865
867 uint32_t Discriminator,
868 FunctionId Func, uint64_t Num,
869 uint64_t Weight = 1) {
870 return BodySamples[LineLocation(LineOffset, Discriminator)].addCalledTarget(
871 Func, Num, Weight);
872 }
873
876 uint64_t Weight = 1) {
877 return BodySamples[Location].merge(SampleRecord, Weight);
878 }
879
880 void reserveBodySamples(size_t NumEntries) {
881 BodySamples.reserve(NumEntries);
882 }
883
884 void reserveCallsiteTypeCounts(size_t NumEntries) {
885 VirtualCallsiteTypeCounts.reserve(NumEntries);
886 }
887
888 // Remove a call target and decrease the body sample correspondingly. Return
889 // the number of body samples actually decreased.
891 uint32_t Discriminator,
892 FunctionId Func) {
893 uint64_t Count = 0;
894 auto I = BodySamples.find(LineLocation(LineOffset, Discriminator));
895 if (I != BodySamples.end()) {
896 Count = I->second.removeCalledTarget(Func);
897 Count = I->second.removeSamples(Count);
898 if (!I->second.getSamples())
899 BodySamples.erase(I);
900 }
901 return Count;
902 }
903
904 // Remove all call site samples for inlinees. This is needed when flattening
905 // a nested profile.
906 void removeAllCallsiteSamples() { CallsiteSamples.clear(); }
907
908 // Accumulate all call target samples to update the body samples.
910 for (auto &I : BodySamples) {
911 uint64_t TargetSamples = I.second.getCallTargetSum();
912 // It's possible that the body sample count can be greater than the call
913 // target sum. E.g, if some call targets are external targets, they won't
914 // be considered valid call targets, but the body sample count which is
915 // from lbr ranges can actually include them.
916 if (TargetSamples > I.second.getSamples())
917 I.second.addSamples(TargetSamples - I.second.getSamples());
918 }
919 }
920
921 // Accumulate all body samples to set total samples.
924 for (const auto &I : BodySamples)
925 addTotalSamples(I.second.getSamples());
926
927 for (auto &I : CallsiteSamples) {
928 for (auto &CS : I.second) {
929 CS.second.updateTotalSamples();
930 addTotalSamples(CS.second.getTotalSamples());
931 }
932 }
933 }
934
935 // Set current context and all callee contexts to be synthetic.
937 Context.setState(SyntheticContext);
938 for (auto &I : CallsiteSamples) {
939 for (auto &CS : I.second) {
940 CS.second.setContextSynthetic();
941 }
942 }
943 }
944
945 // Propagate the given attribute to this profile context and all callee
946 // contexts.
948 Context.setAttribute(Attr);
949 for (auto &I : CallsiteSamples) {
950 for (auto &CS : I.second) {
951 CS.second.setContextAttribute(Attr);
952 }
953 }
954 }
955
956 // Query the stale profile matching results and remap the location.
957 const LineLocation &mapIRLocToProfileLoc(const LineLocation &IRLoc) const {
958 // There is no remapping if the profile is not stale or the matching gives
959 // the same location.
960 if (!IRToProfileLocationMap)
961 return IRLoc;
962 const auto &ProfileLoc = IRToProfileLocationMap->find(IRLoc);
963 if (ProfileLoc != IRToProfileLocationMap->end())
964 return ProfileLoc->second;
965 return IRLoc;
966 }
967
968 /// Return the number of samples collected at the given location.
969 /// Each location is specified by \p LineOffset and \p Discriminator.
970 /// If the location is not found in profile, return error.
972 uint32_t Discriminator) const {
973 const auto &Ret = BodySamples.find(
974 mapIRLocToProfileLoc(LineLocation(LineOffset, Discriminator)));
975 if (Ret == BodySamples.end())
976 return std::error_code();
977 return Ret->second.getSamples();
978 }
979
980 /// Returns the call target map collected at a given location.
981 /// Each location is specified by \p LineOffset and \p Discriminator.
982 /// If the location is not found in profile, return error.
983 /// The returned reference may be invalidated by subsequent modifications to
984 /// this FunctionSamples.
987 uint32_t Discriminator) const LLVM_LIFETIME_BOUND {
988 const auto &Ret = BodySamples.find(
989 mapIRLocToProfileLoc(LineLocation(LineOffset, Discriminator)));
990 if (Ret == BodySamples.end())
991 return std::error_code();
992 return Ret->second.getCallTargets();
993 }
994
995 /// Returns the call target map collected at a given location specified by \p
996 /// CallSite. If the location is not found in profile, return error.
997 /// The returned reference may be invalidated by subsequent modifications to
998 /// this FunctionSamples.
1001 const auto &Ret = BodySamples.find(mapIRLocToProfileLoc(CallSite));
1002 if (Ret == BodySamples.end())
1003 return std::error_code();
1004 return Ret->second.getCallTargets();
1005 }
1006
1007 /// Return the function samples at the given callsite location.
1010 return CallsiteSamples[mapIRLocToProfileLoc(Loc)];
1011 }
1012
1013 /// Returns the FunctionSamplesMap at the given \p Loc.
1014 const FunctionSamplesMap *
1016 auto Iter = CallsiteSamples.find(mapIRLocToProfileLoc(Loc));
1017 if (Iter == CallsiteSamples.end())
1018 return nullptr;
1019 return &Iter->second;
1020 }
1021
1022 /// Returns the TypeCountMap for inlined callsites at the given \p Loc.
1023 /// The returned pointer may be invalidated by subsequent modifications to
1024 /// this FunctionSamples.
1025 const TypeCountMap *
1027 auto Iter = VirtualCallsiteTypeCounts.find(mapIRLocToProfileLoc(Loc));
1028 if (Iter == VirtualCallsiteTypeCounts.end())
1029 return nullptr;
1030 return &Iter->second;
1031 }
1032
1033 /// Returns a pointer to FunctionSamples at the given callsite location
1034 /// \p Loc with callee \p CalleeName. If no callsite can be found, relax
1035 /// the restriction to return the FunctionSamples at callsite location
1036 /// \p Loc with the maximum total sample count. If \p Remapper or \p
1037 /// FuncNameToProfNameMap is not nullptr, use them to find FunctionSamples
1038 /// with equivalent name as \p CalleeName.
1040 const LineLocation &Loc, StringRef CalleeName,
1043 *FuncNameToProfNameMap = nullptr) const LLVM_LIFETIME_BOUND;
1044
1045 bool empty() const { return TotalSamples == 0; }
1046
1047 /// Return the total number of samples collected inside the function.
1048 uint64_t getTotalSamples() const { return TotalSamples; }
1049
1050 /// For top-level functions, return the total number of branch samples that
1051 /// have the function as the branch target (or 0 otherwise). This is the raw
1052 /// data fetched from the profile. This should be equivalent to the sample of
1053 /// the first instruction of the symbol. But as we directly get this info for
1054 /// raw profile without referring to potentially inaccurate debug info, this
1055 /// gives more accurate profile data and is preferred for standalone symbols.
1056 uint64_t getHeadSamples() const { return TotalHeadSamples; }
1057
1058 /// Return an estimate of the sample count of the function entry basic block.
1059 /// The function can be either a standalone symbol or an inlined function.
1060 /// For Context-Sensitive profiles, this will prefer returning the head
1061 /// samples (i.e. getHeadSamples()), if non-zero. Otherwise it estimates from
1062 /// the function body's samples or callsite samples.
1065 // For CS profile, if we already have more accurate head samples
1066 // counted by branch sample from caller, use them as entry samples.
1067 return getHeadSamples();
1068 }
1069 uint64_t Count = 0;
1070 // Use either BodySamples or CallsiteSamples which ever has the smaller
1071 // lineno.
1072 if (!BodySamples.empty() &&
1073 (CallsiteSamples.empty() ||
1074 BodySamples.begin()->first < CallsiteSamples.begin()->first))
1075 Count = BodySamples.begin()->second.getSamples();
1076 else if (!CallsiteSamples.empty()) {
1077 // An indirect callsite may be promoted to several inlined direct calls.
1078 // We need to get the sum of them.
1079 for (const auto &FuncSamples : CallsiteSamples.begin()->second)
1080 Count += FuncSamples.second.getHeadSamplesEstimate();
1081 }
1082 // Return at least 1 if total sample is not 0.
1083 return Count ? Count : TotalSamples > 0;
1084 }
1085
1086 /// Return all the samples collected in the body of the function.
1087 /// The returned reference may be invalidated by subsequent modifications to
1088 /// this FunctionSamples.
1090 return BodySamples;
1091 }
1092
1093 /// Return all the callsite samples collected in the body of the function.
1095 return CallsiteSamples;
1096 }
1097
1098 /// Return whether this function profile contains callsite samples.
1099 bool hasCallsiteSamples() const { return !CallsiteSamples.empty(); }
1100
1101 /// Returns vtable access samples for the C++ types collected in this
1102 /// function.
1103 /// The returned reference may be invalidated by subsequent modifications to
1104 /// this FunctionSamples.
1106 return VirtualCallsiteTypeCounts;
1107 }
1108
1109 /// Returns the vtable access samples for the C++ types for \p Loc.
1110 /// Under the hood, the caller-specified \p Loc will be un-drifted before the
1111 /// type sample lookup if possible.
1112 /// The returned reference may be invalidated by subsequent modifications to
1113 /// this FunctionSamples.
1115 return VirtualCallsiteTypeCounts[mapIRLocToProfileLoc(Loc)];
1116 }
1117
1118 /// At location \p Loc, add a type sample for the given \p Type with
1119 /// \p Count. This function uses saturating add which clamp the result to
1120 /// maximum uint64_t (the counter type), and inserts the saturating add result
1121 /// to map. Returns counter_overflow to caller if the actual result is larger
1122 /// than maximum uint64_t.
1124 uint64_t Count) {
1125 auto &TypeCounts = getTypeSamplesAt(Loc);
1126 bool Overflowed = false;
1127 TypeCounts[Type] = SaturatingMultiplyAdd(Count, /* Weight= */ (uint64_t)1,
1128 TypeCounts[Type], &Overflowed);
1129 return Overflowed ? sampleprof_error::counter_overflow
1131 }
1132
1133 /// Scale \p Other sample counts by \p Weight and add the scaled result to the
1134 /// type samples for \p Loc. Under the hoold, the caller-provided \p Loc will
1135 /// be un-drifted before the type sample lookup if possible.
1136 /// typename T is either a std::map or a DenseMap.
1137 template <typename T>
1139 const T &Other,
1140 uint64_t Weight = 1) {
1141 static_assert((std::is_same_v<typename T::key_type, StringRef> ||
1142 std::is_same_v<typename T::key_type, FunctionId>) &&
1143 std::is_same_v<typename T::mapped_type, uint64_t>,
1144 "T must be a map with StringRef or FunctionId as key and "
1145 "uint64_t as value");
1146 TypeCountMap &TypeCounts = getTypeSamplesAt(Loc);
1147 TypeCounts.reserve(TypeCounts.size() + Other.size());
1148 bool Overflowed = false;
1149
1150 for (const auto &[Type, Count] : Other) {
1151 FunctionId TypeId(Type);
1152 bool RowOverflow = false;
1153 TypeCounts[TypeId] = SaturatingMultiplyAdd(
1154 Count, Weight, TypeCounts[TypeId], &RowOverflow);
1155 Overflowed |= RowOverflow;
1156 }
1157 return Overflowed ? sampleprof_error::counter_overflow
1159 }
1160
1161 /// Return the maximum of sample counts in a function body. When SkipCallSite
1162 /// is false, which is the default, the return count includes samples in the
1163 /// inlined functions. When SkipCallSite is true, the return count only
1164 /// considers the body samples.
1165 uint64_t getMaxCountInside(bool SkipCallSite = false) const {
1166 uint64_t MaxCount = 0;
1167 for (const auto &L : getBodySamples())
1168 MaxCount = std::max(MaxCount, L.second.getSamples());
1169 if (SkipCallSite)
1170 return MaxCount;
1171 for (const auto &C : getCallsiteSamples())
1172 for (const FunctionSamplesMap::value_type &F : C.second)
1173 MaxCount = std::max(MaxCount, F.second.getMaxCountInside());
1174 return MaxCount;
1175 }
1176
1177 /// Merge the samples in \p Other into this one.
1178 /// Optionally scale samples by \p Weight.
1181 if (!GUIDToFuncNameMap)
1182 GUIDToFuncNameMap = Other.GUIDToFuncNameMap;
1183 if (Context.getFunction().empty())
1184 Context = Other.getContext();
1185 if (FunctionHash == 0) {
1186 // Set the function hash code for the target profile.
1187 FunctionHash = Other.getFunctionHash();
1188 } else if (FunctionHash != Other.getFunctionHash()) {
1189 // The two profiles coming with different valid hash codes indicates
1190 // either:
1191 // 1. They are same-named static functions from different compilation
1192 // units (without using -unique-internal-linkage-names), or
1193 // 2. They are really the same function but from different compilations.
1194 // Let's bail out in either case for now, which means one profile is
1195 // dropped.
1197 }
1198
1199 mergeSampleProfErrors(Result,
1200 addTotalSamples(Other.getTotalSamples(), Weight));
1201 mergeSampleProfErrors(Result,
1202 addHeadSamples(Other.getHeadSamples(), Weight));
1203 BodySamples.reserve(BodySamples.size() + Other.getBodySamples().size());
1204 for (const auto &I : Other.getBodySamples()) {
1205 const LineLocation &Loc = I.first;
1206 const SampleRecord &Rec = I.second;
1207 mergeSampleProfErrors(Result, BodySamples[Loc].merge(Rec, Weight));
1208 }
1209 for (const auto &I : Other.getCallsiteSamples()) {
1210 const LineLocation &Loc = I.first;
1212 for (const auto &Rec : I.second)
1213 mergeSampleProfErrors(Result,
1214 FSMap[Rec.first].merge(Rec.second, Weight));
1215 }
1216 VirtualCallsiteTypeCounts.reserve(VirtualCallsiteTypeCounts.size() +
1217 Other.getCallsiteTypeCounts().size());
1218 for (const auto &[Loc, OtherTypeMap] : Other.getCallsiteTypeCounts())
1220 Result, addCallsiteVTableTypeProfAt(Loc, OtherTypeMap, Weight));
1221
1222 return Result;
1223 }
1224
1225 /// Recursively traverses all children, if the total sample count of the
1226 /// corresponding function is no less than \p Threshold, add its corresponding
1227 /// GUID to \p S. Also traverse the BodySamples to add hot CallTarget's GUID
1228 /// to \p S.
1232 uint64_t Threshold) const {
1233 if (TotalSamples <= Threshold)
1234 return;
1235 auto IsDeclaration = [](const Function *F) {
1236 return !F || F->isDeclaration();
1237 };
1238 if (IsDeclaration(SymbolMap.lookup(getFunction()))) {
1239 // Add to the import list only when it's defined out of module.
1240 S.insert(getGUID());
1241 }
1242 // Import hot CallTargets, which may not be available in IR because full
1243 // profile annotation cannot be done until backend compilation in ThinLTO.
1244 for (const auto &BS : BodySamples)
1245 for (const auto &TS : BS.second.getCallTargets())
1246 if (TS.second > Threshold) {
1247 const Function *Callee = SymbolMap.lookup(TS.first);
1248 if (IsDeclaration(Callee))
1249 S.insert(TS.first.getHashCode());
1250 }
1251 for (const auto &CS : CallsiteSamples)
1252 for (const auto &NameFS : CS.second)
1253 NameFS.second.findInlinedFunctions(S, SymbolMap, Threshold);
1254 }
1255
1256 /// Set the name of the function.
1257 void setFunction(FunctionId NewFunctionID) {
1258 Context.setFunction(NewFunctionID);
1259 }
1260
1261 /// Return the function name.
1262 FunctionId getFunction() const { return Context.getFunction(); }
1263
1264 /// Return the original function name.
1266
1267 void setFunctionHash(uint64_t Hash) { FunctionHash = Hash; }
1268
1269 uint64_t getFunctionHash() const { return FunctionHash; }
1270
1272 assert(IRToProfileLocationMap == nullptr && "this should be set only once");
1273 IRToProfileLocationMap = LTLM;
1274 }
1275
1276 /// Return the canonical name for a function, taking into account
1277 /// suffix elision policy attributes.
1279 const char *AttrName = "sample-profile-suffix-elision-policy";
1280 auto Attr = F.getFnAttribute(AttrName).getValueAsString();
1281 return getCanonicalFnName(F.getName(), Attr);
1282 }
1283
1284 /// Name suffixes which canonicalization should handle to avoid
1285 /// profile mismatch.
1286 static constexpr const char *LLVMSuffix = ".llvm.";
1287 static constexpr const char *PartSuffix = ".part.";
1288 static constexpr const char *UniqSuffix = ".__uniq.";
1289
1291 StringRef Attr = "selected") {
1292 // Note the sequence of the suffixes in the knownSuffixes array matters.
1293 // If suffix "A" is appended after the suffix "B", "A" should be in front
1294 // of "B" in knownSuffixes.
1295 const SmallVector<StringRef> KnownSuffixes{LLVMSuffix, PartSuffix,
1296 UniqSuffix};
1297 return getCanonicalFnName(FnName, KnownSuffixes, Attr);
1298 }
1299
1301 StringRef Attr = "selected") {
1302 // A local coroutine function from another CU can be promoted to a global
1303 // function during ThinLTO import. This will create a linkage name like
1304 // "_Zfoo.llvm.xxxx.cleanup". Remove the ".llvm." suffix after stripping all
1305 // the coroutine suffixes to avoid pseudo probe mismatch.
1306 const SmallVector<StringRef, 3> CoroSuffixes{".cleanup", ".destroy",
1307 ".resume", LLVMSuffix};
1308 return getCanonicalFnName(FnName, CoroSuffixes, Attr);
1309 }
1310
1312 ArrayRef<StringRef> Suffixes,
1313 StringRef Attr = "selected") {
1314 if (Attr == "" || Attr == "all")
1315 return FnName.split('.').first;
1316 if (Attr == "selected") {
1317 StringRef Cand(FnName);
1318 for (const auto Suffix : Suffixes) {
1319 // If the profile contains ".__uniq." suffix, don't strip the
1320 // suffix for names in the IR.
1322 continue;
1323 auto It = Cand.rfind(Suffix);
1324 if (It == StringRef::npos)
1325 continue;
1326 auto Dit = Cand.rfind('.');
1327 if (Dit == It || Dit == It + Suffix.size() - 1)
1328 Cand = Cand.substr(0, It);
1329 }
1330 return Cand;
1331 }
1332 if (Attr == "none")
1333 return FnName;
1334 assert(false && "internal error: unknown suffix elision policy");
1335 return FnName;
1336 }
1337
1338 /// Translate \p Func into its original name.
1339 /// When profile doesn't use MD5, \p Func needs no translation.
1340 /// When profile uses MD5, \p Func in current FunctionSamples
1341 /// is actually GUID of the original function name. getFuncName will
1342 /// translate \p Func in current FunctionSamples into its original name
1343 /// by looking up in the function map GUIDToFuncNameMap.
1344 /// If the original name doesn't exist in the map, return empty StringRef.
1346 if (!UseMD5)
1347 return Func.stringRef();
1348
1350 "GUIDToFuncNameMap needs to be populated first");
1351 return GUIDToFuncNameMap->lookup(Func.getHashCode());
1352 }
1353
1354 /// Returns the line offset to the start line of the subprogram.
1355 /// We assume that a single function will not exceed 65535 LOC.
1356 LLVM_ABI static unsigned getOffset(const DILocation *DIL);
1357
1358 /// Returns a unique call site identifier for a given debug location of a call
1359 /// instruction. This is wrapper of two scenarios, the probe-based profile and
1360 /// regular profile, to hide implementation details from the sample loader and
1361 /// the context tracker.
1363 bool ProfileIsFS = false);
1364
1365 /// Returns a unique hash code for a combination of a callsite location and
1366 /// the callee function name.
1367 /// Guarantee MD5 and non-MD5 representation of the same function results in
1368 /// the same hash.
1370 const LineLocation &Callsite) {
1371 return SampleContextFrame(Callee, Callsite).getHashCode();
1372 }
1373
1374 /// Get the FunctionSamples of the inline instance where DIL originates
1375 /// from.
1376 ///
1377 /// The FunctionSamples of the instruction (Machine or IR) associated to
1378 /// \p DIL is the inlined instance in which that instruction is coming from.
1379 /// We traverse the inline stack of that instruction, and match it with the
1380 /// tree nodes in the profile.
1381 ///
1382 /// \returns the FunctionSamples pointer to the inlined instance.
1383 /// If \p Remapper or \p FuncNameToProfNameMap is not nullptr, it will be used
1384 /// to find matching FunctionSamples with not exactly the same but equivalent
1385 /// name.
1387 const DILocation *DIL,
1388 SampleProfileReaderItaniumRemapper *Remapper = nullptr,
1390 *FuncNameToProfNameMap = nullptr) const LLVM_LIFETIME_BOUND;
1391
1393
1394 void setContext(const SampleContext &FContext) { Context = FContext; }
1395
1396 // These boolean variables are atomic so that parallel in-process ThinLTO
1397 // backends writing the same value do not race.
1398 LLVM_ABI static std::atomic<bool> ProfileIsProbeBased;
1399
1400 LLVM_ABI static std::atomic<bool> ProfileIsCS;
1401
1402 LLVM_ABI static std::atomic<bool> ProfileIsPreInlined;
1403
1404 /// Whether the profile uses MD5 to represent string.
1405 LLVM_ABI static std::atomic<bool> UseMD5;
1406
1407 /// Whether the profile contains any ".__uniq." suffix in a name.
1408 LLVM_ABI static std::atomic<bool> HasUniqSuffix;
1409
1410 /// If this profile uses flow sensitive discriminators.
1411 LLVM_ABI static std::atomic<bool> ProfileIsFS;
1412
1413 /// GUIDToFuncNameMap saves the mapping from GUID to the symbol name, for
1414 /// all the function symbols defined or declared in current module.
1416
1417 /// Return the GUID of the context's name. If the context is already using
1418 /// MD5, don't hash it again.
1419 uint64_t getGUID() const { return getFunction().getHashCode(); }
1420
1421 // Find all the names in the current FunctionSamples including names in
1422 // all the inline instances and names of call targets.
1423 LLVM_ABI void findAllNames(DenseSet<FunctionId> &NameSet) const;
1424
1425 bool operator==(const FunctionSamples &Other) const {
1426 return (GUIDToFuncNameMap == Other.GUIDToFuncNameMap ||
1427 (GUIDToFuncNameMap && Other.GUIDToFuncNameMap &&
1428 *GUIDToFuncNameMap == *Other.GUIDToFuncNameMap)) &&
1429 FunctionHash == Other.FunctionHash && Context == Other.Context &&
1430 TotalSamples == Other.TotalSamples &&
1431 TotalHeadSamples == Other.TotalHeadSamples &&
1432 BodySamples == Other.BodySamples &&
1433 CallsiteSamples == Other.CallsiteSamples;
1434 }
1435
1436 bool operator!=(const FunctionSamples &Other) const {
1437 return !(*this == Other);
1438 }
1439
1440private:
1441 /// CFG hash value for the function.
1442 uint64_t FunctionHash = 0;
1443
1444 /// Calling context for function profile
1445 mutable SampleContext Context;
1446
1447 /// Total number of samples collected inside this function.
1448 ///
1449 /// Samples are cumulative, they include all the samples collected
1450 /// inside this function and all its inlined callees.
1451 uint64_t TotalSamples = 0;
1452
1453 /// Total number of samples collected at the head of the function.
1454 /// This is an approximation of the number of calls made to this function
1455 /// at runtime.
1456 uint64_t TotalHeadSamples = 0;
1457
1458 /// Map instruction locations to collected samples.
1459 ///
1460 /// Each entry in this map contains the number of samples
1461 /// collected at the corresponding line offset. All line locations
1462 /// are an offset from the start of the function.
1463 BodySampleMap BodySamples;
1464
1465 /// Map call sites to collected samples for the called function.
1466 ///
1467 /// Each entry in this map corresponds to all the samples
1468 /// collected for the inlined function call at the given
1469 /// location. For example, given:
1470 ///
1471 /// void foo() {
1472 /// 1 bar();
1473 /// ...
1474 /// 8 baz();
1475 /// }
1476 ///
1477 /// If the bar() and baz() calls were inlined inside foo(), this
1478 /// map will contain two entries. One for all the samples collected
1479 /// in the call to bar() at line offset 1, the other for all the samples
1480 /// collected in the call to baz() at line offset 8.
1481 CallsiteSampleMap CallsiteSamples;
1482
1483 /// Map a virtual callsite to the list of accessed vtables and vtable counts.
1484 /// The callsite is referenced by its source location.
1485 ///
1486 /// For example, given:
1487 ///
1488 /// void foo() {
1489 /// ...
1490 /// 5 inlined_vcall_bar();
1491 /// ...
1492 /// 5 inlined_vcall_baz();
1493 /// ...
1494 /// 200 inlined_vcall_qux();
1495 /// }
1496 /// This map will contain two entries. One with two types for line offset 5
1497 /// and one with one type for line offset 200.
1498 CallsiteTypeMap VirtualCallsiteTypeCounts;
1499
1500 /// IR to profile location map generated by stale profile matching.
1501 ///
1502 /// Each entry is a mapping from the location on current build to the matched
1503 /// location in the "stale" profile. For example:
1504 /// Profiled source code:
1505 /// void foo() {
1506 /// 1 bar();
1507 /// }
1508 ///
1509 /// Current source code:
1510 /// void foo() {
1511 /// 1 // Code change
1512 /// 2 bar();
1513 /// }
1514 /// Supposing the stale profile matching algorithm generated the mapping [2 ->
1515 /// 1], the profile query using the location of bar on the IR which is 2 will
1516 /// be remapped to 1 and find the location of bar in the profile.
1517 const LocToLocMap *IRToProfileLocationMap = nullptr;
1518};
1519
1520/// Get the proper representation of a string according to whether the
1521/// current Format uses MD5 to represent the string.
1523 if (Name.empty() || !FunctionSamples::UseMD5)
1524 return FunctionId(Name);
1526}
1527
1529
1530/// This class provides operator overloads to the map container using MD5 as the
1531/// key type, so that existing code can still work in most cases using
1532/// SampleContext as key.
1533/// Note: when populating container, make sure to assign the SampleContext to
1534/// the mapped value immediately because the key no longer holds it.
1536 : public HashKeyMap<std::unordered_map, SampleContext, FunctionSamples> {
1537public:
1538 // Convenience method because this is being used in many places. Set the
1539 // FunctionSamples' context if its newly inserted.
1541 auto Ret = try_emplace(Ctx, FunctionSamples());
1542 if (Ret.second)
1543 Ret.first->second.setContext(Ctx);
1544 return Ret.first->second;
1545 }
1546
1551
1556
1557 size_t erase(const SampleContext &Ctx) {
1558 return HashKeyMap<std::unordered_map, SampleContext,
1560 }
1561
1562 size_t erase(const key_type &Key) { return base_type::erase(Key); }
1563
1564 iterator erase(iterator It) { return base_type::erase(It); }
1565};
1566
1567using NameFunctionSamples = std::pair<hash_code, const FunctionSamples *>;
1568
1569LLVM_ABI void
1570sortFuncProfiles(const SampleProfileMap &ProfileMap,
1571 std::vector<NameFunctionSamples> &SortedProfiles);
1572
1573/// SampleContextTrimmer impelements helper functions to trim, merge cold
1574/// context profiles. It also supports context profile canonicalization to make
1575/// sure ProfileMap's key is consistent with FunctionSample's name/context.
1577public:
1578 SampleContextTrimmer(SampleProfileMap &Profiles) : ProfileMap(Profiles) {};
1579 // Trim and merge cold context profile when requested. TrimBaseProfileOnly
1580 // should only be effective when TrimColdContext is true. On top of
1581 // TrimColdContext, TrimBaseProfileOnly can be used to specify to trim all
1582 // cold profiles or only cold base profiles. Trimming base profiles only is
1583 // mainly to honor the preinliner decsion. Note that when MergeColdContext is
1584 // true, preinliner decsion is not honored anyway so TrimBaseProfileOnly will
1585 // be ignored.
1587 bool TrimColdContext,
1588 bool MergeColdContext,
1589 uint32_t ColdContextFrameLength,
1590 bool TrimBaseProfileOnly);
1591
1592private:
1593 SampleProfileMap &ProfileMap;
1594};
1595
1596/// Helper class for profile conversion.
1597///
1598/// It supports full context-sensitive profile to nested profile conversion,
1599/// nested profile to flatten profile conversion, etc.
1601public:
1603 // Convert a full context-sensitive flat sample profile into a nested sample
1604 // profile.
1606 struct FrameNode {
1608 FunctionSamples *FSamples = nullptr,
1609 LineLocation CallLoc = {0, 0})
1610 : FuncName(FName), FuncSamples(FSamples), CallSiteLoc(CallLoc) {};
1611
1612 // Map line+discriminator location to child frame
1613 std::map<uint64_t, FrameNode> AllChildFrames;
1614 // Function name for current frame
1616 // Function Samples for current frame
1618 // Callsite location in parent context
1620
1622 FunctionId CalleeName);
1623 };
1624
1625 static void flattenProfile(SampleProfileMap &ProfileMap,
1626 bool ProfileIsCS = false) {
1627 SampleProfileMap TmpProfiles;
1628 flattenProfile(ProfileMap, TmpProfiles, ProfileIsCS);
1629 ProfileMap = std::move(TmpProfiles);
1630 }
1631
1632 static void flattenProfile(const SampleProfileMap &InputProfiles,
1633 SampleProfileMap &OutputProfiles,
1634 bool ProfileIsCS = false) {
1635 if (ProfileIsCS) {
1636 for (const auto &I : InputProfiles) {
1637 // Retain the profile name and clear the full context for each function
1638 // profile.
1639 FunctionSamples &FS = OutputProfiles.create(I.second.getFunction());
1640 FS.merge(I.second);
1641 }
1642 } else {
1643 for (const auto &I : InputProfiles)
1644 flattenNestedProfile(OutputProfiles, I.second);
1645 }
1646 }
1647
1648private:
1649 static void flattenNestedProfile(SampleProfileMap &OutputProfiles,
1650 const FunctionSamples &FS) {
1651 // To retain the context, checksum, attributes of the original profile, make
1652 // a copy of it if no profile is found.
1653 SampleContext &Context = FS.getContext();
1654 auto Ret = OutputProfiles.try_emplace(Context, FS);
1655 FunctionSamples &Profile = Ret.first->second;
1656 if (Ret.second) {
1657 // Clear nested inlinees' samples for the flattened copy. These inlinees
1658 // will have their own top-level entries after flattening.
1659 Profile.removeAllCallsiteSamples();
1660 // We recompute TotalSamples later, so here set to zero.
1661 Profile.setTotalSamples(0);
1662 } else {
1663 Profile.reserveBodySamples(FS.getBodySamples().size());
1664 for (const auto &[LineLocation, SampleRecord] : FS.getBodySamples()) {
1665 Profile.addSampleRecord(LineLocation, SampleRecord);
1666 }
1667 }
1668
1669 assert(Profile.getCallsiteSamples().empty() &&
1670 "There should be no inlinees' profiles after flattening.");
1671
1672 // TotalSamples might not be equal to the sum of all samples from
1673 // BodySamples and CallsiteSamples. So here we use "TotalSamples =
1674 // Original_TotalSamples - All_of_Callsite_TotalSamples +
1675 // All_of_Callsite_HeadSamples" to compute the new TotalSamples.
1676 uint64_t TotalSamples = FS.getTotalSamples();
1677
1678 for (const auto &I : FS.getCallsiteSamples()) {
1679 for (const auto &Callee : I.second) {
1680 const auto &CalleeProfile = Callee.second;
1681 // Add body sample.
1682 Profile.addBodySamples(I.first.LineOffset, I.first.Discriminator,
1683 CalleeProfile.getHeadSamplesEstimate());
1684 // Add callsite sample.
1685 Profile.addCalledTargetSamples(I.first.LineOffset,
1686 I.first.Discriminator,
1687 CalleeProfile.getFunction(),
1688 CalleeProfile.getHeadSamplesEstimate());
1689 // Update total samples.
1690 TotalSamples = TotalSamples >= CalleeProfile.getTotalSamples()
1691 ? TotalSamples - CalleeProfile.getTotalSamples()
1692 : 0;
1693 TotalSamples += CalleeProfile.getHeadSamplesEstimate();
1694 // Recursively convert callee profile.
1695 flattenNestedProfile(OutputProfiles, CalleeProfile);
1696 }
1697 }
1698 Profile.addTotalSamples(TotalSamples);
1699
1700 Profile.setHeadSamples(Profile.getHeadSamplesEstimate());
1701 }
1702
1703 // Nest all children profiles into the profile of Node.
1704 void convertCSProfiles(FrameNode &Node);
1705 FrameNode *getOrCreateContextPath(const SampleContext &Context);
1706
1707 SampleProfileMap &ProfileMap;
1708 FrameNode RootFrame;
1709};
1710
1711/// ProfileSymbolList records the list of function symbols shown up
1712/// in the binary used to generate the profile. It is useful to
1713/// to discriminate a function being so cold as not to shown up
1714/// in the profile and a function newly added.
1716public:
1717 /// copy indicates whether we need to copy the underlying memory
1718 /// for the input Name.
1719 void add(StringRef Name, bool Copy = false) {
1720 if (!Copy) {
1721 Syms.insert(Name);
1722 return;
1723 }
1724 Syms.insert(Name.copy(Allocator));
1725 }
1726
1727 bool contains(StringRef Name) const {
1728 return IsMD5 ? ColdGUIDTable.contains(llvm::MD5Hash(Name))
1729 : Syms.count(Name);
1730 }
1731
1733 assert(!List.IsMD5 &&
1734 "Merging pre-hashed MD5 ProfileSymbolList not yet implemented");
1735 for (auto Sym : List.Syms)
1736 add(Sym, true);
1737 }
1738
1739 unsigned size() const { return IsMD5 ? ColdGUIDTable.size() : Syms.size(); }
1740 void reserve(size_t Size) { Syms.reserve(Size); }
1741
1742 std::vector<uint64_t> collectGUIDs() const {
1743 assert(!IsMD5 &&
1744 "Collecting GUIDs from existing MD5 table not yet implemented");
1745 std::vector<uint64_t> Keys;
1746 Keys.reserve(Syms.size());
1748 llvm::sort(Keys);
1749 Keys.erase(llvm::unique(Keys), Keys.end());
1750 return Keys;
1751 }
1752
1754 assert(Syms.empty() &&
1755 "Setting ColdGUIDTable shadows existing strings in Syms");
1756 ColdGUIDTable = Table;
1757 IsMD5 = true;
1758 }
1760 assert(IsMD5 && "Retrieving ColdGUIDTable from non-MD5 ProfileSymbolList");
1761 return ColdGUIDTable;
1762 }
1763 bool isMD5() const { return IsMD5; }
1764
1765 LLVM_ABI std::error_code read(const uint8_t *Data, uint64_t ListSize);
1766 LLVM_ABI std::error_code write(raw_ostream &OS);
1767 LLVM_ABI void dump(raw_ostream &OS = dbgs()) const;
1768
1769private:
1770 bool IsMD5 = false;
1774};
1775
1776} // end namespace sampleprof
1777
1778using namespace sampleprof;
1779// Provide DenseMapInfo for SampleContext.
1780template <> struct DenseMapInfo<SampleContext> {
1781 static unsigned getHashValue(const SampleContext &Val) {
1782 return Val.getHashCode();
1783 }
1784
1785 static bool isEqual(const SampleContext &LHS, const SampleContext &RHS) {
1786 return LHS == RHS;
1787 }
1788};
1789
1790// Prepend "__uniq" before the hash for tools like profilers to understand
1791// that this symbol is of internal linkage type. The "__uniq" is the
1792// pre-determined prefix that is used to tell tools that this symbol was
1793// created with -funique-internal-linkage-symbols and the tools can strip or
1794// keep the prefix as needed.
1795inline std::string getUniqueInternalLinkagePostfix(const StringRef &FName) {
1796 llvm::MD5 Md5;
1797 Md5.update(FName);
1799 Md5.final(R);
1800 SmallString<32> Str;
1802 // Convert MD5hash to Decimal. Demangler suffixes can either contain
1803 // numbers or characters but not both.
1804 llvm::APInt IntHash(128, Str.str(), 16);
1805 return toString(IntHash, /* Radix = */ 10, /* Signed = */ false)
1806 .insert(0, FunctionSamples::UniqSuffix);
1807}
1808
1809} // end namespace llvm
1810
1811#endif // LLVM_PROFILEDATA_SAMPLEPROF_H
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
aarch64 promote const
unsigned uint64_t
This file defines the BumpPtrAllocator interface.
always inline
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
#define LLVM_DEPRECATED(MSG, FIX)
Definition Compiler.h:260
#define LLVM_ABI
Definition Compiler.h:215
#define LLVM_LIFETIME_BOUND
Definition Compiler.h:452
This file defines the DenseMap class.
This file defines the DenseSet and SmallDenseSet classes.
Provides ErrorOr<T> smart pointer.
This file defines the EytzingerTableSpan class, a non-owning view of a buffer formatted as a complete...
Defines HashKeyMap template.
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
Load MIR Sample Profile
static cl::opt< unsigned > ColdCountThreshold("mfs-count-threshold", cl::desc("Minimum number of times a block must be executed to be retained."), cl::init(1), cl::Hidden)
This file implements a map that provides insertion order iteration.
#define T
Defines FunctionId class.
Basic Register Allocator
This file defines the SmallVector class.
This file implements a map backed by a sorted SmallVector.
This file contains some functions that are useful when dealing with strings.
Value * RHS
Value * LHS
Class for arbitrary precision integers.
Definition APInt.h:78
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
ArrayRef< T > take_front(size_t N=1) const
Return a copy of *this with only the first N elements.
Definition ArrayRef.h:218
size_t size() const
Get the array size.
Definition ArrayRef.h:141
ArrayRef< T > drop_back(size_t N=1) const
Drop the last N elements of the array.
Definition ArrayRef.h:200
ValueT lookup(const_arg_type_t< KeyT > Val) const
Return the entry for the specified key, or a default constructed value if no such entry exists.
Definition DenseMap.h:250
Implements a dense probed hash-table based set.
Definition DenseSet.h:281
Represents either an error or a value T.
Definition ErrorOr.h:56
Non-owning view of a buffer formatted as a complete binary search tree in Eytzinger (breadth-first) o...
Definition Eytzinger.h:30
static LLVM_ABI GUID getGUIDAssumingExternalLinkage(StringRef GlobalName)
Return a 64-bit global unique ID constructed from the name of a global symbol.
Definition Globals.cpp:80
LLVM_ABI void update(ArrayRef< uint8_t > Data)
Updates the hash for the byte stream provided.
Definition MD5.cpp:188
static LLVM_ABI void stringifyResult(MD5Result &Result, SmallVectorImpl< char > &Str)
Translates the bytes in Res to a hex string that is deposited into Str.
Definition MD5.cpp:286
LLVM_ABI void final(MD5Result &Result)
Finishes off the hash and puts the result in result.
Definition MD5.cpp:233
This class implements a map that also provides access to all stored values in a deterministic order.
Definition MapVector.h:38
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
Definition SmallString.h:26
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
A map implementation backed by a sorted SmallVector.
void reserve(size_type Cap)
size_type size() const
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
std::pair< StringRef, StringRef > split(char Separator) const
Split into two substrings around the first occurrence of a separator character.
Definition StringRef.h:736
static constexpr size_t npos
Definition StringRef.h:58
constexpr StringRef substr(size_t Start, size_t N=npos) const
Return a reference to the substring from [Start, Start + N).
Definition StringRef.h:597
bool starts_with(StringRef Prefix) const
Check if this string starts with the given Prefix.
Definition StringRef.h:258
constexpr bool empty() const
Check if the string is empty.
Definition StringRef.h:141
constexpr size_t size() const
Get the string size.
Definition StringRef.h:144
size_t rfind(char C, size_t From=npos) const
Search for the last character C in the string.
Definition StringRef.h:365
Target - Wrapper for Target specific information.
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
std::pair< iterator, bool > insert(const ValueT &V)
Definition DenseSet.h:209
An opaque object representing a hash code.
Definition Hashing.h:77
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition raw_ostream.h:53
This class represents a function that is read from a sample profile.
Definition FunctionId.h:36
uint64_t getHashCode() const
Get hash code of this object.
Definition FunctionId.h:123
Representation of the samples collected for a function.
Definition SampleProf.h:826
void setTotalSamples(uint64_t Num)
Definition SampleProf.h:848
static LLVM_ABI std::atomic< bool > ProfileIsFS
If this profile uses flow sensitive discriminators.
static LLVM_ABI std::atomic< bool > ProfileIsPreInlined
void setContextAttribute(ContextAttributeMask Attr)
Definition SampleProf.h:947
const FunctionSamplesMap * findFunctionSamplesMapAt(const LineLocation &Loc) const LLVM_LIFETIME_BOUND
Returns the FunctionSamplesMap at the given Loc.
bool operator!=(const FunctionSamples &Other) const
void setHeadSamples(uint64_t Num)
Definition SampleProf.h:850
sampleprof_error addTotalSamples(uint64_t Num, uint64_t Weight=1)
Definition SampleProf.h:833
static constexpr const char * UniqSuffix
static LLVM_ABI std::atomic< bool > UseMD5
Whether the profile uses MD5 to represent string.
bool hasCallsiteSamples() const
Return whether this function profile contains callsite samples.
static StringRef getCanonicalFnName(StringRef FnName, StringRef Attr="selected")
sampleprof_error addTypeSamplesAt(const LineLocation &Loc, FunctionId Type, uint64_t Count)
At location Loc, add a type sample for the given Type with Count.
bool operator==(const FunctionSamples &Other) const
static constexpr const char * PartSuffix
static uint64_t getCallSiteHash(FunctionId Callee, const LineLocation &Callsite)
Returns a unique hash code for a combination of a callsite location and the callee function name.
static StringRef getCanonicalCoroFnName(StringRef FnName, StringRef Attr="selected")
uint64_t getMaxCountInside(bool SkipCallSite=false) const
Return the maximum of sample counts in a function body.
void removeTotalSamples(uint64_t Num)
Definition SampleProf.h:841
uint64_t getHeadSamples() const
For top-level functions, return the total number of branch samples that have the function as the bran...
void setFunction(FunctionId NewFunctionID)
Set the name of the function.
ErrorOr< uint64_t > findSamplesAt(uint32_t LineOffset, uint32_t Discriminator) const
Return the number of samples collected at the given location.
Definition SampleProf.h:971
LLVM_ABI const FunctionSamples * findFunctionSamples(const DILocation *DIL, SampleProfileReaderItaniumRemapper *Remapper=nullptr, const HashKeyMap< DenseMap, FunctionId, FunctionId > *FuncNameToProfNameMap=nullptr) const LLVM_LIFETIME_BOUND
Get the FunctionSamples of the inline instance where DIL originates from.
const CallsiteSampleMap & getCallsiteSamples() const LLVM_LIFETIME_BOUND
Return all the callsite samples collected in the body of the function.
const LineLocation & mapIRLocToProfileLoc(const LineLocation &IRLoc) const
Definition SampleProf.h:957
LLVM_ABI const FunctionSamples * findFunctionSamplesAt(const LineLocation &Loc, StringRef CalleeName, SampleProfileReaderItaniumRemapper *Remapper, const HashKeyMap< DenseMap, FunctionId, FunctionId > *FuncNameToProfNameMap=nullptr) const LLVM_LIFETIME_BOUND
Returns a pointer to FunctionSamples at the given callsite location Loc with callee CalleeName.
static StringRef getCanonicalFnName(StringRef FnName, ArrayRef< StringRef > Suffixes, StringRef Attr="selected")
FunctionId getFunction() const
Return the function name.
SampleContext & getContext() const LLVM_LIFETIME_BOUND
sampleprof_error addCallsiteVTableTypeProfAt(const LineLocation &Loc, const T &Other, uint64_t Weight=1)
Scale Other sample counts by Weight and add the scaled result to the type samples for Loc.
static constexpr const char * LLVMSuffix
Name suffixes which canonicalization should handle to avoid profile mismatch.
FunctionSamplesMap & functionSamplesAt(const LineLocation &Loc) LLVM_LIFETIME_BOUND
Return the function samples at the given callsite location.
StringRef getFuncName(FunctionId Func) const
Translate Func into its original name.
ErrorOr< const SampleRecord::CallTargetMap & > findCallTargetMapAt(uint32_t LineOffset, uint32_t Discriminator) const LLVM_LIFETIME_BOUND
Returns the call target map collected at a given location.
Definition SampleProf.h:986
sampleprof_error addHeadSamples(uint64_t Num, uint64_t Weight=1)
Definition SampleProf.h:852
void reserveBodySamples(size_t NumEntries)
Definition SampleProf.h:880
sampleprof_error addSampleRecord(LineLocation Location, const SampleRecord &SampleRecord, uint64_t Weight=1)
Definition SampleProf.h:874
uint64_t removeCalledTargetAndBodySample(uint32_t LineOffset, uint32_t Discriminator, FunctionId Func)
Definition SampleProf.h:890
DenseMap< uint64_t, StringRef > * GUIDToFuncNameMap
GUIDToFuncNameMap saves the mapping from GUID to the symbol name, for all the function symbols define...
TypeCountMap & getTypeSamplesAt(const LineLocation &Loc) LLVM_LIFETIME_BOUND
Returns the vtable access samples for the C++ types for Loc.
sampleprof_error addCalledTargetSamples(uint32_t LineOffset, uint32_t Discriminator, FunctionId Func, uint64_t Num, uint64_t Weight=1)
Definition SampleProf.h:866
void setIRToProfileLocationMap(const LocToLocMap *LTLM)
static StringRef getCanonicalFnName(const Function &F)
Return the canonical name for a function, taking into account suffix elision policy attributes.
StringRef getFuncName() const
Return the original function name.
LLVM_ABI void findAllNames(DenseSet< FunctionId > &NameSet) const
sampleprof_error addBodySamples(uint32_t LineOffset, uint32_t Discriminator, uint64_t Num, uint64_t Weight=1)
Definition SampleProf.h:860
static LLVM_ABI unsigned getOffset(const DILocation *DIL)
Returns the line offset to the start line of the subprogram.
static LLVM_ABI std::atomic< bool > HasUniqSuffix
Whether the profile contains any ".__uniq." suffix in a name.
void setFunctionHash(uint64_t Hash)
const TypeCountMap * findCallsiteTypeSamplesAt(const LineLocation &Loc) const LLVM_LIFETIME_BOUND
Returns the TypeCountMap for inlined callsites at the given Loc.
static LLVM_ABI std::atomic< bool > ProfileIsProbeBased
const CallsiteTypeMap & getCallsiteTypeCounts() const LLVM_LIFETIME_BOUND
Returns vtable access samples for the C++ types collected in this function.
ErrorOr< const SampleRecord::CallTargetMap & > findCallTargetMapAt(const LineLocation &CallSite) const LLVM_LIFETIME_BOUND
Returns the call target map collected at a given location specified by CallSite.
const BodySampleMap & getBodySamples() const LLVM_LIFETIME_BOUND
Return all the samples collected in the body of the function.
uint64_t getTotalSamples() const
Return the total number of samples collected inside the function.
LLVM_ABI void print(raw_ostream &OS=dbgs(), unsigned Indent=0) const
Print the samples collected for a function on stream OS.
sampleprof_error merge(const FunctionSamples &Other, uint64_t Weight=1)
Merge the samples in Other into this one.
void setContext(const SampleContext &FContext)
static LLVM_ABI std::atomic< bool > ProfileIsCS
static LLVM_ABI LineLocation getCallSiteIdentifier(const DILocation *DIL, bool ProfileIsFS=false)
Returns a unique call site identifier for a given debug location of a call instruction.
void reserveCallsiteTypeCounts(size_t NumEntries)
Definition SampleProf.h:884
void findInlinedFunctions(DenseSet< GlobalValue::GUID > &S, const HashKeyMap< DenseMap, FunctionId, Function * > &SymbolMap, uint64_t Threshold) const
Recursively traverses all children, if the total sample count of the corresponding function is no les...
uint64_t getHeadSamplesEstimate() const
Return an estimate of the sample count of the function entry basic block.
uint64_t getGUID() const
Return the GUID of the context's name.
This class is a wrapper to associative container MapT<KeyT, ValueT> using the hash value of the origi...
Definition HashKeyMap.h:52
std::pair< iterator, bool > try_emplace(const key_type &Hash, const original_key_type &Key, Ts &&...Args)
Definition HashKeyMap.h:64
iterator find(const original_key_type &Key)
Definition HashKeyMap.h:85
LLVM_ABI ProfileConverter(SampleProfileMap &Profiles)
static void flattenProfile(SampleProfileMap &ProfileMap, bool ProfileIsCS=false)
static void flattenProfile(const SampleProfileMap &InputProfiles, SampleProfileMap &OutputProfiles, bool ProfileIsCS=false)
ProfileSymbolList records the list of function symbols shown up in the binary used to generate the pr...
void add(StringRef Name, bool Copy=false)
copy indicates whether we need to copy the underlying memory for the input Name.
LLVM_ABI std::error_code write(raw_ostream &OS)
bool contains(StringRef Name) const
LLVM_ABI void dump(raw_ostream &OS=dbgs()) const
void setColdGUIDTable(EytzingerTableSpan< support::ulittle64_t > Table)
std::vector< uint64_t > collectGUIDs() const
void merge(const ProfileSymbolList &List)
EytzingerTableSpan< support::ulittle64_t > getColdGUIDTable() const
LLVM_ABI std::error_code read(const uint8_t *Data, uint64_t ListSize)
SampleContextTrimmer(SampleProfileMap &Profiles)
LLVM_ABI void trimAndMergeColdContextProfiles(uint64_t ColdCountThreshold, bool TrimColdContext, bool MergeColdContext, uint32_t ColdContextFrameLength, bool TrimBaseProfileOnly)
static void createCtxVectorFromStr(StringRef ContextStr, SampleContextFrameVector &Context)
Create a context vector from a given context string and save it in Context.
Definition SampleProf.h:648
bool operator==(const SampleContext &That) const
Definition SampleProf.h:741
void setFunction(FunctionId NewFunctionID)
Set the name of the function and clear the current context.
Definition SampleProf.h:727
SampleContext(SampleContextFrames Context, ContextStateMask CState=RawContext)
Definition SampleProf.h:617
bool operator<(const SampleContext &That) const
Definition SampleProf.h:748
SampleContext(StringRef ContextStr, std::list< SampleContextFrameVector > &CSNameTable, ContextStateMask CState=RawContext)
Definition SampleProf.h:627
bool hasState(ContextStateMask S)
Definition SampleProf.h:693
void clearState(ContextStateMask S)
Definition SampleProf.h:695
SampleContextFrames getContextFrames() const
Definition SampleProf.h:699
static void decodeContextString(StringRef ContextStr, FunctionId &Func, LineLocation &LineLoc)
Definition SampleProf.h:667
static std::string getContextString(SampleContextFrames Context, bool IncludeLeafLineLocation=false)
Definition SampleProf.h:701
bool operator!=(const SampleContext &That) const
Definition SampleProf.h:746
void setState(ContextStateMask S)
Definition SampleProf.h:694
void setAllAttributes(uint32_t A)
Definition SampleProf.h:692
void setContext(SampleContextFrames Context, ContextStateMask CState=RawContext)
Definition SampleProf.h:733
FunctionId getFunction() const
Definition SampleProf.h:698
void setAttribute(ContextAttributeMask A)
Definition SampleProf.h:690
bool hasAttribute(ContextAttributeMask A)
Definition SampleProf.h:689
std::string toString() const
Definition SampleProf.h:714
bool isPrefixOf(const SampleContext &That) const
Definition SampleProf.h:777
This class provides operator overloads to the map container using MD5 as the key type,...
iterator find(const SampleContext &Ctx)
mapped_type & create(const SampleContext &Ctx)
size_t erase(const key_type &Key)
const_iterator find(const SampleContext &Ctx) const
size_t erase(const SampleContext &Ctx)
SampleProfileReaderItaniumRemapper remaps the profile data from a sample profile data reader,...
Representation of a single sample record.
Definition SampleProf.h:395
static SortedCallTargetSet sortCallTargets(const CallTargetMap &Targets)
Sort call targets in descending order of call frequency.
Definition SampleProf.h:481
LLVM_ABI std::error_code serialize(raw_ostream &OS, const MapVector< FunctionId, uint32_t > &NameTable) const
Serialize the sample record to the output stream using ULEB128 encoding.
LLVM_ABI void dump() const
bool hasCalls() const
Return true if this sample record contains function calls.
Definition SampleProf.h:460
LLVM_ABI sampleprof_error merge(const SampleRecord &Other, uint64_t Weight=1)
Merge the samples in Other into this record.
SortedCallTargetSet getSortedCallTargets() const
Definition SampleProf.h:469
uint64_t getCallTargetSum() const
Definition SampleProf.h:473
uint64_t removeSamples(uint64_t S)
Decrease the number of samples for this record by S.
Definition SampleProf.h:425
sampleprof_error addSamples(uint64_t S, uint64_t Weight=1)
Increment the number of samples for this record by S.
Definition SampleProf.h:416
uint64_t removeCalledTarget(FunctionId F)
Remove called function from the call target map.
Definition SampleProf.h:449
const CallTargetMap & getCallTargets() const LLVM_LIFETIME_BOUND
Return the call targets collected in this sample record.
Definition SampleProf.h:466
static const CallTargetMap adjustCallTargets(const CallTargetMap &Targets, float DistributionFactor)
Prorate call targets by a distribution factor.
Definition SampleProf.h:488
SortedVectorMap< FunctionId, uint64_t, 0 > CallTargetMap
Definition SampleProf.h:408
std::pair< FunctionId, uint64_t > CallTarget
Definition SampleProf.h:397
bool operator!=(const SampleRecord &Other) const
Definition SampleProf.h:513
SmallVector< CallTarget > SortedCallTargetSet
Definition SampleProf.h:407
bool operator==(const SampleRecord &Other) const
Definition SampleProf.h:509
LLVM_ABI void print(raw_ostream &OS, unsigned Indent) const
Print the sample record to the stream OS indented by Indent.
sampleprof_error addCalledTarget(FunctionId F, uint64_t S, uint64_t Weight=1)
Add called function F with samples S.
Definition SampleProf.h:437
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
static FunctionId getRepInFormat(StringRef Name)
Get the proper representation of a string according to whether the current Format uses MD5 to represe...
static void verifySecFlag(SecType Type, SecFlagType Flag)
Definition SampleProf.h:261
LLVM_ABI void sortFuncProfiles(const SampleProfileMap &ProfileMap, std::vector< NameFunctionSamples > &SortedProfiles)
static uint64_t SPMagic(SampleProfileFormat Format=SPF_Binary)
Definition SampleProf.h:114
static bool formatVersionIsSupported(uint64_t Version)
Definition SampleProf.h:132
SortedVectorMap< LineLocation, TypeCountMap, 0 > CallsiteTypeMap
Definition SampleProf.h:818
static void addSecFlag(SecHdrTableEntry &Entry, SecFlagType Flag)
Definition SampleProf.h:292
std::map< LineLocation, FunctionSamplesMap > CallsiteSampleMap
Definition SampleProf.h:817
static bool hasSecFlag(const SecHdrTableEntry &Entry, SecFlagType Flag)
Definition SampleProf.h:308
static constexpr uint64_t LatestVersion
Definition SampleProf.h:129
SortedVectorMap< LineLocation, SampleRecord, 0 > BodySampleMap
Definition SampleProf.h:813
ArrayRef< SampleContextFrame > SampleContextFrames
Definition SampleProf.h:587
std::pair< hash_code, const FunctionSamples * > NameFunctionSamples
uint64_t MD5Hash(const FunctionId &Obj)
Definition FunctionId.h:167
@ SecFlagIsPreInlined
SecFlagIsPreInlined means this profile contains ShouldBeInlined contexts thus this is CS preinliner c...
Definition SampleProf.h:237
@ SecFlagHasVTableTypeProf
SecFlagHasVTableTypeProf means this profile contains vtable type profiles.
Definition SampleProf.h:240
@ SecFlagPartial
SecFlagPartial means the profile is for common/shared code.
Definition SampleProf.h:228
@ SecFlagFSDiscriminator
SecFlagFSDiscriminator means this profile uses flow-sensitive discriminators.
Definition SampleProf.h:234
@ SecFlagFullContext
SecFlagContext means this is context-sensitive flat profile for CSSPGO.
Definition SampleProf.h:231
static void removeSecFlag(SecHdrTableEntry &Entry, SecFlagType Flag)
Definition SampleProf.h:300
DenseMap< LineLocation, LineLocation > LocToLocMap
Definition SampleProf.h:819
SmallVector< SampleContextFrame, 1 > SampleContextFrameVector
Definition SampleProf.h:586
std::map< FunctionId, FunctionSamples > FunctionSamplesMap
Definition SampleProf.h:816
static constexpr uint64_t MinSupportedVersion
Definition SampleProf.h:122
raw_ostream & operator<<(raw_ostream &OS, const FunctionId &Obj)
Definition FunctionId.h:159
static constexpr uint64_t DefaultVersion
Definition SampleProf.h:126
static std::string getSecName(SecType Type)
Definition SampleProf.h:156
constexpr char kVTableProfPrefix[]
Definition SampleProf.h:97
uint64_t hash_value(const FunctionId &Obj)
Definition FunctionId.h:171
LLVM_ABI std::error_code serializeTypeMap(const TypeCountMap &Map, const MapVector< FunctionId, uint32_t > &NameTable, raw_ostream &OS)
Write Map to the output stream.
static uint64_t SPVersion()
Definition SampleProf.h:138
SortedVectorMap< FunctionId, uint64_t, 0 > TypeCountMap
Key represents type of a C++ polymorphic class type by its vtable and value represents its counter.
Definition SampleProf.h:375
This is an optimization pass for GlobalISel generic memory operations.
std::error_code make_error_code(BitcodeError E)
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
Definition STLExtras.h:2208
auto unique(Range &&R, Predicate P)
Definition STLExtras.h:2134
auto map_range(ContainerTy &&C, FuncTy F)
Return a range that applies F to the elements of C.
Definition STLExtras.h:365
sampleprof_error mergeSampleProfErrors(sampleprof_error &Accumulator, sampleprof_error Result)
Definition SampleProf.h:75
sampleprof_error
Definition SampleProf.h:52
void sort(IteratorTy Start, IteratorTy End)
Definition STLExtras.h:1636
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:209
std::enable_if_t< std::is_unsigned_v< T >, T > SaturatingMultiplyAdd(T X, T Y, T A, bool *ResultOverflowed=nullptr)
Multiply two unsigned integers, X and Y, and add the unsigned integer, A to the product.
Definition MathExtras.h:679
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
@ Other
Any other memory.
Definition ModRef.h:68
LLVM_ABI const std::error_category & sampleprof_category()
std::string getUniqueInternalLinkagePostfix(const StringRef &FName)
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Count
Definition InstrProf.h:145
std::string toString(const APInt &I, unsigned Radix, bool Signed, bool formatAsCLiteral=false, bool UpperCase=true, bool InsertSeparators=false)
BumpPtrAllocatorImpl<> BumpPtrAllocator
The standard BumpPtrAllocator which just uses the default template parameters.
Definition Allocator.h:390
LogicalResult success(bool IsSuccess=true)
Utility function to generate a LogicalResult.
SmallVector< Out, Size > to_vector_of(R &&Range)
hash_code hash_combine_range(InputIteratorT first, InputIteratorT last)
Compute a hash_code for a sequence of values.
Definition Hashing.h:285
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:878
static unsigned getHashValue(const SampleContext &Val)
static bool isEqual(const SampleContext &LHS, const SampleContext &RHS)
static unsigned getHashValue(const sampleprof::LineLocation &Val)
Definition SampleProf.h:359
static bool isEqual(const sampleprof::LineLocation &LHS, const sampleprof::LineLocation &RHS)
Definition SampleProf.h:363
An information struct used to provide DenseMap with the various necessary components for a given valu...
Represents the relative location of an instruction.
Definition SampleProf.h:324
LLVM_ABI void serialize(raw_ostream &OS) const
LLVM_ABI void print(raw_ostream &OS) const
LineLocation(uint32_t L, uint32_t D)
Definition SampleProf.h:325
bool operator!=(const LineLocation &O) const
Definition SampleProf.h:342
bool operator<(const LineLocation &O) const
Definition SampleProf.h:333
bool operator==(const LineLocation &O) const
Definition SampleProf.h:338
LLVM_ABI void dump() const
FrameNode(FunctionId FName=FunctionId(), FunctionSamples *FSamples=nullptr, LineLocation CallLoc={0, 0})
LLVM_ABI FrameNode * getOrCreateChildFrame(const LineLocation &CallSite, FunctionId CalleeName)
std::map< uint64_t, FrameNode > AllChildFrames
uint64_t operator()(const SampleContextFrameVector &S) const
Definition SampleProf.h:590
bool operator==(const SampleContextFrame &That) const
Definition SampleProf.h:550
SampleContextFrame(FunctionId Func, LineLocation Location)
Definition SampleProf.h:547
bool operator!=(const SampleContextFrame &That) const
Definition SampleProf.h:554
std::string toString(bool OutputLineLocation) const
Definition SampleProf.h:558
uint64_t operator()(const SampleContext &Context) const
Definition SampleProf.h:772
bool operator()(const CallTarget &LHS, const CallTarget &RHS) const
Definition SampleProf.h:399