2014-03-21 17:24:48 +00:00
|
|
|
//=-- InstrProf.h - Instrumented profiling format support ---------*- C++ -*-=//
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-03-21 18:46:29 +00:00
|
|
|
#ifndef LLVM_PROFILEDATA_INSTRPROF_H_
|
|
|
|
#define LLVM_PROFILEDATA_INSTRPROF_H_
|
2014-03-21 17:24:48 +00:00
|
|
|
|
|
|
|
#include "llvm/Support/system_error.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
const error_category &instrprof_category();
|
|
|
|
|
|
|
|
struct instrprof_error {
|
|
|
|
enum ErrorType {
|
|
|
|
success = 0,
|
|
|
|
eof,
|
|
|
|
bad_magic,
|
2014-03-21 20:42:28 +00:00
|
|
|
bad_header,
|
2014-03-21 17:24:48 +00:00
|
|
|
unsupported_version,
|
2014-04-18 21:48:40 +00:00
|
|
|
unsupported_hash_type,
|
2014-03-21 17:24:48 +00:00
|
|
|
too_large,
|
|
|
|
truncated,
|
|
|
|
malformed,
|
2014-03-21 17:46:22 +00:00
|
|
|
unknown_function,
|
|
|
|
hash_mismatch,
|
|
|
|
count_mismatch,
|
|
|
|
counter_overflow
|
2014-03-21 17:24:48 +00:00
|
|
|
};
|
|
|
|
ErrorType V;
|
|
|
|
|
|
|
|
instrprof_error(ErrorType V) : V(V) {}
|
|
|
|
operator ErrorType() const { return V; }
|
|
|
|
};
|
|
|
|
|
|
|
|
inline error_code make_error_code(instrprof_error E) {
|
|
|
|
return error_code(static_cast<int>(E), instrprof_category());
|
|
|
|
}
|
|
|
|
|
|
|
|
template <> struct is_error_code_enum<instrprof_error> : std::true_type {};
|
|
|
|
template <> struct is_error_code_enum<instrprof_error::ErrorType>
|
|
|
|
: std::true_type {};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
2014-03-21 18:46:29 +00:00
|
|
|
#endif // LLVM_PROFILEDATA_INSTRPROF_H_
|