1 ; RUN: llvm-profgen --format=text --perfscript=%S/Inputs/func-split.perfscript --binary=%S/Inputs/func-split.perfbin --output=%t --gen-cs-nested-profile=0
2 ; RUN: FileCheck %s --input-file %t --check-prefix=CHECK
3 ; RUN: llvm-profgen --format=text --perfscript=%S/Inputs/func-split.perfscript --binary=%S/Inputs/func-split.perfbin --output=%t --ignore-stack-samples --gen-cs-nested-profile=0
4 ; RUN: FileCheck %s --input-file %t --check-prefix=CHECK-STRIP-CTX
11 ;CHECK: [foo:3.1 @ bar]:8:0
18 ;CHECK-STRIP-CTX: foo:1334:0
19 ;CHECK-STRIP-CTX: 0: 0
20 ;CHECK-STRIP-CTX: 2.1: 27
21 ;CHECK-STRIP-CTX: 3: 27
22 ;CHECK-STRIP-CTX: 3.1: 1 bar:1
23 ;CHECK-STRIP-CTX: 3.2: 26
24 ;CHECK-STRIP-CTX: 4: 0
25 ;CHECK-STRIP-CTX: bar:27:1
26 ;CHECK-STRIP-CTX: 1: 1
27 ;CHECK-STRIP-CTX: 5: 1
29 ;CHECK-STRIP-CTX-NOT: foo.cold
32 ; clang -g -O3 -fdebug-info-for-profiling func-split.c -mllvm -mfs-count-threshold=0
33 ; -fprofile-sample-use=profile.txt -fno-inline -mllvm --enable-split-machine-functions=1
37 int bar(int x, int y) {
46 while (i++ < 4000 * 4000)
47 if (i % 91 == 0) s = bar(i, s); else s += 30;
48 printf("sum is %d\n", s);