mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-20 00:20:11 +00:00
ProfileData: Add support for the indexed instrprof format
This adds support for an indexed instrumentation based profiling format, which is just a small header and an on disk hash table. This format will be used by clang's -fprofile-instr-use= for PGO. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206656 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -33,6 +33,8 @@ class InstrProfErrorCategoryType : public error_category {
|
||||
return "Invalid header";
|
||||
case instrprof_error::unsupported_version:
|
||||
return "Unsupported format version";
|
||||
case instrprof_error::unsupported_hash_type:
|
||||
return "Unsupported hash function";
|
||||
case instrprof_error::too_large:
|
||||
return "Too much profile data";
|
||||
case instrprof_error::truncated:
|
||||
|
||||
Reference in New Issue
Block a user