Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-10 08:44:24

0001 //===- SampleProf.h - Sampling profiling format support ---------*- C++ -*-===//
0002 //
0003 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
0004 // See https://llvm.org/LICENSE.txt for license information.
0005 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
0006 //
0007 //===----------------------------------------------------------------------===//
0008 //
0009 // This file contains common definitions used in the reading and writing of
0010 // sample profile data.
0011 //
0012 //===----------------------------------------------------------------------===//
0013 
0014 #ifndef LLVM_PROFILEDATA_SAMPLEPROF_H
0015 #define LLVM_PROFILEDATA_SAMPLEPROF_H
0016 
0017 #include "llvm/ADT/DenseSet.h"
0018 #include "llvm/ADT/SmallVector.h"
0019 #include "llvm/ADT/StringExtras.h"
0020 #include "llvm/ADT/StringRef.h"
0021 #include "llvm/IR/Function.h"
0022 #include "llvm/IR/GlobalValue.h"
0023 #include "llvm/ProfileData/FunctionId.h"
0024 #include "llvm/Support/Allocator.h"
0025 #include "llvm/Support/Debug.h"
0026 #include "llvm/Support/ErrorOr.h"
0027 #include "llvm/Support/MathExtras.h"
0028 #include "llvm/ProfileData/HashKeyMap.h"
0029 #include <algorithm>
0030 #include <cstdint>
0031 #include <list>
0032 #include <map>
0033 #include <set>
0034 #include <sstream>
0035 #include <string>
0036 #include <system_error>
0037 #include <unordered_map>
0038 #include <utility>
0039 
0040 namespace llvm {
0041 
0042 class DILocation;
0043 class raw_ostream;
0044 
0045 const std::error_category &sampleprof_category();
0046 
0047 enum class sampleprof_error {
0048   success = 0,
0049   bad_magic,
0050   unsupported_version,
0051   too_large,
0052   truncated,
0053   malformed,
0054   unrecognized_format,
0055   unsupported_writing_format,
0056   truncated_name_table,
0057   not_implemented,
0058   counter_overflow,
0059   ostream_seek_unsupported,
0060   uncompress_failed,
0061   zlib_unavailable,
0062   hash_mismatch
0063 };
0064 
0065 inline std::error_code make_error_code(sampleprof_error E) {
0066   return std::error_code(static_cast<int>(E), sampleprof_category());
0067 }
0068 
0069 inline sampleprof_error mergeSampleProfErrors(sampleprof_error &Accumulator,
0070                                               sampleprof_error Result) {
0071   // Prefer first error encountered as later errors may be secondary effects of
0072   // the initial problem.
0073   if (Accumulator == sampleprof_error::success &&
0074       Result != sampleprof_error::success)
0075     Accumulator = Result;
0076   return Accumulator;
0077 }
0078 
0079 } // end namespace llvm
0080 
0081 namespace std {
0082 
0083 template <>
0084 struct is_error_code_enum<llvm::sampleprof_error> : std::true_type {};
0085 
0086 } // end namespace std
0087 
0088 namespace llvm {
0089 namespace sampleprof {
0090 
0091 enum SampleProfileFormat {
0092   SPF_None = 0,
0093   SPF_Text = 0x1,
0094   SPF_Compact_Binary = 0x2, // Deprecated
0095   SPF_GCC = 0x3,
0096   SPF_Ext_Binary = 0x4,
0097   SPF_Binary = 0xff
0098 };
0099 
0100 enum SampleProfileLayout {
0101   SPL_None = 0,
0102   SPL_Nest = 0x1,
0103   SPL_Flat = 0x2,
0104 };
0105 
0106 static inline uint64_t SPMagic(SampleProfileFormat Format = SPF_Binary) {
0107   return uint64_t('S') << (64 - 8) | uint64_t('P') << (64 - 16) |
0108          uint64_t('R') << (64 - 24) | uint64_t('O') << (64 - 32) |
0109          uint64_t('F') << (64 - 40) | uint64_t('4') << (64 - 48) |
0110          uint64_t('2') << (64 - 56) | uint64_t(Format);
0111 }
0112 
0113 static inline uint64_t SPVersion() { return 103; }
0114 
0115 // Section Type used by SampleProfileExtBinaryBaseReader and
0116 // SampleProfileExtBinaryBaseWriter. Never change the existing
0117 // value of enum. Only append new ones.
0118 enum SecType {
0119   SecInValid = 0,
0120   SecProfSummary = 1,
0121   SecNameTable = 2,
0122   SecProfileSymbolList = 3,
0123   SecFuncOffsetTable = 4,
0124   SecFuncMetadata = 5,
0125   SecCSNameTable = 6,
0126   // marker for the first type of profile.
0127   SecFuncProfileFirst = 32,
0128   SecLBRProfile = SecFuncProfileFirst
0129 };
0130 
0131 static inline std::string getSecName(SecType Type) {
0132   switch (static_cast<int>(Type)) { // Avoid -Wcovered-switch-default
0133   case SecInValid:
0134     return "InvalidSection";
0135   case SecProfSummary:
0136     return "ProfileSummarySection";
0137   case SecNameTable:
0138     return "NameTableSection";
0139   case SecProfileSymbolList:
0140     return "ProfileSymbolListSection";
0141   case SecFuncOffsetTable:
0142     return "FuncOffsetTableSection";
0143   case SecFuncMetadata:
0144     return "FunctionMetadata";
0145   case SecCSNameTable:
0146     return "CSNameTableSection";
0147   case SecLBRProfile:
0148     return "LBRProfileSection";
0149   default:
0150     return "UnknownSection";
0151   }
0152 }
0153 
0154 // Entry type of section header table used by SampleProfileExtBinaryBaseReader
0155 // and SampleProfileExtBinaryBaseWriter.
0156 struct SecHdrTableEntry {
0157   SecType Type;
0158   uint64_t Flags;
0159   uint64_t Offset;
0160   uint64_t Size;
0161   // The index indicating the location of the current entry in
0162   // SectionHdrLayout table.
0163   uint64_t LayoutIndex;
0164 };
0165 
0166 // Flags common for all sections are defined here. In SecHdrTableEntry::Flags,
0167 // common flags will be saved in the lower 32bits and section specific flags
0168 // will be saved in the higher 32 bits.
0169 enum class SecCommonFlags : uint32_t {
0170   SecFlagInValid = 0,
0171   SecFlagCompress = (1 << 0),
0172   // Indicate the section contains only profile without context.
0173   SecFlagFlat = (1 << 1)
0174 };
0175 
0176 // Section specific flags are defined here.
0177 // !!!Note: Everytime a new enum class is created here, please add
0178 // a new check in verifySecFlag.
0179 enum class SecNameTableFlags : uint32_t {
0180   SecFlagInValid = 0,
0181   SecFlagMD5Name = (1 << 0),
0182   // Store MD5 in fixed length instead of ULEB128 so NameTable can be
0183   // accessed like an array.
0184   SecFlagFixedLengthMD5 = (1 << 1),
0185   // Profile contains ".__uniq." suffix name. Compiler shouldn't strip
0186   // the suffix when doing profile matching when seeing the flag.
0187   SecFlagUniqSuffix = (1 << 2)
0188 };
0189 enum class SecProfSummaryFlags : uint32_t {
0190   SecFlagInValid = 0,
0191   /// SecFlagPartial means the profile is for common/shared code.
0192   /// The common profile is usually merged from profiles collected
0193   /// from running other targets.
0194   SecFlagPartial = (1 << 0),
0195   /// SecFlagContext means this is context-sensitive flat profile for
0196   /// CSSPGO
0197   SecFlagFullContext = (1 << 1),
0198   /// SecFlagFSDiscriminator means this profile uses flow-sensitive
0199   /// discriminators.
0200   SecFlagFSDiscriminator = (1 << 2),
0201   /// SecFlagIsPreInlined means this profile contains ShouldBeInlined
0202   /// contexts thus this is CS preinliner computed.
0203   SecFlagIsPreInlined = (1 << 4),
0204 };
0205 
0206 enum class SecFuncMetadataFlags : uint32_t {
0207   SecFlagInvalid = 0,
0208   SecFlagIsProbeBased = (1 << 0),
0209   SecFlagHasAttribute = (1 << 1),
0210 };
0211 
0212 enum class SecFuncOffsetFlags : uint32_t {
0213   SecFlagInvalid = 0,
0214   // Store function offsets in an order of contexts. The order ensures that
0215   // callee contexts of a given context laid out next to it.
0216   SecFlagOrdered = (1 << 0),
0217 };
0218 
0219 // Verify section specific flag is used for the correct section.
0220 template <class SecFlagType>
0221 static inline void verifySecFlag(SecType Type, SecFlagType Flag) {
0222   // No verification is needed for common flags.
0223   if (std::is_same<SecCommonFlags, SecFlagType>())
0224     return;
0225 
0226   // Verification starts here for section specific flag.
0227   bool IsFlagLegal = false;
0228   switch (Type) {
0229   case SecNameTable:
0230     IsFlagLegal = std::is_same<SecNameTableFlags, SecFlagType>();
0231     break;
0232   case SecProfSummary:
0233     IsFlagLegal = std::is_same<SecProfSummaryFlags, SecFlagType>();
0234     break;
0235   case SecFuncMetadata:
0236     IsFlagLegal = std::is_same<SecFuncMetadataFlags, SecFlagType>();
0237     break;
0238   default:
0239   case SecFuncOffsetTable:
0240     IsFlagLegal = std::is_same<SecFuncOffsetFlags, SecFlagType>();
0241     break;
0242   }
0243   if (!IsFlagLegal)
0244     llvm_unreachable("Misuse of a flag in an incompatible section");
0245 }
0246 
0247 template <class SecFlagType>
0248 static inline void addSecFlag(SecHdrTableEntry &Entry, SecFlagType Flag) {
0249   verifySecFlag(Entry.Type, Flag);
0250   auto FVal = static_cast<uint64_t>(Flag);
0251   bool IsCommon = std::is_same<SecCommonFlags, SecFlagType>();
0252   Entry.Flags |= IsCommon ? FVal : (FVal << 32);
0253 }
0254 
0255 template <class SecFlagType>
0256 static inline void removeSecFlag(SecHdrTableEntry &Entry, SecFlagType Flag) {
0257   verifySecFlag(Entry.Type, Flag);
0258   auto FVal = static_cast<uint64_t>(Flag);
0259   bool IsCommon = std::is_same<SecCommonFlags, SecFlagType>();
0260   Entry.Flags &= ~(IsCommon ? FVal : (FVal << 32));
0261 }
0262 
0263 template <class SecFlagType>
0264 static inline bool hasSecFlag(const SecHdrTableEntry &Entry, SecFlagType Flag) {
0265   verifySecFlag(Entry.Type, Flag);
0266   auto FVal = static_cast<uint64_t>(Flag);
0267   bool IsCommon = std::is_same<SecCommonFlags, SecFlagType>();
0268   return Entry.Flags & (IsCommon ? FVal : (FVal << 32));
0269 }
0270 
0271 /// Represents the relative location of an instruction.
0272 ///
0273 /// Instruction locations are specified by the line offset from the
0274 /// beginning of the function (marked by the line where the function
0275 /// header is) and the discriminator value within that line.
0276 ///
0277 /// The discriminator value is useful to distinguish instructions
0278 /// that are on the same line but belong to different basic blocks
0279 /// (e.g., the two post-increment instructions in "if (p) x++; else y++;").
0280 struct LineLocation {
0281   LineLocation(uint32_t L, uint32_t D) : LineOffset(L), Discriminator(D) {}
0282 
0283   void print(raw_ostream &OS) const;
0284   void dump() const;
0285 
0286   bool operator<(const LineLocation &O) const {
0287     return LineOffset < O.LineOffset ||
0288            (LineOffset == O.LineOffset && Discriminator < O.Discriminator);
0289   }
0290 
0291   bool operator==(const LineLocation &O) const {
0292     return LineOffset == O.LineOffset && Discriminator == O.Discriminator;
0293   }
0294 
0295   bool operator!=(const LineLocation &O) const {
0296     return LineOffset != O.LineOffset || Discriminator != O.Discriminator;
0297   }
0298 
0299   uint64_t getHashCode() const {
0300     return ((uint64_t) Discriminator << 32) | LineOffset;
0301   }
0302 
0303   uint32_t LineOffset;
0304   uint32_t Discriminator;
0305 };
0306 
0307 struct LineLocationHash {
0308   uint64_t operator()(const LineLocation &Loc) const {
0309     return Loc.getHashCode();
0310   }
0311 };
0312 
0313 raw_ostream &operator<<(raw_ostream &OS, const LineLocation &Loc);
0314 
0315 /// Representation of a single sample record.
0316 ///
0317 /// A sample record is represented by a positive integer value, which
0318 /// indicates how frequently was the associated line location executed.
0319 ///
0320 /// Additionally, if the associated location contains a function call,
0321 /// the record will hold a list of all the possible called targets. For
0322 /// direct calls, this will be the exact function being invoked. For
0323 /// indirect calls (function pointers, virtual table dispatch), this
0324 /// will be a list of one or more functions.
0325 class SampleRecord {
0326 public:
0327   using CallTarget = std::pair<FunctionId, uint64_t>;
0328   struct CallTargetComparator {
0329     bool operator()(const CallTarget &LHS, const CallTarget &RHS) const {
0330       if (LHS.second != RHS.second)
0331         return LHS.second > RHS.second;
0332 
0333       return LHS.first < RHS.first;
0334     }
0335   };
0336 
0337   using SortedCallTargetSet = std::set<CallTarget, CallTargetComparator>;
0338   using CallTargetMap = std::unordered_map<FunctionId, uint64_t>;
0339   SampleRecord() = default;
0340 
0341   /// Increment the number of samples for this record by \p S.
0342   /// Optionally scale sample count \p S by \p Weight.
0343   ///
0344   /// Sample counts accumulate using saturating arithmetic, to avoid wrapping
0345   /// around unsigned integers.
0346   sampleprof_error addSamples(uint64_t S, uint64_t Weight = 1) {
0347     bool Overflowed;
0348     NumSamples = SaturatingMultiplyAdd(S, Weight, NumSamples, &Overflowed);
0349     return Overflowed ? sampleprof_error::counter_overflow
0350                       : sampleprof_error::success;
0351   }
0352 
0353   /// Decrease the number of samples for this record by \p S. Return the amout
0354   /// of samples actually decreased.
0355   uint64_t removeSamples(uint64_t S) {
0356     if (S > NumSamples)
0357       S = NumSamples;
0358     NumSamples -= S;
0359     return S;
0360   }
0361 
0362   /// Add called function \p F with samples \p S.
0363   /// Optionally scale sample count \p S by \p Weight.
0364   ///
0365   /// Sample counts accumulate using saturating arithmetic, to avoid wrapping
0366   /// around unsigned integers.
0367   sampleprof_error addCalledTarget(FunctionId F, uint64_t S,
0368                                    uint64_t Weight = 1) {
0369     uint64_t &TargetSamples = CallTargets[F];
0370     bool Overflowed;
0371     TargetSamples =
0372         SaturatingMultiplyAdd(S, Weight, TargetSamples, &Overflowed);
0373     return Overflowed ? sampleprof_error::counter_overflow
0374                       : sampleprof_error::success;
0375   }
0376 
0377   /// Remove called function from the call target map. Return the target sample
0378   /// count of the called function.
0379   uint64_t removeCalledTarget(FunctionId F) {
0380     uint64_t Count = 0;
0381     auto I = CallTargets.find(F);
0382     if (I != CallTargets.end()) {
0383       Count = I->second;
0384       CallTargets.erase(I);
0385     }
0386     return Count;
0387   }
0388 
0389   /// Return true if this sample record contains function calls.
0390   bool hasCalls() const { return !CallTargets.empty(); }
0391 
0392   uint64_t getSamples() const { return NumSamples; }
0393   const CallTargetMap &getCallTargets() const { return CallTargets; }
0394   const SortedCallTargetSet getSortedCallTargets() const {
0395     return sortCallTargets(CallTargets);
0396   }
0397 
0398   uint64_t getCallTargetSum() const {
0399     uint64_t Sum = 0;
0400     for (const auto &I : CallTargets)
0401       Sum += I.second;
0402     return Sum;
0403   }
0404 
0405   /// Sort call targets in descending order of call frequency.
0406   static const SortedCallTargetSet
0407   sortCallTargets(const CallTargetMap &Targets) {
0408     SortedCallTargetSet SortedTargets;
0409     for (const auto &[Target, Frequency] : Targets) {
0410       SortedTargets.emplace(Target, Frequency);
0411     }
0412     return SortedTargets;
0413   }
0414 
0415   /// Prorate call targets by a distribution factor.
0416   static const CallTargetMap adjustCallTargets(const CallTargetMap &Targets,
0417                                                float DistributionFactor) {
0418     CallTargetMap AdjustedTargets;
0419     for (const auto &[Target, Frequency] : Targets) {
0420       AdjustedTargets[Target] = Frequency * DistributionFactor;
0421     }
0422     return AdjustedTargets;
0423   }
0424 
0425   /// Merge the samples in \p Other into this record.
0426   /// Optionally scale sample counts by \p Weight.
0427   sampleprof_error merge(const SampleRecord &Other, uint64_t Weight = 1);
0428   void print(raw_ostream &OS, unsigned Indent) const;
0429   void dump() const;
0430 
0431   bool operator==(const SampleRecord &Other) const {
0432     return NumSamples == Other.NumSamples && CallTargets == Other.CallTargets;
0433   }
0434 
0435   bool operator!=(const SampleRecord &Other) const {
0436     return !(*this == Other);
0437   }
0438 
0439 private:
0440   uint64_t NumSamples = 0;
0441   CallTargetMap CallTargets;
0442 };
0443 
0444 raw_ostream &operator<<(raw_ostream &OS, const SampleRecord &Sample);
0445 
0446 // State of context associated with FunctionSamples
0447 enum ContextStateMask {
0448   UnknownContext = 0x0,   // Profile without context
0449   RawContext = 0x1,       // Full context profile from input profile
0450   SyntheticContext = 0x2, // Synthetic context created for context promotion
0451   InlinedContext = 0x4,   // Profile for context that is inlined into caller
0452   MergedContext = 0x8     // Profile for context merged into base profile
0453 };
0454 
0455 // Attribute of context associated with FunctionSamples
0456 enum ContextAttributeMask {
0457   ContextNone = 0x0,
0458   ContextWasInlined = 0x1,      // Leaf of context was inlined in previous build
0459   ContextShouldBeInlined = 0x2, // Leaf of context should be inlined
0460   ContextDuplicatedIntoBase =
0461       0x4, // Leaf of context is duplicated into the base profile
0462 };
0463 
0464 // Represents a context frame with profile function and line location
0465 struct SampleContextFrame {
0466   FunctionId Func;
0467   LineLocation Location;
0468 
0469   SampleContextFrame() : Location(0, 0) {}
0470 
0471   SampleContextFrame(FunctionId Func, LineLocation Location)
0472       : Func(Func), Location(Location) {}
0473 
0474   bool operator==(const SampleContextFrame &That) const {
0475     return Location == That.Location && Func == That.Func;
0476   }
0477 
0478   bool operator!=(const SampleContextFrame &That) const {
0479     return !(*this == That);
0480   }
0481 
0482   std::string toString(bool OutputLineLocation) const {
0483     std::ostringstream OContextStr;
0484     OContextStr << Func.str();
0485     if (OutputLineLocation) {
0486       OContextStr << ":" << Location.LineOffset;
0487       if (Location.Discriminator)
0488         OContextStr << "." << Location.Discriminator;
0489     }
0490     return OContextStr.str();
0491   }
0492 
0493   uint64_t getHashCode() const {
0494     uint64_t NameHash = Func.getHashCode();
0495     uint64_t LocId = Location.getHashCode();
0496     return NameHash + (LocId << 5) + LocId;
0497   }
0498 };
0499 
0500 static inline hash_code hash_value(const SampleContextFrame &arg) {
0501   return arg.getHashCode();
0502 }
0503 
0504 using SampleContextFrameVector = SmallVector<SampleContextFrame, 1>;
0505 using SampleContextFrames = ArrayRef<SampleContextFrame>;
0506 
0507 struct SampleContextFrameHash {
0508   uint64_t operator()(const SampleContextFrameVector &S) const {
0509     return hash_combine_range(S.begin(), S.end());
0510   }
0511 };
0512 
0513 // Sample context for FunctionSamples. It consists of the calling context,
0514 // the function name and context state. Internally sample context is represented
0515 // using ArrayRef, which is also the input for constructing a `SampleContext`.
0516 // It can accept and represent both full context string as well as context-less
0517 // function name.
0518 // For a CS profile, a full context vector can look like:
0519 //    `main:3 _Z5funcAi:1 _Z8funcLeafi`
0520 // For a base CS profile without calling context, the context vector should only
0521 // contain the leaf frame name.
0522 // For a non-CS profile, the context vector should be empty.
0523 class SampleContext {
0524 public:
0525   SampleContext() : State(UnknownContext), Attributes(ContextNone) {}
0526 
0527   SampleContext(StringRef Name)
0528       : Func(Name), State(UnknownContext), Attributes(ContextNone) {
0529         assert(!Name.empty() && "Name is empty");
0530       }
0531 
0532   SampleContext(FunctionId Func)
0533       : Func(Func), State(UnknownContext), Attributes(ContextNone) {}
0534 
0535   SampleContext(SampleContextFrames Context,
0536                 ContextStateMask CState = RawContext)
0537       : Attributes(ContextNone) {
0538     assert(!Context.empty() && "Context is empty");
0539     setContext(Context, CState);
0540   }
0541 
0542   // Give a context string, decode and populate internal states like
0543   // Function name, Calling context and context state. Example of input
0544   // `ContextStr`: `[main:3 @ _Z5funcAi:1 @ _Z8funcLeafi]`
0545   SampleContext(StringRef ContextStr,
0546                 std::list<SampleContextFrameVector> &CSNameTable,
0547                 ContextStateMask CState = RawContext)
0548       : Attributes(ContextNone) {
0549     assert(!ContextStr.empty());
0550     // Note that `[]` wrapped input indicates a full context string, otherwise
0551     // it's treated as context-less function name only.
0552     bool HasContext = ContextStr.starts_with("[");
0553     if (!HasContext) {
0554       State = UnknownContext;
0555       Func = FunctionId(ContextStr);
0556     } else {
0557       CSNameTable.emplace_back();
0558       SampleContextFrameVector &Context = CSNameTable.back();
0559       createCtxVectorFromStr(ContextStr, Context);
0560       setContext(Context, CState);
0561     }
0562   }
0563 
0564   /// Create a context vector from a given context string and save it in
0565   /// `Context`.
0566   static void createCtxVectorFromStr(StringRef ContextStr,
0567                                      SampleContextFrameVector &Context) {
0568     // Remove encapsulating '[' and ']' if any
0569     ContextStr = ContextStr.substr(1, ContextStr.size() - 2);
0570     StringRef ContextRemain = ContextStr;
0571     StringRef ChildContext;
0572     FunctionId Callee;
0573     while (!ContextRemain.empty()) {
0574       auto ContextSplit = ContextRemain.split(" @ ");
0575       ChildContext = ContextSplit.first;
0576       ContextRemain = ContextSplit.second;
0577       LineLocation CallSiteLoc(0, 0);
0578       decodeContextString(ChildContext, Callee, CallSiteLoc);
0579       Context.emplace_back(Callee, CallSiteLoc);
0580     }
0581   }
0582 
0583   // Decode context string for a frame to get function name and location.
0584   // `ContextStr` is in the form of `FuncName:StartLine.Discriminator`.
0585   static void decodeContextString(StringRef ContextStr,
0586                                   FunctionId &Func,
0587                                   LineLocation &LineLoc) {
0588     // Get function name
0589     auto EntrySplit = ContextStr.split(':');
0590     Func = FunctionId(EntrySplit.first);
0591 
0592     LineLoc = {0, 0};
0593     if (!EntrySplit.second.empty()) {
0594       // Get line offset, use signed int for getAsInteger so string will
0595       // be parsed as signed.
0596       int LineOffset = 0;
0597       auto LocSplit = EntrySplit.second.split('.');
0598       LocSplit.first.getAsInteger(10, LineOffset);
0599       LineLoc.LineOffset = LineOffset;
0600 
0601       // Get discriminator
0602       if (!LocSplit.second.empty())
0603         LocSplit.second.getAsInteger(10, LineLoc.Discriminator);
0604     }
0605   }
0606 
0607   operator SampleContextFrames() const { return FullContext; }
0608   bool hasAttribute(ContextAttributeMask A) { return Attributes & (uint32_t)A; }
0609   void setAttribute(ContextAttributeMask A) { Attributes |= (uint32_t)A; }
0610   uint32_t getAllAttributes() { return Attributes; }
0611   void setAllAttributes(uint32_t A) { Attributes = A; }
0612   bool hasState(ContextStateMask S) { return State & (uint32_t)S; }
0613   void setState(ContextStateMask S) { State |= (uint32_t)S; }
0614   void clearState(ContextStateMask S) { State &= (uint32_t)~S; }
0615   bool hasContext() const { return State != UnknownContext; }
0616   bool isBaseContext() const { return FullContext.size() == 1; }
0617   FunctionId getFunction() const { return Func; }
0618   SampleContextFrames getContextFrames() const { return FullContext; }
0619 
0620   static std::string getContextString(SampleContextFrames Context,
0621                                       bool IncludeLeafLineLocation = false) {
0622     std::ostringstream OContextStr;
0623     for (uint32_t I = 0; I < Context.size(); I++) {
0624       if (OContextStr.str().size()) {
0625         OContextStr << " @ ";
0626       }
0627       OContextStr << Context[I].toString(I != Context.size() - 1 ||
0628                                          IncludeLeafLineLocation);
0629     }
0630     return OContextStr.str();
0631   }
0632 
0633   std::string toString() const {
0634     if (!hasContext())
0635       return Func.str();
0636     return getContextString(FullContext, false);
0637   }
0638 
0639   uint64_t getHashCode() const {
0640     if (hasContext())
0641       return hash_value(getContextFrames());
0642     return getFunction().getHashCode();
0643   }
0644 
0645   /// Set the name of the function and clear the current context.
0646   void setFunction(FunctionId NewFunctionID) {
0647     Func = NewFunctionID;
0648     FullContext = SampleContextFrames();
0649     State = UnknownContext;
0650   }
0651 
0652   void setContext(SampleContextFrames Context,
0653                   ContextStateMask CState = RawContext) {
0654     assert(CState != UnknownContext);
0655     FullContext = Context;
0656     Func = Context.back().Func;
0657     State = CState;
0658   }
0659 
0660   bool operator==(const SampleContext &That) const {
0661     return State == That.State && Func == That.Func &&
0662            FullContext == That.FullContext;
0663   }
0664 
0665   bool operator!=(const SampleContext &That) const { return !(*this == That); }
0666 
0667   bool operator<(const SampleContext &That) const {
0668     if (State != That.State)
0669       return State < That.State;
0670 
0671     if (!hasContext()) {
0672       return Func < That.Func;
0673     }
0674 
0675     uint64_t I = 0;
0676     while (I < std::min(FullContext.size(), That.FullContext.size())) {
0677       auto &Context1 = FullContext[I];
0678       auto &Context2 = That.FullContext[I];
0679       auto V = Context1.Func.compare(Context2.Func);
0680       if (V)
0681         return V < 0;
0682       if (Context1.Location != Context2.Location)
0683         return Context1.Location < Context2.Location;
0684       I++;
0685     }
0686 
0687     return FullContext.size() < That.FullContext.size();
0688   }
0689 
0690   struct Hash {
0691     uint64_t operator()(const SampleContext &Context) const {
0692       return Context.getHashCode();
0693     }
0694   };
0695 
0696   bool isPrefixOf(const SampleContext &That) const {
0697     auto ThisContext = FullContext;
0698     auto ThatContext = That.FullContext;
0699     if (ThatContext.size() < ThisContext.size())
0700       return false;
0701     ThatContext = ThatContext.take_front(ThisContext.size());
0702     // Compare Leaf frame first
0703     if (ThisContext.back().Func != ThatContext.back().Func)
0704       return false;
0705     // Compare leading context
0706     return ThisContext.drop_back() == ThatContext.drop_back();
0707   }
0708 
0709 private:
0710   // The function associated with this context. If CS profile, this is the leaf
0711   // function.
0712   FunctionId Func;
0713   // Full context including calling context and leaf function name
0714   SampleContextFrames FullContext;
0715   // State of the associated sample profile
0716   uint32_t State;
0717   // Attribute of the associated sample profile
0718   uint32_t Attributes;
0719 };
0720 
0721 static inline hash_code hash_value(const SampleContext &Context) {
0722   return Context.getHashCode();
0723 }
0724 
0725 inline raw_ostream &operator<<(raw_ostream &OS, const SampleContext &Context) {
0726   return OS << Context.toString();
0727 }
0728 
0729 class FunctionSamples;
0730 class SampleProfileReaderItaniumRemapper;
0731 
0732 using BodySampleMap = std::map<LineLocation, SampleRecord>;
0733 // NOTE: Using a StringMap here makes parsed profiles consume around 17% more
0734 // memory, which is *very* significant for large profiles.
0735 using FunctionSamplesMap = std::map<FunctionId, FunctionSamples>;
0736 using CallsiteSampleMap = std::map<LineLocation, FunctionSamplesMap>;
0737 using LocToLocMap =
0738     std::unordered_map<LineLocation, LineLocation, LineLocationHash>;
0739 
0740 /// Representation of the samples collected for a function.
0741 ///
0742 /// This data structure contains all the collected samples for the body
0743 /// of a function. Each sample corresponds to a LineLocation instance
0744 /// within the body of the function.
0745 class FunctionSamples {
0746 public:
0747   FunctionSamples() = default;
0748 
0749   void print(raw_ostream &OS = dbgs(), unsigned Indent = 0) const;
0750   void dump() const;
0751 
0752   sampleprof_error addTotalSamples(uint64_t Num, uint64_t Weight = 1) {
0753     bool Overflowed;
0754     TotalSamples =
0755         SaturatingMultiplyAdd(Num, Weight, TotalSamples, &Overflowed);
0756     return Overflowed ? sampleprof_error::counter_overflow
0757                       : sampleprof_error::success;
0758   }
0759 
0760   void removeTotalSamples(uint64_t Num) {
0761     if (TotalSamples < Num)
0762       TotalSamples = 0;
0763     else
0764       TotalSamples -= Num;
0765   }
0766 
0767   void setTotalSamples(uint64_t Num) { TotalSamples = Num; }
0768 
0769   void setHeadSamples(uint64_t Num) { TotalHeadSamples = Num; }
0770 
0771   sampleprof_error addHeadSamples(uint64_t Num, uint64_t Weight = 1) {
0772     bool Overflowed;
0773     TotalHeadSamples =
0774         SaturatingMultiplyAdd(Num, Weight, TotalHeadSamples, &Overflowed);
0775     return Overflowed ? sampleprof_error::counter_overflow
0776                       : sampleprof_error::success;
0777   }
0778 
0779   sampleprof_error addBodySamples(uint32_t LineOffset, uint32_t Discriminator,
0780                                   uint64_t Num, uint64_t Weight = 1) {
0781     return BodySamples[LineLocation(LineOffset, Discriminator)].addSamples(
0782         Num, Weight);
0783   }
0784 
0785   sampleprof_error addCalledTargetSamples(uint32_t LineOffset,
0786                                           uint32_t Discriminator,
0787                                           FunctionId Func,
0788                                           uint64_t Num,
0789                                           uint64_t Weight = 1) {
0790     return BodySamples[LineLocation(LineOffset, Discriminator)].addCalledTarget(
0791         Func, Num, Weight);
0792   }
0793 
0794   sampleprof_error addSampleRecord(LineLocation Location,
0795                                    const SampleRecord &SampleRecord,
0796                                    uint64_t Weight = 1) {
0797     return BodySamples[Location].merge(SampleRecord, Weight);
0798   }
0799 
0800   // Remove a call target and decrease the body sample correspondingly. Return
0801   // the number of body samples actually decreased.
0802   uint64_t removeCalledTargetAndBodySample(uint32_t LineOffset,
0803                                            uint32_t Discriminator,
0804                                            FunctionId Func) {
0805     uint64_t Count = 0;
0806     auto I = BodySamples.find(LineLocation(LineOffset, Discriminator));
0807     if (I != BodySamples.end()) {
0808       Count = I->second.removeCalledTarget(Func);
0809       Count = I->second.removeSamples(Count);
0810       if (!I->second.getSamples())
0811         BodySamples.erase(I);
0812     }
0813     return Count;
0814   }
0815 
0816   // Remove all call site samples for inlinees. This is needed when flattening
0817   // a nested profile.
0818   void removeAllCallsiteSamples() {
0819     CallsiteSamples.clear();
0820   }
0821 
0822   // Accumulate all call target samples to update the body samples.
0823   void updateCallsiteSamples() {
0824     for (auto &I : BodySamples) {
0825       uint64_t TargetSamples = I.second.getCallTargetSum();
0826       // It's possible that the body sample count can be greater than the call
0827       // target sum. E.g, if some call targets are external targets, they won't
0828       // be considered valid call targets, but the body sample count which is
0829       // from lbr ranges can actually include them.
0830       if (TargetSamples > I.second.getSamples())
0831         I.second.addSamples(TargetSamples - I.second.getSamples());
0832     }
0833   }
0834 
0835   // Accumulate all body samples to set total samples.
0836   void updateTotalSamples() {
0837     setTotalSamples(0);
0838     for (const auto &I : BodySamples)
0839       addTotalSamples(I.second.getSamples());
0840 
0841     for (auto &I : CallsiteSamples) {
0842       for (auto &CS : I.second) {
0843         CS.second.updateTotalSamples();
0844         addTotalSamples(CS.second.getTotalSamples());
0845       }
0846     }
0847   }
0848 
0849   // Set current context and all callee contexts to be synthetic.
0850   void setContextSynthetic() {
0851     Context.setState(SyntheticContext);
0852     for (auto &I : CallsiteSamples) {
0853       for (auto &CS : I.second) {
0854         CS.second.setContextSynthetic();
0855       }
0856     }
0857   }
0858 
0859   // Query the stale profile matching results and remap the location.
0860   const LineLocation &mapIRLocToProfileLoc(const LineLocation &IRLoc) const {
0861     // There is no remapping if the profile is not stale or the matching gives
0862     // the same location.
0863     if (!IRToProfileLocationMap)
0864       return IRLoc;
0865     const auto &ProfileLoc = IRToProfileLocationMap->find(IRLoc);
0866     if (ProfileLoc != IRToProfileLocationMap->end())
0867       return ProfileLoc->second;
0868     return IRLoc;
0869   }
0870 
0871   /// Return the number of samples collected at the given location.
0872   /// Each location is specified by \p LineOffset and \p Discriminator.
0873   /// If the location is not found in profile, return error.
0874   ErrorOr<uint64_t> findSamplesAt(uint32_t LineOffset,
0875                                   uint32_t Discriminator) const {
0876     const auto &Ret = BodySamples.find(
0877         mapIRLocToProfileLoc(LineLocation(LineOffset, Discriminator)));
0878     if (Ret == BodySamples.end())
0879       return std::error_code();
0880     return Ret->second.getSamples();
0881   }
0882 
0883   /// Returns the call target map collected at a given location.
0884   /// Each location is specified by \p LineOffset and \p Discriminator.
0885   /// If the location is not found in profile, return error.
0886   ErrorOr<const SampleRecord::CallTargetMap &>
0887   findCallTargetMapAt(uint32_t LineOffset, uint32_t Discriminator) const {
0888     const auto &Ret = BodySamples.find(
0889         mapIRLocToProfileLoc(LineLocation(LineOffset, Discriminator)));
0890     if (Ret == BodySamples.end())
0891       return std::error_code();
0892     return Ret->second.getCallTargets();
0893   }
0894 
0895   /// Returns the call target map collected at a given location specified by \p
0896   /// CallSite. If the location is not found in profile, return error.
0897   ErrorOr<const SampleRecord::CallTargetMap &>
0898   findCallTargetMapAt(const LineLocation &CallSite) const {
0899     const auto &Ret = BodySamples.find(mapIRLocToProfileLoc(CallSite));
0900     if (Ret == BodySamples.end())
0901       return std::error_code();
0902     return Ret->second.getCallTargets();
0903   }
0904 
0905   /// Return the function samples at the given callsite location.
0906   FunctionSamplesMap &functionSamplesAt(const LineLocation &Loc) {
0907     return CallsiteSamples[mapIRLocToProfileLoc(Loc)];
0908   }
0909 
0910   /// Returns the FunctionSamplesMap at the given \p Loc.
0911   const FunctionSamplesMap *
0912   findFunctionSamplesMapAt(const LineLocation &Loc) const {
0913     auto Iter = CallsiteSamples.find(mapIRLocToProfileLoc(Loc));
0914     if (Iter == CallsiteSamples.end())
0915       return nullptr;
0916     return &Iter->second;
0917   }
0918 
0919   /// Returns a pointer to FunctionSamples at the given callsite location
0920   /// \p Loc with callee \p CalleeName. If no callsite can be found, relax
0921   /// the restriction to return the FunctionSamples at callsite location
0922   /// \p Loc with the maximum total sample count. If \p Remapper or \p
0923   /// FuncNameToProfNameMap is not nullptr, use them to find FunctionSamples
0924   /// with equivalent name as \p CalleeName.
0925   const FunctionSamples *findFunctionSamplesAt(
0926       const LineLocation &Loc, StringRef CalleeName,
0927       SampleProfileReaderItaniumRemapper *Remapper,
0928       const HashKeyMap<std::unordered_map, FunctionId, FunctionId>
0929           *FuncNameToProfNameMap = nullptr) const;
0930 
0931   bool empty() const { return TotalSamples == 0; }
0932 
0933   /// Return the total number of samples collected inside the function.
0934   uint64_t getTotalSamples() const { return TotalSamples; }
0935 
0936   /// For top-level functions, return the total number of branch samples that
0937   /// have the function as the branch target (or 0 otherwise). This is the raw
0938   /// data fetched from the profile. This should be equivalent to the sample of
0939   /// the first instruction of the symbol. But as we directly get this info for
0940   /// raw profile without referring to potentially inaccurate debug info, this
0941   /// gives more accurate profile data and is preferred for standalone symbols.
0942   uint64_t getHeadSamples() const { return TotalHeadSamples; }
0943 
0944   /// Return an estimate of the sample count of the function entry basic block.
0945   /// The function can be either a standalone symbol or an inlined function.
0946   /// For Context-Sensitive profiles, this will prefer returning the head
0947   /// samples (i.e. getHeadSamples()), if non-zero. Otherwise it estimates from
0948   /// the function body's samples or callsite samples.
0949   uint64_t getHeadSamplesEstimate() const {
0950     if (FunctionSamples::ProfileIsCS && getHeadSamples()) {
0951       // For CS profile, if we already have more accurate head samples
0952       // counted by branch sample from caller, use them as entry samples.
0953       return getHeadSamples();
0954     }
0955     uint64_t Count = 0;
0956     // Use either BodySamples or CallsiteSamples which ever has the smaller
0957     // lineno.
0958     if (!BodySamples.empty() &&
0959         (CallsiteSamples.empty() ||
0960          BodySamples.begin()->first < CallsiteSamples.begin()->first))
0961       Count = BodySamples.begin()->second.getSamples();
0962     else if (!CallsiteSamples.empty()) {
0963       // An indirect callsite may be promoted to several inlined direct calls.
0964       // We need to get the sum of them.
0965       for (const auto &FuncSamples : CallsiteSamples.begin()->second)
0966         Count += FuncSamples.second.getHeadSamplesEstimate();
0967     }
0968     // Return at least 1 if total sample is not 0.
0969     return Count ? Count : TotalSamples > 0;
0970   }
0971 
0972   /// Return all the samples collected in the body of the function.
0973   const BodySampleMap &getBodySamples() const { return BodySamples; }
0974 
0975   /// Return all the callsite samples collected in the body of the function.
0976   const CallsiteSampleMap &getCallsiteSamples() const {
0977     return CallsiteSamples;
0978   }
0979 
0980   /// Return the maximum of sample counts in a function body. When SkipCallSite
0981   /// is false, which is the default, the return count includes samples in the
0982   /// inlined functions. When SkipCallSite is true, the return count only
0983   /// considers the body samples.
0984   uint64_t getMaxCountInside(bool SkipCallSite = false) const {
0985     uint64_t MaxCount = 0;
0986     for (const auto &L : getBodySamples())
0987       MaxCount = std::max(MaxCount, L.second.getSamples());
0988     if (SkipCallSite)
0989       return MaxCount;
0990     for (const auto &C : getCallsiteSamples())
0991       for (const FunctionSamplesMap::value_type &F : C.second)
0992         MaxCount = std::max(MaxCount, F.second.getMaxCountInside());
0993     return MaxCount;
0994   }
0995 
0996   /// Merge the samples in \p Other into this one.
0997   /// Optionally scale samples by \p Weight.
0998   sampleprof_error merge(const FunctionSamples &Other, uint64_t Weight = 1) {
0999     sampleprof_error Result = sampleprof_error::success;
1000     if (!GUIDToFuncNameMap)
1001       GUIDToFuncNameMap = Other.GUIDToFuncNameMap;
1002     if (Context.getFunction().empty())
1003       Context = Other.getContext();
1004     if (FunctionHash == 0) {
1005       // Set the function hash code for the target profile.
1006       FunctionHash = Other.getFunctionHash();
1007     } else if (FunctionHash != Other.getFunctionHash()) {
1008       // The two profiles coming with different valid hash codes indicates
1009       // either:
1010       // 1. They are same-named static functions from different compilation
1011       // units (without using -unique-internal-linkage-names), or
1012       // 2. They are really the same function but from different compilations.
1013       // Let's bail out in either case for now, which means one profile is
1014       // dropped.
1015       return sampleprof_error::hash_mismatch;
1016     }
1017 
1018     mergeSampleProfErrors(Result,
1019                           addTotalSamples(Other.getTotalSamples(), Weight));
1020     mergeSampleProfErrors(Result,
1021                           addHeadSamples(Other.getHeadSamples(), Weight));
1022     for (const auto &I : Other.getBodySamples()) {
1023       const LineLocation &Loc = I.first;
1024       const SampleRecord &Rec = I.second;
1025       mergeSampleProfErrors(Result, BodySamples[Loc].merge(Rec, Weight));
1026     }
1027     for (const auto &I : Other.getCallsiteSamples()) {
1028       const LineLocation &Loc = I.first;
1029       FunctionSamplesMap &FSMap = functionSamplesAt(Loc);
1030       for (const auto &Rec : I.second)
1031         mergeSampleProfErrors(Result,
1032                               FSMap[Rec.first].merge(Rec.second, Weight));
1033     }
1034     return Result;
1035   }
1036 
1037   /// Recursively traverses all children, if the total sample count of the
1038   /// corresponding function is no less than \p Threshold, add its corresponding
1039   /// GUID to \p S. Also traverse the BodySamples to add hot CallTarget's GUID
1040   /// to \p S.
1041   void findInlinedFunctions(DenseSet<GlobalValue::GUID> &S,
1042                             const HashKeyMap<std::unordered_map, FunctionId,
1043                                              Function *>  &SymbolMap,
1044                             uint64_t Threshold) const {
1045     if (TotalSamples <= Threshold)
1046       return;
1047     auto IsDeclaration = [](const Function *F) {
1048       return !F || F->isDeclaration();
1049     };
1050     if (IsDeclaration(SymbolMap.lookup(getFunction()))) {
1051       // Add to the import list only when it's defined out of module.
1052       S.insert(getGUID());
1053     }
1054     // Import hot CallTargets, which may not be available in IR because full
1055     // profile annotation cannot be done until backend compilation in ThinLTO.
1056     for (const auto &BS : BodySamples)
1057       for (const auto &TS : BS.second.getCallTargets())
1058         if (TS.second > Threshold) {
1059           const Function *Callee = SymbolMap.lookup(TS.first);
1060           if (IsDeclaration(Callee))
1061             S.insert(TS.first.getHashCode());
1062         }
1063     for (const auto &CS : CallsiteSamples)
1064       for (const auto &NameFS : CS.second)
1065         NameFS.second.findInlinedFunctions(S, SymbolMap, Threshold);
1066   }
1067 
1068   /// Set the name of the function.
1069   void setFunction(FunctionId NewFunctionID) {
1070     Context.setFunction(NewFunctionID);
1071   }
1072 
1073   /// Return the function name.
1074   FunctionId getFunction() const { return Context.getFunction(); }
1075 
1076   /// Return the original function name.
1077   StringRef getFuncName() const { return getFuncName(getFunction()); }
1078 
1079   void setFunctionHash(uint64_t Hash) { FunctionHash = Hash; }
1080 
1081   uint64_t getFunctionHash() const { return FunctionHash; }
1082 
1083   void setIRToProfileLocationMap(const LocToLocMap *LTLM) {
1084     assert(IRToProfileLocationMap == nullptr && "this should be set only once");
1085     IRToProfileLocationMap = LTLM;
1086   }
1087 
1088   /// Return the canonical name for a function, taking into account
1089   /// suffix elision policy attributes.
1090   static StringRef getCanonicalFnName(const Function &F) {
1091     const char *AttrName = "sample-profile-suffix-elision-policy";
1092     auto Attr = F.getFnAttribute(AttrName).getValueAsString();
1093     return getCanonicalFnName(F.getName(), Attr);
1094   }
1095 
1096   /// Name suffixes which canonicalization should handle to avoid
1097   /// profile mismatch.
1098   static constexpr const char *LLVMSuffix = ".llvm.";
1099   static constexpr const char *PartSuffix = ".part.";
1100   static constexpr const char *UniqSuffix = ".__uniq.";
1101 
1102   static StringRef getCanonicalFnName(StringRef FnName,
1103                                       StringRef Attr = "selected") {
1104     // Note the sequence of the suffixes in the knownSuffixes array matters.
1105     // If suffix "A" is appended after the suffix "B", "A" should be in front
1106     // of "B" in knownSuffixes.
1107     const char *KnownSuffixes[] = {LLVMSuffix, PartSuffix, UniqSuffix};
1108     if (Attr == "" || Attr == "all")
1109       return FnName.split('.').first;
1110     if (Attr == "selected") {
1111       StringRef Cand(FnName);
1112       for (const auto &Suf : KnownSuffixes) {
1113         StringRef Suffix(Suf);
1114         // If the profile contains ".__uniq." suffix, don't strip the
1115         // suffix for names in the IR.
1116         if (Suffix == UniqSuffix && FunctionSamples::HasUniqSuffix)
1117           continue;
1118         auto It = Cand.rfind(Suffix);
1119         if (It == StringRef::npos)
1120           continue;
1121         auto Dit = Cand.rfind('.');
1122         if (Dit == It + Suffix.size() - 1)
1123           Cand = Cand.substr(0, It);
1124       }
1125       return Cand;
1126     }
1127     if (Attr == "none")
1128       return FnName;
1129     assert(false && "internal error: unknown suffix elision policy");
1130     return FnName;
1131   }
1132 
1133   /// Translate \p Func into its original name.
1134   /// When profile doesn't use MD5, \p Func needs no translation.
1135   /// When profile uses MD5, \p Func in current FunctionSamples
1136   /// is actually GUID of the original function name. getFuncName will
1137   /// translate \p Func in current FunctionSamples into its original name
1138   /// by looking up in the function map GUIDToFuncNameMap.
1139   /// If the original name doesn't exist in the map, return empty StringRef.
1140   StringRef getFuncName(FunctionId Func) const {
1141     if (!UseMD5)
1142       return Func.stringRef();
1143 
1144     assert(GUIDToFuncNameMap && "GUIDToFuncNameMap needs to be populated first");
1145     return GUIDToFuncNameMap->lookup(Func.getHashCode());
1146   }
1147 
1148   /// Returns the line offset to the start line of the subprogram.
1149   /// We assume that a single function will not exceed 65535 LOC.
1150   static unsigned getOffset(const DILocation *DIL);
1151 
1152   /// Returns a unique call site identifier for a given debug location of a call
1153   /// instruction. This is wrapper of two scenarios, the probe-based profile and
1154   /// regular profile, to hide implementation details from the sample loader and
1155   /// the context tracker.
1156   static LineLocation getCallSiteIdentifier(const DILocation *DIL,
1157                                             bool ProfileIsFS = false);
1158 
1159   /// Returns a unique hash code for a combination of a callsite location and
1160   /// the callee function name.
1161   /// Guarantee MD5 and non-MD5 representation of the same function results in
1162   /// the same hash.
1163   static uint64_t getCallSiteHash(FunctionId Callee,
1164                                   const LineLocation &Callsite) {
1165     return SampleContextFrame(Callee, Callsite).getHashCode();
1166   }
1167 
1168   /// Get the FunctionSamples of the inline instance where DIL originates
1169   /// from.
1170   ///
1171   /// The FunctionSamples of the instruction (Machine or IR) associated to
1172   /// \p DIL is the inlined instance in which that instruction is coming from.
1173   /// We traverse the inline stack of that instruction, and match it with the
1174   /// tree nodes in the profile.
1175   ///
1176   /// \returns the FunctionSamples pointer to the inlined instance.
1177   /// If \p Remapper or \p FuncNameToProfNameMap is not nullptr, it will be used
1178   /// to find matching FunctionSamples with not exactly the same but equivalent
1179   /// name.
1180   const FunctionSamples *findFunctionSamples(
1181       const DILocation *DIL,
1182       SampleProfileReaderItaniumRemapper *Remapper = nullptr,
1183       const HashKeyMap<std::unordered_map, FunctionId, FunctionId>
1184           *FuncNameToProfNameMap = nullptr) const;
1185 
1186   static bool ProfileIsProbeBased;
1187 
1188   static bool ProfileIsCS;
1189 
1190   static bool ProfileIsPreInlined;
1191 
1192   SampleContext &getContext() const { return Context; }
1193 
1194   void setContext(const SampleContext &FContext) { Context = FContext; }
1195 
1196   /// Whether the profile uses MD5 to represent string.
1197   static bool UseMD5;
1198 
1199   /// Whether the profile contains any ".__uniq." suffix in a name.
1200   static bool HasUniqSuffix;
1201 
1202   /// If this profile uses flow sensitive discriminators.
1203   static bool ProfileIsFS;
1204 
1205   /// GUIDToFuncNameMap saves the mapping from GUID to the symbol name, for
1206   /// all the function symbols defined or declared in current module.
1207   DenseMap<uint64_t, StringRef> *GUIDToFuncNameMap = nullptr;
1208 
1209   /// Return the GUID of the context's name. If the context is already using
1210   /// MD5, don't hash it again.
1211   uint64_t getGUID() const {
1212     return getFunction().getHashCode();
1213   }
1214 
1215   // Find all the names in the current FunctionSamples including names in
1216   // all the inline instances and names of call targets.
1217   void findAllNames(DenseSet<FunctionId> &NameSet) const;
1218 
1219   bool operator==(const FunctionSamples &Other) const {
1220     return (GUIDToFuncNameMap == Other.GUIDToFuncNameMap ||
1221             (GUIDToFuncNameMap && Other.GUIDToFuncNameMap &&
1222              *GUIDToFuncNameMap == *Other.GUIDToFuncNameMap)) &&
1223            FunctionHash == Other.FunctionHash && Context == Other.Context &&
1224            TotalSamples == Other.TotalSamples &&
1225            TotalHeadSamples == Other.TotalHeadSamples &&
1226            BodySamples == Other.BodySamples &&
1227            CallsiteSamples == Other.CallsiteSamples;
1228   }
1229 
1230   bool operator!=(const FunctionSamples &Other) const {
1231     return !(*this == Other);
1232   }
1233 
1234 private:
1235   /// CFG hash value for the function.
1236   uint64_t FunctionHash = 0;
1237 
1238   /// Calling context for function profile
1239   mutable SampleContext Context;
1240 
1241   /// Total number of samples collected inside this function.
1242   ///
1243   /// Samples are cumulative, they include all the samples collected
1244   /// inside this function and all its inlined callees.
1245   uint64_t TotalSamples = 0;
1246 
1247   /// Total number of samples collected at the head of the function.
1248   /// This is an approximation of the number of calls made to this function
1249   /// at runtime.
1250   uint64_t TotalHeadSamples = 0;
1251 
1252   /// Map instruction locations to collected samples.
1253   ///
1254   /// Each entry in this map contains the number of samples
1255   /// collected at the corresponding line offset. All line locations
1256   /// are an offset from the start of the function.
1257   BodySampleMap BodySamples;
1258 
1259   /// Map call sites to collected samples for the called function.
1260   ///
1261   /// Each entry in this map corresponds to all the samples
1262   /// collected for the inlined function call at the given
1263   /// location. For example, given:
1264   ///
1265   ///     void foo() {
1266   ///  1    bar();
1267   ///  ...
1268   ///  8    baz();
1269   ///     }
1270   ///
1271   /// If the bar() and baz() calls were inlined inside foo(), this
1272   /// map will contain two entries.  One for all the samples collected
1273   /// in the call to bar() at line offset 1, the other for all the samples
1274   /// collected in the call to baz() at line offset 8.
1275   CallsiteSampleMap CallsiteSamples;
1276 
1277   /// IR to profile location map generated by stale profile matching.
1278   ///
1279   /// Each entry is a mapping from the location on current build to the matched
1280   /// location in the "stale" profile. For example:
1281   ///   Profiled source code:
1282   ///      void foo() {
1283   ///   1    bar();
1284   ///      }
1285   ///
1286   ///   Current source code:
1287   ///      void foo() {
1288   ///   1    // Code change
1289   ///   2    bar();
1290   ///      }
1291   /// Supposing the stale profile matching algorithm generated the mapping [2 ->
1292   /// 1], the profile query using the location of bar on the IR which is 2 will
1293   /// be remapped to 1 and find the location of bar in the profile.
1294   const LocToLocMap *IRToProfileLocationMap = nullptr;
1295 };
1296 
1297 /// Get the proper representation of a string according to whether the
1298 /// current Format uses MD5 to represent the string.
1299 static inline FunctionId getRepInFormat(StringRef Name) {
1300   if (Name.empty() || !FunctionSamples::UseMD5)
1301     return FunctionId(Name);
1302   return FunctionId(Function::getGUID(Name));
1303 }
1304 
1305 raw_ostream &operator<<(raw_ostream &OS, const FunctionSamples &FS);
1306 
1307 /// This class provides operator overloads to the map container using MD5 as the
1308 /// key type, so that existing code can still work in most cases using
1309 /// SampleContext as key.
1310 /// Note: when populating container, make sure to assign the SampleContext to
1311 /// the mapped value immediately because the key no longer holds it.
1312 class SampleProfileMap
1313     : public HashKeyMap<std::unordered_map, SampleContext, FunctionSamples> {
1314 public:
1315   // Convenience method because this is being used in many places. Set the
1316   // FunctionSamples' context if its newly inserted.
1317   mapped_type &create(const SampleContext &Ctx) {
1318     auto Ret = try_emplace(Ctx, FunctionSamples());
1319     if (Ret.second)
1320       Ret.first->second.setContext(Ctx);
1321     return Ret.first->second;
1322   }
1323 
1324   iterator find(const SampleContext &Ctx) {
1325     return HashKeyMap<std::unordered_map, SampleContext, FunctionSamples>::find(
1326         Ctx);
1327   }
1328 
1329   const_iterator find(const SampleContext &Ctx) const {
1330     return HashKeyMap<std::unordered_map, SampleContext, FunctionSamples>::find(
1331         Ctx);
1332   }
1333 
1334   size_t erase(const SampleContext &Ctx) {
1335     return HashKeyMap<std::unordered_map, SampleContext, FunctionSamples>::
1336         erase(Ctx);
1337   }
1338 
1339   size_t erase(const key_type &Key) { return base_type::erase(Key); }
1340 
1341   iterator erase(iterator It) { return base_type::erase(It); }
1342 };
1343 
1344 using NameFunctionSamples = std::pair<hash_code, const FunctionSamples *>;
1345 
1346 void sortFuncProfiles(const SampleProfileMap &ProfileMap,
1347                       std::vector<NameFunctionSamples> &SortedProfiles);
1348 
1349 /// Sort a LocationT->SampleT map by LocationT.
1350 ///
1351 /// It produces a sorted list of <LocationT, SampleT> records by ascending
1352 /// order of LocationT.
1353 template <class LocationT, class SampleT> class SampleSorter {
1354 public:
1355   using SamplesWithLoc = std::pair<const LocationT, SampleT>;
1356   using SamplesWithLocList = SmallVector<const SamplesWithLoc *, 20>;
1357 
1358   SampleSorter(const std::map<LocationT, SampleT> &Samples) {
1359     for (const auto &I : Samples)
1360       V.push_back(&I);
1361     llvm::stable_sort(V, [](const SamplesWithLoc *A, const SamplesWithLoc *B) {
1362       return A->first < B->first;
1363     });
1364   }
1365 
1366   const SamplesWithLocList &get() const { return V; }
1367 
1368 private:
1369   SamplesWithLocList V;
1370 };
1371 
1372 /// SampleContextTrimmer impelements helper functions to trim, merge cold
1373 /// context profiles. It also supports context profile canonicalization to make
1374 /// sure ProfileMap's key is consistent with FunctionSample's name/context.
1375 class SampleContextTrimmer {
1376 public:
1377   SampleContextTrimmer(SampleProfileMap &Profiles) : ProfileMap(Profiles){};
1378   // Trim and merge cold context profile when requested. TrimBaseProfileOnly
1379   // should only be effective when TrimColdContext is true. On top of
1380   // TrimColdContext, TrimBaseProfileOnly can be used to specify to trim all
1381   // cold profiles or only cold base profiles. Trimming base profiles only is
1382   // mainly to honor the preinliner decsion. Note that when MergeColdContext is
1383   // true, preinliner decsion is not honored anyway so TrimBaseProfileOnly will
1384   // be ignored.
1385   void trimAndMergeColdContextProfiles(uint64_t ColdCountThreshold,
1386                                        bool TrimColdContext,
1387                                        bool MergeColdContext,
1388                                        uint32_t ColdContextFrameLength,
1389                                        bool TrimBaseProfileOnly);
1390 
1391 private:
1392   SampleProfileMap &ProfileMap;
1393 };
1394 
1395 /// Helper class for profile conversion.
1396 ///
1397 /// It supports full context-sensitive profile to nested profile conversion,
1398 /// nested profile to flatten profile conversion, etc.
1399 class ProfileConverter {
1400 public:
1401   ProfileConverter(SampleProfileMap &Profiles);
1402   // Convert a full context-sensitive flat sample profile into a nested sample
1403   // profile.
1404   void convertCSProfiles();
1405   struct FrameNode {
1406     FrameNode(FunctionId FName = FunctionId(),
1407               FunctionSamples *FSamples = nullptr,
1408               LineLocation CallLoc = {0, 0})
1409         : FuncName(FName), FuncSamples(FSamples), CallSiteLoc(CallLoc){};
1410 
1411     // Map line+discriminator location to child frame
1412     std::map<uint64_t, FrameNode> AllChildFrames;
1413     // Function name for current frame
1414     FunctionId FuncName;
1415     // Function Samples for current frame
1416     FunctionSamples *FuncSamples;
1417     // Callsite location in parent context
1418     LineLocation CallSiteLoc;
1419 
1420     FrameNode *getOrCreateChildFrame(const LineLocation &CallSite,
1421                                      FunctionId CalleeName);
1422   };
1423 
1424   static void flattenProfile(SampleProfileMap &ProfileMap,
1425                              bool ProfileIsCS = false) {
1426     SampleProfileMap TmpProfiles;
1427     flattenProfile(ProfileMap, TmpProfiles, ProfileIsCS);
1428     ProfileMap = std::move(TmpProfiles);
1429   }
1430 
1431   static void flattenProfile(const SampleProfileMap &InputProfiles,
1432                              SampleProfileMap &OutputProfiles,
1433                              bool ProfileIsCS = false) {
1434     if (ProfileIsCS) {
1435       for (const auto &I : InputProfiles) {
1436         // Retain the profile name and clear the full context for each function
1437         // profile.
1438         FunctionSamples &FS = OutputProfiles.create(I.second.getFunction());
1439         FS.merge(I.second);
1440       }
1441     } else {
1442       for (const auto &I : InputProfiles)
1443         flattenNestedProfile(OutputProfiles, I.second);
1444     }
1445   }
1446 
1447 private:
1448   static void flattenNestedProfile(SampleProfileMap &OutputProfiles,
1449                                    const FunctionSamples &FS) {
1450     // To retain the context, checksum, attributes of the original profile, make
1451     // a copy of it if no profile is found.
1452     SampleContext &Context = FS.getContext();
1453     auto Ret = OutputProfiles.try_emplace(Context, FS);
1454     FunctionSamples &Profile = Ret.first->second;
1455     if (Ret.second) {
1456       // Clear nested inlinees' samples for the flattened copy. These inlinees
1457       // will have their own top-level entries after flattening.
1458       Profile.removeAllCallsiteSamples();
1459       // We recompute TotalSamples later, so here set to zero.
1460       Profile.setTotalSamples(0);
1461     } else {
1462       for (const auto &[LineLocation, SampleRecord] : FS.getBodySamples()) {
1463         Profile.addSampleRecord(LineLocation, SampleRecord);
1464       }
1465     }
1466 
1467     assert(Profile.getCallsiteSamples().empty() &&
1468            "There should be no inlinees' profiles after flattening.");
1469 
1470     // TotalSamples might not be equal to the sum of all samples from
1471     // BodySamples and CallsiteSamples. So here we use "TotalSamples =
1472     // Original_TotalSamples - All_of_Callsite_TotalSamples +
1473     // All_of_Callsite_HeadSamples" to compute the new TotalSamples.
1474     uint64_t TotalSamples = FS.getTotalSamples();
1475 
1476     for (const auto &I : FS.getCallsiteSamples()) {
1477       for (const auto &Callee : I.second) {
1478         const auto &CalleeProfile = Callee.second;
1479         // Add body sample.
1480         Profile.addBodySamples(I.first.LineOffset, I.first.Discriminator,
1481                                CalleeProfile.getHeadSamplesEstimate());
1482         // Add callsite sample.
1483         Profile.addCalledTargetSamples(
1484             I.first.LineOffset, I.first.Discriminator,
1485             CalleeProfile.getFunction(),
1486             CalleeProfile.getHeadSamplesEstimate());
1487         // Update total samples.
1488         TotalSamples = TotalSamples >= CalleeProfile.getTotalSamples()
1489                            ? TotalSamples - CalleeProfile.getTotalSamples()
1490                            : 0;
1491         TotalSamples += CalleeProfile.getHeadSamplesEstimate();
1492         // Recursively convert callee profile.
1493         flattenNestedProfile(OutputProfiles, CalleeProfile);
1494       }
1495     }
1496     Profile.addTotalSamples(TotalSamples);
1497 
1498     Profile.setHeadSamples(Profile.getHeadSamplesEstimate());
1499   }
1500 
1501   // Nest all children profiles into the profile of Node.
1502   void convertCSProfiles(FrameNode &Node);
1503   FrameNode *getOrCreateContextPath(const SampleContext &Context);
1504 
1505   SampleProfileMap &ProfileMap;
1506   FrameNode RootFrame;
1507 };
1508 
1509 /// ProfileSymbolList records the list of function symbols shown up
1510 /// in the binary used to generate the profile. It is useful to
1511 /// to discriminate a function being so cold as not to shown up
1512 /// in the profile and a function newly added.
1513 class ProfileSymbolList {
1514 public:
1515   /// copy indicates whether we need to copy the underlying memory
1516   /// for the input Name.
1517   void add(StringRef Name, bool Copy = false) {
1518     if (!Copy) {
1519       Syms.insert(Name);
1520       return;
1521     }
1522     Syms.insert(Name.copy(Allocator));
1523   }
1524 
1525   bool contains(StringRef Name) { return Syms.count(Name); }
1526 
1527   void merge(const ProfileSymbolList &List) {
1528     for (auto Sym : List.Syms)
1529       add(Sym, true);
1530   }
1531 
1532   unsigned size() { return Syms.size(); }
1533 
1534   void setToCompress(bool TC) { ToCompress = TC; }
1535   bool toCompress() { return ToCompress; }
1536 
1537   std::error_code read(const uint8_t *Data, uint64_t ListSize);
1538   std::error_code write(raw_ostream &OS);
1539   void dump(raw_ostream &OS = dbgs()) const;
1540 
1541 private:
1542   // Determine whether or not to compress the symbol list when
1543   // writing it into profile. The variable is unused when the symbol
1544   // list is read from an existing profile.
1545   bool ToCompress = false;
1546   DenseSet<StringRef> Syms;
1547   BumpPtrAllocator Allocator;
1548 };
1549 
1550 } // end namespace sampleprof
1551 
1552 using namespace sampleprof;
1553 // Provide DenseMapInfo for SampleContext.
1554 template <> struct DenseMapInfo<SampleContext> {
1555   static inline SampleContext getEmptyKey() { return SampleContext(); }
1556 
1557   static inline SampleContext getTombstoneKey() {
1558     return SampleContext(FunctionId(~1ULL));
1559   }
1560 
1561   static unsigned getHashValue(const SampleContext &Val) {
1562     return Val.getHashCode();
1563   }
1564 
1565   static bool isEqual(const SampleContext &LHS, const SampleContext &RHS) {
1566     return LHS == RHS;
1567   }
1568 };
1569 
1570 // Prepend "__uniq" before the hash for tools like profilers to understand
1571 // that this symbol is of internal linkage type.  The "__uniq" is the
1572 // pre-determined prefix that is used to tell tools that this symbol was
1573 // created with -funique-internal-linkage-symbols and the tools can strip or
1574 // keep the prefix as needed.
1575 inline std::string getUniqueInternalLinkagePostfix(const StringRef &FName) {
1576   llvm::MD5 Md5;
1577   Md5.update(FName);
1578   llvm::MD5::MD5Result R;
1579   Md5.final(R);
1580   SmallString<32> Str;
1581   llvm::MD5::stringifyResult(R, Str);
1582   // Convert MD5hash to Decimal. Demangler suffixes can either contain
1583   // numbers or characters but not both.
1584   llvm::APInt IntHash(128, Str.str(), 16);
1585   return toString(IntHash, /* Radix = */ 10, /* Signed = */ false)
1586       .insert(0, FunctionSamples::UniqSuffix);
1587 }
1588 
1589 } // end namespace llvm
1590 
1591 #endif // LLVM_PROFILEDATA_SAMPLEPROF_H