mirror of
https://github.com/RPCSX/llvm.git
synced 2026-01-31 01:05:23 +01:00
The number of samples collected at the head of a function only make sense for top-level functions (i.e., those actually called as opposed to being inlined inside another). Head samples essentially count the time spent inside the function's prologue. This clearly doesn't make sense for inlined functions, so we were always emitting 0 in those. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@250539 91177308-0d34-0410-b5e6-96231b3b80d8
330 lines
12 KiB
C++
330 lines
12 KiB
C++
//=-- SampleProf.h - Sampling profiling format support --------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file contains common definitions used in the reading and writing of
|
|
// sample profile data.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
#ifndef LLVM_PROFILEDATA_SAMPLEPROF_H_
|
|
#define LLVM_PROFILEDATA_SAMPLEPROF_H_
|
|
|
|
#include "llvm/ADT/DenseMap.h"
|
|
#include "llvm/ADT/SmallVector.h"
|
|
#include "llvm/ADT/StringMap.h"
|
|
#include "llvm/Support/Debug.h"
|
|
#include "llvm/Support/ErrorOr.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
#include <system_error>
|
|
|
|
namespace llvm {
|
|
|
|
const std::error_category &sampleprof_category();
|
|
|
|
enum class sampleprof_error {
|
|
success = 0,
|
|
bad_magic,
|
|
unsupported_version,
|
|
too_large,
|
|
truncated,
|
|
malformed,
|
|
unrecognized_format,
|
|
unsupported_writing_format,
|
|
truncated_name_table,
|
|
not_implemented
|
|
};
|
|
|
|
inline std::error_code make_error_code(sampleprof_error E) {
|
|
return std::error_code(static_cast<int>(E), sampleprof_category());
|
|
}
|
|
|
|
} // end namespace llvm
|
|
|
|
namespace std {
|
|
template <>
|
|
struct is_error_code_enum<llvm::sampleprof_error> : std::true_type {};
|
|
}
|
|
|
|
namespace llvm {
|
|
|
|
namespace sampleprof {
|
|
|
|
static inline uint64_t SPMagic() {
|
|
return uint64_t('S') << (64 - 8) | uint64_t('P') << (64 - 16) |
|
|
uint64_t('R') << (64 - 24) | uint64_t('O') << (64 - 32) |
|
|
uint64_t('F') << (64 - 40) | uint64_t('4') << (64 - 48) |
|
|
uint64_t('2') << (64 - 56) | uint64_t(0xff);
|
|
}
|
|
|
|
static inline uint64_t SPVersion() { return 102; }
|
|
|
|
/// Represents the relative location of an instruction.
|
|
///
|
|
/// Instruction locations are specified by the line offset from the
|
|
/// beginning of the function (marked by the line where the function
|
|
/// header is) and the discriminator value within that line.
|
|
///
|
|
/// The discriminator value is useful to distinguish instructions
|
|
/// that are on the same line but belong to different basic blocks
|
|
/// (e.g., the two post-increment instructions in "if (p) x++; else y++;").
|
|
struct LineLocation {
|
|
LineLocation(uint32_t L, uint32_t D) : LineOffset(L), Discriminator(D) {}
|
|
uint32_t LineOffset;
|
|
uint32_t Discriminator;
|
|
};
|
|
|
|
/// Represents the relative location of a callsite.
|
|
///
|
|
/// Callsite locations are specified by the line offset from the
|
|
/// beginning of the function (marked by the line where the function
|
|
/// head is), the discriminator value within that line, and the callee
|
|
/// function name.
|
|
struct CallsiteLocation : public LineLocation {
|
|
CallsiteLocation(uint32_t L, uint32_t D, StringRef N)
|
|
: LineLocation(L, D), CalleeName(N) {}
|
|
StringRef CalleeName;
|
|
};
|
|
|
|
} // End namespace sampleprof
|
|
|
|
template <> struct DenseMapInfo<sampleprof::LineLocation> {
|
|
typedef DenseMapInfo<uint32_t> OffsetInfo;
|
|
typedef DenseMapInfo<uint32_t> DiscriminatorInfo;
|
|
static inline sampleprof::LineLocation getEmptyKey() {
|
|
return sampleprof::LineLocation(OffsetInfo::getEmptyKey(),
|
|
DiscriminatorInfo::getEmptyKey());
|
|
}
|
|
static inline sampleprof::LineLocation getTombstoneKey() {
|
|
return sampleprof::LineLocation(OffsetInfo::getTombstoneKey(),
|
|
DiscriminatorInfo::getTombstoneKey());
|
|
}
|
|
static inline unsigned getHashValue(sampleprof::LineLocation Val) {
|
|
return DenseMapInfo<std::pair<uint32_t, uint32_t>>::getHashValue(
|
|
std::pair<uint32_t, uint32_t>(Val.LineOffset, Val.Discriminator));
|
|
}
|
|
static inline bool isEqual(sampleprof::LineLocation LHS,
|
|
sampleprof::LineLocation RHS) {
|
|
return LHS.LineOffset == RHS.LineOffset &&
|
|
LHS.Discriminator == RHS.Discriminator;
|
|
}
|
|
};
|
|
|
|
template <> struct DenseMapInfo<sampleprof::CallsiteLocation> {
|
|
typedef DenseMapInfo<uint32_t> OffsetInfo;
|
|
typedef DenseMapInfo<uint32_t> DiscriminatorInfo;
|
|
typedef DenseMapInfo<StringRef> CalleeNameInfo;
|
|
static inline sampleprof::CallsiteLocation getEmptyKey() {
|
|
return sampleprof::CallsiteLocation(OffsetInfo::getEmptyKey(),
|
|
DiscriminatorInfo::getEmptyKey(), "");
|
|
}
|
|
static inline sampleprof::CallsiteLocation getTombstoneKey() {
|
|
return sampleprof::CallsiteLocation(OffsetInfo::getTombstoneKey(),
|
|
DiscriminatorInfo::getTombstoneKey(),
|
|
"");
|
|
}
|
|
static inline unsigned getHashValue(sampleprof::CallsiteLocation Val) {
|
|
return DenseMapInfo<std::pair<uint32_t, uint32_t>>::getHashValue(
|
|
std::pair<uint32_t, uint32_t>(Val.LineOffset, Val.Discriminator));
|
|
}
|
|
static inline bool isEqual(sampleprof::CallsiteLocation LHS,
|
|
sampleprof::CallsiteLocation RHS) {
|
|
return LHS.LineOffset == RHS.LineOffset &&
|
|
LHS.Discriminator == RHS.Discriminator &&
|
|
LHS.CalleeName.equals(RHS.CalleeName);
|
|
}
|
|
};
|
|
|
|
namespace sampleprof {
|
|
|
|
/// Representation of a single sample record.
|
|
///
|
|
/// A sample record is represented by a positive integer value, which
|
|
/// indicates how frequently was the associated line location executed.
|
|
///
|
|
/// Additionally, if the associated location contains a function call,
|
|
/// the record will hold a list of all the possible called targets. For
|
|
/// direct calls, this will be the exact function being invoked. For
|
|
/// indirect calls (function pointers, virtual table dispatch), this
|
|
/// will be a list of one or more functions.
|
|
class SampleRecord {
|
|
public:
|
|
typedef StringMap<uint64_t> CallTargetMap;
|
|
|
|
SampleRecord() : NumSamples(0), CallTargets() {}
|
|
|
|
/// Increment the number of samples for this record by \p S.
|
|
///
|
|
/// Sample counts accumulate using saturating arithmetic, to avoid wrapping
|
|
/// around unsigned integers.
|
|
void addSamples(uint64_t S) {
|
|
if (NumSamples <= std::numeric_limits<uint64_t>::max() - S)
|
|
NumSamples += S;
|
|
else
|
|
NumSamples = std::numeric_limits<uint64_t>::max();
|
|
}
|
|
|
|
/// Add called function \p F with samples \p S.
|
|
///
|
|
/// Sample counts accumulate using saturating arithmetic, to avoid wrapping
|
|
/// around unsigned integers.
|
|
void addCalledTarget(StringRef F, uint64_t S) {
|
|
uint64_t &TargetSamples = CallTargets[F];
|
|
if (TargetSamples <= std::numeric_limits<uint64_t>::max() - S)
|
|
TargetSamples += S;
|
|
else
|
|
TargetSamples = std::numeric_limits<uint64_t>::max();
|
|
}
|
|
|
|
/// Return true if this sample record contains function calls.
|
|
bool hasCalls() const { return CallTargets.size() > 0; }
|
|
|
|
uint64_t getSamples() const { return NumSamples; }
|
|
const CallTargetMap &getCallTargets() const { return CallTargets; }
|
|
|
|
/// Merge the samples in \p Other into this record.
|
|
void merge(const SampleRecord &Other) {
|
|
addSamples(Other.getSamples());
|
|
for (const auto &I : Other.getCallTargets())
|
|
addCalledTarget(I.first(), I.second);
|
|
}
|
|
|
|
private:
|
|
uint64_t NumSamples;
|
|
CallTargetMap CallTargets;
|
|
};
|
|
|
|
typedef DenseMap<LineLocation, SampleRecord> BodySampleMap;
|
|
class FunctionSamples;
|
|
typedef DenseMap<CallsiteLocation, FunctionSamples> CallsiteSampleMap;
|
|
|
|
/// Representation of the samples collected for a function.
|
|
///
|
|
/// This data structure contains all the collected samples for the body
|
|
/// of a function. Each sample corresponds to a LineLocation instance
|
|
/// within the body of the function.
|
|
class FunctionSamples {
|
|
public:
|
|
FunctionSamples() : TotalSamples(0), TotalHeadSamples(0) {}
|
|
void print(raw_ostream &OS = dbgs(), unsigned Indent = 0) const;
|
|
void addTotalSamples(uint64_t Num) { TotalSamples += Num; }
|
|
void addHeadSamples(uint64_t Num) { TotalHeadSamples += Num; }
|
|
void addBodySamples(uint32_t LineOffset, uint32_t Discriminator,
|
|
uint64_t Num) {
|
|
BodySamples[LineLocation(LineOffset, Discriminator)].addSamples(Num);
|
|
}
|
|
void addCalledTargetSamples(uint32_t LineOffset, uint32_t Discriminator,
|
|
std::string FName, uint64_t Num) {
|
|
BodySamples[LineLocation(LineOffset, Discriminator)].addCalledTarget(FName,
|
|
Num);
|
|
}
|
|
|
|
/// Return the number of samples collected at the given location.
|
|
/// Each location is specified by \p LineOffset and \p Discriminator.
|
|
/// If the location is not found in profile, return error.
|
|
ErrorOr<uint64_t> findSamplesAt(uint32_t LineOffset,
|
|
uint32_t Discriminator) const {
|
|
const auto &ret = BodySamples.find(LineLocation(LineOffset, Discriminator));
|
|
if (ret == BodySamples.end())
|
|
return std::error_code();
|
|
else
|
|
return ret->second.getSamples();
|
|
}
|
|
|
|
/// Return the function samples at the given callsite location.
|
|
FunctionSamples &functionSamplesAt(const CallsiteLocation &Loc) {
|
|
return CallsiteSamples[Loc];
|
|
}
|
|
|
|
/// Return a pointer to function samples at the given callsite location.
|
|
const FunctionSamples *
|
|
findFunctionSamplesAt(const CallsiteLocation &Loc) const {
|
|
auto iter = CallsiteSamples.find(Loc);
|
|
if (iter == CallsiteSamples.end()) {
|
|
return NULL;
|
|
} else {
|
|
return &iter->second;
|
|
}
|
|
}
|
|
|
|
bool empty() const { return TotalSamples == 0; }
|
|
|
|
/// Return the total number of samples collected inside the function.
|
|
uint64_t getTotalSamples() const { return TotalSamples; }
|
|
|
|
/// Return the total number of samples collected at the head of the
|
|
/// function.
|
|
uint64_t getHeadSamples() const { return TotalHeadSamples; }
|
|
|
|
/// Return all the samples collected in the body of the function.
|
|
const BodySampleMap &getBodySamples() const { return BodySamples; }
|
|
|
|
/// Return all the callsite samples collected in the body of the function.
|
|
const CallsiteSampleMap &getCallsiteSamples() const {
|
|
return CallsiteSamples;
|
|
}
|
|
|
|
/// Merge the samples in \p Other into this one.
|
|
void merge(const FunctionSamples &Other) {
|
|
addTotalSamples(Other.getTotalSamples());
|
|
addHeadSamples(Other.getHeadSamples());
|
|
for (const auto &I : Other.getBodySamples()) {
|
|
const LineLocation &Loc = I.first;
|
|
const SampleRecord &Rec = I.second;
|
|
BodySamples[Loc].merge(Rec);
|
|
}
|
|
for (const auto &I : Other.getCallsiteSamples()) {
|
|
const CallsiteLocation &Loc = I.first;
|
|
const FunctionSamples &Rec = I.second;
|
|
functionSamplesAt(Loc).merge(Rec);
|
|
}
|
|
}
|
|
|
|
private:
|
|
/// Total number of samples collected inside this function.
|
|
///
|
|
/// Samples are cumulative, they include all the samples collected
|
|
/// inside this function and all its inlined callees.
|
|
uint64_t TotalSamples;
|
|
|
|
/// Total number of samples collected at the head of the function.
|
|
/// This is an approximation of the number of calls made to this function
|
|
/// at runtime.
|
|
uint64_t TotalHeadSamples;
|
|
|
|
/// Map instruction locations to collected samples.
|
|
///
|
|
/// Each entry in this map contains the number of samples
|
|
/// collected at the corresponding line offset. All line locations
|
|
/// are an offset from the start of the function.
|
|
BodySampleMap BodySamples;
|
|
|
|
/// Map call sites to collected samples for the called function.
|
|
///
|
|
/// Each entry in this map corresponds to all the samples
|
|
/// collected for the inlined function call at the given
|
|
/// location. For example, given:
|
|
///
|
|
/// void foo() {
|
|
/// 1 bar();
|
|
/// ...
|
|
/// 8 baz();
|
|
/// }
|
|
///
|
|
/// If the bar() and baz() calls were inlined inside foo(), this
|
|
/// map will contain two entries. One for all the samples collected
|
|
/// in the call to bar() at line offset 1, the other for all the samples
|
|
/// collected in the call to baz() at line offset 8.
|
|
CallsiteSampleMap CallsiteSamples;
|
|
};
|
|
|
|
} // End namespace sampleprof
|
|
|
|
} // End namespace llvm
|
|
|
|
#endif // LLVM_PROFILEDATA_SAMPLEPROF_H_
|