2016-01-26 18:48:36 +00:00
|
|
|
//===-- InstrProf.h - Instrumented profiling format support -----*- C++ -*-===//
|
2014-03-21 17:24:48 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Instrumentation-based profiling data is generated by instrumented
|
|
|
|
// binaries through library functions in compiler-rt, and read by the clang
|
|
|
|
// frontend to feed PGO.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2016-01-26 18:48:36 +00:00
|
|
|
#ifndef LLVM_PROFILEDATA_INSTRPROF_H
|
|
|
|
#define LLVM_PROFILEDATA_INSTRPROF_H
|
2014-03-21 17:24:48 +00:00
|
|
|
|
2015-12-05 05:16:36 +00:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2015-10-18 01:02:29 +00:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2015-09-29 22:13:58 +00:00
|
|
|
#include "llvm/ADT/StringSet.h"
|
2016-04-01 16:43:30 +00:00
|
|
|
#include "llvm/IR/Function.h"
|
2015-11-09 00:01:22 +00:00
|
|
|
#include "llvm/IR/GlobalValue.h"
|
2016-04-01 16:43:30 +00:00
|
|
|
#include "llvm/IR/Metadata.h"
|
2015-11-22 02:05:50 +00:00
|
|
|
#include "llvm/ProfileData/InstrProfData.inc"
|
2016-02-04 23:34:31 +00:00
|
|
|
#include "llvm/ProfileData/ProfileCommon.h"
|
2015-10-18 01:02:29 +00:00
|
|
|
#include "llvm/Support/Endian.h"
|
2015-09-29 22:13:58 +00:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2015-11-10 00:24:45 +00:00
|
|
|
#include "llvm/Support/ErrorOr.h"
|
2015-10-18 01:02:29 +00:00
|
|
|
#include "llvm/Support/MD5.h"
|
2016-02-04 05:29:51 +00:00
|
|
|
#include "llvm/Support/MathExtras.h"
|
2015-06-22 23:58:05 +00:00
|
|
|
#include <cstdint>
|
2015-09-29 22:13:58 +00:00
|
|
|
#include <list>
|
2016-01-14 22:10:49 +00:00
|
|
|
#include <map>
|
2014-06-12 17:38:55 +00:00
|
|
|
#include <system_error>
|
2015-06-22 23:58:05 +00:00
|
|
|
#include <vector>
|
2014-03-21 17:24:48 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2015-10-22 20:32:12 +00:00
|
|
|
|
2015-11-09 00:01:22 +00:00
|
|
|
class Function;
|
|
|
|
class GlobalVariable;
|
|
|
|
class Module;
|
|
|
|
|
2015-10-23 04:22:58 +00:00
|
|
|
/// Return the name of data section containing profile counter variables.
|
2015-10-22 20:32:12 +00:00
|
|
|
inline StringRef getInstrProfCountersSectionName(bool AddSegment) {
|
2015-11-22 05:42:31 +00:00
|
|
|
return AddSegment ? "__DATA," INSTR_PROF_CNTS_SECT_NAME_STR
|
|
|
|
: INSTR_PROF_CNTS_SECT_NAME_STR;
|
2015-10-22 20:32:12 +00:00
|
|
|
}
|
|
|
|
|
2015-10-23 04:22:58 +00:00
|
|
|
/// Return the name of data section containing names of instrumented
|
|
|
|
/// functions.
|
2015-10-22 20:32:12 +00:00
|
|
|
inline StringRef getInstrProfNameSectionName(bool AddSegment) {
|
2015-11-22 05:42:31 +00:00
|
|
|
return AddSegment ? "__DATA," INSTR_PROF_NAME_SECT_NAME_STR
|
|
|
|
: INSTR_PROF_NAME_SECT_NAME_STR;
|
2015-10-22 20:32:12 +00:00
|
|
|
}
|
|
|
|
|
2015-10-23 04:22:58 +00:00
|
|
|
/// Return the name of the data section containing per-function control
|
|
|
|
/// data.
|
2015-10-22 20:32:12 +00:00
|
|
|
inline StringRef getInstrProfDataSectionName(bool AddSegment) {
|
2015-11-22 05:42:31 +00:00
|
|
|
return AddSegment ? "__DATA," INSTR_PROF_DATA_SECT_NAME_STR
|
|
|
|
: INSTR_PROF_DATA_SECT_NAME_STR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return the name profile runtime entry point to do value profiling
|
|
|
|
/// for a given site.
|
|
|
|
inline StringRef getInstrProfValueProfFuncName() {
|
|
|
|
return INSTR_PROF_VALUE_PROF_FUNC_STR;
|
2015-10-22 20:32:12 +00:00
|
|
|
}
|
|
|
|
|
2015-10-23 04:22:58 +00:00
|
|
|
/// Return the name of the section containing function coverage mapping
|
|
|
|
/// data.
|
2015-10-22 20:32:12 +00:00
|
|
|
inline StringRef getInstrProfCoverageSectionName(bool AddSegment) {
|
2016-01-07 22:46:29 +00:00
|
|
|
return AddSegment ? "__DATA," INSTR_PROF_COVMAP_SECT_NAME_STR
|
|
|
|
: INSTR_PROF_COVMAP_SECT_NAME_STR;
|
2015-10-22 20:32:12 +00:00
|
|
|
}
|
|
|
|
|
2015-10-23 04:22:58 +00:00
|
|
|
/// Return the name prefix of variables containing instrumented function names.
|
2015-12-15 00:32:56 +00:00
|
|
|
inline StringRef getInstrProfNameVarPrefix() { return "__profn_"; }
|
2015-10-22 20:32:12 +00:00
|
|
|
|
2015-10-23 04:22:58 +00:00
|
|
|
/// Return the name prefix of variables containing per-function control data.
|
2015-12-15 00:32:56 +00:00
|
|
|
inline StringRef getInstrProfDataVarPrefix() { return "__profd_"; }
|
2015-10-22 20:32:12 +00:00
|
|
|
|
2015-10-23 04:22:58 +00:00
|
|
|
/// Return the name prefix of profile counter variables.
|
2015-12-15 00:32:56 +00:00
|
|
|
inline StringRef getInstrProfCountersVarPrefix() { return "__profc_"; }
|
2015-10-22 20:32:12 +00:00
|
|
|
|
2015-10-23 04:22:58 +00:00
|
|
|
/// Return the name prefix of the COMDAT group for instrumentation variables
|
|
|
|
/// associated with a COMDAT function.
|
2015-12-15 00:32:56 +00:00
|
|
|
inline StringRef getInstrProfComdatPrefix() { return "__profv_"; }
|
2015-10-22 20:32:12 +00:00
|
|
|
|
2016-02-08 18:13:49 +00:00
|
|
|
/// Return the name of the variable holding the strings (possibly compressed)
|
|
|
|
/// of all function's PGO names.
|
|
|
|
inline StringRef getInstrProfNamesVarName() {
|
|
|
|
return "__llvm_prf_nm";
|
|
|
|
}
|
|
|
|
|
2015-11-24 18:15:46 +00:00
|
|
|
/// Return the name of a covarage mapping variable (internal linkage)
|
2015-10-23 04:22:58 +00:00
|
|
|
/// for each instrumented source module. Such variables are allocated
|
|
|
|
/// in the __llvm_covmap section.
|
2015-10-22 20:32:12 +00:00
|
|
|
inline StringRef getCoverageMappingVarName() {
|
|
|
|
return "__llvm_coverage_mapping";
|
|
|
|
}
|
|
|
|
|
2016-01-07 20:05:49 +00:00
|
|
|
/// Return the name of the internal variable recording the array
|
2016-01-20 00:24:36 +00:00
|
|
|
/// of PGO name vars referenced by the coverage mapping. The owning
|
2016-01-07 20:05:49 +00:00
|
|
|
/// functions of those names are not emitted by FE (e.g, unused inline
|
|
|
|
/// functions.)
|
2016-01-20 00:24:36 +00:00
|
|
|
inline StringRef getCoverageUnusedNamesVarName() {
|
|
|
|
return "__llvm_coverage_names";
|
|
|
|
}
|
2016-01-07 20:05:49 +00:00
|
|
|
|
2015-10-23 04:22:58 +00:00
|
|
|
/// Return the name of function that registers all the per-function control
|
|
|
|
/// data at program startup time by calling __llvm_register_function. This
|
|
|
|
/// function has internal linkage and is called by __llvm_profile_init
|
|
|
|
/// runtime method. This function is not generated for these platforms:
|
|
|
|
/// Darwin, Linux, and FreeBSD.
|
|
|
|
inline StringRef getInstrProfRegFuncsName() {
|
|
|
|
return "__llvm_profile_register_functions";
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return the name of the runtime interface that registers per-function control
|
|
|
|
/// data for one instrumented function.
|
|
|
|
inline StringRef getInstrProfRegFuncName() {
|
|
|
|
return "__llvm_profile_register_function";
|
|
|
|
}
|
|
|
|
|
2016-02-08 18:13:49 +00:00
|
|
|
/// Return the name of the runtime interface that registers the PGO name strings.
|
|
|
|
inline StringRef getInstrProfNamesRegFuncName() {
|
|
|
|
return "__llvm_profile_register_names_function";
|
|
|
|
}
|
|
|
|
|
2015-10-23 04:22:58 +00:00
|
|
|
/// Return the name of the runtime initialization method that is generated by
|
|
|
|
/// the compiler. The function calls __llvm_profile_register_functions and
|
|
|
|
/// __llvm_profile_override_default_filename functions if needed. This function
|
|
|
|
/// has internal linkage and invoked at startup time via init_array.
|
|
|
|
inline StringRef getInstrProfInitFuncName() { return "__llvm_profile_init"; }
|
|
|
|
|
|
|
|
/// Return the name of the hook variable defined in profile runtime library.
|
|
|
|
/// A reference to the variable causes the linker to link in the runtime
|
|
|
|
/// initialization module (which defines the hook variable).
|
|
|
|
inline StringRef getInstrProfRuntimeHookVarName() {
|
|
|
|
return "__llvm_profile_runtime";
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return the name of the compiler generated function that references the
|
|
|
|
/// runtime hook variable. The function is a weak global.
|
|
|
|
inline StringRef getInstrProfRuntimeHookVarUseFuncName() {
|
|
|
|
return "__llvm_profile_runtime_user";
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return the name of the profile runtime interface that overrides the default
|
|
|
|
/// profile data file name.
|
|
|
|
inline StringRef getInstrProfFileOverriderFuncName() {
|
|
|
|
return "__llvm_profile_override_default_filename";
|
|
|
|
}
|
|
|
|
|
2016-03-28 21:06:42 +00:00
|
|
|
/// Return the marker used to separate PGO names during serialization.
|
|
|
|
inline StringRef getInstrProfNameSeparator() { return "\01"; }
|
|
|
|
|
2015-11-09 00:01:22 +00:00
|
|
|
/// Return the modified name for function \c F suitable to be
|
2016-03-30 18:37:52 +00:00
|
|
|
/// used the key for profile lookup. Variable \c InLTO indicates if this
|
|
|
|
/// is called in LTO optimization passes.
|
|
|
|
std::string getPGOFuncName(const Function &F, bool InLTO = false,
|
2015-12-05 05:16:36 +00:00
|
|
|
uint64_t Version = INSTR_PROF_INDEX_VERSION);
|
2015-11-09 00:01:22 +00:00
|
|
|
|
|
|
|
/// Return the modified name for a function suitable to be
|
|
|
|
/// used the key for profile lookup. The function's original
|
|
|
|
/// name is \c RawFuncName and has linkage of type \c Linkage.
|
|
|
|
/// The function is defined in module \c FileName.
|
|
|
|
std::string getPGOFuncName(StringRef RawFuncName,
|
|
|
|
GlobalValue::LinkageTypes Linkage,
|
2015-12-05 05:16:36 +00:00
|
|
|
StringRef FileName,
|
|
|
|
uint64_t Version = INSTR_PROF_INDEX_VERSION);
|
2015-11-09 00:01:22 +00:00
|
|
|
|
2016-03-16 20:49:26 +00:00
|
|
|
/// Return the name of the global variable used to store a function
|
|
|
|
/// name in PGO instrumentation. \c FuncName is the name of the function
|
|
|
|
/// returned by the \c getPGOFuncName call.
|
|
|
|
std::string getPGOFuncNameVarName(StringRef FuncName,
|
|
|
|
GlobalValue::LinkageTypes Linkage);
|
|
|
|
|
2015-11-09 00:01:22 +00:00
|
|
|
/// Create and return the global variable for function name used in PGO
|
|
|
|
/// instrumentation. \c FuncName is the name of the function returned
|
|
|
|
/// by \c getPGOFuncName call.
|
2016-03-16 22:13:41 +00:00
|
|
|
GlobalVariable *createPGOFuncNameVar(Function &F, StringRef PGOFuncName);
|
2015-11-09 00:01:22 +00:00
|
|
|
|
|
|
|
/// Create and return the global variable for function name used in PGO
|
|
|
|
/// instrumentation. /// \c FuncName is the name of the function
|
|
|
|
/// returned by \c getPGOFuncName call, \c M is the owning module,
|
|
|
|
/// and \c Linkage is the linkage of the instrumented function.
|
|
|
|
GlobalVariable *createPGOFuncNameVar(Module &M,
|
|
|
|
GlobalValue::LinkageTypes Linkage,
|
2016-03-16 22:13:41 +00:00
|
|
|
StringRef PGOFuncName);
|
2016-01-03 04:38:13 +00:00
|
|
|
/// Return the initializer in string of the PGO name var \c NameVar.
|
|
|
|
StringRef getPGOFuncNameVarInitializer(GlobalVariable *NameVar);
|
2015-11-09 00:01:22 +00:00
|
|
|
|
2015-12-15 19:44:45 +00:00
|
|
|
/// Given a PGO function name, remove the filename prefix and return
|
|
|
|
/// the original (static) function name.
|
2016-03-28 15:49:08 +00:00
|
|
|
StringRef getFuncNameWithoutPrefix(StringRef PGOFuncName,
|
|
|
|
StringRef FileName = "<unknown>");
|
2015-12-15 19:44:45 +00:00
|
|
|
|
2015-12-31 07:57:16 +00:00
|
|
|
/// Given a vector of strings (function PGO names) \c NameStrs, the
|
|
|
|
/// method generates a combined string \c Result thatis ready to be
|
|
|
|
/// serialized. The \c Result string is comprised of three fields:
|
|
|
|
/// The first field is the legnth of the uncompressed strings, and the
|
|
|
|
/// the second field is the length of the zlib-compressed string.
|
|
|
|
/// Both fields are encoded in ULEB128. If \c doCompress is false, the
|
2016-02-04 19:11:43 +00:00
|
|
|
/// third field is the uncompressed strings; otherwise it is the
|
|
|
|
/// compressed string. When the string compression is off, the
|
2015-12-31 07:57:16 +00:00
|
|
|
/// second field will have value zero.
|
|
|
|
int collectPGOFuncNameStrings(const std::vector<std::string> &NameStrs,
|
|
|
|
bool doCompression, std::string &Result);
|
|
|
|
/// Produce \c Result string with the same format described above. The input
|
|
|
|
/// is vector of PGO function name variables that are referenced.
|
|
|
|
int collectPGOFuncNameStrings(const std::vector<GlobalVariable *> &NameVars,
|
2016-01-26 23:13:00 +00:00
|
|
|
std::string &Result, bool doCompression = true);
|
2015-12-31 07:57:16 +00:00
|
|
|
class InstrProfSymtab;
|
|
|
|
/// \c NameStrings is a string composed of one of more sub-strings encoded in
|
2016-01-18 00:26:33 +00:00
|
|
|
/// the format described above. The substrings are seperated by 0 or more zero
|
|
|
|
/// bytes. This method decodes the string and populates the \c Symtab.
|
2015-12-31 07:57:16 +00:00
|
|
|
int readPGOFuncNameStrings(StringRef NameStrings, InstrProfSymtab &Symtab);
|
|
|
|
|
2016-02-04 19:11:43 +00:00
|
|
|
enum InstrProfValueKind : uint32_t {
|
|
|
|
#define VALUE_PROF_KIND(Enumerator, Value) Enumerator = Value,
|
|
|
|
#include "llvm/ProfileData/InstrProfData.inc"
|
|
|
|
};
|
|
|
|
|
|
|
|
struct InstrProfRecord;
|
|
|
|
|
2016-02-04 19:14:10 +00:00
|
|
|
/// Get the value profile data for value site \p SiteIdx from \p InstrProfR
|
2016-02-04 19:11:43 +00:00
|
|
|
/// and annotate the instruction \p Inst with the value profile meta data.
|
2016-02-10 22:19:43 +00:00
|
|
|
/// Annotate up to \p MaxMDCount (default 3) number of records per value site.
|
2016-02-04 19:11:43 +00:00
|
|
|
void annotateValueSite(Module &M, Instruction &Inst,
|
|
|
|
const InstrProfRecord &InstrProfR,
|
2016-02-10 22:19:43 +00:00
|
|
|
InstrProfValueKind ValueKind, uint32_t SiteIndx,
|
|
|
|
uint32_t MaxMDCount = 3);
|
2016-03-30 16:56:31 +00:00
|
|
|
/// Same as the above interface but using an ArrayRef, as well as \p Sum.
|
2016-02-12 21:36:17 +00:00
|
|
|
void annotateValueSite(Module &M, Instruction &Inst,
|
2016-03-30 16:56:31 +00:00
|
|
|
ArrayRef<InstrProfValueData> VDs,
|
2016-02-12 21:36:17 +00:00
|
|
|
uint64_t Sum, InstrProfValueKind ValueKind,
|
|
|
|
uint32_t MaxMDCount);
|
|
|
|
|
2016-02-04 19:14:10 +00:00
|
|
|
/// Extract the value profile data from \p Inst which is annotated with
|
|
|
|
/// value profile meta data. Return false if there is no value data annotated,
|
|
|
|
/// otherwise return true.
|
2016-02-04 19:11:43 +00:00
|
|
|
bool getValueProfDataFromInst(const Instruction &Inst,
|
|
|
|
InstrProfValueKind ValueKind,
|
|
|
|
uint32_t MaxNumValueData,
|
|
|
|
InstrProfValueData ValueData[],
|
|
|
|
uint32_t &ActualNumValueData, uint64_t &TotalC);
|
|
|
|
|
2016-04-01 16:43:30 +00:00
|
|
|
inline StringRef getPGOFuncNameMetadataName() { return "PGOFuncName"; }
|
|
|
|
|
|
|
|
/// Return the PGOFuncName meta data associated with a function.
|
|
|
|
inline MDNode *getPGOFuncNameMetadata(const Function &F) {
|
|
|
|
return F.getMetadata(getPGOFuncNameMetadataName());
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create the PGOFuncName meta data if PGOFuncName is different from
|
|
|
|
/// function's raw name. This should only apply to internal linkage functions
|
|
|
|
/// declared by users only.
|
|
|
|
void createPGOFuncNameMetadata(Function &F);
|
|
|
|
|
2014-06-12 01:45:43 +00:00
|
|
|
const std::error_category &instrprof_category();
|
2014-03-21 17:24:48 +00:00
|
|
|
|
2014-06-03 05:12:33 +00:00
|
|
|
enum class instrprof_error {
|
2015-09-29 22:13:58 +00:00
|
|
|
success = 0,
|
|
|
|
eof,
|
2015-11-13 03:47:58 +00:00
|
|
|
unrecognized_format,
|
2015-09-29 22:13:58 +00:00
|
|
|
bad_magic,
|
|
|
|
bad_header,
|
|
|
|
unsupported_version,
|
|
|
|
unsupported_hash_type,
|
|
|
|
too_large,
|
|
|
|
truncated,
|
|
|
|
malformed,
|
|
|
|
unknown_function,
|
|
|
|
hash_mismatch,
|
|
|
|
count_mismatch,
|
|
|
|
counter_overflow,
|
|
|
|
value_site_count_mismatch
|
2014-03-21 17:24:48 +00:00
|
|
|
};
|
|
|
|
|
2014-06-12 21:46:39 +00:00
|
|
|
inline std::error_code make_error_code(instrprof_error E) {
|
|
|
|
return std::error_code(static_cast<int>(E), instrprof_category());
|
2014-03-21 17:24:48 +00:00
|
|
|
}
|
|
|
|
|
2015-12-16 21:45:43 +00:00
|
|
|
inline instrprof_error MergeResult(instrprof_error &Accumulator,
|
|
|
|
instrprof_error Result) {
|
|
|
|
// Prefer first error encountered as later errors may be secondary effects of
|
|
|
|
// the initial problem.
|
|
|
|
if (Accumulator == instrprof_error::success &&
|
|
|
|
Result != instrprof_error::success)
|
|
|
|
Accumulator = Result;
|
|
|
|
return Accumulator;
|
|
|
|
}
|
|
|
|
|
2015-12-17 00:53:37 +00:00
|
|
|
namespace object {
|
|
|
|
class SectionRef;
|
|
|
|
}
|
2015-12-19 07:44:57 +00:00
|
|
|
|
|
|
|
namespace IndexedInstrProf {
|
|
|
|
uint64_t ComputeHash(StringRef K);
|
|
|
|
}
|
|
|
|
|
2015-12-17 00:53:37 +00:00
|
|
|
/// A symbol table used for function PGO name look-up with keys
|
|
|
|
/// (such as pointers, md5hash values) to the function. A function's
|
|
|
|
/// PGO name or name's md5hash are used in retrieving the profile
|
|
|
|
/// data of the function. See \c getPGOFuncName() method for details
|
|
|
|
/// on how PGO name is formed.
|
|
|
|
class InstrProfSymtab {
|
2015-12-20 06:22:13 +00:00
|
|
|
public:
|
|
|
|
typedef std::vector<std::pair<uint64_t, uint64_t>> AddrHashMap;
|
|
|
|
|
2015-12-17 00:53:37 +00:00
|
|
|
private:
|
|
|
|
StringRef Data;
|
|
|
|
uint64_t Address;
|
2016-02-05 22:32:01 +00:00
|
|
|
// Unique name strings.
|
|
|
|
StringSet<> NameTab;
|
|
|
|
// A map from MD5 keys to function name strings.
|
|
|
|
std::vector<std::pair<uint64_t, StringRef>> MD5NameMap;
|
2016-03-30 18:37:52 +00:00
|
|
|
// A map from MD5 keys to function define. We only populate this map
|
|
|
|
// when build the Symtab from a Module.
|
|
|
|
std::vector<std::pair<uint64_t, Function *>> MD5FuncMap;
|
2015-12-20 06:22:13 +00:00
|
|
|
// A map from function runtime address to function name MD5 hash.
|
|
|
|
// This map is only populated and used by raw instr profile reader.
|
|
|
|
AddrHashMap AddrToMD5Map;
|
2015-12-17 00:53:37 +00:00
|
|
|
|
|
|
|
public:
|
2016-02-05 22:32:01 +00:00
|
|
|
InstrProfSymtab()
|
2016-03-30 18:37:52 +00:00
|
|
|
: Data(), Address(0), NameTab(), MD5NameMap(), MD5FuncMap(),
|
|
|
|
AddrToMD5Map() {}
|
2015-12-17 00:53:37 +00:00
|
|
|
|
2015-12-20 06:22:13 +00:00
|
|
|
/// Create InstrProfSymtab from an object file section which
|
2016-02-05 22:32:01 +00:00
|
|
|
/// contains function PGO names. When section may contain raw
|
2016-01-18 00:26:33 +00:00
|
|
|
/// string data or string data in compressed form. This method
|
|
|
|
/// only initialize the symtab with reference to the data and
|
|
|
|
/// the section base address. The decompression will be delayed
|
|
|
|
/// until before it is used. See also \c create(StringRef) method.
|
2015-12-17 00:53:37 +00:00
|
|
|
std::error_code create(object::SectionRef &Section);
|
2015-12-20 06:22:13 +00:00
|
|
|
/// This interface is used by reader of CoverageMapping test
|
|
|
|
/// format.
|
|
|
|
inline std::error_code create(StringRef D, uint64_t BaseAddr);
|
2015-12-31 07:57:16 +00:00
|
|
|
/// \c NameStrings is a string composed of one of more sub-strings
|
2016-01-18 00:26:33 +00:00
|
|
|
/// encoded in the format described in \c collectPGOFuncNameStrings.
|
|
|
|
/// This method is a wrapper to \c readPGOFuncNameStrings method.
|
2015-12-31 07:57:16 +00:00
|
|
|
inline std::error_code create(StringRef NameStrings);
|
2016-01-20 01:26:34 +00:00
|
|
|
/// A wrapper interface to populate the PGO symtab with functions
|
|
|
|
/// decls from module \c M. This interface is used by transformation
|
2016-03-30 18:37:52 +00:00
|
|
|
/// passes such as indirect function call promotion. Variable \c InLTO
|
|
|
|
/// indicates if this is called from LTO optimization passes.
|
|
|
|
void create(Module &M, bool InLTO = false);
|
2015-12-20 06:22:13 +00:00
|
|
|
/// Create InstrProfSymtab from a set of names iteratable from
|
|
|
|
/// \p IterRange. This interface is used by IndexedProfReader.
|
|
|
|
template <typename NameIterRange> void create(const NameIterRange &IterRange);
|
|
|
|
// If the symtab is created by a series of calls to \c addFuncName, \c
|
|
|
|
// finalizeSymtab needs to be called before looking up function names.
|
|
|
|
// This is required because the underlying map is a vector (for space
|
|
|
|
// efficiency) which needs to be sorted.
|
|
|
|
inline void finalizeSymtab();
|
|
|
|
/// Update the symtab by adding \p FuncName to the table. This interface
|
|
|
|
/// is used by the raw and text profile readers.
|
2015-12-19 07:44:57 +00:00
|
|
|
void addFuncName(StringRef FuncName) {
|
2016-02-05 23:24:42 +00:00
|
|
|
auto Ins = NameTab.insert(FuncName);
|
|
|
|
if (Ins.second)
|
2016-02-05 22:32:01 +00:00
|
|
|
MD5NameMap.push_back(std::make_pair(
|
2016-02-05 23:24:42 +00:00
|
|
|
IndexedInstrProf::ComputeHash(FuncName), Ins.first->getKey()));
|
2015-12-19 07:44:57 +00:00
|
|
|
}
|
2015-12-20 06:22:13 +00:00
|
|
|
/// Map a function address to its name's MD5 hash. This interface
|
|
|
|
/// is only used by the raw profiler reader.
|
|
|
|
void mapAddress(uint64_t Addr, uint64_t MD5Val) {
|
|
|
|
AddrToMD5Map.push_back(std::make_pair(Addr, MD5Val));
|
|
|
|
}
|
|
|
|
AddrHashMap &getAddrHashMap() { return AddrToMD5Map; }
|
2015-12-31 07:57:16 +00:00
|
|
|
/// Return function's PGO name from the function name's symbol
|
|
|
|
/// address in the object file. If an error occurs, return
|
2015-12-17 00:53:37 +00:00
|
|
|
/// an empty string.
|
|
|
|
StringRef getFuncName(uint64_t FuncNameAddress, size_t NameSize);
|
2015-12-19 07:44:57 +00:00
|
|
|
/// Return function's PGO name from the name's md5 hash value.
|
|
|
|
/// If not found, return an empty string.
|
2015-12-20 06:22:13 +00:00
|
|
|
inline StringRef getFuncName(uint64_t FuncMD5Hash);
|
2016-03-30 18:37:52 +00:00
|
|
|
/// Return function from the name's md5 hash. Return nullptr if not found.
|
|
|
|
inline Function *getFunction(uint64_t FuncMD5Hash);
|
2016-01-22 18:13:34 +00:00
|
|
|
/// Return the function's original assembly name by stripping off
|
|
|
|
/// the prefix attached (to symbols with priviate linkage). For
|
|
|
|
/// global functions, it returns the same string as getFuncName.
|
|
|
|
inline StringRef getOrigFuncName(uint64_t FuncMD5Hash);
|
2016-01-18 00:26:33 +00:00
|
|
|
/// Return the name section data.
|
|
|
|
inline StringRef getNameData() const { return Data; }
|
2015-12-17 00:53:37 +00:00
|
|
|
};
|
|
|
|
|
2015-12-20 06:22:13 +00:00
|
|
|
std::error_code InstrProfSymtab::create(StringRef D, uint64_t BaseAddr) {
|
|
|
|
Data = D;
|
|
|
|
Address = BaseAddr;
|
|
|
|
return std::error_code();
|
|
|
|
}
|
|
|
|
|
2015-12-31 07:57:16 +00:00
|
|
|
std::error_code InstrProfSymtab::create(StringRef NameStrings) {
|
|
|
|
if (readPGOFuncNameStrings(NameStrings, *this))
|
|
|
|
return make_error_code(instrprof_error::malformed);
|
|
|
|
return std::error_code();
|
|
|
|
}
|
|
|
|
|
2015-12-20 06:22:13 +00:00
|
|
|
template <typename NameIterRange>
|
|
|
|
void InstrProfSymtab::create(const NameIterRange &IterRange) {
|
|
|
|
for (auto Name : IterRange)
|
2016-02-05 22:32:01 +00:00
|
|
|
addFuncName(Name);
|
|
|
|
|
2015-12-20 06:22:13 +00:00
|
|
|
finalizeSymtab();
|
|
|
|
}
|
|
|
|
|
|
|
|
void InstrProfSymtab::finalizeSymtab() {
|
2016-02-05 22:32:01 +00:00
|
|
|
std::sort(MD5NameMap.begin(), MD5NameMap.end(), less_first());
|
2016-03-30 18:37:52 +00:00
|
|
|
std::sort(MD5FuncMap.begin(), MD5FuncMap.end(), less_first());
|
2015-12-20 06:22:13 +00:00
|
|
|
std::sort(AddrToMD5Map.begin(), AddrToMD5Map.end(), less_first());
|
|
|
|
AddrToMD5Map.erase(std::unique(AddrToMD5Map.begin(), AddrToMD5Map.end()),
|
|
|
|
AddrToMD5Map.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
StringRef InstrProfSymtab::getFuncName(uint64_t FuncMD5Hash) {
|
|
|
|
auto Result =
|
2016-02-05 22:32:01 +00:00
|
|
|
std::lower_bound(MD5NameMap.begin(), MD5NameMap.end(), FuncMD5Hash,
|
2015-12-20 06:22:13 +00:00
|
|
|
[](const std::pair<uint64_t, std::string> &LHS,
|
|
|
|
uint64_t RHS) { return LHS.first < RHS; });
|
2016-02-10 06:36:55 +00:00
|
|
|
if (Result != MD5NameMap.end() && Result->first == FuncMD5Hash)
|
2015-12-20 06:22:13 +00:00
|
|
|
return Result->second;
|
|
|
|
return StringRef();
|
|
|
|
}
|
2015-09-29 22:13:58 +00:00
|
|
|
|
2016-03-30 18:37:52 +00:00
|
|
|
Function* InstrProfSymtab::getFunction(uint64_t FuncMD5Hash) {
|
|
|
|
auto Result =
|
|
|
|
std::lower_bound(MD5FuncMap.begin(), MD5FuncMap.end(), FuncMD5Hash,
|
|
|
|
[](const std::pair<uint64_t, Function*> &LHS,
|
|
|
|
uint64_t RHS) { return LHS.first < RHS; });
|
|
|
|
if (Result != MD5FuncMap.end() && Result->first == FuncMD5Hash)
|
|
|
|
return Result->second;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2016-01-22 18:13:34 +00:00
|
|
|
// See also getPGOFuncName implementation. These two need to be
|
|
|
|
// matched.
|
|
|
|
StringRef InstrProfSymtab::getOrigFuncName(uint64_t FuncMD5Hash) {
|
|
|
|
StringRef PGOName = getFuncName(FuncMD5Hash);
|
|
|
|
size_t S = PGOName.find_first_of(':');
|
|
|
|
if (S == StringRef::npos)
|
|
|
|
return PGOName;
|
|
|
|
return PGOName.drop_front(S + 1);
|
|
|
|
}
|
|
|
|
|
2015-09-29 22:13:58 +00:00
|
|
|
struct InstrProfValueSiteRecord {
|
|
|
|
/// Value profiling data pairs at a given value site.
|
2015-11-02 05:08:23 +00:00
|
|
|
std::list<InstrProfValueData> ValueData;
|
2015-09-29 22:13:58 +00:00
|
|
|
|
|
|
|
InstrProfValueSiteRecord() { ValueData.clear(); }
|
2015-11-02 05:08:23 +00:00
|
|
|
template <class InputIterator>
|
|
|
|
InstrProfValueSiteRecord(InputIterator F, InputIterator L)
|
|
|
|
: ValueData(F, L) {}
|
2015-09-29 22:13:58 +00:00
|
|
|
|
2015-11-02 05:08:23 +00:00
|
|
|
/// Sort ValueData ascending by Value
|
2015-09-29 22:13:58 +00:00
|
|
|
void sortByTargetValues() {
|
2015-11-02 05:08:23 +00:00
|
|
|
ValueData.sort(
|
|
|
|
[](const InstrProfValueData &left, const InstrProfValueData &right) {
|
|
|
|
return left.Value < right.Value;
|
|
|
|
});
|
2015-09-29 22:13:58 +00:00
|
|
|
}
|
2016-01-08 03:49:59 +00:00
|
|
|
/// Sort ValueData Descending by Count
|
|
|
|
inline void sortByCount();
|
2015-09-29 22:13:58 +00:00
|
|
|
|
|
|
|
/// Merge data from another InstrProfValueSiteRecord
|
2015-12-15 17:37:09 +00:00
|
|
|
/// Optionally scale merged counts by \p Weight.
|
2016-01-08 03:49:59 +00:00
|
|
|
instrprof_error merge(InstrProfValueSiteRecord &Input, uint64_t Weight = 1);
|
|
|
|
/// Scale up value profile data counts.
|
|
|
|
instrprof_error scale(uint64_t Weight);
|
2015-09-29 22:13:58 +00:00
|
|
|
};
|
|
|
|
|
2015-06-22 23:58:05 +00:00
|
|
|
/// Profiling information for a single function.
|
|
|
|
struct InstrProfRecord {
|
|
|
|
InstrProfRecord() {}
|
|
|
|
InstrProfRecord(StringRef Name, uint64_t Hash, std::vector<uint64_t> Counts)
|
|
|
|
: Name(Name), Hash(Hash), Counts(std::move(Counts)) {}
|
|
|
|
StringRef Name;
|
|
|
|
uint64_t Hash;
|
|
|
|
std::vector<uint64_t> Counts;
|
2015-09-29 22:13:58 +00:00
|
|
|
|
2015-12-20 06:22:13 +00:00
|
|
|
typedef std::vector<std::pair<uint64_t, uint64_t>> ValueMapType;
|
2015-11-02 05:08:23 +00:00
|
|
|
|
|
|
|
/// Return the number of value profile kinds with non-zero number
|
|
|
|
/// of profile sites.
|
|
|
|
inline uint32_t getNumValueKinds() const;
|
|
|
|
/// Return the number of instrumented sites for ValueKind.
|
|
|
|
inline uint32_t getNumValueSites(uint32_t ValueKind) const;
|
|
|
|
/// Return the total number of ValueData for ValueKind.
|
|
|
|
inline uint32_t getNumValueData(uint32_t ValueKind) const;
|
|
|
|
/// Return the number of value data collected for ValueKind at profiling
|
|
|
|
/// site: Site.
|
|
|
|
inline uint32_t getNumValueDataForSite(uint32_t ValueKind,
|
|
|
|
uint32_t Site) const;
|
2016-02-04 05:29:51 +00:00
|
|
|
/// Return the array of profiled values at \p Site. If \p TotalC
|
|
|
|
/// is not null, the total count of all target values at this site
|
|
|
|
/// will be stored in \c *TotalC.
|
2015-11-06 07:54:21 +00:00
|
|
|
inline std::unique_ptr<InstrProfValueData[]>
|
2015-11-24 23:36:52 +00:00
|
|
|
getValueForSite(uint32_t ValueKind, uint32_t Site,
|
2016-02-04 05:29:51 +00:00
|
|
|
uint64_t *TotalC = 0) const;
|
|
|
|
/// Get the target value/counts of kind \p ValueKind collected at site
|
|
|
|
/// \p Site and store the result in array \p Dest. Return the total
|
|
|
|
/// counts of all target values at this site.
|
|
|
|
inline uint64_t getValueForSite(InstrProfValueData Dest[], uint32_t ValueKind,
|
|
|
|
uint32_t Site) const;
|
2015-11-02 05:08:23 +00:00
|
|
|
/// Reserve space for NumValueSites sites.
|
|
|
|
inline void reserveSites(uint32_t ValueKind, uint32_t NumValueSites);
|
|
|
|
/// Add ValueData for ValueKind at value Site.
|
2015-12-18 23:06:37 +00:00
|
|
|
void addValueData(uint32_t ValueKind, uint32_t Site,
|
|
|
|
InstrProfValueData *VData, uint32_t N,
|
2015-12-20 06:22:13 +00:00
|
|
|
ValueMapType *ValueMap);
|
2015-11-20 19:12:43 +00:00
|
|
|
|
|
|
|
/// Merge the counts in \p Other into this one.
|
2015-12-15 17:37:09 +00:00
|
|
|
/// Optionally scale merged counts by \p Weight.
|
2015-12-18 23:06:37 +00:00
|
|
|
instrprof_error merge(InstrProfRecord &Other, uint64_t Weight = 1);
|
2015-11-02 05:08:23 +00:00
|
|
|
|
2016-01-08 03:49:59 +00:00
|
|
|
/// Scale up profile counts (including value profile data) by
|
|
|
|
/// \p Weight.
|
|
|
|
instrprof_error scale(uint64_t Weight);
|
|
|
|
|
|
|
|
/// Sort value profile data (per site) by count.
|
|
|
|
void sortValueData() {
|
|
|
|
for (uint32_t Kind = IPVK_First; Kind <= IPVK_Last; ++Kind) {
|
|
|
|
std::vector<InstrProfValueSiteRecord> &SiteRecords =
|
|
|
|
getValueSitesForKind(Kind);
|
|
|
|
for (auto &SR : SiteRecords)
|
|
|
|
SR.sortByCount();
|
|
|
|
}
|
|
|
|
}
|
2015-11-18 18:14:55 +00:00
|
|
|
/// Clear value data entries
|
2015-12-18 23:06:37 +00:00
|
|
|
void clearValueData() {
|
2015-11-18 18:14:55 +00:00
|
|
|
for (uint32_t Kind = IPVK_First; Kind <= IPVK_Last; ++Kind)
|
|
|
|
getValueSitesForKind(Kind).clear();
|
|
|
|
}
|
|
|
|
|
2015-11-06 07:54:21 +00:00
|
|
|
private:
|
2015-11-02 05:08:23 +00:00
|
|
|
std::vector<InstrProfValueSiteRecord> IndirectCallSites;
|
2015-09-29 22:13:58 +00:00
|
|
|
const std::vector<InstrProfValueSiteRecord> &
|
|
|
|
getValueSitesForKind(uint32_t ValueKind) const {
|
|
|
|
switch (ValueKind) {
|
|
|
|
case IPVK_IndirectCallTarget:
|
|
|
|
return IndirectCallSites;
|
2015-11-02 05:08:23 +00:00
|
|
|
default:
|
|
|
|
llvm_unreachable("Unknown value kind!");
|
2015-09-29 22:13:58 +00:00
|
|
|
}
|
2015-11-02 05:08:23 +00:00
|
|
|
return IndirectCallSites;
|
2015-09-29 22:13:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<InstrProfValueSiteRecord> &
|
|
|
|
getValueSitesForKind(uint32_t ValueKind) {
|
|
|
|
return const_cast<std::vector<InstrProfValueSiteRecord> &>(
|
2015-09-29 23:42:47 +00:00
|
|
|
const_cast<const InstrProfRecord *>(this)
|
|
|
|
->getValueSitesForKind(ValueKind));
|
2015-09-29 22:13:58 +00:00
|
|
|
}
|
2015-11-18 18:14:55 +00:00
|
|
|
|
2015-11-02 05:08:23 +00:00
|
|
|
// Map indirect call target name hash to name string.
|
|
|
|
uint64_t remapValue(uint64_t Value, uint32_t ValueKind,
|
2015-12-18 23:06:37 +00:00
|
|
|
ValueMapType *HashKeys);
|
2015-11-20 19:12:43 +00:00
|
|
|
|
|
|
|
// Merge Value Profile data from Src record to this record for ValueKind.
|
2015-12-15 17:37:09 +00:00
|
|
|
// Scale merged value counts by \p Weight.
|
|
|
|
instrprof_error mergeValueProfData(uint32_t ValueKind, InstrProfRecord &Src,
|
2015-12-18 23:06:37 +00:00
|
|
|
uint64_t Weight);
|
2016-01-08 03:49:59 +00:00
|
|
|
// Scale up value profile data count.
|
|
|
|
instrprof_error scaleValueProfData(uint32_t ValueKind, uint64_t Weight);
|
2015-06-22 23:58:05 +00:00
|
|
|
};
|
|
|
|
|
2015-11-02 05:08:23 +00:00
|
|
|
uint32_t InstrProfRecord::getNumValueKinds() const {
|
|
|
|
uint32_t NumValueKinds = 0;
|
|
|
|
for (uint32_t Kind = IPVK_First; Kind <= IPVK_Last; ++Kind)
|
|
|
|
NumValueKinds += !(getValueSitesForKind(Kind).empty());
|
|
|
|
return NumValueKinds;
|
|
|
|
}
|
|
|
|
|
2015-11-10 00:24:45 +00:00
|
|
|
uint32_t InstrProfRecord::getNumValueData(uint32_t ValueKind) const {
|
|
|
|
uint32_t N = 0;
|
|
|
|
const std::vector<InstrProfValueSiteRecord> &SiteRecords =
|
|
|
|
getValueSitesForKind(ValueKind);
|
|
|
|
for (auto &SR : SiteRecords) {
|
|
|
|
N += SR.ValueData.size();
|
|
|
|
}
|
|
|
|
return N;
|
|
|
|
}
|
|
|
|
|
2015-11-02 05:08:23 +00:00
|
|
|
uint32_t InstrProfRecord::getNumValueSites(uint32_t ValueKind) const {
|
|
|
|
return getValueSitesForKind(ValueKind).size();
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t InstrProfRecord::getNumValueDataForSite(uint32_t ValueKind,
|
|
|
|
uint32_t Site) const {
|
|
|
|
return getValueSitesForKind(ValueKind)[Site].ValueData.size();
|
|
|
|
}
|
|
|
|
|
2016-02-04 05:29:51 +00:00
|
|
|
std::unique_ptr<InstrProfValueData[]>
|
|
|
|
InstrProfRecord::getValueForSite(uint32_t ValueKind, uint32_t Site,
|
|
|
|
uint64_t *TotalC) const {
|
|
|
|
uint64_t Dummy;
|
|
|
|
uint64_t &TotalCount = (TotalC == 0 ? Dummy : *TotalC);
|
2015-11-02 05:08:23 +00:00
|
|
|
uint32_t N = getNumValueDataForSite(ValueKind, Site);
|
2016-02-04 05:29:51 +00:00
|
|
|
if (N == 0) {
|
|
|
|
TotalCount = 0;
|
2015-11-06 07:54:21 +00:00
|
|
|
return std::unique_ptr<InstrProfValueData[]>(nullptr);
|
2016-02-04 05:29:51 +00:00
|
|
|
}
|
2015-11-02 05:08:23 +00:00
|
|
|
|
2015-11-24 00:32:00 +00:00
|
|
|
auto VD = llvm::make_unique<InstrProfValueData[]>(N);
|
2016-02-04 05:29:51 +00:00
|
|
|
TotalCount = getValueForSite(VD.get(), ValueKind, Site);
|
2015-11-24 17:03:24 +00:00
|
|
|
|
|
|
|
return VD;
|
|
|
|
}
|
2015-11-24 23:36:52 +00:00
|
|
|
|
2016-02-04 05:29:51 +00:00
|
|
|
uint64_t InstrProfRecord::getValueForSite(InstrProfValueData Dest[],
|
|
|
|
uint32_t ValueKind,
|
|
|
|
uint32_t Site) const {
|
2015-11-02 05:08:23 +00:00
|
|
|
uint32_t I = 0;
|
2016-02-04 05:29:51 +00:00
|
|
|
uint64_t TotalCount = 0;
|
2015-11-02 05:08:23 +00:00
|
|
|
for (auto V : getValueSitesForKind(ValueKind)[Site].ValueData) {
|
2016-02-04 05:29:51 +00:00
|
|
|
Dest[I].Value = V.Value;
|
2015-11-24 23:36:52 +00:00
|
|
|
Dest[I].Count = V.Count;
|
2016-02-04 05:29:51 +00:00
|
|
|
TotalCount = SaturatingAdd(TotalCount, V.Count);
|
2015-11-02 05:08:23 +00:00
|
|
|
I++;
|
|
|
|
}
|
2016-02-04 05:29:51 +00:00
|
|
|
return TotalCount;
|
2015-11-02 05:08:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void InstrProfRecord::reserveSites(uint32_t ValueKind, uint32_t NumValueSites) {
|
|
|
|
std::vector<InstrProfValueSiteRecord> &ValueSites =
|
|
|
|
getValueSitesForKind(ValueKind);
|
|
|
|
ValueSites.reserve(NumValueSites);
|
|
|
|
}
|
|
|
|
|
2015-11-10 00:24:45 +00:00
|
|
|
inline support::endianness getHostEndianness() {
|
|
|
|
return sys::IsLittleEndianHost ? support::little : support::big;
|
|
|
|
}
|
|
|
|
|
2015-11-28 19:07:09 +00:00
|
|
|
// Include definitions for value profile data
|
|
|
|
#define INSTR_PROF_VALUE_PROF_DATA
|
|
|
|
#include "llvm/ProfileData/InstrProfData.inc"
|
|
|
|
|
2016-01-08 03:49:59 +00:00
|
|
|
void InstrProfValueSiteRecord::sortByCount() {
|
|
|
|
ValueData.sort(
|
|
|
|
[](const InstrProfValueData &left, const InstrProfValueData &right) {
|
|
|
|
return left.Count > right.Count;
|
|
|
|
});
|
|
|
|
// Now truncate
|
|
|
|
size_t max_s = INSTR_PROF_MAX_NUM_VAL_PER_SITE;
|
|
|
|
if (ValueData.size() > max_s)
|
|
|
|
ValueData.resize(max_s);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize the record for runtime value profile data.
|
|
|
|
* Return 0 if the initialization is successful, otherwise
|
|
|
|
* return 1.
|
|
|
|
*/
|
2015-11-28 05:47:34 +00:00
|
|
|
int initializeValueProfRuntimeRecord(ValueProfRuntimeRecord *RuntimeRecord,
|
2015-11-29 04:52:34 +00:00
|
|
|
const uint16_t *NumValueSites,
|
2015-11-28 05:47:34 +00:00
|
|
|
ValueProfNode **Nodes);
|
2015-11-25 23:31:18 +00:00
|
|
|
|
|
|
|
/* Release memory allocated for the runtime record. */
|
|
|
|
void finalizeValueProfRuntimeRecord(ValueProfRuntimeRecord *RuntimeRecord);
|
|
|
|
|
|
|
|
/* Return the size of ValueProfData structure that can be used to store
|
|
|
|
the value profile data collected at runtime. */
|
|
|
|
uint32_t getValueProfDataSizeRT(const ValueProfRuntimeRecord *Record);
|
|
|
|
|
|
|
|
/* Return a ValueProfData instance that stores the data collected at runtime. */
|
|
|
|
ValueProfData *
|
2015-11-28 05:37:01 +00:00
|
|
|
serializeValueProfDataFromRT(const ValueProfRuntimeRecord *Record,
|
|
|
|
ValueProfData *Dst);
|
2015-11-25 23:31:18 +00:00
|
|
|
|
2015-11-17 23:00:40 +00:00
|
|
|
namespace IndexedInstrProf {
|
|
|
|
|
|
|
|
enum class HashT : uint32_t {
|
|
|
|
MD5,
|
|
|
|
|
|
|
|
Last = MD5
|
|
|
|
};
|
|
|
|
|
2015-12-19 07:44:57 +00:00
|
|
|
inline uint64_t ComputeHash(HashT Type, StringRef K) {
|
2015-11-17 23:00:40 +00:00
|
|
|
switch (Type) {
|
|
|
|
case HashT::MD5:
|
2016-02-09 05:12:44 +00:00
|
|
|
return MD5Hash(K);
|
2015-11-17 23:00:40 +00:00
|
|
|
}
|
|
|
|
llvm_unreachable("Unhandled hash type");
|
|
|
|
}
|
|
|
|
|
|
|
|
const uint64_t Magic = 0x8169666f72706cff; // "\xfflprofi\x81"
|
2016-01-14 02:47:01 +00:00
|
|
|
|
|
|
|
enum ProfVersion {
|
|
|
|
// Version 1 is the first version. In this version, the value of
|
|
|
|
// a key/value pair can only include profile data of a single function.
|
|
|
|
// Due to this restriction, the number of block counters for a given
|
2016-01-14 04:22:45 +00:00
|
|
|
// function is not recorded but derived from the length of the value.
|
2016-01-14 02:47:01 +00:00
|
|
|
Version1 = 1,
|
2016-01-14 04:22:45 +00:00
|
|
|
// The version 2 format supports recording profile data of multiple
|
|
|
|
// functions which share the same key in one value field. To support this,
|
|
|
|
// the number block counters is recorded as an uint64_t field right after the
|
2016-01-14 02:47:01 +00:00
|
|
|
// function structural hash.
|
|
|
|
Version2 = 2,
|
2016-01-14 04:22:45 +00:00
|
|
|
// Version 3 supports value profile data. The value profile data is expected
|
2016-01-14 02:47:01 +00:00
|
|
|
// to follow the block counter profile data.
|
|
|
|
Version3 = 3,
|
2016-02-03 04:08:18 +00:00
|
|
|
// In this version, profile summary data \c IndexedInstrProf::Summary is
|
|
|
|
// stored after the profile header.
|
|
|
|
Version4 = 4,
|
|
|
|
// The current version is 4.
|
2016-01-14 02:47:01 +00:00
|
|
|
CurrentVersion = INSTR_PROF_INDEX_VERSION
|
|
|
|
};
|
|
|
|
const uint64_t Version = ProfVersion::CurrentVersion;
|
|
|
|
|
2015-11-17 23:00:40 +00:00
|
|
|
const HashT HashType = HashT::MD5;
|
|
|
|
|
2015-12-19 07:44:57 +00:00
|
|
|
inline uint64_t ComputeHash(StringRef K) { return ComputeHash(HashType, K); }
|
2015-12-18 22:22:12 +00:00
|
|
|
|
2015-11-17 23:00:40 +00:00
|
|
|
// This structure defines the file header of the LLVM profile
|
|
|
|
// data file in indexed-format.
|
|
|
|
struct Header {
|
|
|
|
uint64_t Magic;
|
|
|
|
uint64_t Version;
|
2016-02-03 04:08:18 +00:00
|
|
|
uint64_t Unused; // Becomes unused since version 4
|
2015-11-17 23:00:40 +00:00
|
|
|
uint64_t HashType;
|
|
|
|
uint64_t HashOffset;
|
|
|
|
};
|
|
|
|
|
2016-02-03 04:08:18 +00:00
|
|
|
// Profile summary data recorded in the profile data file in indexed
|
|
|
|
// format. It is introduced in version 4. The summary data follows
|
|
|
|
// right after the profile file header.
|
|
|
|
struct Summary {
|
|
|
|
|
|
|
|
struct Entry {
|
|
|
|
uint64_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.
|
|
|
|
};
|
2016-02-03 17:51:16 +00:00
|
|
|
// The field kind enumerator to assigned value mapping should remain
|
|
|
|
// unchanged when a new kind is added or an old kind gets deleted in
|
|
|
|
// the future.
|
2016-02-03 04:08:18 +00:00
|
|
|
enum SummaryFieldKind {
|
|
|
|
/// The total number of functions instrumented.
|
|
|
|
TotalNumFunctions = 0,
|
|
|
|
/// Total number of instrumented blocks/edges.
|
|
|
|
TotalNumBlocks = 1,
|
|
|
|
/// The maximal execution count among all functions.
|
|
|
|
/// This field does not exist for profile data from IR based
|
|
|
|
/// instrumentation.
|
|
|
|
MaxFunctionCount = 2,
|
|
|
|
/// Max block count of the program.
|
|
|
|
MaxBlockCount = 3,
|
|
|
|
/// Max internal block count of the program (excluding entry blocks).
|
|
|
|
MaxInternalBlockCount = 4,
|
|
|
|
/// The sum of all instrumented block counts.
|
|
|
|
TotalBlockCount = 5,
|
|
|
|
NumKinds = TotalBlockCount + 1
|
|
|
|
};
|
|
|
|
|
|
|
|
// The number of summmary fields following the summary header.
|
|
|
|
uint64_t NumSummaryFields;
|
|
|
|
// The number of Cutoff Entries (Summary::Entry) following summary fields.
|
|
|
|
uint64_t NumCutoffEntries;
|
|
|
|
|
|
|
|
static uint32_t getSize(uint32_t NumSumFields, uint32_t NumCutoffEntries) {
|
|
|
|
return sizeof(Summary) + NumCutoffEntries * sizeof(Entry) +
|
|
|
|
NumSumFields * sizeof(uint64_t);
|
|
|
|
}
|
|
|
|
|
|
|
|
const uint64_t *getSummaryDataBase() const {
|
|
|
|
return reinterpret_cast<const uint64_t *>(this + 1);
|
|
|
|
}
|
|
|
|
uint64_t *getSummaryDataBase() {
|
|
|
|
return reinterpret_cast<uint64_t *>(this + 1);
|
|
|
|
}
|
|
|
|
const Entry *getCutoffEntryBase() const {
|
|
|
|
return reinterpret_cast<const Entry *>(
|
|
|
|
&getSummaryDataBase()[NumSummaryFields]);
|
|
|
|
}
|
|
|
|
Entry *getCutoffEntryBase() {
|
|
|
|
return reinterpret_cast<Entry *>(&getSummaryDataBase()[NumSummaryFields]);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t get(SummaryFieldKind K) const {
|
|
|
|
return getSummaryDataBase()[K];
|
|
|
|
}
|
|
|
|
|
|
|
|
void set(SummaryFieldKind K, uint64_t V) {
|
|
|
|
getSummaryDataBase()[K] = V;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Entry &getEntry(uint32_t I) const { return getCutoffEntryBase()[I]; }
|
|
|
|
void setEntry(uint32_t I, const ProfileSummaryEntry &E) {
|
|
|
|
Entry &ER = getCutoffEntryBase()[I];
|
|
|
|
ER.Cutoff = E.Cutoff;
|
2016-02-17 18:18:47 +00:00
|
|
|
ER.MinBlockCount = E.MinCount;
|
|
|
|
ER.NumBlocks = E.NumCounts;
|
2016-02-03 04:08:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Summary(uint32_t Size) { memset(this, 0, Size); }
|
|
|
|
void operator delete(void *ptr) { ::operator delete(ptr); }
|
|
|
|
|
|
|
|
Summary() = delete;
|
|
|
|
};
|
|
|
|
|
|
|
|
inline std::unique_ptr<Summary> allocSummary(uint32_t TotalSize) {
|
|
|
|
return std::unique_ptr<Summary>(new (::operator new(TotalSize))
|
|
|
|
Summary(TotalSize));
|
|
|
|
}
|
2015-11-17 23:00:40 +00:00
|
|
|
} // end namespace IndexedInstrProf
|
2015-10-18 01:02:29 +00:00
|
|
|
|
|
|
|
namespace RawInstrProf {
|
|
|
|
|
2016-02-08 18:13:49 +00:00
|
|
|
// Version 1: First version
|
|
|
|
// Version 2: Added value profile data section. Per-function control data
|
|
|
|
// struct has more fields to describe value profile information.
|
|
|
|
// Version 3: Compressed name section support. Function PGO name reference
|
|
|
|
// from control data struct is changed from raw pointer to Name's MD5 value.
|
2015-11-22 02:05:50 +00:00
|
|
|
const uint64_t Version = INSTR_PROF_RAW_VERSION;
|
|
|
|
|
|
|
|
template <class IntPtrT> inline uint64_t getMagic();
|
|
|
|
template <> inline uint64_t getMagic<uint64_t>() {
|
|
|
|
return INSTR_PROF_RAW_MAGIC_64;
|
2015-10-18 01:02:29 +00:00
|
|
|
}
|
|
|
|
|
2015-11-22 02:05:50 +00:00
|
|
|
template <> inline uint64_t getMagic<uint32_t>() {
|
|
|
|
return INSTR_PROF_RAW_MAGIC_32;
|
2015-10-18 01:02:29 +00:00
|
|
|
}
|
|
|
|
|
2015-11-10 00:24:45 +00:00
|
|
|
// Per-function profile data header/control structure.
|
2015-10-18 01:02:29 +00:00
|
|
|
// The definition should match the structure defined in
|
|
|
|
// compiler-rt/lib/profile/InstrProfiling.h.
|
|
|
|
// It should also match the synthesized type in
|
|
|
|
// Transforms/Instrumentation/InstrProfiling.cpp:getOrCreateRegionCounters.
|
2015-11-18 18:14:55 +00:00
|
|
|
template <class IntPtrT> struct LLVM_ALIGNAS(8) ProfileData {
|
2015-11-05 00:47:26 +00:00
|
|
|
#define INSTR_PROF_DATA(Type, LLVMType, Name, Init) Type Name;
|
|
|
|
#include "llvm/ProfileData/InstrProfData.inc"
|
2015-10-18 01:02:29 +00:00
|
|
|
};
|
|
|
|
|
2015-11-10 00:24:45 +00:00
|
|
|
// File header structure of the LLVM profile data in raw format.
|
2015-10-18 01:02:29 +00:00
|
|
|
// The definition should match the header referenced in
|
|
|
|
// compiler-rt/lib/profile/InstrProfilingFile.c and
|
|
|
|
// InstrProfilingBuffer.c.
|
|
|
|
struct Header {
|
2015-11-23 03:49:07 +00:00
|
|
|
#define INSTR_PROF_RAW_HEADER(Type, Name, Init) const Type Name;
|
2015-11-22 00:06:39 +00:00
|
|
|
#include "llvm/ProfileData/InstrProfData.inc"
|
2015-10-18 01:02:29 +00:00
|
|
|
};
|
|
|
|
|
2016-01-26 18:48:36 +00:00
|
|
|
} // end namespace RawInstrProf
|
2015-10-18 01:02:29 +00:00
|
|
|
|
2014-03-21 17:24:48 +00:00
|
|
|
} // end namespace llvm
|
|
|
|
|
2014-06-11 19:05:50 +00:00
|
|
|
namespace std {
|
|
|
|
template <>
|
|
|
|
struct is_error_code_enum<llvm::instrprof_error> : std::true_type {};
|
|
|
|
}
|
|
|
|
|
2016-01-26 18:48:36 +00:00
|
|
|
#endif // LLVM_PROFILEDATA_INSTRPROF_H
|