postlegalizer-combiner-and-trivial-mask.mir
6.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
# NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
#
# Check that we can fold (x & mask) -> x when (x & mask) is known to equal x.
#
# RUN: llc -mtriple aarch64 -run-pass=aarch64-postlegalizer-combiner -verify-machineinstrs %s -o - | FileCheck %s
---
name: remove_and_with_one_bit
legalized: true
tracksRegLiveness: true
body: |
bb.0:
liveins: $w0, $w1
; G_ICMP produces a single bit. The mask is 1.
;
; cmp = 000...0?
; mask = 000...01
; cmp & mask = 000...0?
;
; Remove the G_AND.
;
; CHECK-LABEL: name: remove_and_with_one_bit
; CHECK: liveins: $w0, $w1
; CHECK: %x:_(s32) = COPY $w0
; CHECK: %y:_(s32) = COPY $w1
; CHECK: %cmp:_(s32) = G_ICMP intpred(eq), %x(s32), %y
; CHECK: $w0 = COPY %cmp(s32)
; CHECK: RET_ReallyLR implicit $w0
%x:_(s32) = COPY $w0
%y:_(s32) = COPY $w1
%cmp:_(s32) = G_ICMP intpred(eq), %x(s32), %y
%mask:_(s32) = G_CONSTANT i32 1
%and:_(s32) = G_AND %cmp(s32), %mask
$w0 = COPY %and(s32)
RET_ReallyLR implicit $w0
...
---
name: remove_and_all_ones_mask
legalized: true
tracksRegLiveness: true
body: |
bb.0:
liveins: $w0, $w1, $w2
; -1 is all ones. Therefore z & -1 = z. Remove the G_AND.
;
; CHECK-LABEL: name: remove_and_all_ones_mask
; CHECK: liveins: $w0, $w1, $w2
; CHECK: %z:_(s32) = COPY $w2
; CHECK: $w0 = COPY %z(s32)
; CHECK: RET_ReallyLR implicit $w0
%x:_(s32) = COPY $w0
%y:_(s32) = COPY $w1
%z:_(s32) = COPY $w2
%mask:_(s32) = G_CONSTANT i32 -1
%and:_(s32) = G_AND %z(s32), %mask
$w0 = COPY %and(s32)
RET_ReallyLR implicit $w0
...
---
name: remove_and_all_ones_zext
legalized: true
tracksRegLiveness: true
body: |
bb.0:
liveins: $w0, $w1, $w2
; %z is a s32, so it can be at most the all-ones value on 32 bits.
; In decimal this is 4294967295. Any zero-extension of %z is at most this
; value.
;
; Therefore, zext(z) & 4294967295 == z. Remove the G_AND.
;
; CHECK-LABEL: name: remove_and_all_ones_zext
; CHECK: liveins: $w0, $w1, $w2
; CHECK: %z:_(s32) = COPY $w2
; CHECK: %ext:_(s64) = G_ZEXT %z(s32)
; CHECK: $x0 = COPY %ext(s64)
; CHECK: RET_ReallyLR implicit $x0
%x:_(s32) = COPY $w0
%y:_(s32) = COPY $w1
%z:_(s32) = COPY $w2
%ext:_(s64) = G_ZEXT %z
%mask:_(s64) = G_CONSTANT i64 4294967295
%and:_(s64) = G_AND %ext(s64), %mask
$x0 = COPY %and(s64)
RET_ReallyLR implicit $x0
...
---
name: remove_and_all_ones_anyext
legalized: true
tracksRegLiveness: true
body: |
bb.0:
liveins: $w0, $w1, $w2
; This is the same as the zext case.
;
; CHECK-LABEL: name: remove_and_all_ones_anyext
; CHECK: liveins: $w0, $w1, $w2
; CHECK: %z:_(s32) = COPY $w2
; CHECK: %ext:_(s64) = G_ZEXT %z(s32)
; CHECK: $x0 = COPY %ext(s64)
; CHECK: RET_ReallyLR implicit $x0
%x:_(s32) = COPY $w0
%y:_(s32) = COPY $w1
%z:_(s32) = COPY $w2
%ext:_(s64) = G_ZEXT %z
%mask:_(s64) = G_CONSTANT i64 4294967295
%and:_(s64) = G_AND %ext(s64), %mask
$x0 = COPY %and(s64)
RET_ReallyLR implicit $x0
...
---
name: dont_remove_all_ones_sext
legalized: true
tracksRegLiveness: true
body: |
bb.0:
liveins: $w0, $w1, $w2
; We don't know if the sign bit is set on %z. So, the value in %ext may have
; higher bits set than 4294967295.
;
; CHECK-LABEL: name: dont_remove_all_ones_sext
; CHECK: liveins: $w0, $w1, $w2
; CHECK: %z:_(s32) = COPY $w2
; CHECK: %ext:_(s64) = G_SEXT %z(s32)
; CHECK: %mask:_(s64) = G_CONSTANT i64 4294967295
; CHECK: %and:_(s64) = G_AND %ext, %mask
; CHECK: $x0 = COPY %and(s64)
; CHECK: RET_ReallyLR implicit $x0
%x:_(s32) = COPY $w0
%y:_(s32) = COPY $w1
%z:_(s32) = COPY $w2
%ext:_(s64) = G_SEXT %z
%mask:_(s64) = G_CONSTANT i64 4294967295
%and:_(s64) = G_AND %ext(s64), %mask
$x0 = COPY %and(s64)
RET_ReallyLR implicit $x0
...
---
name: remove_and_positive_constant_sext
legalized: true
tracksRegLiveness: true
body: |
bb.0:
liveins: $w0, $w1, $w2
; We know the sign bit is not set on %z. Therefore,
;
; z = ext = 42 = 000...0101010
; mask = 0000...0111111
;
; So z & mask == z
; CHECK-LABEL: name: remove_and_positive_constant_sext
; CHECK: liveins: $w0, $w1, $w2
; CHECK: %z:_(s32) = G_CONSTANT i32 42
; CHECK: %ext:_(s64) = G_SEXT %z(s32)
; CHECK: $x0 = COPY %ext(s64)
; CHECK: RET_ReallyLR implicit $x0
%x:_(s32) = COPY $w0
%y:_(s32) = COPY $w1
%z:_(s32) = G_CONSTANT i32 42
%ext:_(s64) = G_SEXT %z
%mask:_(s64) = G_CONSTANT i64 63
%and:_(s64) = G_AND %ext(s64), %mask
$x0 = COPY %and(s64)
RET_ReallyLR implicit $x0
...
---
name: not_a_mask
legalized: true
tracksRegLiveness: true
body: |
bb.0:
liveins: $w0, $w1
; 6 is not a mask, so we should still have the G_AND.
;
; CHECK-LABEL: name: not_a_mask
; CHECK: liveins: $w0, $w1
; CHECK: %x:_(s32) = COPY $w0
; CHECK: %y:_(s32) = COPY $w1
; CHECK: %cmp:_(s32) = G_ICMP intpred(eq), %x(s32), %y
; CHECK: %mask:_(s32) = G_CONSTANT i32 6
; CHECK: %and:_(s32) = G_AND %cmp, %mask
; CHECK: $w0 = COPY %and(s32)
; CHECK: RET_ReallyLR implicit $w0
%x:_(s32) = COPY $w0
%y:_(s32) = COPY $w1
%cmp:_(s32) = G_ICMP intpred(eq), %x(s32), %y
%mask:_(s32) = G_CONSTANT i32 6
%and:_(s32) = G_AND %cmp(s32), %mask
$w0 = COPY %and(s32)
RET_ReallyLR implicit $w0
...
---
name: unknown_val
legalized: true
tracksRegLiveness: true
body: |
bb.0:
liveins: $w0, $w1, $w2
; We don't know what's in $w2, so we can't remove the G_AND without a mask
; that fills every bit in the type.
;
; CHECK-LABEL: name: unknown_val
; CHECK: liveins: $w0, $w1, $w2
; CHECK: %z:_(s32) = COPY $w2
; CHECK: %one:_(s32) = G_CONSTANT i32 32
; CHECK: %and:_(s32) = G_AND %z, %one
; CHECK: $w0 = COPY %and(s32)
; CHECK: RET_ReallyLR implicit $w0
%x:_(s32) = COPY $w0
%y:_(s32) = COPY $w1
%z:_(s32) = COPY $w2
%one:_(s32) = G_CONSTANT i32 32
%and:_(s32) = G_AND %z(s32), %one
$w0 = COPY %and(s32)
RET_ReallyLR implicit $w0
...