1 // RUN: %clang_profgen -O2 -o %t %s
2 // RUN: %run %t %t.profraw 1 1
3 // RUN: llvm-profdata show --all-functions --counts %t.profraw | FileCheck %s
5 // FIXME: llvm-profdata exits with "Malformed instrumentation profile data"
6 // XFAIL: target={{.*windows.*}}
11 #include "profile_test.h"
13 int __llvm_profile_runtime
= 0;
14 uint64_t __llvm_profile_get_size_for_buffer(void);
15 int __llvm_profile_write_buffer(char *);
16 void __llvm_profile_reset_counters(void);
17 int __llvm_profile_merge_from_buffer(const char *, uint64_t);
19 int dumpBuffer(const char *FileN
, const char *Buffer
, uint64_t Size
) {
20 FILE *File
= fopen(FileN
, "w");
23 if (fwrite(Buffer
, 1, Size
, File
) != Size
)
36 /* This function is not profiled */
37 void bar(int M
) { g
+= M
; }
39 int main(int argc
, const char *argv
[]) {
44 const uint64_t MaxSize
= 10000;
45 static ALIGNED(sizeof(uint64_t)) char Buffer
[MaxSize
];
47 uint64_t Size
= __llvm_profile_get_size_for_buffer();
51 /* Start profiling. */
52 __llvm_profile_reset_counters();
54 /* End profiling by freezing counters. */
55 if (__llvm_profile_write_buffer(Buffer
))
58 /* Its profile will be discarded. */
59 for (i
= 0; i
< 10; i
++)
62 /* Start profiling again and merge in previously
63 saved counters in buffer. */
64 __llvm_profile_reset_counters();
65 __llvm_profile_merge_from_buffer(Buffer
, Size
);
68 if (__llvm_profile_write_buffer(Buffer
))
71 /* Its profile will be discarded. */
74 /* Now it is time to dump the profile to file. */
75 return dumpBuffer(argv
[1], Buffer
, Size
);
79 // CHECK-LABEL: dumpBuffer:
81 // CHECK-NEXT: Function count: 0
82 // CHECK-NEXT: Block counts: [0, 0]
84 // Profiled with entry count == 2
87 // CHECK-NEXT: Function count: 2
88 // CHECK-NEXT: Block counts: [2]
93 // CHECK-NEXT: Function count: 0
94 // CHECK-NEXT: Block counts: []
99 // CHECK-NEXT: Function count: 0
100 // CHECK-NEXT: Block counts: [0, 0, 0, 0, 0]