diff options
Diffstat (limited to 'llvm/include')
-rw-r--r-- | llvm/include/llvm/ProfileData/InstrProf.h | 76 | ||||
-rw-r--r-- | llvm/include/llvm/ProfileData/ProfileCommon.h | 90 |
2 files changed, 91 insertions, 75 deletions
diff --git a/llvm/include/llvm/ProfileData/InstrProf.h b/llvm/include/llvm/ProfileData/InstrProf.h index 2d48c37c796..2ee9fa4fcfc 100644 --- a/llvm/include/llvm/ProfileData/InstrProf.h +++ b/llvm/include/llvm/ProfileData/InstrProf.h @@ -21,6 +21,7 @@ #include "llvm/ADT/StringSet.h" #include "llvm/IR/GlobalValue.h" #include "llvm/ProfileData/InstrProfData.inc" +#include "llvm/ProfileData/ProfileCommon.h" #include "llvm/Support/Endian.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/ErrorOr.h" @@ -604,81 +605,6 @@ serializeValueProfDataFromRT(const ValueProfRuntimeRecord *Record, ValueProfData *Dst); namespace IndexedInstrProf { -struct Summary; -} - -///// Profile summary computation //// -// The 'show' command displays richer summary of the profile data. The profile -// summary is one or more (Cutoff, MinBlockCount, NumBlocks) triplets. Given a -// target execution count percentile, we compute the minimum number of blocks -// needed to reach this target and the minimum execution count of these blocks. -struct ProfileSummaryEntry { - uint32_t Cutoff; ///< The required percentile of total execution count. - uint64_t MinBlockCount; ///< The minimum execution count for this percentile. - uint64_t NumBlocks; ///< Number of blocks >= the minumum execution count. - ProfileSummaryEntry(uint32_t TheCutoff, uint64_t TheMinBlockCount, - uint64_t TheNumBlocks) - : Cutoff(TheCutoff), MinBlockCount(TheMinBlockCount), - NumBlocks(TheNumBlocks) {} -}; - -class ProfileSummary { - // We keep track of the number of times a count appears in the profile and - // keep the map sorted in the descending order of counts. - std::map<uint64_t, uint32_t, std::greater<uint64_t>> CountFrequencies; - std::vector<ProfileSummaryEntry> DetailedSummary; - std::vector<uint32_t> DetailedSummaryCutoffs; - // Sum of all counts. - uint64_t TotalCount; - uint64_t MaxBlockCount, MaxInternalBlockCount, MaxFunctionCount; - uint32_t NumBlocks, NumFunctions; - inline void addCount(uint64_t Count, bool IsEntry); - -public: - static const int Scale = 1000000; - ProfileSummary(std::vector<uint32_t> Cutoffs) - : DetailedSummaryCutoffs(Cutoffs), TotalCount(0), MaxBlockCount(0), - MaxInternalBlockCount(0), MaxFunctionCount(0), NumBlocks(0), - NumFunctions(0) {} - ProfileSummary(const IndexedInstrProf::Summary &S); - inline void addRecord(const InstrProfRecord &); - inline std::vector<ProfileSummaryEntry> &getDetailedSummary(); - void computeDetailedSummary(); - uint32_t getNumBlocks() { return NumBlocks; } - uint64_t getTotalCount() { return TotalCount; } - uint32_t getNumFunctions() { return NumFunctions; } - uint64_t getMaxFunctionCount() { return MaxFunctionCount; } - uint64_t getMaxBlockCount() { return MaxBlockCount; } - uint64_t getMaxInternalBlockCount() { return MaxInternalBlockCount; } -}; - -// This is called when a count is seen in the profile. -void ProfileSummary::addCount(uint64_t Count, bool IsEntry) { - TotalCount += Count; - if (Count > MaxBlockCount) - MaxBlockCount = Count; - if (!IsEntry && Count > MaxInternalBlockCount) - MaxInternalBlockCount = Count; - NumBlocks++; - CountFrequencies[Count]++; -} - -void ProfileSummary::addRecord(const InstrProfRecord &R) { - NumFunctions++; - if (R.Counts[0] > MaxFunctionCount) - MaxFunctionCount = R.Counts[0]; - - for (size_t I = 0, E = R.Counts.size(); I < E; ++I) - addCount(R.Counts[I], (I == 0)); -} - -std::vector<ProfileSummaryEntry> &ProfileSummary::getDetailedSummary() { - if (!DetailedSummaryCutoffs.empty() && DetailedSummary.empty()) - computeDetailedSummary(); - return DetailedSummary; -} - -namespace IndexedInstrProf { enum class HashT : uint32_t { MD5, diff --git a/llvm/include/llvm/ProfileData/ProfileCommon.h b/llvm/include/llvm/ProfileData/ProfileCommon.h new file mode 100644 index 00000000000..afdfdfcc78f --- /dev/null +++ b/llvm/include/llvm/ProfileData/ProfileCommon.h @@ -0,0 +1,90 @@ +//===-- ProfileCommon.h - Common profiling APIs. ----------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file contains data structures and functions common to both instrumented +// and sample profiling. +// +//===----------------------------------------------------------------------===// + +#include <cstdint> +#include <map> +#include <vector> + +#ifndef LLVM_PROFILEDATA_PROFILE_COMMON_H +#define LLVM_PROFILEDATA_PROFILE_COMMON_H + +namespace llvm { +namespace IndexedInstrProf { +struct Summary; +} +class InstrProfRecord; +///// Profile summary computation //// +// The 'show' command displays richer summary of the profile data. The profile +// summary is one or more (Cutoff, MinBlockCount, NumBlocks) triplets. Given a +// target execution count percentile, we compute the minimum number of blocks +// needed to reach this target and the minimum execution count of these blocks. +struct ProfileSummaryEntry { + uint32_t Cutoff; ///< The required percentile of total execution count. + uint64_t MinBlockCount; ///< The minimum execution count for this percentile. + uint64_t NumBlocks; ///< Number of blocks >= the minumum execution count. + ProfileSummaryEntry(uint32_t TheCutoff, uint64_t TheMinBlockCount, + uint64_t TheNumBlocks) + : Cutoff(TheCutoff), MinBlockCount(TheMinBlockCount), + NumBlocks(TheNumBlocks) {} +}; + +class ProfileSummary { + // We keep track of the number of times a count appears in the profile and + // keep the map sorted in the descending order of counts. + std::map<uint64_t, uint32_t, std::greater<uint64_t>> CountFrequencies; + std::vector<ProfileSummaryEntry> DetailedSummary; + std::vector<uint32_t> DetailedSummaryCutoffs; + // Sum of all counts. + uint64_t TotalCount; + uint64_t MaxBlockCount, MaxInternalBlockCount, MaxFunctionCount; + uint32_t NumBlocks, NumFunctions; + inline void addCount(uint64_t Count, bool IsEntry); + +public: + static const int Scale = 1000000; + ProfileSummary(std::vector<uint32_t> Cutoffs) + : DetailedSummaryCutoffs(Cutoffs), TotalCount(0), MaxBlockCount(0), + MaxInternalBlockCount(0), MaxFunctionCount(0), NumBlocks(0), + NumFunctions(0) {} + ProfileSummary(const IndexedInstrProf::Summary &S); + void addRecord(const InstrProfRecord &); + inline std::vector<ProfileSummaryEntry> &getDetailedSummary(); + void computeDetailedSummary(); + uint32_t getNumBlocks() { return NumBlocks; } + uint64_t getTotalCount() { return TotalCount; } + uint32_t getNumFunctions() { return NumFunctions; } + uint64_t getMaxFunctionCount() { return MaxFunctionCount; } + uint64_t getMaxBlockCount() { return MaxBlockCount; } + uint64_t getMaxInternalBlockCount() { return MaxInternalBlockCount; } +}; + +// This is called when a count is seen in the profile. +void ProfileSummary::addCount(uint64_t Count, bool IsEntry) { + TotalCount += Count; + if (Count > MaxBlockCount) + MaxBlockCount = Count; + if (!IsEntry && Count > MaxInternalBlockCount) + MaxInternalBlockCount = Count; + NumBlocks++; + CountFrequencies[Count]++; +} + +std::vector<ProfileSummaryEntry> &ProfileSummary::getDetailedSummary() { + if (!DetailedSummaryCutoffs.empty() && DetailedSummary.empty()) + computeDetailedSummary(); + return DetailedSummary; +} + +} // end namespace llvm +#endif |