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 reserved for the in-progress on-disk
126// hash table.
127static constexpr uint64_t DefaultVersion = 103;
128
129// The first version that permits composite profile sections.
130static constexpr uint64_t CompositeProfileVersion = 105;
131
132// The latest supported version of the extensible binary profile format.
134
135// Query if a given format version is supported by this compiler.
139
140// Unused. Retained for downstream uses only.
141LLVM_DEPRECATED("Use DefaultVersion or LatestVersion instead", "DefaultVersion")
142static inline uint64_t SPVersion() { return 103; }
143
144// Section Type used by SampleProfileExtBinaryBaseReader and
145// SampleProfileExtBinaryBaseWriter. Never change the existing
146// value of enum. Only append new ones.
155 // Function offset table used by the composite profile representation.
157 // marker for the first type of profile.
160 // Function profile section used by the composite profile representation.
162};
163
164static inline std::string getSecName(SecType Type) {
165 switch (static_cast<int>(Type)) { // Avoid -Wcovered-switch-default
166 case SecInValid:
167 return "InvalidSection";
168 case SecProfSummary:
169 return "ProfileSummarySection";
170 case SecNameTable:
171 return "NameTableSection";
173 return "ProfileSymbolListSection";
175 return "FuncOffsetTableSection";
176 case SecFuncMetadata:
177 return "FunctionMetadata";
178 case SecCSNameTable:
179 return "CSNameTableSection";
181 return "CompositeFuncOffsetTableSection";
182 case SecLBRProfile:
183 return "LBRProfileSection";
185 return "CompositeProfileSection";
186 default:
187 return "UnknownSection";
188 }
189}
190
191// Types of sample profiles that can be placed in SecCompositeProfile. These
192// values are persisted on disk; never change existing values, only append new
193// profile type IDs.
195
197 switch (Type) {
198 case ProfTypeLBR:
199 return "LBR";
200 default:
201 return "unknown";
202 }
203}
204
205// Entry type of section header table used by SampleProfileExtBinaryBaseReader
206// and SampleProfileExtBinaryBaseWriter.
212 // The index indicating the location of the current entry in
213 // SectionHdrLayout table.
215};
216
217// Flags common for all sections are defined here. In SecHdrTableEntry::Flags,
218// common flags will be saved in the lower 32bits and section specific flags
219// will be saved in the higher 32 bits.
222 SecFlagCompress = (1 << 0),
223 // Indicate the section contains flat profiles (without callsite samples).
224 SecFlagFlat = (1 << 1)
225};
226
227// Section specific flags are defined here.
228// !!!Note: Everytime a new enum class is created here, please add
229// a new check in verifySecFlag.
232 SecFlagMD5Name = (1 << 0),
233 // Store MD5 in fixed length instead of ULEB128 so NameTable can be
234 // accessed like an array.
236 // Profile contains ".__uniq." suffix name. Compiler shouldn't strip
237 // the suffix when doing profile matching when seeing the flag.
239 // Name table is stored in 3-span Eytzinger layout (Nested, Flat, Inlinees).
241};
242
243enum class EytzingerSpan : size_t { Nested, Flat, Inlinee, NumSpans };
244
251 /// SecFlagPartial means the profile is for common/shared code.
252 /// The common profile is usually merged from profiles collected
253 /// from running other targets.
254 SecFlagPartial = (1 << 0),
255 /// SecFlagContext means this is context-sensitive flat profile for
256 /// CSSPGO
258 /// SecFlagFSDiscriminator means this profile uses flow-sensitive
259 /// discriminators.
261 /// SecFlagIsPreInlined means this profile contains ShouldBeInlined
262 /// contexts thus this is CS preinliner computed.
264
265 /// SecFlagHasVTableTypeProf means this profile contains vtable type profiles.
267};
268
274
277 // Store function offsets in an order of contexts. The order ensures that
278 // callee contexts of a given context laid out next to it.
279 SecFlagOrdered = (1 << 0),
280 // Store function offsets in a parallel array aligned with Eytzinger NameTable
281 // span.
283};
284
285// Verify section specific flag is used for the correct section.
286template <class SecFlagType>
287static inline void verifySecFlag(SecType Type, SecFlagType Flag) {
288 // No verification is needed for common flags.
289 if (std::is_same<SecCommonFlags, SecFlagType>())
290 return;
291
292 // Verification starts here for section specific flag.
293 bool IsFlagLegal = false;
294 switch (Type) {
295 case SecNameTable:
296 IsFlagLegal = std::is_same<SecNameTableFlags, SecFlagType>();
297 break;
299 IsFlagLegal = std::is_same<SecProfileSymbolListFlags, SecFlagType>();
300 break;
301 case SecProfSummary:
302 IsFlagLegal = std::is_same<SecProfSummaryFlags, SecFlagType>();
303 break;
304 case SecFuncMetadata:
305 IsFlagLegal = std::is_same<SecFuncMetadataFlags, SecFlagType>();
306 break;
309 IsFlagLegal = std::is_same<SecFuncOffsetFlags, SecFlagType>();
310 break;
311 default:
312 break;
313 }
314 if (!IsFlagLegal)
315 llvm_unreachable("Misuse of a flag in an incompatible section");
316}
317
318template <class SecFlagType>
319static inline void addSecFlag(SecHdrTableEntry &Entry, SecFlagType Flag) {
320 verifySecFlag(Entry.Type, Flag);
321 auto FVal = static_cast<uint64_t>(Flag);
322 bool IsCommon = std::is_same<SecCommonFlags, SecFlagType>();
323 Entry.Flags |= IsCommon ? FVal : (FVal << 32);
324}
325
326template <class SecFlagType>
327static inline void removeSecFlag(SecHdrTableEntry &Entry, SecFlagType Flag) {
328 verifySecFlag(Entry.Type, Flag);
329 auto FVal = static_cast<uint64_t>(Flag);
330 bool IsCommon = std::is_same<SecCommonFlags, SecFlagType>();
331 Entry.Flags &= ~(IsCommon ? FVal : (FVal << 32));
332}
333
334template <class SecFlagType>
335static inline bool hasSecFlag(const SecHdrTableEntry &Entry, SecFlagType Flag) {
336 verifySecFlag(Entry.Type, Flag);
337 auto FVal = static_cast<uint64_t>(Flag);
338 bool IsCommon = std::is_same<SecCommonFlags, SecFlagType>();
339 return Entry.Flags & (IsCommon ? FVal : (FVal << 32));
340}
341
342/// Represents the relative location of an instruction.
343///
344/// Instruction locations are specified by the line offset from the
345/// beginning of the function (marked by the line where the function
346/// header is) and the discriminator value within that line.
347///
348/// The discriminator value is useful to distinguish instructions
349/// that are on the same line but belong to different basic blocks
350/// (e.g., the two post-increment instructions in "if (p) x++; else y++;").
353
354 LLVM_ABI void print(raw_ostream &OS) const;
355 LLVM_ABI void dump() const;
356
357 // Serialize the line location to the output stream using ULEB128 encoding.
358 LLVM_ABI void serialize(raw_ostream &OS) const;
359
360 bool operator<(const LineLocation &O) const {
361 return std::tie(LineOffset, Discriminator) <
362 std::tie(O.LineOffset, O.Discriminator);
363 }
364
365 bool operator==(const LineLocation &O) const {
366 return LineOffset == O.LineOffset && Discriminator == O.Discriminator;
367 }
368
369 bool operator!=(const LineLocation &O) const {
370 return LineOffset != O.LineOffset || Discriminator != O.Discriminator;
371 }
372
374 return ((uint64_t)Discriminator << 32) | LineOffset;
375 }
376
379};
380
382
383} // end namespace sampleprof
384
386 static unsigned getHashValue(const sampleprof::LineLocation &Val) {
388 }
389
392 return LHS == RHS;
393 }
394};
395
396namespace sampleprof {
397
398/// Key represents type of a C++ polymorphic class type by its vtable and value
399/// represents its counter.
400/// TODO: The class name FunctionId should be renamed to SymbolId in a refactor
401/// change.
403
404/// Write \p Map to the output stream. Keys are linearized using \p NameTable
405/// and written as ULEB128. Values are written as ULEB128 as well.
406LLVM_ABI std::error_code
408 const MapVector<FunctionId, uint32_t> &NameTable,
409 raw_ostream &OS);
410
411/// Representation of a single sample record.
412///
413/// A sample record is represented by a positive integer value, which
414/// indicates how frequently was the associated line location executed.
415///
416/// Additionally, if the associated location contains a function call,
417/// the record will hold a list of all the possible called targets and the types
418/// for virtual table dispatches. For direct calls, this will be the exact
419/// function being invoked. For indirect calls (function pointers, virtual table
420/// dispatch), this will be a list of one or more functions. For virtual table
421/// dispatches, this record will also hold the type of the object.
423public:
424 using CallTarget = std::pair<FunctionId, uint64_t>;
426 bool operator()(const CallTarget &LHS, const CallTarget &RHS) const {
427 if (LHS.second != RHS.second)
428 return LHS.second > RHS.second;
429
430 return LHS.first < RHS.first;
431 }
432 };
433
436 SampleRecord() = default;
437
438 /// Increment the number of samples for this record by \p S.
439 /// Optionally scale sample count \p S by \p Weight.
440 ///
441 /// Sample counts accumulate using saturating arithmetic, to avoid wrapping
442 /// around unsigned integers.
444 bool Overflowed;
445 NumSamples = SaturatingMultiplyAdd(S, Weight, NumSamples, &Overflowed);
446 return Overflowed ? sampleprof_error::counter_overflow
448 }
449
450 /// Decrease the number of samples for this record by \p S. Return the amout
451 /// of samples actually decreased.
453 if (S > NumSamples)
454 S = NumSamples;
455 NumSamples -= S;
456 return S;
457 }
458
459 /// Add called function \p F with samples \p S.
460 /// Optionally scale sample count \p S by \p Weight.
461 ///
462 /// Sample counts accumulate using saturating arithmetic, to avoid wrapping
463 /// around unsigned integers.
465 uint64_t Weight = 1) {
466 uint64_t &TargetSamples = CallTargets[F];
467 bool Overflowed;
468 TargetSamples =
469 SaturatingMultiplyAdd(S, Weight, TargetSamples, &Overflowed);
470 return Overflowed ? sampleprof_error::counter_overflow
472 }
473
474 /// Remove called function from the call target map. Return the target sample
475 /// count of the called function.
477 uint64_t Count = 0;
478 auto I = CallTargets.find(F);
479 if (I != CallTargets.end()) {
480 Count = I->second;
481 CallTargets.erase(I);
482 }
483 return Count;
484 }
485
486 /// Return true if this sample record contains function calls.
487 bool hasCalls() const { return !CallTargets.empty(); }
488
489 uint64_t getSamples() const { return NumSamples; }
490 /// Return the call targets collected in this sample record.
491 /// The returned reference may be invalidated by subsequent modifications to
492 /// this SampleRecord.
494 return CallTargets;
495 }
497 return sortCallTargets(CallTargets);
498 }
499
501 uint64_t Sum = 0;
502 for (const auto &I : CallTargets)
503 Sum += I.second;
504 return Sum;
505 }
506
507 /// Sort call targets in descending order of call frequency.
509 auto SortedTargets = llvm::to_vector_of<CallTarget>(Targets);
510 llvm::sort(SortedTargets, CallTargetComparator());
511 return SortedTargets;
512 }
513
514 /// Prorate call targets by a distribution factor.
515 static const CallTargetMap adjustCallTargets(const CallTargetMap &Targets,
516 float DistributionFactor) {
517 CallTargetMap AdjustedTargets;
518 for (const auto &[Target, Frequency] : Targets) {
519 AdjustedTargets[Target] = Frequency * DistributionFactor;
520 }
521 return AdjustedTargets;
522 }
523
524 /// Merge the samples in \p Other into this record.
525 /// Optionally scale sample counts by \p Weight.
527 uint64_t Weight = 1);
528 LLVM_ABI void print(raw_ostream &OS, unsigned Indent) const;
529 LLVM_ABI void dump() const;
530 /// Serialize the sample record to the output stream using ULEB128 encoding.
531 /// The \p NameTable is used to map function names to their IDs.
532 LLVM_ABI std::error_code
534 const MapVector<FunctionId, uint32_t> &NameTable) const;
535
536 bool operator==(const SampleRecord &Other) const {
537 return NumSamples == Other.NumSamples && CallTargets == Other.CallTargets;
538 }
539
540 bool operator!=(const SampleRecord &Other) const { return !(*this == Other); }
541
542private:
543 uint64_t NumSamples = 0;
544 CallTargetMap CallTargets;
545};
546
548
549// State of context associated with FunctionSamples
551 UnknownContext = 0x0, // Profile without context
552 RawContext = 0x1, // Full context profile from input profile
553 SyntheticContext = 0x2, // Synthetic context created for context promotion
554 InlinedContext = 0x4, // Profile for context that is inlined into caller
555 MergedContext = 0x8 // Profile for context merged into base profile
556};
557
558// Attribute of context associated with FunctionSamples
561 ContextWasInlined = 0x1, // Leaf of context was inlined in previous build
562 ContextShouldBeInlined = 0x2, // Leaf of context should be inlined
564 0x4, // Leaf of context is duplicated into the base profile
565};
566
567// Represents a context frame with profile function and line location
571
573
576
577 bool operator==(const SampleContextFrame &That) const {
578 return Location == That.Location && Func == That.Func;
579 }
580
581 bool operator!=(const SampleContextFrame &That) const {
582 return !(*this == That);
583 }
584
585 std::string toString(bool OutputLineLocation) const {
586 std::ostringstream OContextStr;
587 OContextStr << Func.str();
588 if (OutputLineLocation) {
589 OContextStr << ":" << Location.LineOffset;
590 if (Location.Discriminator)
591 OContextStr << "." << Location.Discriminator;
592 }
593 return OContextStr.str();
594 }
595
597 // Context frame hash is heavily used in llvm-profgen context-sensitive
598 // pre-inliner. Use a lightweight hashing here to avoid speed regression.
599 uint64_t NameHash = 0;
600 if (Func.isStringRef())
601 NameHash = std::hash<std::string>{}(Func.str());
602 else
603 NameHash = Func.getHashCode();
604 uint64_t LocId = Location.getHashCode();
605 return NameHash + (LocId << 5) + LocId;
606 }
607};
608
609static inline hash_code hash_value(const SampleContextFrame &arg) {
610 return arg.getHashCode();
611}
612
615
621
622// Sample context for FunctionSamples. It consists of the calling context,
623// the function name and context state. Internally sample context is represented
624// using ArrayRef, which is also the input for constructing a `SampleContext`.
625// It can accept and represent both full context string as well as context-less
626// function name.
627// For a CS profile, a full context vector can look like:
628// `main:3 _Z5funcAi:1 _Z8funcLeafi`
629// For a base CS profile without calling context, the context vector should only
630// contain the leaf frame name.
631// For a non-CS profile, the context vector should be empty.
633public:
634 SampleContext() : State(UnknownContext), Attributes(ContextNone) {}
635
637 : Func(Name), State(UnknownContext), Attributes(ContextNone) {
638 assert(!Name.empty() && "Name is empty");
639 }
640
642 : Func(Func), State(UnknownContext), Attributes(ContextNone) {}
643
646 : Attributes(ContextNone) {
647 assert(!Context.empty() && "Context is empty");
648 setContext(Context, CState);
649 }
650
651 // Give a context string, decode and populate internal states like
652 // Function name, Calling context and context state. Example of input
653 // `ContextStr`: `[main:3 @ _Z5funcAi:1 @ _Z8funcLeafi]`
655 std::list<SampleContextFrameVector> &CSNameTable,
657 : Attributes(ContextNone) {
658 assert(!ContextStr.empty());
659 // Note that `[]` wrapped input indicates a full context string, otherwise
660 // it's treated as context-less function name only.
661 bool HasContext = ContextStr.starts_with("[");
662 if (!HasContext) {
663 State = UnknownContext;
664 Func = FunctionId(ContextStr);
665 } else {
666 CSNameTable.emplace_back();
667 SampleContextFrameVector &Context = CSNameTable.back();
668 createCtxVectorFromStr(ContextStr, Context);
669 setContext(Context, CState);
670 }
671 }
672
673 /// Create a context vector from a given context string and save it in
674 /// `Context`.
675 static void createCtxVectorFromStr(StringRef ContextStr,
676 SampleContextFrameVector &Context) {
677 // Remove encapsulating '[' and ']' if any
678 ContextStr = ContextStr.substr(1, ContextStr.size() - 2);
679 StringRef ContextRemain = ContextStr;
680 StringRef ChildContext;
681 FunctionId Callee;
682 while (!ContextRemain.empty()) {
683 auto ContextSplit = ContextRemain.split(" @ ");
684 ChildContext = ContextSplit.first;
685 ContextRemain = ContextSplit.second;
686 LineLocation CallSiteLoc(0, 0);
687 decodeContextString(ChildContext, Callee, CallSiteLoc);
688 Context.emplace_back(Callee, CallSiteLoc);
689 }
690 }
691
692 // Decode context string for a frame to get function name and location.
693 // `ContextStr` is in the form of `FuncName:StartLine.Discriminator`.
694 static void decodeContextString(StringRef ContextStr, FunctionId &Func,
695 LineLocation &LineLoc) {
696 // Get function name
697 auto EntrySplit = ContextStr.split(':');
698 Func = FunctionId(EntrySplit.first);
699
700 LineLoc = {0, 0};
701 if (!EntrySplit.second.empty()) {
702 // Get line offset, use signed int for getAsInteger so string will
703 // be parsed as signed.
704 int LineOffset = 0;
705 auto LocSplit = EntrySplit.second.split('.');
706 LocSplit.first.getAsInteger(10, LineOffset);
707 LineLoc.LineOffset = LineOffset;
708
709 // Get discriminator
710 if (!LocSplit.second.empty())
711 LocSplit.second.getAsInteger(10, LineLoc.Discriminator);
712 }
713 }
714
715 operator SampleContextFrames() const { return FullContext; }
716 bool hasAttribute(ContextAttributeMask A) { return Attributes & (uint32_t)A; }
717 void setAttribute(ContextAttributeMask A) { Attributes |= (uint32_t)A; }
718 uint32_t getAllAttributes() { return Attributes; }
719 void setAllAttributes(uint32_t A) { Attributes = A; }
720 bool hasState(ContextStateMask S) { return State & (uint32_t)S; }
721 void setState(ContextStateMask S) { State |= (uint32_t)S; }
722 void clearState(ContextStateMask S) { State &= (uint32_t)~S; }
723 bool hasContext() const { return State != UnknownContext; }
724 bool isBaseContext() const { return FullContext.size() == 1; }
725 FunctionId getFunction() const { return Func; }
726 SampleContextFrames getContextFrames() const { return FullContext; }
727
728 static std::string getContextString(SampleContextFrames Context,
729 bool IncludeLeafLineLocation = false) {
730 std::ostringstream OContextStr;
731 for (uint32_t I = 0; I < Context.size(); I++) {
732 if (OContextStr.str().size()) {
733 OContextStr << " @ ";
734 }
735 OContextStr << Context[I].toString(I != Context.size() - 1 ||
736 IncludeLeafLineLocation);
737 }
738 return OContextStr.str();
739 }
740
741 std::string toString() const {
742 if (!hasContext())
743 return Func.str();
744 return getContextString(FullContext, false);
745 }
746
748 if (hasContext())
750 return getFunction().getHashCode();
751 }
752
753 /// Set the name of the function and clear the current context.
754 void setFunction(FunctionId NewFunctionID) {
755 Func = NewFunctionID;
756 FullContext = SampleContextFrames();
757 State = UnknownContext;
758 }
759
761 ContextStateMask CState = RawContext) {
762 assert(CState != UnknownContext);
763 FullContext = Context;
764 Func = Context.back().Func;
765 State = CState;
766 }
767
768 bool operator==(const SampleContext &That) const {
769 return State == That.State && Func == That.Func &&
770 FullContext == That.FullContext;
771 }
772
773 bool operator!=(const SampleContext &That) const { return !(*this == That); }
774
775 bool operator<(const SampleContext &That) const {
776 if (State != That.State)
777 return State < That.State;
778
779 if (!hasContext()) {
780 return Func < That.Func;
781 }
782
783 uint64_t I = 0;
784 while (I < std::min(FullContext.size(), That.FullContext.size())) {
785 auto &Context1 = FullContext[I];
786 auto &Context2 = That.FullContext[I];
787 auto V = Context1.Func.compare(Context2.Func);
788 if (V)
789 return V < 0;
790 if (Context1.Location != Context2.Location)
791 return Context1.Location < Context2.Location;
792 I++;
793 }
794
795 return FullContext.size() < That.FullContext.size();
796 }
797
798 struct Hash {
799 uint64_t operator()(const SampleContext &Context) const {
800 return Context.getHashCode();
801 }
802 };
803
804 bool isPrefixOf(const SampleContext &That) const {
805 auto ThisContext = FullContext;
806 auto ThatContext = That.FullContext;
807 if (ThatContext.size() < ThisContext.size())
808 return false;
809 ThatContext = ThatContext.take_front(ThisContext.size());
810 // Compare Leaf frame first
811 if (ThisContext.back().Func != ThatContext.back().Func)
812 return false;
813 // Compare leading context
814 return ThisContext.drop_back() == ThatContext.drop_back();
815 }
816
817private:
818 // The function associated with this context. If CS profile, this is the leaf
819 // function.
820 FunctionId Func;
821 // Full context including calling context and leaf function name
822 SampleContextFrames FullContext;
823 // State of the associated sample profile
824 uint32_t State;
825 // Attribute of the associated sample profile
826 uint32_t Attributes;
827};
828
829static inline hash_code hash_value(const SampleContext &Context) {
830 return Context.getHashCode();
831}
832
833inline raw_ostream &operator<<(raw_ostream &OS, const SampleContext &Context) {
834 return OS << Context.toString();
835}
836
837class FunctionSamples;
839
841// NOTE: Using a StringMap here makes parsed profiles consume around 17% more
842// memory, which is *very* significant for large profiles.
843using FunctionSamplesMap = std::map<FunctionId, FunctionSamples>;
844using CallsiteSampleMap = std::map<LineLocation, FunctionSamplesMap>;
847
848/// Representation of the samples collected for a function.
849///
850/// This data structure contains all the collected samples for the body
851/// of a function. Each sample corresponds to a LineLocation instance
852/// within the body of the function.
854public:
855 FunctionSamples() = default;
856
857 LLVM_ABI void print(raw_ostream &OS = dbgs(), unsigned Indent = 0) const;
858 LLVM_ABI void dump() const;
859
861 bool Overflowed;
862 TotalSamples =
863 SaturatingMultiplyAdd(Num, Weight, TotalSamples, &Overflowed);
864 return Overflowed ? sampleprof_error::counter_overflow
866 }
867
869 if (TotalSamples < Num)
870 TotalSamples = 0;
871 else
872 TotalSamples -= Num;
873 }
874
875 void setTotalSamples(uint64_t Num) { TotalSamples = Num; }
876
877 void setHeadSamples(uint64_t Num) { TotalHeadSamples = Num; }
878
880 bool Overflowed;
881 TotalHeadSamples =
882 SaturatingMultiplyAdd(Num, Weight, TotalHeadSamples, &Overflowed);
883 return Overflowed ? sampleprof_error::counter_overflow
885 }
886
888 uint64_t Num, uint64_t Weight = 1) {
889 return BodySamples[LineLocation(LineOffset, Discriminator)].addSamples(
890 Num, Weight);
891 }
892
894 uint32_t Discriminator,
895 FunctionId Func, uint64_t Num,
896 uint64_t Weight = 1) {
897 return BodySamples[LineLocation(LineOffset, Discriminator)].addCalledTarget(
898 Func, Num, Weight);
899 }
900
903 uint64_t Weight = 1) {
904 return BodySamples[Location].merge(SampleRecord, Weight);
905 }
906
907 void reserveBodySamples(size_t NumEntries) {
908 BodySamples.reserve(NumEntries);
909 }
910
911 void reserveCallsiteTypeCounts(size_t NumEntries) {
912 VirtualCallsiteTypeCounts.reserve(NumEntries);
913 }
914
915 // Remove a call target and decrease the body sample correspondingly. Return
916 // the number of body samples actually decreased.
918 uint32_t Discriminator,
919 FunctionId Func) {
920 uint64_t Count = 0;
921 auto I = BodySamples.find(LineLocation(LineOffset, Discriminator));
922 if (I != BodySamples.end()) {
923 Count = I->second.removeCalledTarget(Func);
924 Count = I->second.removeSamples(Count);
925 if (!I->second.getSamples())
926 BodySamples.erase(I);
927 }
928 return Count;
929 }
930
931 // Remove all call site samples for inlinees. This is needed when flattening
932 // a nested profile.
933 void removeAllCallsiteSamples() { CallsiteSamples.clear(); }
934
935 // Accumulate all call target samples to update the body samples.
937 for (auto &I : BodySamples) {
938 uint64_t TargetSamples = I.second.getCallTargetSum();
939 // It's possible that the body sample count can be greater than the call
940 // target sum. E.g, if some call targets are external targets, they won't
941 // be considered valid call targets, but the body sample count which is
942 // from lbr ranges can actually include them.
943 if (TargetSamples > I.second.getSamples())
944 I.second.addSamples(TargetSamples - I.second.getSamples());
945 }
946 }
947
948 // Accumulate all body samples to set total samples.
951 for (const auto &I : BodySamples)
952 addTotalSamples(I.second.getSamples());
953
954 for (auto &I : CallsiteSamples) {
955 for (auto &CS : I.second) {
956 CS.second.updateTotalSamples();
957 addTotalSamples(CS.second.getTotalSamples());
958 }
959 }
960 }
961
962 // Set current context and all callee contexts to be synthetic.
964 Context.setState(SyntheticContext);
965 for (auto &I : CallsiteSamples) {
966 for (auto &CS : I.second) {
967 CS.second.setContextSynthetic();
968 }
969 }
970 }
971
972 // Propagate the given attribute to this profile context and all callee
973 // contexts.
975 Context.setAttribute(Attr);
976 for (auto &I : CallsiteSamples) {
977 for (auto &CS : I.second) {
978 CS.second.setContextAttribute(Attr);
979 }
980 }
981 }
982
983 // Query the stale profile matching results and remap the location.
984 const LineLocation &mapIRLocToProfileLoc(const LineLocation &IRLoc) const {
985 // There is no remapping if the profile is not stale or the matching gives
986 // the same location.
987 if (!IRToProfileLocationMap)
988 return IRLoc;
989 const auto &ProfileLoc = IRToProfileLocationMap->find(IRLoc);
990 if (ProfileLoc != IRToProfileLocationMap->end())
991 return ProfileLoc->second;
992 return IRLoc;
993 }
994
995 /// Return the number of samples collected at the given location.
996 /// Each location is specified by \p LineOffset and \p Discriminator.
997 /// If the location is not found in profile, return error.
999 uint32_t Discriminator) const {
1000 const auto &Ret = BodySamples.find(
1001 mapIRLocToProfileLoc(LineLocation(LineOffset, Discriminator)));
1002 if (Ret == BodySamples.end())
1003 return std::error_code();
1004 return Ret->second.getSamples();
1005 }
1006
1007 /// Returns the call target map collected at a given location.
1008 /// Each location is specified by \p LineOffset and \p Discriminator.
1009 /// If the location is not found in profile, return error.
1010 /// The returned reference may be invalidated by subsequent modifications to
1011 /// this FunctionSamples.
1014 uint32_t Discriminator) const LLVM_LIFETIME_BOUND {
1015 const auto &Ret = BodySamples.find(
1016 mapIRLocToProfileLoc(LineLocation(LineOffset, Discriminator)));
1017 if (Ret == BodySamples.end())
1018 return std::error_code();
1019 return Ret->second.getCallTargets();
1020 }
1021
1022 /// Returns the call target map collected at a given location specified by \p
1023 /// CallSite. If the location is not found in profile, return error.
1024 /// The returned reference may be invalidated by subsequent modifications to
1025 /// this FunctionSamples.
1028 const auto &Ret = BodySamples.find(mapIRLocToProfileLoc(CallSite));
1029 if (Ret == BodySamples.end())
1030 return std::error_code();
1031 return Ret->second.getCallTargets();
1032 }
1033
1034 /// Return the function samples at the given callsite location.
1037 return CallsiteSamples[mapIRLocToProfileLoc(Loc)];
1038 }
1039
1040 /// Returns the FunctionSamplesMap at the given \p Loc.
1041 const FunctionSamplesMap *
1043 auto Iter = CallsiteSamples.find(mapIRLocToProfileLoc(Loc));
1044 if (Iter == CallsiteSamples.end())
1045 return nullptr;
1046 return &Iter->second;
1047 }
1048
1049 /// Returns the TypeCountMap for inlined callsites at the given \p Loc.
1050 /// The returned pointer may be invalidated by subsequent modifications to
1051 /// this FunctionSamples.
1052 const TypeCountMap *
1054 auto Iter = VirtualCallsiteTypeCounts.find(mapIRLocToProfileLoc(Loc));
1055 if (Iter == VirtualCallsiteTypeCounts.end())
1056 return nullptr;
1057 return &Iter->second;
1058 }
1059
1060 /// Returns a pointer to FunctionSamples at the given callsite location
1061 /// \p Loc with callee \p CalleeName. If no callsite can be found, relax
1062 /// the restriction to return the FunctionSamples at callsite location
1063 /// \p Loc with the maximum total sample count. If \p Remapper or \p
1064 /// FuncNameToProfNameMap is not nullptr, use them to find FunctionSamples
1065 /// with equivalent name as \p CalleeName.
1067 const LineLocation &Loc, StringRef CalleeName,
1070 *FuncNameToProfNameMap = nullptr) const LLVM_LIFETIME_BOUND;
1071
1072 bool empty() const { return TotalSamples == 0; }
1073
1074 /// Return the total number of samples collected inside the function.
1075 uint64_t getTotalSamples() const { return TotalSamples; }
1076
1077 /// For top-level functions, return the total number of branch samples that
1078 /// have the function as the branch target (or 0 otherwise). This is the raw
1079 /// data fetched from the profile. This should be equivalent to the sample of
1080 /// the first instruction of the symbol. But as we directly get this info for
1081 /// raw profile without referring to potentially inaccurate debug info, this
1082 /// gives more accurate profile data and is preferred for standalone symbols.
1083 uint64_t getHeadSamples() const { return TotalHeadSamples; }
1084
1085 /// Return an estimate of the sample count of the function entry basic block.
1086 /// The function can be either a standalone symbol or an inlined function.
1087 /// For Context-Sensitive profiles, this will prefer returning the head
1088 /// samples (i.e. getHeadSamples()), if non-zero. Otherwise it estimates from
1089 /// the function body's samples or callsite samples.
1092 // For CS profile, if we already have more accurate head samples
1093 // counted by branch sample from caller, use them as entry samples.
1094 return getHeadSamples();
1095 }
1096 uint64_t Count = 0;
1097 // Use either BodySamples or CallsiteSamples which ever has the smaller
1098 // lineno.
1099 if (!BodySamples.empty() &&
1100 (CallsiteSamples.empty() ||
1101 BodySamples.begin()->first < CallsiteSamples.begin()->first))
1102 Count = BodySamples.begin()->second.getSamples();
1103 else if (!CallsiteSamples.empty()) {
1104 // An indirect callsite may be promoted to several inlined direct calls.
1105 // We need to get the sum of them.
1106 for (const auto &FuncSamples : CallsiteSamples.begin()->second)
1107 Count += FuncSamples.second.getHeadSamplesEstimate();
1108 }
1109 // Return at least 1 if total sample is not 0.
1110 return Count ? Count : TotalSamples > 0;
1111 }
1112
1113 /// Return all the samples collected in the body of the function.
1114 /// The returned reference may be invalidated by subsequent modifications to
1115 /// this FunctionSamples.
1117 return BodySamples;
1118 }
1119
1120 /// Return all the callsite samples collected in the body of the function.
1122 return CallsiteSamples;
1123 }
1124
1125 /// Return whether this function profile contains callsite samples.
1126 bool hasCallsiteSamples() const { return !CallsiteSamples.empty(); }
1127
1128 /// Returns vtable access samples for the C++ types collected in this
1129 /// function.
1130 /// The returned reference may be invalidated by subsequent modifications to
1131 /// this FunctionSamples.
1133 return VirtualCallsiteTypeCounts;
1134 }
1135
1136 /// Returns the vtable access samples for the C++ types for \p Loc.
1137 /// Under the hood, the caller-specified \p Loc will be un-drifted before the
1138 /// type sample lookup if possible.
1139 /// The returned reference may be invalidated by subsequent modifications to
1140 /// this FunctionSamples.
1142 return VirtualCallsiteTypeCounts[mapIRLocToProfileLoc(Loc)];
1143 }
1144
1145 /// At location \p Loc, add a type sample for the given \p Type with
1146 /// \p Count. This function uses saturating add which clamp the result to
1147 /// maximum uint64_t (the counter type), and inserts the saturating add result
1148 /// to map. Returns counter_overflow to caller if the actual result is larger
1149 /// than maximum uint64_t.
1151 uint64_t Count) {
1152 auto &TypeCounts = getTypeSamplesAt(Loc);
1153 bool Overflowed = false;
1154 TypeCounts[Type] = SaturatingMultiplyAdd(Count, /* Weight= */ (uint64_t)1,
1155 TypeCounts[Type], &Overflowed);
1156 return Overflowed ? sampleprof_error::counter_overflow
1158 }
1159
1160 /// Scale \p Other sample counts by \p Weight and add the scaled result to the
1161 /// type samples for \p Loc. Under the hoold, the caller-provided \p Loc will
1162 /// be un-drifted before the type sample lookup if possible.
1163 /// typename T is either a std::map or a DenseMap.
1164 template <typename T>
1166 const T &Other,
1167 uint64_t Weight = 1) {
1168 static_assert((std::is_same_v<typename T::key_type, StringRef> ||
1169 std::is_same_v<typename T::key_type, FunctionId>) &&
1170 std::is_same_v<typename T::mapped_type, uint64_t>,
1171 "T must be a map with StringRef or FunctionId as key and "
1172 "uint64_t as value");
1173 TypeCountMap &TypeCounts = getTypeSamplesAt(Loc);
1174 TypeCounts.reserve(TypeCounts.size() + Other.size());
1175 bool Overflowed = false;
1176
1177 for (const auto &[Type, Count] : Other) {
1178 FunctionId TypeId(Type);
1179 bool RowOverflow = false;
1180 TypeCounts[TypeId] = SaturatingMultiplyAdd(
1181 Count, Weight, TypeCounts[TypeId], &RowOverflow);
1182 Overflowed |= RowOverflow;
1183 }
1184 return Overflowed ? sampleprof_error::counter_overflow
1186 }
1187
1188 /// Return the maximum of sample counts in a function body. When SkipCallSite
1189 /// is false, which is the default, the return count includes samples in the
1190 /// inlined functions. When SkipCallSite is true, the return count only
1191 /// considers the body samples.
1192 uint64_t getMaxCountInside(bool SkipCallSite = false) const {
1193 uint64_t MaxCount = 0;
1194 for (const auto &L : getBodySamples())
1195 MaxCount = std::max(MaxCount, L.second.getSamples());
1196 if (SkipCallSite)
1197 return MaxCount;
1198 for (const auto &C : getCallsiteSamples())
1199 for (const FunctionSamplesMap::value_type &F : C.second)
1200 MaxCount = std::max(MaxCount, F.second.getMaxCountInside());
1201 return MaxCount;
1202 }
1203
1204 /// Merge the samples in \p Other into this one.
1205 /// Optionally scale samples by \p Weight.
1208 if (!GUIDToFuncNameMap)
1209 GUIDToFuncNameMap = Other.GUIDToFuncNameMap;
1210 if (Context.getFunction().empty())
1211 Context = Other.getContext();
1212 if (FunctionHash == 0) {
1213 // Set the function hash code for the target profile.
1214 FunctionHash = Other.getFunctionHash();
1215 } else if (FunctionHash != Other.getFunctionHash()) {
1216 // The two profiles coming with different valid hash codes indicates
1217 // either:
1218 // 1. They are same-named static functions from different compilation
1219 // units (without using -unique-internal-linkage-names), or
1220 // 2. They are really the same function but from different compilations.
1221 // Let's bail out in either case for now, which means one profile is
1222 // dropped.
1224 }
1225
1226 mergeSampleProfErrors(Result,
1227 addTotalSamples(Other.getTotalSamples(), Weight));
1228 mergeSampleProfErrors(Result,
1229 addHeadSamples(Other.getHeadSamples(), Weight));
1230 BodySamples.reserve(BodySamples.size() + Other.getBodySamples().size());
1231 for (const auto &I : Other.getBodySamples()) {
1232 const LineLocation &Loc = I.first;
1233 const SampleRecord &Rec = I.second;
1234 mergeSampleProfErrors(Result, BodySamples[Loc].merge(Rec, Weight));
1235 }
1236 for (const auto &I : Other.getCallsiteSamples()) {
1237 const LineLocation &Loc = I.first;
1239 for (const auto &Rec : I.second)
1240 mergeSampleProfErrors(Result,
1241 FSMap[Rec.first].merge(Rec.second, Weight));
1242 }
1243 VirtualCallsiteTypeCounts.reserve(VirtualCallsiteTypeCounts.size() +
1244 Other.getCallsiteTypeCounts().size());
1245 for (const auto &[Loc, OtherTypeMap] : Other.getCallsiteTypeCounts())
1247 Result, addCallsiteVTableTypeProfAt(Loc, OtherTypeMap, Weight));
1248
1249 return Result;
1250 }
1251
1252 /// Recursively traverses all children, if the total sample count of the
1253 /// corresponding function is no less than \p Threshold, add its corresponding
1254 /// GUID to \p S. Also traverse the BodySamples to add hot CallTarget's GUID
1255 /// to \p S.
1259 uint64_t Threshold) const {
1260 if (TotalSamples <= Threshold)
1261 return;
1262 auto IsDeclaration = [](const Function *F) {
1263 return !F || F->isDeclaration();
1264 };
1265 if (IsDeclaration(SymbolMap.lookup(getFunction()))) {
1266 // Add to the import list only when it's defined out of module.
1267 S.insert(getGUID());
1268 }
1269 // Import hot CallTargets, which may not be available in IR because full
1270 // profile annotation cannot be done until backend compilation in ThinLTO.
1271 for (const auto &BS : BodySamples)
1272 for (const auto &TS : BS.second.getCallTargets())
1273 if (TS.second > Threshold) {
1274 const Function *Callee = SymbolMap.lookup(TS.first);
1275 if (IsDeclaration(Callee))
1276 S.insert(TS.first.getHashCode());
1277 }
1278 for (const auto &CS : CallsiteSamples)
1279 for (const auto &NameFS : CS.second)
1280 NameFS.second.findInlinedFunctions(S, SymbolMap, Threshold);
1281 }
1282
1283 /// Set the name of the function.
1284 void setFunction(FunctionId NewFunctionID) {
1285 Context.setFunction(NewFunctionID);
1286 }
1287
1288 /// Return the function name.
1289 FunctionId getFunction() const { return Context.getFunction(); }
1290
1291 /// Return the original function name.
1293
1294 void setFunctionHash(uint64_t Hash) { FunctionHash = Hash; }
1295
1296 uint64_t getFunctionHash() const { return FunctionHash; }
1297
1299 assert(IRToProfileLocationMap == nullptr && "this should be set only once");
1300 IRToProfileLocationMap = LTLM;
1301 }
1302
1303 /// Return the canonical name for a function, taking into account
1304 /// suffix elision policy attributes.
1306 const char *AttrName = "sample-profile-suffix-elision-policy";
1307 auto Attr = F.getFnAttribute(AttrName).getValueAsString();
1308 return getCanonicalFnName(F.getName(), Attr);
1309 }
1310
1311 /// Name suffixes which canonicalization should handle to avoid
1312 /// profile mismatch.
1313 static constexpr const char *LLVMSuffix = ".llvm.";
1314 static constexpr const char *PartSuffix = ".part.";
1315 static constexpr const char *UniqSuffix = ".__uniq.";
1316 // Appended by LowerTypeTests to the body of a CFI jump table member, whose
1317 // original name then refers to the jump table entry.
1318 static constexpr const char *CfiSuffix = ".cfi";
1319
1321 StringRef Attr = "selected") {
1322 // Note the sequence of the suffixes in the knownSuffixes array matters.
1323 // If suffix "A" is appended after the suffix "B", "A" should be in front
1324 // of "B" in knownSuffixes. The CFI suffix is appended in the ThinLTO
1325 // backend, after all the others.
1326 const SmallVector<StringRef> KnownSuffixes{CfiSuffix, LLVMSuffix,
1328 return getCanonicalFnName(FnName, KnownSuffixes, Attr);
1329 }
1330
1332 StringRef Attr = "selected") {
1333 // A local coroutine function from another CU can be promoted to a global
1334 // function during ThinLTO import. This will create a linkage name like
1335 // "_Zfoo.llvm.xxxx.cleanup". Remove the ".llvm." suffix after stripping all
1336 // the coroutine suffixes to avoid pseudo probe mismatch.
1337 const SmallVector<StringRef, 3> CoroSuffixes{".cleanup", ".destroy",
1338 ".resume", LLVMSuffix};
1339 return getCanonicalFnName(FnName, CoroSuffixes, Attr);
1340 }
1341
1343 ArrayRef<StringRef> Suffixes,
1344 StringRef Attr = "selected") {
1345 if (Attr == "" || Attr == "all")
1346 return FnName.split('.').first;
1347 if (Attr == "selected") {
1348 StringRef Cand(FnName);
1349 for (const auto Suffix : Suffixes) {
1350 // If the profile contains ".__uniq." suffix, don't strip the
1351 // suffix for names in the IR.
1353 continue;
1354 if (!Suffix.ends_with(".")) {
1355 Cand.consume_back(Suffix);
1356 continue;
1357 }
1358 auto It = Cand.rfind(Suffix);
1359 if (It == StringRef::npos)
1360 continue;
1361 auto Dit = Cand.rfind('.');
1362 if (Dit == It + Suffix.size() - 1)
1363 Cand = Cand.substr(0, It);
1364 }
1365 return Cand;
1366 }
1367 if (Attr == "none")
1368 return FnName;
1369 assert(false && "internal error: unknown suffix elision policy");
1370 return FnName;
1371 }
1372
1373 /// Translate \p Func into its original name.
1374 /// When profile doesn't use MD5, \p Func needs no translation.
1375 /// When profile uses MD5, \p Func in current FunctionSamples
1376 /// is actually GUID of the original function name. getFuncName will
1377 /// translate \p Func in current FunctionSamples into its original name
1378 /// by looking up in the function map GUIDToFuncNameMap.
1379 /// If the original name doesn't exist in the map, return empty StringRef.
1381 if (!UseMD5)
1382 return Func.stringRef();
1383
1385 "GUIDToFuncNameMap needs to be populated first");
1386 return GUIDToFuncNameMap->lookup(Func.getHashCode());
1387 }
1388
1389 /// Returns the line offset to the start line of the subprogram.
1390 /// We assume that a single function will not exceed 65535 LOC.
1391 LLVM_ABI static unsigned getOffset(const DILocation *DIL);
1392
1393 /// Returns a unique call site identifier for a given debug location of a call
1394 /// instruction. This is wrapper of two scenarios, the probe-based profile and
1395 /// regular profile, to hide implementation details from the sample loader and
1396 /// the context tracker.
1398 bool ProfileIsFS = false);
1399
1400 /// Returns a unique hash code for a combination of a callsite location and
1401 /// the callee function name.
1402 /// Guarantee MD5 and non-MD5 representation of the same function results in
1403 /// the same hash.
1405 const LineLocation &Callsite) {
1406 return SampleContextFrame(Callee, Callsite).getHashCode();
1407 }
1408
1409 /// Get the FunctionSamples of the inline instance where DIL originates
1410 /// from.
1411 ///
1412 /// The FunctionSamples of the instruction (Machine or IR) associated to
1413 /// \p DIL is the inlined instance in which that instruction is coming from.
1414 /// We traverse the inline stack of that instruction, and match it with the
1415 /// tree nodes in the profile.
1416 ///
1417 /// \returns the FunctionSamples pointer to the inlined instance.
1418 /// If \p Remapper or \p FuncNameToProfNameMap is not nullptr, it will be used
1419 /// to find matching FunctionSamples with not exactly the same but equivalent
1420 /// name.
1422 const DILocation *DIL,
1423 SampleProfileReaderItaniumRemapper *Remapper = nullptr,
1425 *FuncNameToProfNameMap = nullptr) const LLVM_LIFETIME_BOUND;
1426
1428
1429 void setContext(const SampleContext &FContext) { Context = FContext; }
1430
1431 // These boolean variables are atomic so that parallel in-process ThinLTO
1432 // backends writing the same value do not race.
1433 LLVM_ABI static std::atomic<bool> ProfileIsProbeBased;
1434
1435 LLVM_ABI static std::atomic<bool> ProfileIsCS;
1436
1437 LLVM_ABI static std::atomic<bool> ProfileIsPreInlined;
1438
1439 /// Whether the profile uses MD5 to represent string.
1440 LLVM_ABI static std::atomic<bool> UseMD5;
1441
1442 /// Whether the profile contains any ".__uniq." suffix in a name.
1443 LLVM_ABI static std::atomic<bool> HasUniqSuffix;
1444
1445 /// If this profile uses flow sensitive discriminators.
1446 LLVM_ABI static std::atomic<bool> ProfileIsFS;
1447
1448 /// GUIDToFuncNameMap saves the mapping from GUID to the symbol name, for
1449 /// all the function symbols defined or declared in current module.
1451
1452 /// Return the GUID of the context's name. If the context is already using
1453 /// MD5, don't hash it again.
1454 uint64_t getGUID() const { return getFunction().getHashCode(); }
1455
1456 // Find all the names in the current FunctionSamples including names in
1457 // all the inline instances and names of call targets.
1458 LLVM_ABI void findAllNames(DenseSet<FunctionId> &NameSet) const;
1459
1460 bool operator==(const FunctionSamples &Other) const {
1461 return (GUIDToFuncNameMap == Other.GUIDToFuncNameMap ||
1462 (GUIDToFuncNameMap && Other.GUIDToFuncNameMap &&
1463 *GUIDToFuncNameMap == *Other.GUIDToFuncNameMap)) &&
1464 FunctionHash == Other.FunctionHash && Context == Other.Context &&
1465 TotalSamples == Other.TotalSamples &&
1466 TotalHeadSamples == Other.TotalHeadSamples &&
1467 BodySamples == Other.BodySamples &&
1468 CallsiteSamples == Other.CallsiteSamples;
1469 }
1470
1471 bool operator!=(const FunctionSamples &Other) const {
1472 return !(*this == Other);
1473 }
1474
1475private:
1476 /// CFG hash value for the function.
1477 uint64_t FunctionHash = 0;
1478
1479 /// Calling context for function profile
1480 mutable SampleContext Context;
1481
1482 /// Total number of samples collected inside this function.
1483 ///
1484 /// Samples are cumulative, they include all the samples collected
1485 /// inside this function and all its inlined callees.
1486 uint64_t TotalSamples = 0;
1487
1488 /// Total number of samples collected at the head of the function.
1489 /// This is an approximation of the number of calls made to this function
1490 /// at runtime.
1491 uint64_t TotalHeadSamples = 0;
1492
1493 /// Map instruction locations to collected samples.
1494 ///
1495 /// Each entry in this map contains the number of samples
1496 /// collected at the corresponding line offset. All line locations
1497 /// are an offset from the start of the function.
1498 BodySampleMap BodySamples;
1499
1500 /// Map call sites to collected samples for the called function.
1501 ///
1502 /// Each entry in this map corresponds to all the samples
1503 /// collected for the inlined function call at the given
1504 /// location. For example, given:
1505 ///
1506 /// void foo() {
1507 /// 1 bar();
1508 /// ...
1509 /// 8 baz();
1510 /// }
1511 ///
1512 /// If the bar() and baz() calls were inlined inside foo(), this
1513 /// map will contain two entries. One for all the samples collected
1514 /// in the call to bar() at line offset 1, the other for all the samples
1515 /// collected in the call to baz() at line offset 8.
1516 CallsiteSampleMap CallsiteSamples;
1517
1518 /// Map a virtual callsite to the list of accessed vtables and vtable counts.
1519 /// The callsite is referenced by its source location.
1520 ///
1521 /// For example, given:
1522 ///
1523 /// void foo() {
1524 /// ...
1525 /// 5 inlined_vcall_bar();
1526 /// ...
1527 /// 5 inlined_vcall_baz();
1528 /// ...
1529 /// 200 inlined_vcall_qux();
1530 /// }
1531 /// This map will contain two entries. One with two types for line offset 5
1532 /// and one with one type for line offset 200.
1533 CallsiteTypeMap VirtualCallsiteTypeCounts;
1534
1535 /// IR to profile location map generated by stale profile matching.
1536 ///
1537 /// Each entry is a mapping from the location on current build to the matched
1538 /// location in the "stale" profile. For example:
1539 /// Profiled source code:
1540 /// void foo() {
1541 /// 1 bar();
1542 /// }
1543 ///
1544 /// Current source code:
1545 /// void foo() {
1546 /// 1 // Code change
1547 /// 2 bar();
1548 /// }
1549 /// Supposing the stale profile matching algorithm generated the mapping [2 ->
1550 /// 1], the profile query using the location of bar on the IR which is 2 will
1551 /// be remapped to 1 and find the location of bar in the profile.
1552 const LocToLocMap *IRToProfileLocationMap = nullptr;
1553};
1554
1555/// Get the proper representation of a string according to whether the
1556/// current Format uses MD5 to represent the string.
1558 if (Name.empty() || !FunctionSamples::UseMD5)
1559 return FunctionId(Name);
1561}
1562
1564
1565/// This class provides operator overloads to the map container using MD5 as the
1566/// key type, so that existing code can still work in most cases using
1567/// SampleContext as key.
1568/// Note: when populating container, make sure to assign the SampleContext to
1569/// the mapped value immediately because the key no longer holds it.
1571 : public HashKeyMap<std::unordered_map, SampleContext, FunctionSamples> {
1572public:
1573 // Convenience method because this is being used in many places. Set the
1574 // FunctionSamples' context if its newly inserted.
1576 auto Ret = try_emplace(Ctx, FunctionSamples());
1577 if (Ret.second)
1578 Ret.first->second.setContext(Ctx);
1579 return Ret.first->second;
1580 }
1581
1586
1591
1592 size_t erase(const SampleContext &Ctx) {
1593 return HashKeyMap<std::unordered_map, SampleContext,
1595 }
1596
1597 size_t erase(const key_type &Key) { return base_type::erase(Key); }
1598
1599 iterator erase(iterator It) { return base_type::erase(It); }
1600};
1601
1602using NameFunctionSamples = std::pair<hash_code, const FunctionSamples *>;
1603
1604LLVM_ABI void
1605sortFuncProfiles(const SampleProfileMap &ProfileMap,
1606 std::vector<NameFunctionSamples> &SortedProfiles);
1607
1608/// SampleContextTrimmer impelements helper functions to trim, merge cold
1609/// context profiles. It also supports context profile canonicalization to make
1610/// sure ProfileMap's key is consistent with FunctionSample's name/context.
1612public:
1613 SampleContextTrimmer(SampleProfileMap &Profiles) : ProfileMap(Profiles) {};
1614 // Trim and merge cold context profile when requested. TrimBaseProfileOnly
1615 // should only be effective when TrimColdContext is true. On top of
1616 // TrimColdContext, TrimBaseProfileOnly can be used to specify to trim all
1617 // cold profiles or only cold base profiles. Trimming base profiles only is
1618 // mainly to honor the preinliner decsion. Note that when MergeColdContext is
1619 // true, preinliner decsion is not honored anyway so TrimBaseProfileOnly will
1620 // be ignored.
1622 bool TrimColdContext,
1623 bool MergeColdContext,
1624 uint32_t ColdContextFrameLength,
1625 bool TrimBaseProfileOnly);
1626
1627private:
1628 SampleProfileMap &ProfileMap;
1629};
1630
1631/// Helper class for profile conversion.
1632///
1633/// It supports full context-sensitive profile to nested profile conversion,
1634/// nested profile to flatten profile conversion, etc.
1636public:
1638 // Convert a full context-sensitive flat sample profile into a nested sample
1639 // profile.
1641 struct FrameNode {
1643 FunctionSamples *FSamples = nullptr,
1644 LineLocation CallLoc = {0, 0})
1645 : FuncName(FName), FuncSamples(FSamples), CallSiteLoc(CallLoc) {};
1646
1647 // Map line+discriminator location to child frame
1648 std::map<uint64_t, FrameNode> AllChildFrames;
1649 // Function name for current frame
1651 // Function Samples for current frame
1653 // Callsite location in parent context
1655
1657 FunctionId CalleeName);
1658 };
1659
1660 static void flattenProfile(SampleProfileMap &ProfileMap,
1661 bool ProfileIsCS = false) {
1662 SampleProfileMap TmpProfiles;
1663 flattenProfile(ProfileMap, TmpProfiles, ProfileIsCS);
1664 ProfileMap = std::move(TmpProfiles);
1665 }
1666
1667 static void flattenProfile(const SampleProfileMap &InputProfiles,
1668 SampleProfileMap &OutputProfiles,
1669 bool ProfileIsCS = false) {
1670 if (ProfileIsCS) {
1671 for (const auto &I : InputProfiles) {
1672 // Retain the profile name and clear the full context for each function
1673 // profile.
1674 FunctionSamples &FS = OutputProfiles.create(I.second.getFunction());
1675 FS.merge(I.second);
1676 }
1677 } else {
1678 for (const auto &I : InputProfiles)
1679 flattenNestedProfile(OutputProfiles, I.second);
1680 }
1681 }
1682
1683private:
1684 static void flattenNestedProfile(SampleProfileMap &OutputProfiles,
1685 const FunctionSamples &FS) {
1686 // To retain the context, checksum, attributes of the original profile, make
1687 // a copy of it if no profile is found.
1688 SampleContext &Context = FS.getContext();
1689 auto Ret = OutputProfiles.try_emplace(Context, FS);
1690 FunctionSamples &Profile = Ret.first->second;
1691 if (Ret.second) {
1692 // Clear nested inlinees' samples for the flattened copy. These inlinees
1693 // will have their own top-level entries after flattening.
1694 Profile.removeAllCallsiteSamples();
1695 // We recompute TotalSamples later, so here set to zero.
1696 Profile.setTotalSamples(0);
1697 } else {
1698 Profile.reserveBodySamples(FS.getBodySamples().size());
1699 for (const auto &[LineLocation, SampleRecord] : FS.getBodySamples()) {
1700 Profile.addSampleRecord(LineLocation, SampleRecord);
1701 }
1702 }
1703
1704 assert(Profile.getCallsiteSamples().empty() &&
1705 "There should be no inlinees' profiles after flattening.");
1706
1707 // TotalSamples might not be equal to the sum of all samples from
1708 // BodySamples and CallsiteSamples. So here we use "TotalSamples =
1709 // Original_TotalSamples - All_of_Callsite_TotalSamples +
1710 // All_of_Callsite_HeadSamples" to compute the new TotalSamples.
1711 uint64_t TotalSamples = FS.getTotalSamples();
1712
1713 for (const auto &I : FS.getCallsiteSamples()) {
1714 for (const auto &Callee : I.second) {
1715 const auto &CalleeProfile = Callee.second;
1716 // Add body sample.
1717 Profile.addBodySamples(I.first.LineOffset, I.first.Discriminator,
1718 CalleeProfile.getHeadSamplesEstimate());
1719 // Add callsite sample.
1720 Profile.addCalledTargetSamples(I.first.LineOffset,
1721 I.first.Discriminator,
1722 CalleeProfile.getFunction(),
1723 CalleeProfile.getHeadSamplesEstimate());
1724 // Update total samples.
1725 TotalSamples = TotalSamples >= CalleeProfile.getTotalSamples()
1726 ? TotalSamples - CalleeProfile.getTotalSamples()
1727 : 0;
1728 TotalSamples += CalleeProfile.getHeadSamplesEstimate();
1729 // Recursively convert callee profile.
1730 flattenNestedProfile(OutputProfiles, CalleeProfile);
1731 }
1732 }
1733 Profile.addTotalSamples(TotalSamples);
1734
1735 Profile.setHeadSamples(Profile.getHeadSamplesEstimate());
1736 }
1737
1738 // Nest all children profiles into the profile of Node.
1739 void convertCSProfiles(FrameNode &Node);
1740 FrameNode *getOrCreateContextPath(const SampleContext &Context);
1741
1742 SampleProfileMap &ProfileMap;
1743 FrameNode RootFrame;
1744};
1745
1746/// ProfileSymbolList records the list of function symbols shown up
1747/// in the binary used to generate the profile. It is useful to
1748/// to discriminate a function being so cold as not to shown up
1749/// in the profile and a function newly added.
1751public:
1752 /// copy indicates whether we need to copy the underlying memory
1753 /// for the input Name.
1754 void add(StringRef Name, bool Copy = false) {
1755 if (!Copy) {
1756 Syms.insert(Name);
1757 return;
1758 }
1759 Syms.insert(Name.copy(Allocator));
1760 }
1761
1762 bool contains(StringRef Name) const {
1763 return IsMD5 ? ColdGUIDTable.contains(llvm::MD5Hash(Name))
1764 : Syms.count(Name);
1765 }
1766
1768 assert(!List.IsMD5 &&
1769 "Merging pre-hashed MD5 ProfileSymbolList not yet implemented");
1770 for (auto Sym : List.Syms)
1771 add(Sym, true);
1772 }
1773
1774 unsigned size() const { return IsMD5 ? ColdGUIDTable.size() : Syms.size(); }
1775 void reserve(size_t Size) { Syms.reserve(Size); }
1776
1777 std::vector<uint64_t> collectGUIDs() const {
1778 assert(!IsMD5 &&
1779 "Collecting GUIDs from existing MD5 table not yet implemented");
1780 std::vector<uint64_t> Keys;
1781 Keys.reserve(Syms.size());
1783 llvm::sort(Keys);
1784 Keys.erase(llvm::unique(Keys), Keys.end());
1785 return Keys;
1786 }
1787
1789 assert(Syms.empty() &&
1790 "Setting ColdGUIDTable shadows existing strings in Syms");
1791 ColdGUIDTable = Table;
1792 IsMD5 = true;
1793 }
1795 assert(IsMD5 && "Retrieving ColdGUIDTable from non-MD5 ProfileSymbolList");
1796 return ColdGUIDTable;
1797 }
1798 bool isMD5() const { return IsMD5; }
1799
1800 LLVM_ABI std::error_code read(const uint8_t *Data, uint64_t ListSize);
1801 LLVM_ABI std::error_code write(raw_ostream &OS);
1802 LLVM_ABI void dump(raw_ostream &OS = dbgs()) const;
1803
1804private:
1805 bool IsMD5 = false;
1809};
1810
1811} // end namespace sampleprof
1812
1813using namespace sampleprof;
1814// Provide DenseMapInfo for SampleContext.
1815template <> struct DenseMapInfo<SampleContext> {
1816 static unsigned getHashValue(const SampleContext &Val) {
1817 return Val.getHashCode();
1818 }
1819
1820 static bool isEqual(const SampleContext &LHS, const SampleContext &RHS) {
1821 return LHS == RHS;
1822 }
1823};
1824
1825// Prepend "__uniq" before the hash for tools like profilers to understand
1826// that this symbol is of internal linkage type. The "__uniq" is the
1827// pre-determined prefix that is used to tell tools that this symbol was
1828// created with -funique-internal-linkage-symbols and the tools can strip or
1829// keep the prefix as needed.
1830inline std::string getUniqueInternalLinkagePostfix(const StringRef &FName) {
1831 llvm::MD5 Md5;
1832 Md5.update(FName);
1834 Md5.final(R);
1835 SmallString<32> Str;
1837 // Convert MD5hash to Decimal. Demangler suffixes can either contain
1838 // numbers or characters but not both.
1839 llvm::APInt IntHash(128, Str.str(), 16);
1840 return toString(IntHash, /* Radix = */ 10, /* Signed = */ false)
1841 .insert(0, FunctionSamples::UniqSuffix);
1842}
1843
1844} // end namespace llvm
1845
1846#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 FunctionId class.
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
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:278
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
bool consume_back(StringRef Suffix)
Returns true if this StringRef has the given suffix and removes that suffix.
Definition StringRef.h:691
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:853
void setTotalSamples(uint64_t Num)
Definition SampleProf.h:875
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:974
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:877
sampleprof_error addTotalSamples(uint64_t Num, uint64_t Weight=1)
Definition SampleProf.h:860
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:868
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:998
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:984
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.
sampleprof_error addHeadSamples(uint64_t Num, uint64_t Weight=1)
Definition SampleProf.h:879
void reserveBodySamples(size_t NumEntries)
Definition SampleProf.h:907
sampleprof_error addSampleRecord(LineLocation Location, const SampleRecord &SampleRecord, uint64_t Weight=1)
Definition SampleProf.h:901
uint64_t removeCalledTargetAndBodySample(uint32_t LineOffset, uint32_t Discriminator, FunctionId Func)
Definition SampleProf.h:917
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:893
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
static constexpr const char * CfiSuffix
sampleprof_error addBodySamples(uint32_t LineOffset, uint32_t Discriminator, uint64_t Num, uint64_t Weight=1)
Definition SampleProf.h:887
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:911
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:675
bool operator==(const SampleContext &That) const
Definition SampleProf.h:768
void setFunction(FunctionId NewFunctionID)
Set the name of the function and clear the current context.
Definition SampleProf.h:754
SampleContext(SampleContextFrames Context, ContextStateMask CState=RawContext)
Definition SampleProf.h:644
bool operator<(const SampleContext &That) const
Definition SampleProf.h:775
SampleContext(StringRef ContextStr, std::list< SampleContextFrameVector > &CSNameTable, ContextStateMask CState=RawContext)
Definition SampleProf.h:654
bool hasState(ContextStateMask S)
Definition SampleProf.h:720
void clearState(ContextStateMask S)
Definition SampleProf.h:722
SampleContextFrames getContextFrames() const
Definition SampleProf.h:726
static void decodeContextString(StringRef ContextStr, FunctionId &Func, LineLocation &LineLoc)
Definition SampleProf.h:694
static std::string getContextString(SampleContextFrames Context, bool IncludeLeafLineLocation=false)
Definition SampleProf.h:728
bool operator!=(const SampleContext &That) const
Definition SampleProf.h:773
void setState(ContextStateMask S)
Definition SampleProf.h:721
void setAllAttributes(uint32_t A)
Definition SampleProf.h:719
void setContext(SampleContextFrames Context, ContextStateMask CState=RawContext)
Definition SampleProf.h:760
FunctionId getFunction() const
Definition SampleProf.h:725
void setAttribute(ContextAttributeMask A)
Definition SampleProf.h:717
bool hasAttribute(ContextAttributeMask A)
Definition SampleProf.h:716
std::string toString() const
Definition SampleProf.h:741
bool isPrefixOf(const SampleContext &That) const
Definition SampleProf.h:804
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:422
static SortedCallTargetSet sortCallTargets(const CallTargetMap &Targets)
Sort call targets in descending order of call frequency.
Definition SampleProf.h:508
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:487
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:496
uint64_t getCallTargetSum() const
Definition SampleProf.h:500
uint64_t removeSamples(uint64_t S)
Decrease the number of samples for this record by S.
Definition SampleProf.h:452
sampleprof_error addSamples(uint64_t S, uint64_t Weight=1)
Increment the number of samples for this record by S.
Definition SampleProf.h:443
uint64_t removeCalledTarget(FunctionId F)
Remove called function from the call target map.
Definition SampleProf.h:476
const CallTargetMap & getCallTargets() const LLVM_LIFETIME_BOUND
Return the call targets collected in this sample record.
Definition SampleProf.h:493
static const CallTargetMap adjustCallTargets(const CallTargetMap &Targets, float DistributionFactor)
Prorate call targets by a distribution factor.
Definition SampleProf.h:515
SortedVectorMap< FunctionId, uint64_t, 0 > CallTargetMap
Definition SampleProf.h:435
std::pair< FunctionId, uint64_t > CallTarget
Definition SampleProf.h:424
bool operator!=(const SampleRecord &Other) const
Definition SampleProf.h:540
SmallVector< CallTarget > SortedCallTargetSet
Definition SampleProf.h:434
bool operator==(const SampleRecord &Other) const
Definition SampleProf.h:536
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:464
#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:287
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:136
SortedVectorMap< LineLocation, TypeCountMap, 0 > CallsiteTypeMap
Definition SampleProf.h:845
static void addSecFlag(SecHdrTableEntry &Entry, SecFlagType Flag)
Definition SampleProf.h:319
std::map< LineLocation, FunctionSamplesMap > CallsiteSampleMap
Definition SampleProf.h:844
static bool hasSecFlag(const SecHdrTableEntry &Entry, SecFlagType Flag)
Definition SampleProf.h:335
static constexpr uint64_t LatestVersion
Definition SampleProf.h:133
SortedVectorMap< LineLocation, SampleRecord, 0 > BodySampleMap
Definition SampleProf.h:840
ArrayRef< SampleContextFrame > SampleContextFrames
Definition SampleProf.h:614
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:263
@ SecFlagHasVTableTypeProf
SecFlagHasVTableTypeProf means this profile contains vtable type profiles.
Definition SampleProf.h:266
@ SecFlagPartial
SecFlagPartial means the profile is for common/shared code.
Definition SampleProf.h:254
@ SecFlagFSDiscriminator
SecFlagFSDiscriminator means this profile uses flow-sensitive discriminators.
Definition SampleProf.h:260
@ SecFlagFullContext
SecFlagContext means this is context-sensitive flat profile for CSSPGO.
Definition SampleProf.h:257
static void removeSecFlag(SecHdrTableEntry &Entry, SecFlagType Flag)
Definition SampleProf.h:327
static StringRef getProfTypeName(uint64_t Type)
Definition SampleProf.h:196
DenseMap< LineLocation, LineLocation > LocToLocMap
Definition SampleProf.h:846
SmallVector< SampleContextFrame, 1 > SampleContextFrameVector
Definition SampleProf.h:613
std::map< FunctionId, FunctionSamples > FunctionSamplesMap
Definition SampleProf.h:843
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:127
static std::string getSecName(SecType Type)
Definition SampleProf.h:164
static constexpr uint64_t CompositeProfileVersion
Definition SampleProf.h:130
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:142
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:402
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:287
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:386
static bool isEqual(const sampleprof::LineLocation &LHS, const sampleprof::LineLocation &RHS)
Definition SampleProf.h:390
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:351
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:352
bool operator!=(const LineLocation &O) const
Definition SampleProf.h:369
bool operator<(const LineLocation &O) const
Definition SampleProf.h:360
bool operator==(const LineLocation &O) const
Definition SampleProf.h:365
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:617
bool operator==(const SampleContextFrame &That) const
Definition SampleProf.h:577
SampleContextFrame(FunctionId Func, LineLocation Location)
Definition SampleProf.h:574
bool operator!=(const SampleContextFrame &That) const
Definition SampleProf.h:581
std::string toString(bool OutputLineLocation) const
Definition SampleProf.h:585
uint64_t operator()(const SampleContext &Context) const
Definition SampleProf.h:799
bool operator()(const CallTarget &LHS, const CallTarget &RHS) const
Definition SampleProf.h:426