[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / tools / llvm-profgen / cs-preinline-cost.test
blob572dce22390fff0cc17b01f747753f86dd0d7429
1 ; REQUIRES: asserts
2 ; Test default using size of profile as a proxy
3 ; RUN: llvm-profgen --format=text --perfscript=%S/Inputs/cs-preinline-cost.perfscript --binary=%S/Inputs/cs-preinline-cost.perfbin --csspgo-preinliner --debug-only=cs-preinliner --output=/dev/null 2>&1 | FileCheck %s --check-prefix=CHECK-DEFAULT
5 ; Test use-context-cost-for-preinliner using inlinee's byte size as context-sensitive inline cost
6 ; RUN: llvm-profgen --format=text --perfscript=%S/Inputs/cs-preinline-cost.perfscript --binary=%S/Inputs/cs-preinline-cost.perfbin --csspgo-preinliner --debug-only=cs-preinliner --use-context-cost-for-preinliner --output=/dev/null 2>&1 | FileCheck %s --check-prefix=CHECK-CSCOST
8 CHECK-DEFAULT:      Process main for context-sensitive pre-inlining (pre-inline size: 9, size limit: 108)
9 CHECK-DEFAULT-NEXT:   Inlined context profile for: main:9 @ _Z3fooi (callee size: 2, call count:545)
10 CHECK-DEFAULT-NEXT:   Inlined context profile for: main:7 @ _Z3fooi (callee size: 14, call count:545)
11 CHECK-DEFAULT-NEXT:   Inlined context profile for: main:8 @ _Z3fooi (callee size: 4, call count:544)
13 CHECK-CSCOST:      Process main for context-sensitive pre-inlining (pre-inline size: 69, size limit: 828)
14 CHECK-CSCOST-NEXT:   Inlined context profile for: main:9 @ _Z3fooi (callee size: 264, call count:545)
15 CHECK-CSCOST-NEXT:   Inlined context profile for: main:7 @ _Z3fooi (callee size: 279, call count:545)
16 CHECK-CSCOST-NEXT:   Inlined context profile for: main:8 @ _Z3fooi (callee size: 44, call count:544)
18 ; binary is built with the source below using the following command line:
19 ;   clang -O3 -g -fpseudo-probe-for-profiling -fexperimental-new-pass-manager test.cpp
21 ;#include <stdio.h>
23 ;volatile int state = 9000;
25 ;int foo(int x) {
26 ;    if (x == 0) {
27 ;        return 7;
28 ;    }
30 ;    if ((x & 1) == 0) {
31 ;        state--;
32 ;        return 9;
33 ;    }
35 ;    if (state > 5000) {
36 ;        while (state > 5000) {
37 ;               for (int i = 50; i >= 0; i--) {
38 ;                state *= 6;
39 ;                state /= 7;
40 ;                state -= 1;
41 ;            }
42 ;        }
43 ;    }
44 ;    else {
45 ;        while (state < 5000) {
46 ;            for (int i = 50; i >= 0; i--) {
47 ;                state *= 6;
48 ;                state /= 5;
49 ;                state += 1;
50 ;            }
51 ;        }
52 ;    }
54 ;    return state;
57 ;volatile int cnt = 10000000;//10000000;
58 ;int main() {
59 ;    int r = 0;
60 ;    for (int i = 0; i < cnt; i++) {
61 ;      r += foo(i);
62 ;      r -= foo(i & (~1));
63 ;      r += foo(0);
64 ;    }
65 ;    return r;