1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=aarch64-unknown-unknown | FileCheck %s
4 ; Compare if negative and select of constants where one constant is zero.
6 define i32 @neg_sel_constants(i32 %a) {
7 ; CHECK-LABEL: neg_sel_constants:
9 ; CHECK-NEXT: mov w8, #5 // =0x5
10 ; CHECK-NEXT: and w0, w8, w0, asr #31
12 %tmp.1 = icmp slt i32 %a, 0
13 %retval = select i1 %tmp.1, i32 5, i32 0
17 ; Compare if negative and select of constants where one constant is zero and the other is a single bit.
19 define i32 @neg_sel_special_constant(i32 %a) {
20 ; CHECK-LABEL: neg_sel_special_constant:
22 ; CHECK-NEXT: lsr w8, w0, #22
23 ; CHECK-NEXT: and w0, w8, #0x200
25 %tmp.1 = icmp slt i32 %a, 0
26 %retval = select i1 %tmp.1, i32 512, i32 0
30 ; Compare if negative and select variable or zero.
32 define i32 @neg_sel_variable_and_zero(i32 %a, i32 %b) {
33 ; CHECK-LABEL: neg_sel_variable_and_zero:
35 ; CHECK-NEXT: and w0, w1, w0, asr #31
37 %tmp.1 = icmp slt i32 %a, 0
38 %retval = select i1 %tmp.1, i32 %b, i32 0
42 ; Compare if not positive and select the same variable as being compared: smin(a, 0).
44 define i32 @not_pos_sel_same_variable(i32 %a) {
45 ; CHECK-LABEL: not_pos_sel_same_variable:
47 ; CHECK-NEXT: and w0, w0, w0, asr #31
49 %tmp = icmp slt i32 %a, 1
50 %min = select i1 %tmp, i32 %a, i32 0
54 ; Flipping the comparison condition can be handled by getting the bitwise not of the sign mask.
56 ; Compare if positive and select of constants where one constant is zero.
58 define i32 @pos_sel_constants(i32 %a) {
59 ; CHECK-LABEL: pos_sel_constants:
61 ; CHECK-NEXT: mov w8, #5 // =0x5
62 ; CHECK-NEXT: bic w0, w8, w0, asr #31
64 %tmp.1 = icmp sgt i32 %a, -1
65 %retval = select i1 %tmp.1, i32 5, i32 0
69 ; Compare if positive and select of constants where one constant is zero and the other is a single bit.
71 define i32 @pos_sel_special_constant(i32 %a) {
72 ; CHECK-LABEL: pos_sel_special_constant:
74 ; CHECK-NEXT: mov w8, #512 // =0x200
75 ; CHECK-NEXT: bic w0, w8, w0, lsr #22
77 %tmp.1 = icmp sgt i32 %a, -1
78 %retval = select i1 %tmp.1, i32 512, i32 0
82 ; Compare if positive and select variable or zero.
84 define i32 @pos_sel_variable_and_zero(i32 %a, i32 %b) {
85 ; CHECK-LABEL: pos_sel_variable_and_zero:
87 ; CHECK-NEXT: bic w0, w1, w0, asr #31
89 %tmp.1 = icmp sgt i32 %a, -1
90 %retval = select i1 %tmp.1, i32 %b, i32 0
94 ; Compare if not negative or zero and select the same variable as being compared: smax(a, 0).
96 define i32 @not_neg_sel_same_variable(i32 %a) {
97 ; CHECK-LABEL: not_neg_sel_same_variable:
99 ; CHECK-NEXT: bic w0, w0, w0, asr #31
101 %tmp = icmp sgt i32 %a, 0
102 %min = select i1 %tmp, i32 %a, i32 0
106 ; https://llvm.org/bugs/show_bug.cgi?id=31175
108 ; ret = (x-y) > 0 ? x-y : 0
109 define i32 @PR31175(i32 %x, i32 %y) {
110 ; CHECK-LABEL: PR31175:
112 ; CHECK-NEXT: sub w8, w0, w1
113 ; CHECK-NEXT: bic w0, w8, w8, asr #31
115 %sub = sub nsw i32 %x, %y
116 %cmp = icmp sgt i32 %sub, 0
117 %sel = select i1 %cmp, i32 %sub, i32 0
121 define i8 @sel_shift_bool_i8(i1 %t) {
122 ; CHECK-LABEL: sel_shift_bool_i8:
124 ; CHECK-NEXT: mov w8, #-128 // =0xffffff80
125 ; CHECK-NEXT: tst w0, #0x1
126 ; CHECK-NEXT: csel w0, w8, wzr, ne
128 %shl = select i1 %t, i8 128, i8 0
132 define i16 @sel_shift_bool_i16(i1 %t) {
133 ; CHECK-LABEL: sel_shift_bool_i16:
135 ; CHECK-NEXT: mov w8, #128 // =0x80
136 ; CHECK-NEXT: tst w0, #0x1
137 ; CHECK-NEXT: csel w0, w8, wzr, ne
139 %shl = select i1 %t, i16 128, i16 0
143 define i32 @sel_shift_bool_i32(i1 %t) {
144 ; CHECK-LABEL: sel_shift_bool_i32:
146 ; CHECK-NEXT: mov w8, #64 // =0x40
147 ; CHECK-NEXT: tst w0, #0x1
148 ; CHECK-NEXT: csel w0, w8, wzr, ne
150 %shl = select i1 %t, i32 64, i32 0
154 define i64 @sel_shift_bool_i64(i1 %t) {
155 ; CHECK-LABEL: sel_shift_bool_i64:
157 ; CHECK-NEXT: mov w8, #65536 // =0x10000
158 ; CHECK-NEXT: tst w0, #0x1
159 ; CHECK-NEXT: csel x0, x8, xzr, ne
161 %shl = select i1 %t, i64 65536, i64 0
165 define <16 x i8> @sel_shift_bool_v16i8(<16 x i1> %t) {
166 ; CHECK-LABEL: sel_shift_bool_v16i8:
168 ; CHECK-NEXT: shl v0.16b, v0.16b, #7
169 ; CHECK-NEXT: movi v1.16b, #128
170 ; CHECK-NEXT: cmlt v0.16b, v0.16b, #0
171 ; CHECK-NEXT: and v0.16b, v0.16b, v1.16b
173 %shl = select <16 x i1> %t, <16 x i8> <i8 128, i8 128, i8 128, i8 128, i8 128, i8 128, i8 128, i8 128, i8 128, i8 128, i8 128, i8 128, i8 128, i8 128, i8 128, i8 128>, <16 x i8> zeroinitializer
177 define <8 x i16> @sel_shift_bool_v8i16(<8 x i1> %t) {
178 ; CHECK-LABEL: sel_shift_bool_v8i16:
180 ; CHECK-NEXT: ushll v0.8h, v0.8b, #0
181 ; CHECK-NEXT: movi v1.8h, #128
182 ; CHECK-NEXT: shl v0.8h, v0.8h, #15
183 ; CHECK-NEXT: cmlt v0.8h, v0.8h, #0
184 ; CHECK-NEXT: and v0.16b, v0.16b, v1.16b
186 %shl= select <8 x i1> %t, <8 x i16> <i16 128, i16 128, i16 128, i16 128, i16 128, i16 128, i16 128, i16 128>, <8 x i16> zeroinitializer
190 define <4 x i32> @sel_shift_bool_v4i32(<4 x i1> %t) {
191 ; CHECK-LABEL: sel_shift_bool_v4i32:
193 ; CHECK-NEXT: ushll v0.4s, v0.4h, #0
194 ; CHECK-NEXT: movi v1.4s, #64
195 ; CHECK-NEXT: shl v0.4s, v0.4s, #31
196 ; CHECK-NEXT: cmlt v0.4s, v0.4s, #0
197 ; CHECK-NEXT: and v0.16b, v0.16b, v1.16b
199 %shl = select <4 x i1> %t, <4 x i32> <i32 64, i32 64, i32 64, i32 64>, <4 x i32> zeroinitializer
203 define <2 x i64> @sel_shift_bool_v2i64(<2 x i1> %t) {
204 ; CHECK-LABEL: sel_shift_bool_v2i64:
206 ; CHECK-NEXT: ushll v0.2d, v0.2s, #0
207 ; CHECK-NEXT: mov w8, #65536 // =0x10000
208 ; CHECK-NEXT: dup v1.2d, x8
209 ; CHECK-NEXT: shl v0.2d, v0.2d, #63
210 ; CHECK-NEXT: cmlt v0.2d, v0.2d, #0
211 ; CHECK-NEXT: and v0.16b, v0.16b, v1.16b
213 %shl = select <2 x i1> %t, <2 x i64> <i64 65536, i64 65536>, <2 x i64> zeroinitializer