summaryrefslogtreecommitdiff
path: root/test/profile/instrprof-dump.c
blob: 93c3c46f691604220b8dc6fc3c3755002ac45c48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
RUN: rm -fr %t.profdir
RUN: %clang_profgen=%t.profdir/default_%m.profraw -o %t -O2 %s
RUN: %run %t  2>&1 | FileCheck %s --check-prefix=NO_EXIT_WRITE
RUN: llvm-profdata merge -o %t.profdata %t.profdir
RUN: %clang_profuse=%t.profdata -o - -S -emit-llvm %s | FileCheck %s  --check-prefix=PROF

NO_EXIT_WRITE: Profile data not written to file: already written
*/

int __llvm_profile_dump(void);
void __llvm_profile_reset_counters(void);
int foo(int);
int bar(int);
int skip(int);

int main(int argc, const char *argv[]) {
  int Ret = foo(0); /* region 1 */
  __llvm_profile_dump();

  /* not profiled -- cleared later. */
  skip(0);   /* skipped region */
  
  __llvm_profile_reset_counters();
  Ret += bar(0);  /* region 2 */
  __llvm_profile_dump();

  skip(1);

  __llvm_profile_reset_counters();
  /* foo's profile will be merged.  */
  foo(1);  /* region 3 */
  __llvm_profile_dump();

  return Ret;
}

__attribute__((noinline)) int foo(int X) {
  /* PROF: define {{.*}} @foo({{.*}}!prof ![[ENT:[0-9]+]]
     PROF: br i1 %{{.*}}, label %{{.*}}, label %{{.*}}, !prof ![[PD1:[0-9]+]]
  */
  return X <= 0 ? -X : X;
}

__attribute__((noinline)) int skip(int X) {
  /* PROF: define {{.*}} @skip(
     PROF: br i1 %{{.*}}, label %{{.*}}, label %{{[^,]+$}}
  */
  return X <= 0 ? -X : X;
}

__attribute__((noinline)) int bar(int X) {
  /* PROF-LABEL: define {{.*}} @bar(
     PROF: br i1 %{{.*}}, label %{{.*}}, label %{{.*}}, !prof ![[PD2:[0-9]+]]
  */
  return X <= 0 ? -X : X;
}

/*
PROF: ![[ENT]] = !{!"function_entry_count", i64 2}  
PROF: ![[PD1]] = !{!"branch_weights", i32 2, i32 2}
*/