[InstCombine] Signed saturation patterns
[llvm-core.git] / test / Other / statistic.ll
blobb972780fc35f78f186796eda04366f0f31c920e6
1 ; RUN: opt < %s -o /dev/null -instsimplify -stats -stats-json 2>&1 | FileCheck %s --check-prefix=JSON
2 ; RUN: opt < %s -o /dev/null -instsimplify -stats -stats-json -info-output-file %t && FileCheck %s < %t --check-prefix=JSON
3 ; RUN: opt < %s -o /dev/null -instsimplify -stats -stats-json -time-passes 2>&1 | FileCheck %s --check-prefixes=JSON,JSONTIME
4 ; RUN: opt < %s -o /dev/null -instsimplify -stats -stats-json -time-passes -info-output-file %t && FileCheck %s < %t --check-prefixes=JSON,JSONTIME
5 ; RUN: opt < %s -o /dev/null -instsimplify -stats 2>&1 | FileCheck %s --check-prefix=DEFAULT
6 ; RUN: opt < %s -o /dev/null -instsimplify -stats -info-output-file %t && FileCheck %s < %t --check-prefix=DEFAULT
7 ; REQUIRES: asserts
9 ; JSON: {
10 ; JSON-DAG:   "instsimplify.NumSimplified": 1
11 ; JSONTIME-DAG:   "time.pass.instsimplify.wall"
12 ; JSONTIME-DAG:   "time.pass.instsimplify.user"
13 ; JSONTIME-DAG:   "time.pass.instsimplify.sys"
14 ; JSON: }
16 ; DEFAULT: 1 instsimplify - Number of redundant instructions removed
18 define i32 @foo() {
19   %res = add i32 5, 4
20   ret i32 %res