File: inline-probe-afdo.test

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,998,520 kB
  • sloc: cpp: 6,951,680; ansic: 1,486,157; asm: 913,598; python: 232,024; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,009; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,167; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (82 lines) | stat: -rw-r--r-- 1,856 bytes parent folder | download | duplicates (8)
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
; RUN: llvm-profgen --format=text --use-dwarf-correlation --ignore-stack-samples --perfscript=%S/Inputs/cs-preinline-cost.perfscript --binary=%S/Inputs/cs-preinline-cost.perfbin --output %t
; RUN: FileCheck %s --input-file %t

; CHECK:     main:947937:0
; CHECK-NEXT:  2: 545
; CHECK-NEXT:  3: 545
; CHECK-NEXT:  5: 545
; CHECK-NEXT:  7: 0
; CHECK-NEXT:  65496: 545
; CHECK-NEXT:  3.7: _Z3fooi:915794
; CHECK-NEXT:   1: 545
; CHECK-NEXT:   5: 545
; CHECK-NEXT:   6: 272
; CHECK-NEXT:   10: 273
; CHECK-NEXT:   11: 180
; CHECK-NEXT:   12: 6965
; CHECK-NEXT:   13: 6965
; CHECK-NEXT:   14: 6965
; CHECK-NEXT:   15: 6965
; CHECK-NEXT:   20: 182
; CHECK-NEXT:   21: 6958
; CHECK-NEXT:   22: 6958
; CHECK-NEXT:   23: 6958
; CHECK-NEXT:   24: 6958
; CHECK-NEXT:   29: 272
; CHECK-NEXT:   65529: 182
; CHECK-NEXT:  4.8: _Z3fooi:16338
; CHECK-NEXT:   1: 272
; CHECK-NEXT:   6: 545




; binary is built with the source below using the following command line:
;   clang -O3 -g -fpseudo-probe-for-profiling test.cpp
;
;#include <stdio.h>
;
;volatile int state = 9000;
;
;int foo(int x) {
;    if (x == 0) {
;        return 7;
;    }
;
;    if ((x & 1) == 0) {
;        state--;
;        return 9;
;    }
;
;    if (state > 5000) {
;        while (state > 5000) {
;               for (int i = 50; i >= 0; i--) {
;                state *= 6;
;                state /= 7;
;                state -= 1;
;            }
;        }
;    }
;    else {
;        while (state < 5000) {
;            for (int i = 50; i >= 0; i--) {
;                state *= 6;
;                state /= 5;
;                state += 1;
;            }
;        }
;    }
;
;    return state;
;}
;
;volatile int cnt = 10000000;//10000000;
;int main() {
;    int r = 0;
;    for (int i = 0; i < cnt; i++) {
;      r += foo(i);
;      r -= foo(i & (~1));
;      r += foo(0);
;    }
;    return r;
;}