Don't import error_category into the llvm namespace.
[oota-llvm.git] / include / llvm / ProfileData / InstrProf.h
1 //=-- InstrProf.h - Instrumented profiling format support ---------*- C++ -*-=//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Instrumentation-based profiling data is generated by instrumented
11 // binaries through library functions in compiler-rt, and read by the clang
12 // frontend to feed PGO.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #ifndef LLVM_PROFILEDATA_INSTRPROF_H_
17 #define LLVM_PROFILEDATA_INSTRPROF_H_
18
19 #include "llvm/Support/system_error.h"
20
21 namespace llvm {
22
23 const std::error_category &instrprof_category();
24
25 enum class instrprof_error {
26     success = 0,
27     eof,
28     bad_magic,
29     bad_header,
30     unsupported_version,
31     unsupported_hash_type,
32     too_large,
33     truncated,
34     malformed,
35     unknown_function,
36     hash_mismatch,
37     count_mismatch,
38     counter_overflow
39 };
40
41 inline error_code make_error_code(instrprof_error E) {
42   return error_code(static_cast<int>(E), instrprof_category());
43 }
44
45 } // end namespace llvm
46
47 namespace std {
48 template <>
49 struct is_error_code_enum<llvm::instrprof_error> : std::true_type {};
50 }
51
52 #endif // LLVM_PROFILEDATA_INSTRPROF_H_