3 // INSTR_PROF_RAW_HEADER(uint64_t, Magic, __llvm_profile_get_magic())
4 // INSTR_PROF_RAW_HEADER(uint64_t, Version, __llvm_profile_get_version())
5 // INSTR_PROF_RAW_HEADER(uint64_t, BinaryIdsSize, __llvm_write_binary_ids(NULL))
6 // INSTR_PROF_RAW_HEADER(uint64_t, DataSize, DataSize)
7 // INSTR_PROF_RAW_HEADER(uint64_t, CountersSize, CountersSize)
8 // INSTR_PROF_RAW_HEADER(uint64_t, NamesSize, NamesSize)
9 // INSTR_PROF_RAW_HEADER(uint64_t, CountersDelta, (uintptr_t)CountersBegin)
10 // INSTR_PROF_RAW_HEADER(uint64_t, NamesDelta, (uintptr_t)NamesBegin)
11 // INSTR_PROF_RAW_HEADER(uint64_t, ValueKindLast, IPVK_Last)
13 RUN: printf '\201rforpl\377' > %t.profraw
14 RUN: printf '\10\0\0\0\0\0\0\0' >> %t.profraw
15 RUN: printf '\0\0\0\0\0\0\0\0' >> %t.profraw
16 RUN: printf '\1\0\0\0\0\0\0\0' >> %t.profraw
17 RUN: printf '\0\0\0\0\0\0\0\0' >> %t.profraw
18 RUN: printf '\2\0\0\0\0\0\0\0' >> %t.profraw
19 RUN: printf '\0\0\0\0\0\0\0\0' >> %t.profraw
20 RUN: printf '\10\0\0\0\0\0\0\0' >> %t.profraw
21 RUN: printf '\0\0\6\0\1\0\0\0' >> %t.profraw
22 RUN: printf '\0\0\6\0\2\0\0\0' >> %t.profraw
23 RUN: printf '\0\0\0\0\0\0\0\0' >> %t.profraw
28 // #define INSTR_PROF_DATA(Type, LLVMType, Name, Initializer) \
30 // #include "llvm/ProfileData/InstrProfData.inc"
33 RUN: printf '\067\265\035\031\112\165\023\344' >> %t.profraw
34 RUN: printf '\02\0\0\0\0\0\0\0' >> %t.profraw
36 // Note: The CounterPtr here is off-by-one.
38 // Octal '\11' is 9 in decimal: this should push CounterOffset to 1. As there are two counters,
39 // the profile reader should error out.
40 RUN: printf '\11\0\6\0\1\0\0\0' >> %t.profraw
42 RUN: printf '\0\0\0\0\0\0\0\0' >> %t.profraw
43 RUN: printf '\0\0\0\0\0\0\0\0' >> %t.profraw
44 RUN: printf '\02\0\0\0\0\0\0\0' >> %t.profraw
48 RUN: printf '\067\0\0\0\0\0\0\0' >> %t.profraw
49 RUN: printf '\101\0\0\0\0\0\0\0' >> %t.profraw
53 RUN: printf '\3\0bar\0\0\0' >> %t.profraw
55 RUN: not llvm-profdata merge -o /dev/null %t.profraw 2>&1 | FileCheck %s
56 CHECK: warning: {{.+}}: malformed instrumentation profile data: number of counters 2 is greater than the maximum number of counters 0
57 CHECK: error: no profile can be merged