Changeset View
Changeset View
Standalone View
Standalone View
llvm/trunk/include/llvm/ProfileData/InstrProfData.inc
Show First 20 Lines • Show All 622 Lines • ▼ Show 20 Lines | #define INSTR_PROF_RAW_MAGIC_64 (uint64_t)255 << 56 | (uint64_t)'l' << 48 | \ | ||||
(uint64_t)'f' << 16 | (uint64_t)'r' << 8 | (uint64_t)129 | (uint64_t)'f' << 16 | (uint64_t)'r' << 8 | (uint64_t)129 | ||||
#define INSTR_PROF_RAW_MAGIC_32 (uint64_t)255 << 56 | (uint64_t)'l' << 48 | \ | #define INSTR_PROF_RAW_MAGIC_32 (uint64_t)255 << 56 | (uint64_t)'l' << 48 | \ | ||||
(uint64_t)'p' << 40 | (uint64_t)'r' << 32 | (uint64_t)'o' << 24 | \ | (uint64_t)'p' << 40 | (uint64_t)'r' << 32 | (uint64_t)'o' << 24 | \ | ||||
(uint64_t)'f' << 16 | (uint64_t)'R' << 8 | (uint64_t)129 | (uint64_t)'f' << 16 | (uint64_t)'R' << 8 | (uint64_t)129 | ||||
/* Raw profile format version (start from 1). */ | /* Raw profile format version (start from 1). */ | ||||
#define INSTR_PROF_RAW_VERSION 4 | #define INSTR_PROF_RAW_VERSION 4 | ||||
/* Indexed profile format version (start from 1). */ | /* Indexed profile format version (start from 1). */ | ||||
#define INSTR_PROF_INDEX_VERSION 4 | #define INSTR_PROF_INDEX_VERSION 5 | ||||
/* Coverage mapping format vresion (start from 0). */ | /* Coverage mapping format vresion (start from 0). */ | ||||
#define INSTR_PROF_COVMAP_VERSION 2 | #define INSTR_PROF_COVMAP_VERSION 2 | ||||
/* Profile version is always of type uint64_t. Reserve the upper 8 bits in the | /* Profile version is always of type uint64_t. Reserve the upper 8 bits in the | ||||
* version for other variants of profile. We set the lowest bit of the upper 8 | * version for other variants of profile. We set the lowest bit of the upper 8 | ||||
* bits (i.e. bit 56) to 1 to indicate if this is an IR-level instrumentaiton | * bits (i.e. bit 56) to 1 to indicate if this is an IR-level instrumentaiton | ||||
* generated profile, and 0 if this is a Clang FE generated profile. | * generated profile, and 0 if this is a Clang FE generated profile. | ||||
*/ | */ | ||||
▲ Show 20 Lines • Show All 101 Lines • Show Last 20 Lines |