1 ; In the perfscript input, the consecutive branch pairs 0x2017bf/0x201760 and 0x2017d8/0x2017e3 form an invalid execution range [0x2017e3, 0x2017bf].
2 ; We are testing only the invalid range is dropped to avoid bogus instruction ranges. All other ranges and all branch samples should be kept.
4 ; RUN: llvm-profgen --format=text --perfscript=%S/Inputs/invalid-range.perfscript --binary=%S/Inputs/noinline-cs-pseudoprobe.perfbin --output=%t1 --skip-symbolization --ignore-stack-samples --use-offset=0
5 ; RUN: FileCheck %s --input-file %t1 --check-prefix=NOCS
7 ; RUN: llvm-profgen --format=text --perfscript=%S/Inputs/invalid-range.perfscript --binary=%S/Inputs/noinline-cs-pseudoprobe.perfbin --output=%t2 --skip-symbolization --use-offset=0
8 ; RUN: FileCheck %s --input-file %t2 --check-prefix=CS
12 ; NOCS-NEXT: 201760-20177f:7
13 ; NOCS-NEXT: 20179e-2017bf:5
14 ; NOCS-NEXT: 2017c4-2017cf:6
15 ; NOCS-NEXT: 2017c4-2017d8:1
17 ; NOCS-NEXT: 20177f->2017c4:7
18 ; NOCS-NEXT: 2017bf->201760:7
19 ; NOCS-NEXT: 2017cf->20179e:8
20 ; NOCS-NEXT: 2017d8->2017e3:1
25 ; CS-NEXT: 201760-20177f:6
26 ; CS-NEXT: 20179e-2017bf:5
27 ; CS-NEXT: 2017c4-2017cf:5
28 ; CS-NEXT: 2017c4-2017d8:1
30 ; CS-NEXT: 20177f->2017c4:6
31 ; CS-NEXT: 2017bf->201760:6
32 ; CS-NEXT: 2017cf->20179e:6
33 ; CS-NEXT: 2017d8->2017e3:1
36 ; CS-NEXT: 2017c4-2017cf:1
38 ; CS-NEXT: 2017bf->201760:1
39 ; CS-NEXT: 2017cf->20179e:2
40 ; CS-NEXT: [0x2017f4 @ 0x2017bf]
42 ; CS-NEXT: 201760-20177f:1
44 ; CS-NEXT: 20177f->2017c4:1
46 ; clang -O3 -fuse-ld=lld -fpseudo-probe-for-profiling
47 ; -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -Xclang -mdisable-tail-calls
52 int bar(int x, int y) {
61 while (i++ < 4000 * 4000)
62 if (i % 91) s = bar(i, s); else s += 30;
63 printf("sum is %d\n", s);