[mlir][int-range] Limit xor int range inference to i1 (#116968)
[llvm-project.git] / llvm / test / Bitcode / constant-splat.ll
blob2bcc3ddf3e4f3a664b18555317c841ffb5b4a1d4
1 ; RUN: llvm-as -use-constant-int-for-fixed-length-splat \
2 ; RUN:         -use-constant-fp-for-fixed-length-splat \
3 ; RUN:         -use-constant-int-for-scalable-splat \
4 ; RUN:         -use-constant-fp-for-scalable-splat \
5 ; RUN:   < %s | llvm-dis -use-constant-int-for-fixed-length-splat \
6 ; RUN:                   -use-constant-fp-for-fixed-length-splat \
7 ; RUN:                   -use-constant-int-for-scalable-splat \
8 ; RUN:                   -use-constant-fp-for-scalable-splat \
9 ; RUN:   | FileCheck %s
11 ; CHECK: @constant.splat.i1 = constant <1 x i1> splat (i1 true)
12 @constant.splat.i1 = constant <1 x i1> splat (i1 true)
14 ; CHECK: @constant.splat.i32 = constant <5 x i32> splat (i32 7)
15 @constant.splat.i32 = constant <5 x i32> splat (i32 7)
17 ; CHECK: @constant.splat.i128 = constant <7 x i128> splat (i128 85070591730234615870450834276742070272)
18 @constant.splat.i128 = constant <7 x i128> splat (i128 85070591730234615870450834276742070272)
20 ; CHECK: @constant.splat.f16 = constant <2 x half> splat (half 0xHBC00)
21 @constant.splat.f16 = constant <2 x half> splat (half 0xHBC00)
23 ; CHECK: @constant.splat.f32 = constant <4 x float> splat (float -2.000000e+00)
24 @constant.splat.f32 = constant <4 x float> splat (float -2.000000e+00)
26 ; CHECK: @constant.splat.f64 = constant <6 x double> splat (double -3.000000e+00)
27 @constant.splat.f64 = constant <6 x double> splat (double -3.000000e+00)
29 ; CHECK: @constant.splat.128 = constant <8 x fp128> splat (fp128 0xL00000000000000018000000000000000)
30 @constant.splat.128 = constant <8 x fp128> splat (fp128 0xL00000000000000018000000000000000)
32 ; CHECK: @constant.splat.bf16 = constant <1 x bfloat> splat (bfloat 0xRC0A0)
33 @constant.splat.bf16 = constant <1 x bfloat> splat (bfloat 0xRC0A0)
35 ; CHECK: @constant.splat.x86_fp80 = constant <3 x x86_fp80> splat (x86_fp80 0xK4000C8F5C28F5C28F800)
36 @constant.splat.x86_fp80 = constant <3 x x86_fp80> splat (x86_fp80 0xK4000C8F5C28F5C28F800)
38 ; CHECK: @constant.splat.ppc_fp128 = constant <7 x ppc_fp128> splat (ppc_fp128 0xM80000000000000000000000000000000)
39 @constant.splat.ppc_fp128 = constant <7 x ppc_fp128> splat (ppc_fp128 0xM80000000000000000000000000000000)
41 define void @add_fixed_lenth_vector_splat_i32(<4 x i32> %a) {
42 ; CHECK: %add = add <4 x i32> %a, splat (i32 137)
43   %add = add <4 x i32> %a, splat (i32 137)
44   ret void
47 define <4 x i32> @ret_fixed_lenth_vector_splat_i32() {
48 ; CHECK: ret <4 x i32> splat (i32 56)
49   ret <4 x i32> splat (i32 56)
52 define void @add_fixed_lenth_vector_splat_double(<vscale x 2 x double> %a) {
53 ; CHECK: %add = fadd <vscale x 2 x double> %a, splat (double 5.700000e+00)
54   %add = fadd <vscale x 2 x double> %a, splat (double 5.700000e+00)
55   ret void
58 define <vscale x 4 x i32> @ret_scalable_vector_splat_i32() {
59 ; CHECK: ret <vscale x 4 x i32> splat (i32 78)
60   ret <vscale x 4 x i32> splat (i32 78)
63 define <4 x i32> @canonical_constant_vector() {
64 ; CHECK: ret <4 x i32> splat (i32 7)
65   ret <4 x i32> <i32 7, i32 7, i32 7, i32 7>
68 define <4 x i32> @canonical_fixed_lnegth_vector_zero() {
69 ; CHECK: ret <4 x i32> zeroinitializer
70   ret <4 x i32> zeroinitializer
73 define <vscale x 4 x i32> @canonical_scalable_lnegth_vector_zero() {
74 ; CHECK: ret <vscale x 4 x i32> zeroinitializer
75   ret <vscale x 4 x i32> zeroinitializer