summaryrefslogtreecommitdiff
path: root/lib/tsan/benchmarks/func_entry_exit.cc
blob: 5e0ba1d6981bab5ac66c894ed1e0067f8c147765 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Synthetic benchmark for __tsan_func_entry/exit (spends ~75% there).

void foo(bool x);

int main() {
  volatile int kRepeat1 = 1 << 30;
  const int kRepeat = kRepeat1;
  for (int i = 0; i < kRepeat; i++)
    foo(false);
}

__attribute__((noinline)) void bar(volatile bool x) {
  if (x)
    foo(x);
}

__attribute__((noinline)) void foo(bool x) {
  if (__builtin_expect(x, false))
    bar(x);
}