[rtsan] Add fork/execve interceptors (#117198)
[llvm-project.git] / llvm / test / Transforms / InstSimplify / ConstProp / smul-fix-sat.ll
blob2f559853a341a81c148372c28eca9914e2497714
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt < %s -passes=instsimplify -S | FileCheck %s
4 ;-----------------------------------------------------------------------------
5 ; Simple test using scalar layout.
6 ;-----------------------------------------------------------------------------
8 declare i32 @llvm.smul.fix.sat.i32(i32, i32, i32)
10 define i32 @test_smul_fix_sat_i32_0() {
11 ; CHECK-LABEL: @test_smul_fix_sat_i32_0(
12 ; CHECK-NEXT:    ret i32 536870912
14   %r = call i32 @llvm.smul.fix.sat.i32(i32 1073741824, i32 1073741824, i32 31) ; 0.5 * 0.5
15   ret i32 %r
18 define i32 @test_smul_fix_sat_i32_undef_x() {
19 ; CHECK-LABEL: @test_smul_fix_sat_i32_undef_x(
20 ; CHECK-NEXT:    ret i32 0
22   %r = call i32 @llvm.smul.fix.sat.i32(i32 undef, i32 1073741824, i32 31)
23   ret i32 %r
26 define i32 @test_smul_fix_sat_i32_x_undef() {
27 ; CHECK-LABEL: @test_smul_fix_sat_i32_x_undef(
28 ; CHECK-NEXT:    ret i32 0
30   %r = call i32 @llvm.smul.fix.sat.i32(i32 17, i32 undef, i32 31)
31   ret i32 %r
34 ;-----------------------------------------------------------------------------
35 ; More extensive tests based on vectors (basically using the scalar fold
36 ; for each index).
37 ;-----------------------------------------------------------------------------
39 declare <8 x i3> @llvm.smul.fix.sat.v8i3(<8 x i3>, <8 x i3>, i32)
41 define <8 x i3> @test_smul_fix_sat_v8i3_0() {
42 ; CHECK-LABEL: @test_smul_fix_sat_v8i3_0(
43 ; CHECK-NEXT:    ret <8 x i3> <i3 3, i3 3, i3 3, i3 3, i3 0, i3 -4, i3 -4, i3 -4>
45   %r = call <8 x i3> @llvm.smul.fix.sat.v8i3(
46   <8 x i3> <i3 -4, i3 -3, i3 -2, i3 -1, i3 0, i3 1, i3 2, i3 3>,
47   <8 x i3> <i3 -4, i3 -4, i3 -4, i3 -4, i3 -4, i3 -4, i3 -4, i3 -4>,
48   i32 0)
49   ret <8 x i3> %r
52 define <8 x i3> @test_smul_fix_sat_v8i3_1() {
53 ; CHECK-LABEL: @test_smul_fix_sat_v8i3_1(
54 ; CHECK-NEXT:    ret <8 x i3> <i3 3, i3 3, i3 3, i3 2, i3 0, i3 -2, i3 -4, i3 -4>
56   %r = call <8 x i3> @llvm.smul.fix.sat.v8i3(
57   <8 x i3> <i3 -4, i3 -3, i3 -2, i3 -1, i3 0, i3 1, i3 2, i3 3>,
58   <8 x i3> <i3 -4, i3 -4, i3 -4, i3 -4, i3 -4, i3 -4, i3 -4, i3 -4>,
59   i32 1)
60   ret <8 x i3> %r
63 define <8 x i3> @test_smul_fix_sat_v8i3_2() {
64 ; CHECK-LABEL: @test_smul_fix_sat_v8i3_2(
65 ; CHECK-NEXT:    ret <8 x i3> <i3 3, i3 3, i3 2, i3 1, i3 0, i3 -1, i3 -2, i3 -3>
67   %r = call <8 x i3> @llvm.smul.fix.sat.v8i3(
68   <8 x i3> <i3 -4, i3 -3, i3 -2, i3 -1, i3 0, i3 1, i3 2, i3 3>,
69   <8 x i3> <i3 -4, i3 -4, i3 -4, i3 -4, i3 -4, i3 -4, i3 -4, i3 -4>,
70   i32 2)
71   ret <8 x i3> %r
74 define <8 x i3> @test_smul_fix_sat_v8i3_3() {
75 ; CHECK-LABEL: @test_smul_fix_sat_v8i3_3(
76 ; CHECK-NEXT:    ret <8 x i3> <i3 3, i3 3, i3 2, i3 1, i3 0, i3 -1, i3 -2, i3 -3>
78   %r = call <8 x i3> @llvm.smul.fix.sat.v8i3(
79   <8 x i3> <i3 -4, i3 -3, i3 -2, i3 -1, i3 0, i3 1, i3 2, i3 3>,
80   <8 x i3> <i3 -1, i3 -1, i3 -1, i3 -1, i3 -1, i3 -1, i3 -1, i3 -1>,
81   i32 0)
82   ret <8 x i3> %r
85 define <8 x i3> @test_smul_fix_sat_v8i3_4() {
86 ; CHECK-LABEL: @test_smul_fix_sat_v8i3_4(
87 ; CHECK-NEXT:    ret <8 x i3> <i3 2, i3 1, i3 1, i3 0, i3 0, i3 -1, i3 -1, i3 -2>
89   %r = call <8 x i3> @llvm.smul.fix.sat.v8i3(
90   <8 x i3> <i3 -4, i3 -3, i3 -2, i3 -1, i3 0, i3 1, i3 2, i3 3>,
91   <8 x i3> <i3 -1, i3 -1, i3 -1, i3 -1, i3 -1, i3 -1, i3 -1, i3 -1>,
92   i32 1)
93   ret <8 x i3> %r
96 define <8 x i3> @test_smul_fix_sat_v8i3_5() {
97 ; CHECK-LABEL: @test_smul_fix_sat_v8i3_5(
98 ; CHECK-NEXT:    ret <8 x i3> <i3 1, i3 0, i3 0, i3 0, i3 0, i3 -1, i3 -1, i3 -1>
100   %r = call <8 x i3> @llvm.smul.fix.sat.v8i3(
101   <8 x i3> <i3 -4, i3 -3, i3 -2, i3 -1, i3 0, i3 1, i3 2, i3 3>,
102   <8 x i3> <i3 -1, i3 -1, i3 -1, i3 -1, i3 -1, i3 -1, i3 -1, i3 -1>,
103   i32 2)
104   ret <8 x i3> %r
107 define <8 x i3> @test_smul_fix_sat_v8i3_6() {
108 ; CHECK-LABEL: @test_smul_fix_sat_v8i3_6(
109 ; CHECK-NEXT:    ret <8 x i3> <i3 -4, i3 -4, i3 -4, i3 -3, i3 0, i3 3, i3 3, i3 3>
111   %r = call <8 x i3> @llvm.smul.fix.sat.v8i3(
112   <8 x i3> <i3 -4, i3 -3, i3 -2, i3 -1, i3 0, i3 1, i3 2, i3 3>,
113   <8 x i3> <i3 3, i3 3, i3 3, i3 3, i3 3, i3 3, i3 3, i3 3>,
114   i32 0)
115   ret <8 x i3> %r
118 define <8 x i3> @test_smul_fix_sat_v8i3_7() {
119 ; CHECK-LABEL: @test_smul_fix_sat_v8i3_7(
120 ; CHECK-NEXT:    ret <8 x i3> <i3 -4, i3 -4, i3 -3, i3 -2, i3 0, i3 1, i3 3, i3 3>
122   %r = call <8 x i3> @llvm.smul.fix.sat.v8i3(
123   <8 x i3> <i3 -4, i3 -3, i3 -2, i3 -1, i3 0, i3 1, i3 2, i3 3>,
124   <8 x i3> <i3 3, i3 3, i3 3, i3 3, i3 3, i3 3, i3 3, i3 3>,
125   i32 1)
126   ret <8 x i3> %r
129 define <8 x i3> @test_smul_fix_sat_v8i3_8() {
130 ; CHECK-LABEL: @test_smul_fix_sat_v8i3_8(
131 ; CHECK-NEXT:    ret <8 x i3> <i3 -3, i3 -3, i3 -2, i3 -1, i3 0, i3 0, i3 1, i3 2>
133   %r = call <8 x i3> @llvm.smul.fix.sat.v8i3(
134   <8 x i3> <i3 -4, i3 -3, i3 -2, i3 -1, i3 0, i3 1, i3 2, i3 3>,
135   <8 x i3> <i3 3, i3 3, i3 3, i3 3, i3 3, i3 3, i3 3, i3 3>,
136   i32 2)
137   ret <8 x i3> %r
140 define <8 x i3> @test_smul_fix_sat_v8i3_9() {
141 ; CHECK-LABEL: @test_smul_fix_sat_v8i3_9(
142 ; CHECK-NEXT:    ret <8 x i3> <i3 0, i3 0, i3 poison, i3 poison, i3 1, i3 1, i3 1, i3 1>
144   %r = call <8 x i3> @llvm.smul.fix.sat.v8i3(
145   <8 x i3> <i3 2, i3 undef, i3 2, i3 poison, i3 2, i3 2, i3 2, i3 2>,
146   <8 x i3> <i3 undef, i3 2, i3 poison, i3 2, i3 2, i3 2, i3 2, i3 2>,
147   i32 2)
148   ret <8 x i3> %r