[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / AArch64 / cgp-usubo.ll
blob58f367105ad1168b08b07a841b86e17d48f40173
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=aarch64-- | FileCheck %s
4 ; CodeGenPrepare is expected to form overflow intrinsics to improve DAG/isel.
6 define i1 @usubo_ult_i64(i64 %x, i64 %y, i64* %p) nounwind {
7 ; CHECK-LABEL: usubo_ult_i64:
8 ; CHECK:       // %bb.0:
9 ; CHECK-NEXT:    subs x8, x0, x1
10 ; CHECK-NEXT:    cset w0, lo
11 ; CHECK-NEXT:    str x8, [x2]
12 ; CHECK-NEXT:    ret
13   %s = sub i64 %x, %y
14   store i64 %s, i64* %p
15   %ov = icmp ult i64 %x, %y
16   ret i1 %ov
19 ; Verify insertion point for single-BB. Toggle predicate.
21 define i1 @usubo_ugt_i32(i32 %x, i32 %y, i32* %p) nounwind {
22 ; CHECK-LABEL: usubo_ugt_i32:
23 ; CHECK:       // %bb.0:
24 ; CHECK-NEXT:    subs w8, w0, w1
25 ; CHECK-NEXT:    cset w0, lo
26 ; CHECK-NEXT:    str w8, [x2]
27 ; CHECK-NEXT:    ret
28   %ov = icmp ugt i32 %y, %x
29   %s = sub i32 %x, %y
30   store i32 %s, i32* %p
31   ret i1 %ov
34 ; Constant operand should match.
36 define i1 @usubo_ugt_constant_op0_i8(i8 %x, i8* %p) nounwind {
37 ; CHECK-LABEL: usubo_ugt_constant_op0_i8:
38 ; CHECK:       // %bb.0:
39 ; CHECK-NEXT:    and w8, w0, #0xff
40 ; CHECK-NEXT:    mov w9, #42
41 ; CHECK-NEXT:    cmp w8, #42
42 ; CHECK-NEXT:    sub w9, w9, w0
43 ; CHECK-NEXT:    cset w0, hi
44 ; CHECK-NEXT:    strb w9, [x1]
45 ; CHECK-NEXT:    ret
46   %s = sub i8 42, %x
47   %ov = icmp ugt i8 %x, 42
48   store i8 %s, i8* %p
49   ret i1 %ov
52 ; Compare with constant operand 0 is canonicalized by commuting, but verify match for non-canonical form.
54 define i1 @usubo_ult_constant_op0_i16(i16 %x, i16* %p) nounwind {
55 ; CHECK-LABEL: usubo_ult_constant_op0_i16:
56 ; CHECK:       // %bb.0:
57 ; CHECK-NEXT:    and w8, w0, #0xffff
58 ; CHECK-NEXT:    mov w9, #43
59 ; CHECK-NEXT:    cmp w8, #43
60 ; CHECK-NEXT:    sub w9, w9, w0
61 ; CHECK-NEXT:    cset w0, hi
62 ; CHECK-NEXT:    strh w9, [x1]
63 ; CHECK-NEXT:    ret
64   %s = sub i16 43, %x
65   %ov = icmp ult i16 43, %x
66   store i16 %s, i16* %p
67   ret i1 %ov
70 ; Subtract with constant operand 1 is canonicalized to add.
72 define i1 @usubo_ult_constant_op1_i16(i16 %x, i16* %p) nounwind {
73 ; CHECK-LABEL: usubo_ult_constant_op1_i16:
74 ; CHECK:       // %bb.0:
75 ; CHECK-NEXT:    and w8, w0, #0xffff
76 ; CHECK-NEXT:    cmp w8, #44
77 ; CHECK-NEXT:    sub w9, w0, #44
78 ; CHECK-NEXT:    cset w0, lo
79 ; CHECK-NEXT:    strh w9, [x1]
80 ; CHECK-NEXT:    ret
81   %s = add i16 %x, -44
82   %ov = icmp ult i16 %x, 44
83   store i16 %s, i16* %p
84   ret i1 %ov
87 define i1 @usubo_ugt_constant_op1_i8(i8 %x, i8* %p) nounwind {
88 ; CHECK-LABEL: usubo_ugt_constant_op1_i8:
89 ; CHECK:       // %bb.0:
90 ; CHECK-NEXT:    and w8, w0, #0xff
91 ; CHECK-NEXT:    cmp w8, #45
92 ; CHECK-NEXT:    cset w8, lo
93 ; CHECK-NEXT:    sub w9, w0, #45
94 ; CHECK-NEXT:    mov w0, w8
95 ; CHECK-NEXT:    strb w9, [x1]
96 ; CHECK-NEXT:    ret
97   %ov = icmp ugt i8 45, %x
98   %s = add i8 %x, -45
99   store i8 %s, i8* %p
100   ret i1 %ov
103 ; Special-case: subtract 1 changes the compare predicate and constant.
105 define i1 @usubo_eq_constant1_op1_i32(i32 %x, i32* %p) nounwind {
106 ; CHECK-LABEL: usubo_eq_constant1_op1_i32:
107 ; CHECK:       // %bb.0:
108 ; CHECK-NEXT:    cmp w0, #0
109 ; CHECK-NEXT:    sub w8, w0, #1
110 ; CHECK-NEXT:    cset w0, eq
111 ; CHECK-NEXT:    str w8, [x1]
112 ; CHECK-NEXT:    ret
113   %s = add i32 %x, -1
114   %ov = icmp eq i32 %x, 0
115   store i32 %s, i32* %p
116   ret i1 %ov
119 ; Verify insertion point for multi-BB.
121 declare void @call(i1)
123 define i1 @usubo_ult_sub_dominates_i64(i64 %x, i64 %y, i64* %p, i1 %cond) nounwind {
124 ; CHECK-LABEL: usubo_ult_sub_dominates_i64:
125 ; CHECK:       // %bb.0: // %entry
126 ; CHECK-NEXT:    tbz w3, #0, .LBB7_2
127 ; CHECK-NEXT:  // %bb.1: // %t
128 ; CHECK-NEXT:    subs x8, x0, x1
129 ; CHECK-NEXT:    cset w3, lo
130 ; CHECK-NEXT:    str x8, [x2]
131 ; CHECK-NEXT:  .LBB7_2: // %common.ret
132 ; CHECK-NEXT:    and w0, w3, #0x1
133 ; CHECK-NEXT:    ret
134 entry:
135   br i1 %cond, label %t, label %f
138   %s = sub i64 %x, %y
139   store i64 %s, i64* %p
140   br i1 %cond, label %end, label %f
143   ret i1 %cond
145 end:
146   %ov = icmp ult i64 %x, %y
147   ret i1 %ov
150 define i1 @usubo_ult_cmp_dominates_i64(i64 %x, i64 %y, i64* %p, i1 %cond) nounwind {
151 ; CHECK-LABEL: usubo_ult_cmp_dominates_i64:
152 ; CHECK:       // %bb.0: // %entry
153 ; CHECK-NEXT:    stp x30, x23, [sp, #-48]! // 16-byte Folded Spill
154 ; CHECK-NEXT:    stp x20, x19, [sp, #32] // 16-byte Folded Spill
155 ; CHECK-NEXT:    mov w19, w3
156 ; CHECK-NEXT:    stp x22, x21, [sp, #16] // 16-byte Folded Spill
157 ; CHECK-NEXT:    tbz w3, #0, .LBB8_3
158 ; CHECK-NEXT:  // %bb.1: // %t
159 ; CHECK-NEXT:    cmp x0, x1
160 ; CHECK-NEXT:    cset w21, lo
161 ; CHECK-NEXT:    mov x23, x0
162 ; CHECK-NEXT:    mov w0, w21
163 ; CHECK-NEXT:    mov x20, x2
164 ; CHECK-NEXT:    mov x22, x1
165 ; CHECK-NEXT:    bl call
166 ; CHECK-NEXT:    subs x8, x23, x22
167 ; CHECK-NEXT:    b.hs .LBB8_3
168 ; CHECK-NEXT:  // %bb.2: // %end
169 ; CHECK-NEXT:    mov w19, w21
170 ; CHECK-NEXT:    str x8, [x20]
171 ; CHECK-NEXT:  .LBB8_3: // %common.ret
172 ; CHECK-NEXT:    and w0, w19, #0x1
173 ; CHECK-NEXT:    ldp x20, x19, [sp, #32] // 16-byte Folded Reload
174 ; CHECK-NEXT:    ldp x22, x21, [sp, #16] // 16-byte Folded Reload
175 ; CHECK-NEXT:    ldp x30, x23, [sp], #48 // 16-byte Folded Reload
176 ; CHECK-NEXT:    ret
177 entry:
178   br i1 %cond, label %t, label %f
181   %ov = icmp ult i64 %x, %y
182   call void @call(i1 %ov)
183   br i1 %ov, label %end, label %f
186   ret i1 %cond
188 end:
189   %s = sub i64 %x, %y
190   store i64 %s, i64* %p
191   ret i1 %ov