[Alignment][NFC] Instructions::getLoadStoreAlignment
[llvm-complete.git] / test / tools / llvm-profdata / cutoff.test
blobf04ea16f324e4480fa2f6607b61038f367c5a7d9
1 Basic tests for cutoff options in show command.
3 RUN: llvm-profdata show -value-cutoff=1 %p/Inputs/cutoff.proftext | FileCheck %s -check-prefix=CUTOFF1 -check-prefix=CHECK
4 RUN: llvm-profdata show -value-cutoff=1000 %p/Inputs/cutoff.proftext | FileCheck %s -check-prefix=CUTOFF1000 -check-prefix=CHECK
5 RUN: llvm-profdata show -all-functions -value-cutoff=1 %p/Inputs/cutoff.proftext | FileCheck %s -check-prefix=CUTOFF1FUNC -check-prefix=CUTOFF1 -check-prefix=CHECK
6 RUN: llvm-profdata show -all-functions -value-cutoff=1000 %p/Inputs/cutoff.proftext | FileCheck %s -check-prefix=CUTOFF1000FUNC -check-prefix=CUTOFF1000 -check-prefix=CHECK
7 RUN: llvm-profdata show -value-cutoff=1 -list-below-cutoff %p/Inputs/cutoff.proftext | FileCheck %s -check-prefix=BELOW1 -check-prefix=CUTOFF1 -check-prefix=CHECK
8 RUN: llvm-profdata show -value-cutoff=1000 -list-below-cutoff %p/Inputs/cutoff.proftext | FileCheck %s -check-prefix=BELOW1000 -check-prefix=CUTOFF1000 -check-prefix=CHECK
9 CUTOFF1FUNC-NOT: bar
10 CUTOFF1FUNC: Functions shown: 2
11 CUTOFF1000FUNC-NOT: bar
12 CUTOFF1000FUNC-NOT: foo
13 CUTOFF1000FUNC: Functions shown: 1
14 BELOW1: The list of functions with the maximum counter less than 1:
15 BELOW1:  bar: (Max = 0 Sum = 0)
16 BELOW1000:The list of functions with the maximum counter less than 1000:
17 BELOW1000:  bar: (Max = 0 Sum = 0)
18 BELOW1000:  foo: (Max = 999 Sum = 1000)
19 CHECK: Total functions: 3
20 CUTOFF1: Number of functions with maximum count (< 1): 1
21 CUTOFF1: Number of functions with maximum count (>= 1): 2
22 CUTOFF1000: Number of functions with maximum count (< 1000): 2
23 CUTOFF1000: Number of functions with maximum count (>= 1000): 1