Home
last modified time | relevance | path

Searched refs:INSTR_PROF_RAW_HEADER (Results 1 – 5 of 5) sorted by relevance

/external/compiler-rt/lib/profile/
DInstrProfData.inc90 /* INSTR_PROF_RAW_HEADER start */
92 #ifndef INSTR_PROF_RAW_HEADER
93 #define INSTR_PROF_RAW_HEADER(Type, Name, Initializer)
97 INSTR_PROF_RAW_HEADER(uint64_t, Magic, __llvm_profile_get_magic())
98 INSTR_PROF_RAW_HEADER(uint64_t, Version, __llvm_profile_get_version())
99 INSTR_PROF_RAW_HEADER(uint64_t, DataSize, DataSize)
100 INSTR_PROF_RAW_HEADER(uint64_t, CountersSize, CountersSize)
101 INSTR_PROF_RAW_HEADER(uint64_t, NamesSize, NamesSize)
102 INSTR_PROF_RAW_HEADER(uint64_t, CountersDelta, (uintptr_t)CountersBegin)
103 INSTR_PROF_RAW_HEADER(uint64_t, NamesDelta, (uintptr_t)NamesBegin)
[all …]
DInstrProfiling.h29 #define INSTR_PROF_RAW_HEADER(Type, Name, Initializer) Type Name; macro
DInstrProfilingWriter.c52 #define INSTR_PROF_RAW_HEADER(Type, Name, Init) Header.Name = Init; in llvmWriteProfDataImpl() macro
/external/llvm/include/llvm/ProfileData/
DInstrProfData.inc90 /* INSTR_PROF_RAW_HEADER start */
92 #ifndef INSTR_PROF_RAW_HEADER
93 #define INSTR_PROF_RAW_HEADER(Type, Name, Initializer)
97 INSTR_PROF_RAW_HEADER(uint64_t, Magic, __llvm_profile_get_magic())
98 INSTR_PROF_RAW_HEADER(uint64_t, Version, __llvm_profile_get_version())
99 INSTR_PROF_RAW_HEADER(uint64_t, DataSize, DataSize)
100 INSTR_PROF_RAW_HEADER(uint64_t, CountersSize, CountersSize)
101 INSTR_PROF_RAW_HEADER(uint64_t, NamesSize, NamesSize)
102 INSTR_PROF_RAW_HEADER(uint64_t, CountersDelta, (uintptr_t)CountersBegin)
103 INSTR_PROF_RAW_HEADER(uint64_t, NamesDelta, (uintptr_t)NamesBegin)
[all …]
DInstrProf.h558 #define INSTR_PROF_RAW_HEADER(Type, Name, Init) const Type Name; macro