[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / tools / llvm-profdata / cutoff.test
blob9d59ede4e8428a4f645086396415afc7ed764782
1 Basic tests for cutoff options in show command.
3 RUN: llvm-profdata show -value-cutoff=1 %p/Inputs/cutoff.proftext | FileCheck %s -check-prefixes=CUTOFF1,CHECK
4 RUN: llvm-profdata show -value-cutoff=1000 %p/Inputs/cutoff.proftext | FileCheck %s -check-prefixes=CUTOFF1000,CHECK
5 RUN: llvm-profdata show -all-functions -value-cutoff=1 %p/Inputs/cutoff.proftext | FileCheck %s -check-prefixes=CUTOFF1FUNC,CUTOFF1,CHECK
6 RUN: llvm-profdata show -all-functions -value-cutoff=1000 %p/Inputs/cutoff.proftext | FileCheck %s -check-prefixes=CUTOFF1000FUNC,CUTOFF1000,CHECK
7 RUN: llvm-profdata show -value-cutoff=1 -list-below-cutoff %p/Inputs/cutoff.proftext | FileCheck %s -check-prefixes=BELOW1,CUTOFF1,CHECK
8 RUN: llvm-profdata show -value-cutoff=1000 -list-below-cutoff %p/Inputs/cutoff.proftext | FileCheck %s -check-prefixes=BELOW1000,CUTOFF1000,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