1 //=-- InstrProf.cpp - Instrumented profiling format support -----------------=//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file contains support for clang's instrumentation based PGO and
13 //===----------------------------------------------------------------------===//
15 #include "llvm/ProfileData/InstrProf.h"
16 #include "llvm/Support/ErrorHandling.h"
21 class InstrProfErrorCategoryType : public error_category {
22 const char *name() const override { return "llvm.instrprof"; }
23 std::string message(int IE) const override {
24 instrprof_error::ErrorType E = static_cast<instrprof_error::ErrorType>(IE);
26 case instrprof_error::success:
28 case instrprof_error::eof:
30 case instrprof_error::bad_magic:
31 return "Invalid file format (bad magic)";
32 case instrprof_error::unsupported_version:
33 return "Unsupported format version";
34 case instrprof_error::too_large:
35 return "Too much profile data";
36 case instrprof_error::truncated:
37 return "Truncated profile data";
38 case instrprof_error::malformed:
39 return "Malformed profile data";
40 case instrprof_error::unknown_function:
41 return "No profile data available for function";
43 llvm_unreachable("A value of instrprof_error has no message.");
45 error_condition default_error_condition(int EV) const {
46 if (EV == instrprof_error::success)
48 return errc::invalid_argument;
53 const error_category &llvm::instrprof_category() {
54 static InstrProfErrorCategoryType C;