1 // Copyright 2015 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 // Lowering arithmetic
6 (Add(64|32|16|8) ...) => (ADD(Q|L|L|L) ...)
7 (AddPtr ...) => (ADDQ ...)
8 (Add(32|64)F ...) => (ADDS(S|D) ...)
9
10 (Sub(64|32|16|8) ...) => (SUB(Q|L|L|L) ...)
11 (SubPtr ...) => (SUBQ ...)
12 (Sub(32|64)F ...) => (SUBS(S|D) ...)
13
14 (Mul(64|32|16|8) ...) => (MUL(Q|L|L|L) ...)
15 (Mul(32|64)F ...) => (MULS(S|D) ...)
16
17 (Select0 (Mul64uover x y)) => (Select0 <typ.UInt64> (MULQU x y))
18 (Select0 (Mul32uover x y)) => (Select0 <typ.UInt32> (MULLU x y))
19 (Select1 (Mul(64|32)uover x y)) => (SETO (Select1 <types.TypeFlags> (MUL(Q|L)U x y)))
20
21 (Hmul(64|32) ...) => (HMUL(Q|L) ...)
22 (Hmul(64|32)u ...) => (HMUL(Q|L)U ...)
23
24 (Div(64|32|16) [a] x y) => (Select0 (DIV(Q|L|W) [a] x y))
25 (Div8 x y) => (Select0 (DIVW (SignExt8to16 x) (SignExt8to16 y)))
26 (Div(64|32|16)u x y) => (Select0 (DIV(Q|L|W)U x y))
27 (Div8u x y) => (Select0 (DIVWU (ZeroExt8to16 x) (ZeroExt8to16 y)))
28 (Div(32|64)F ...) => (DIVS(S|D) ...)
29
30 (Select0 (Add64carry x y c)) =>
31 (Select0 <typ.UInt64> (ADCQ x y (Select1 <types.TypeFlags> (NEGLflags c))))
32 (Select1 (Add64carry x y c)) =>
33 (NEGQ <typ.UInt64> (SBBQcarrymask <typ.UInt64> (Select1 <types.TypeFlags> (ADCQ x y (Select1 <types.TypeFlags> (NEGLflags c))))))
34 (Select0 (Sub64borrow x y c)) =>
35 (Select0 <typ.UInt64> (SBBQ x y (Select1 <types.TypeFlags> (NEGLflags c))))
36 (Select1 (Sub64borrow x y c)) =>
37 (NEGQ <typ.UInt64> (SBBQcarrymask <typ.UInt64> (Select1 <types.TypeFlags> (SBBQ x y (Select1 <types.TypeFlags> (NEGLflags c))))))
38
39 // Optimize ADCQ and friends
40 (ADCQ x (MOVQconst [c]) carry) && is32Bit(c) => (ADCQconst x [int32(c)] carry)
41 (ADCQ x y (FlagEQ)) => (ADDQcarry x y)
42 (ADCQconst x [c] (FlagEQ)) => (ADDQconstcarry x [c])
43 (ADDQcarry x (MOVQconst [c])) && is32Bit(c) => (ADDQconstcarry x [int32(c)])
44 (SBBQ x (MOVQconst [c]) borrow) && is32Bit(c) => (SBBQconst x [int32(c)] borrow)
45 (SBBQ x y (FlagEQ)) => (SUBQborrow x y)
46 (SBBQconst x [c] (FlagEQ)) => (SUBQconstborrow x [c])
47 (SUBQborrow x (MOVQconst [c])) && is32Bit(c) => (SUBQconstborrow x [int32(c)])
48 (Select1 (NEGLflags (MOVQconst [0]))) => (FlagEQ)
49 (Select1 (NEGLflags (NEGQ (SBBQcarrymask x)))) => x
50
51
52 (Mul64uhilo ...) => (MULQU2 ...)
53 (Div128u ...) => (DIVQU2 ...)
54
55 (Avg64u ...) => (AVGQU ...)
56
57 (Mod(64|32|16) [a] x y) => (Select1 (DIV(Q|L|W) [a] x y))
58 (Mod8 x y) => (Select1 (DIVW (SignExt8to16 x) (SignExt8to16 y)))
59 (Mod(64|32|16)u x y) => (Select1 (DIV(Q|L|W)U x y))
60 (Mod8u x y) => (Select1 (DIVWU (ZeroExt8to16 x) (ZeroExt8to16 y)))
61
62 (And(64|32|16|8) ...) => (AND(Q|L|L|L) ...)
63 (Or(64|32|16|8) ...) => (OR(Q|L|L|L) ...)
64 (Xor(64|32|16|8) ...) => (XOR(Q|L|L|L) ...)
65 (Com(64|32|16|8) ...) => (NOT(Q|L|L|L) ...)
66
67 (Neg(64|32|16|8) ...) => (NEG(Q|L|L|L) ...)
68 (Neg32F x) => (PXOR x (MOVSSconst <typ.Float32> [float32(math.Copysign(0, -1))]))
69 (Neg64F x) => (PXOR x (MOVSDconst <typ.Float64> [math.Copysign(0, -1)]))
70
71 // Lowering boolean ops
72 (AndB ...) => (ANDL ...)
73 (OrB ...) => (ORL ...)
74 (Not x) => (XORLconst [1] x)
75
76 // Lowering pointer arithmetic
77 (OffPtr [off] ptr) && is32Bit(off) => (ADDQconst [int32(off)] ptr)
78 (OffPtr [off] ptr) => (ADDQ (MOVQconst [off]) ptr)
79
80 // Lowering other arithmetic
81 (Ctz64 x) && buildcfg.GOAMD64 >= 3 => (TZCNTQ x)
82 (Ctz32 x) && buildcfg.GOAMD64 >= 3 => (TZCNTL x)
83 (Ctz64 <t> x) && buildcfg.GOAMD64 < 3 => (CMOVQEQ (Select0 <t> (BSFQ x)) (MOVQconst <t> [64]) (Select1 <types.TypeFlags> (BSFQ x)))
84 (Ctz32 x) && buildcfg.GOAMD64 < 3 => (Select0 (BSFQ (BTSQconst <typ.UInt64> [32] x)))
85 (Ctz16 x) => (BSFL (ORLconst <typ.UInt32> [1<<16] x))
86 (Ctz8 x) => (BSFL (ORLconst <typ.UInt32> [1<<8 ] x))
87
88 (Ctz64NonZero x) && buildcfg.GOAMD64 >= 3 => (TZCNTQ x)
89 (Ctz32NonZero x) && buildcfg.GOAMD64 >= 3 => (TZCNTL x)
90 (Ctz16NonZero x) && buildcfg.GOAMD64 >= 3 => (TZCNTL x)
91 (Ctz8NonZero x) && buildcfg.GOAMD64 >= 3 => (TZCNTL x)
92 (Ctz64NonZero x) && buildcfg.GOAMD64 < 3 => (Select0 (BSFQ x))
93 (Ctz32NonZero x) && buildcfg.GOAMD64 < 3 => (BSFL x)
94 (Ctz16NonZero x) && buildcfg.GOAMD64 < 3 => (BSFL x)
95 (Ctz8NonZero x) && buildcfg.GOAMD64 < 3 => (BSFL x)
96
97 // BitLen64 of a 64 bit value x requires checking whether x == 0, since BSRQ is undefined when x == 0.
98 // However, for zero-extended values, we can cheat a bit, and calculate
99 // BSR(x<<1 + 1), which is guaranteed to be non-zero, and which conveniently
100 // places the index of the highest set bit where we want it.
101 // For GOAMD64>=3, BitLen can be calculated by OperandSize - LZCNT(x).
102 (BitLen64 <t> x) && buildcfg.GOAMD64 < 3 => (ADDQconst [1] (CMOVQEQ <t> (Select0 <t> (BSRQ x)) (MOVQconst <t> [-1]) (Select1 <types.TypeFlags> (BSRQ x))))
103 (BitLen32 x) && buildcfg.GOAMD64 < 3 => (Select0 (BSRQ (LEAQ1 <typ.UInt64> [1] (MOVLQZX <typ.UInt64> x) (MOVLQZX <typ.UInt64> x))))
104 (BitLen16 x) && buildcfg.GOAMD64 < 3 => (BSRL (LEAL1 <typ.UInt32> [1] (MOVWQZX <typ.UInt32> x) (MOVWQZX <typ.UInt32> x)))
105 (BitLen8 x) && buildcfg.GOAMD64 < 3 => (BSRL (LEAL1 <typ.UInt32> [1] (MOVBQZX <typ.UInt32> x) (MOVBQZX <typ.UInt32> x)))
106 (BitLen64 <t> x) && buildcfg.GOAMD64 >= 3 => (NEGQ (ADDQconst <t> [-64] (LZCNTQ x)))
107 // Use 64-bit version to allow const-fold remove unnecessary arithmetic.
108 (BitLen32 <t> x) && buildcfg.GOAMD64 >= 3 => (NEGQ (ADDQconst <t> [-32] (LZCNTL x)))
109 (BitLen16 <t> x) && buildcfg.GOAMD64 >= 3 => (NEGQ (ADDQconst <t> [-32] (LZCNTL (MOVWQZX <x.Type> x))))
110 (BitLen8 <t> x) && buildcfg.GOAMD64 >= 3 => (NEGQ (ADDQconst <t> [-32] (LZCNTL (MOVBQZX <x.Type> x))))
111
112 (Bswap(64|32) ...) => (BSWAP(Q|L) ...)
113 (Bswap16 x) => (ROLWconst [8] x)
114
115 (PopCount(64|32) ...) => (POPCNT(Q|L) ...)
116 (PopCount16 x) => (POPCNTL (MOVWQZX <typ.UInt32> x))
117 (PopCount8 x) => (POPCNTL (MOVBQZX <typ.UInt32> x))
118
119 (Sqrt ...) => (SQRTSD ...)
120 (Sqrt32 ...) => (SQRTSS ...)
121
122 (RoundToEven x) => (ROUNDSD [0] x)
123 (Floor x) => (ROUNDSD [1] x)
124 (Ceil x) => (ROUNDSD [2] x)
125 (Trunc x) => (ROUNDSD [3] x)
126
127 (CVTSD2SS (ROUNDSD [c] (CVTSS2SD x))) => (ROUNDSS [c] x)
128
129 (FMA x y z) => (VFMADD231SD z x y)
130
131 // Lowering extension
132 // Note: we always extend to 64 bits even though some ops don't need that many result bits.
133 (SignExt8to16 ...) => (MOVBQSX ...)
134 (SignExt8to32 ...) => (MOVBQSX ...)
135 (SignExt8to64 ...) => (MOVBQSX ...)
136 (SignExt16to32 ...) => (MOVWQSX ...)
137 (SignExt16to64 ...) => (MOVWQSX ...)
138 (SignExt32to64 ...) => (MOVLQSX ...)
139
140 (ZeroExt8to16 ...) => (MOVBQZX ...)
141 (ZeroExt8to32 ...) => (MOVBQZX ...)
142 (ZeroExt8to64 ...) => (MOVBQZX ...)
143 (ZeroExt16to32 ...) => (MOVWQZX ...)
144 (ZeroExt16to64 ...) => (MOVWQZX ...)
145 (ZeroExt32to64 ...) => (MOVLQZX ...)
146
147 (Slicemask <t> x) => (SARQconst (NEGQ <t> x) [63])
148
149 (SpectreIndex <t> x y) => (CMOVQCC x (MOVQconst [0]) (CMPQ x y))
150 (SpectreSliceIndex <t> x y) => (CMOVQHI x (MOVQconst [0]) (CMPQ x y))
151
152 // Lowering truncation
153 // Because we ignore high parts of registers, truncates are just copies.
154 (Trunc16to8 ...) => (Copy ...)
155 (Trunc32to8 ...) => (Copy ...)
156 (Trunc32to16 ...) => (Copy ...)
157 (Trunc64to8 ...) => (Copy ...)
158 (Trunc64to16 ...) => (Copy ...)
159 (Trunc64to32 ...) => (Copy ...)
160
161 // Lowering float <-> int
162 (Cvt32to32F ...) => (CVTSL2SS ...)
163 (Cvt32to64F ...) => (CVTSL2SD ...)
164 (Cvt64to32F ...) => (CVTSQ2SS ...)
165 (Cvt64to64F ...) => (CVTSQ2SD ...)
166
167 // Float, to int.
168 // To make AMD64 "overflow" return max positive instead of max negative, compute
169 // y and not x, smear the sign bit, and xor.
170 (Cvt32Fto32 <t> x) && base.ConvertHash.MatchPos(v.Pos, nil) => (XORL <t> y (SARLconst <t> [31] (ANDL <t> y:(CVTTSS2SL <t> x) (NOTL <typ.Int32> (MOVLf2i x)))))
171 (Cvt64Fto32 <t> x) && base.ConvertHash.MatchPos(v.Pos, nil) => (XORL <t> y (SARLconst <t> [31] (ANDL <t> y:(CVTTSD2SL <t> x) (NOTL <typ.Int32> (MOVLf2i (CVTSD2SS <typ.Float32> x))))))
172
173 (Cvt32Fto64 <t> x) && base.ConvertHash.MatchPos(v.Pos, nil) => (XORQ <t> y (SARQconst <t> [63] (ANDQ <t> y:(CVTTSS2SQ <t> x) (NOTQ <typ.Int64> (MOVQf2i (CVTSS2SD <typ.Float64> x))) )))
174 (Cvt64Fto64 <t> x) && base.ConvertHash.MatchPos(v.Pos, nil) => (XORQ <t> y (SARQconst <t> [63] (ANDQ <t> y:(CVTTSD2SQ <t> x) (NOTQ <typ.Int64> (MOVQf2i x)))))
175
176 (Cvt32Fto32 <t> x) && !base.ConvertHash.MatchPos(v.Pos, nil) => (CVTTSS2SL <t> x)
177 (Cvt32Fto64 <t> x) && !base.ConvertHash.MatchPos(v.Pos, nil) => (CVTTSS2SQ <t> x)
178 (Cvt64Fto32 <t> x) && !base.ConvertHash.MatchPos(v.Pos, nil) => (CVTTSD2SL <t> x)
179 (Cvt64Fto64 <t> x) && !base.ConvertHash.MatchPos(v.Pos, nil) => (CVTTSD2SQ <t> x)
180
181 (Cvt32Fto64F ...) => (CVTSS2SD ...)
182 (Cvt64Fto32F ...) => (CVTSD2SS ...)
183
184 (Round(32|64)F ...) => (LoweredRound(32|64)F ...)
185
186 // Floating-point min is tricky, as the hardware op isn't right for various special
187 // cases (-0 and NaN). We use two hardware ops organized just right to make the
188 // result come out how we want it. See https://github.com/golang/go/issues/59488#issuecomment-1553493207
189 // (although that comment isn't exactly right, as the value overwritten is not simulated correctly).
190 // t1 = MINSD x, y => incorrect if x==NaN or x==-0,y==+0
191 // t2 = MINSD t1, x => fixes x==NaN case
192 // res = POR t1, t2 => fixes x==-0,y==+0 case
193 // Note that this trick depends on the special property that (NaN OR x) produces a NaN (although
194 // it might not produce the same NaN as the input).
195 (Min(64|32)F <t> x y) => (POR (MINS(D|S) <t> (MINS(D|S) <t> x y) x) (MINS(D|S) <t> x y))
196 // Floating-point max is even trickier. Punt to using min instead.
197 // max(x,y) == -min(-x,-y)
198 (Max(64|32)F <t> x y) => (Neg(64|32)F <t> (Min(64|32)F <t> (Neg(64|32)F <t> x) (Neg(64|32)F <t> y)))
199
200 (CvtBoolToUint8 ...) => (Copy ...)
201
202 // Lowering shifts
203 // Unsigned shifts need to return 0 if shift amount is >= width of shifted value.
204 // result = (arg << shift) & (shift >= argbits ? 0 : 0xffffffffffffffff)
205 (Lsh64x(64|32|16|8) <t> x y) && !shiftIsBounded(v) => (ANDQ (SHLQ <t> x y) (SBBQcarrymask <t> (CMP(Q|L|W|B)const y [64])))
206 (Lsh32x(64|32|16|8) <t> x y) && !shiftIsBounded(v) => (ANDL (SHLL <t> x y) (SBBLcarrymask <t> (CMP(Q|L|W|B)const y [32])))
207 (Lsh16x(64|32|16|8) <t> x y) && !shiftIsBounded(v) => (ANDL (SHLL <t> x y) (SBBLcarrymask <t> (CMP(Q|L|W|B)const y [32])))
208 (Lsh8x(64|32|16|8) <t> x y) && !shiftIsBounded(v) => (ANDL (SHLL <t> x y) (SBBLcarrymask <t> (CMP(Q|L|W|B)const y [32])))
209
210 (Lsh64x(64|32|16|8) x y) && shiftIsBounded(v) => (SHLQ x y)
211 (Lsh32x(64|32|16|8) x y) && shiftIsBounded(v) => (SHLL x y)
212 (Lsh16x(64|32|16|8) x y) && shiftIsBounded(v) => (SHLL x y)
213 (Lsh8x(64|32|16|8) x y) && shiftIsBounded(v) => (SHLL x y)
214
215 (Rsh64Ux(64|32|16|8) <t> x y) && !shiftIsBounded(v) => (ANDQ (SHRQ <t> x y) (SBBQcarrymask <t> (CMP(Q|L|W|B)const y [64])))
216 (Rsh32Ux(64|32|16|8) <t> x y) && !shiftIsBounded(v) => (ANDL (SHRL <t> x y) (SBBLcarrymask <t> (CMP(Q|L|W|B)const y [32])))
217 (Rsh16Ux(64|32|16|8) <t> x y) && !shiftIsBounded(v) => (ANDL (SHRW <t> x y) (SBBLcarrymask <t> (CMP(Q|L|W|B)const y [16])))
218 (Rsh8Ux(64|32|16|8) <t> x y) && !shiftIsBounded(v) => (ANDL (SHRB <t> x y) (SBBLcarrymask <t> (CMP(Q|L|W|B)const y [8])))
219
220 (Rsh64Ux(64|32|16|8) x y) && shiftIsBounded(v) => (SHRQ x y)
221 (Rsh32Ux(64|32|16|8) x y) && shiftIsBounded(v) => (SHRL x y)
222 (Rsh16Ux(64|32|16|8) x y) && shiftIsBounded(v) => (SHRW x y)
223 (Rsh8Ux(64|32|16|8) x y) && shiftIsBounded(v) => (SHRB x y)
224
225 // Signed right shift needs to return 0/-1 if shift amount is >= width of shifted value.
226 // We implement this by setting the shift value to -1 (all ones) if the shift value is >= width.
227 (Rsh64x(64|32|16|8) <t> x y) && !shiftIsBounded(v) => (SARQ <t> x (OR(Q|L|L|L) <y.Type> y (NOT(Q|L|L|L) <y.Type> (SBB(Q|L|L|L)carrymask <y.Type> (CMP(Q|L|W|B)const y [64])))))
228 (Rsh32x(64|32|16|8) <t> x y) && !shiftIsBounded(v) => (SARL <t> x (OR(Q|L|L|L) <y.Type> y (NOT(Q|L|L|L) <y.Type> (SBB(Q|L|L|L)carrymask <y.Type> (CMP(Q|L|W|B)const y [32])))))
229 (Rsh16x(64|32|16|8) <t> x y) && !shiftIsBounded(v) => (SARW <t> x (OR(Q|L|L|L) <y.Type> y (NOT(Q|L|L|L) <y.Type> (SBB(Q|L|L|L)carrymask <y.Type> (CMP(Q|L|W|B)const y [16])))))
230 (Rsh8x(64|32|16|8) <t> x y) && !shiftIsBounded(v) => (SARB <t> x (OR(Q|L|L|L) <y.Type> y (NOT(Q|L|L|L) <y.Type> (SBB(Q|L|L|L)carrymask <y.Type> (CMP(Q|L|W|B)const y [8])))))
231
232 (Rsh64x(64|32|16|8) x y) && shiftIsBounded(v) => (SARQ x y)
233 (Rsh32x(64|32|16|8) x y) && shiftIsBounded(v) => (SARL x y)
234 (Rsh16x(64|32|16|8) x y) && shiftIsBounded(v) => (SARW x y)
235 (Rsh8x(64|32|16|8) x y) && shiftIsBounded(v) => (SARB x y)
236
237 // Lowering integer comparisons
238 (Less(64|32|16|8) x y) => (SETL (CMP(Q|L|W|B) x y))
239 (Less(64|32|16|8)U x y) => (SETB (CMP(Q|L|W|B) x y))
240 (Leq(64|32|16|8) x y) => (SETLE (CMP(Q|L|W|B) x y))
241 (Leq(64|32|16|8)U x y) => (SETBE (CMP(Q|L|W|B) x y))
242 (Eq(Ptr|64|32|16|8|B) x y) => (SETEQ (CMP(Q|Q|L|W|B|B) x y))
243 (Neq(Ptr|64|32|16|8|B) x y) => (SETNE (CMP(Q|Q|L|W|B|B) x y))
244
245 // Lowering floating point comparisons
246 // Note Go assembler gets UCOMISx operand order wrong, but it is right here
247 // and the operands are reversed when generating assembly language.
248 (Eq(32|64)F x y) => (SETEQF (UCOMIS(S|D) x y))
249 (Neq(32|64)F x y) => (SETNEF (UCOMIS(S|D) x y))
250 // Use SETGF/SETGEF with reversed operands to dodge NaN case.
251 (Less(32|64)F x y) => (SETGF (UCOMIS(S|D) y x))
252 (Leq(32|64)F x y) => (SETGEF (UCOMIS(S|D) y x))
253
254 // Lowering loads
255 (Load <t> ptr mem) && (is64BitInt(t) || isPtr(t)) => (MOVQload ptr mem)
256 (Load <t> ptr mem) && is32BitInt(t) => (MOVLload ptr mem)
257 (Load <t> ptr mem) && is16BitInt(t) => (MOVWload ptr mem)
258 (Load <t> ptr mem) && (t.IsBoolean() || is8BitInt(t)) => (MOVBload ptr mem)
259 (Load <t> ptr mem) && is32BitFloat(t) => (MOVSSload ptr mem)
260 (Load <t> ptr mem) && is64BitFloat(t) => (MOVSDload ptr mem)
261
262 // Lowering stores
263 (Store {t} ptr val mem) && t.Size() == 8 && t.IsFloat() => (MOVSDstore ptr val mem)
264 (Store {t} ptr val mem) && t.Size() == 4 && t.IsFloat() => (MOVSSstore ptr val mem)
265 (Store {t} ptr val mem) && t.Size() == 8 && !t.IsFloat() => (MOVQstore ptr val mem)
266 (Store {t} ptr val mem) && t.Size() == 4 && !t.IsFloat() => (MOVLstore ptr val mem)
267 (Store {t} ptr val mem) && t.Size() == 2 => (MOVWstore ptr val mem)
268 (Store {t} ptr val mem) && t.Size() == 1 => (MOVBstore ptr val mem)
269
270 // Lowering moves
271 (Move [0] _ _ mem) => mem
272 (Move [1] dst src mem) => (MOVBstore dst (MOVBload src mem) mem)
273 (Move [2] dst src mem) => (MOVWstore dst (MOVWload src mem) mem)
274 (Move [4] dst src mem) => (MOVLstore dst (MOVLload src mem) mem)
275 (Move [8] dst src mem) => (MOVQstore dst (MOVQload src mem) mem)
276 (Move [16] dst src mem) => (MOVOstore dst (MOVOload src mem) mem)
277
278 (Move [3] dst src mem) =>
279 (MOVBstore [2] dst (MOVBload [2] src mem)
280 (MOVWstore dst (MOVWload src mem) mem))
281 (Move [5] dst src mem) =>
282 (MOVBstore [4] dst (MOVBload [4] src mem)
283 (MOVLstore dst (MOVLload src mem) mem))
284 (Move [6] dst src mem) =>
285 (MOVWstore [4] dst (MOVWload [4] src mem)
286 (MOVLstore dst (MOVLload src mem) mem))
287 (Move [7] dst src mem) =>
288 (MOVLstore [3] dst (MOVLload [3] src mem)
289 (MOVLstore dst (MOVLload src mem) mem))
290 (Move [9] dst src mem) =>
291 (MOVBstore [8] dst (MOVBload [8] src mem)
292 (MOVQstore dst (MOVQload src mem) mem))
293 (Move [10] dst src mem) =>
294 (MOVWstore [8] dst (MOVWload [8] src mem)
295 (MOVQstore dst (MOVQload src mem) mem))
296 (Move [11] dst src mem) =>
297 (MOVLstore [7] dst (MOVLload [7] src mem)
298 (MOVQstore dst (MOVQload src mem) mem))
299 (Move [12] dst src mem) =>
300 (MOVLstore [8] dst (MOVLload [8] src mem)
301 (MOVQstore dst (MOVQload src mem) mem))
302 (Move [s] dst src mem) && s >= 13 && s <= 15 =>
303 (MOVQstore [int32(s-8)] dst (MOVQload [int32(s-8)] src mem)
304 (MOVQstore dst (MOVQload src mem) mem))
305
306 // Copying up to 192 bytes uses straightline code.
307 (Move [s] dst src mem) && s > 16 && s < 192 && logLargeCopy(v, s) => (LoweredMove [s] dst src mem)
308
309 // Copying up to ~1KB uses a small loop.
310 (Move [s] dst src mem) && s >= 192 && s <= repMoveThreshold && logLargeCopy(v, s) => (LoweredMoveLoop [s] dst src mem)
311
312 // Large copying uses REP MOVSQ.
313 (Move [s] dst src mem) && s > repMoveThreshold && s%8 != 0 =>
314 (Move [s-s%8]
315 (OffPtr <dst.Type> dst [s%8])
316 (OffPtr <src.Type> src [s%8])
317 (MOVQstore dst (MOVQload src mem) mem))
318 (Move [s] dst src mem) && s > repMoveThreshold && s%8 == 0 && logLargeCopy(v, s) =>
319 (REPMOVSQ dst src (MOVQconst [s/8]) mem)
320
321 // Lowering Zero instructions
322 (Zero [0] _ mem) => mem
323 (Zero [1] destptr mem) => (MOVBstoreconst [makeValAndOff(0,0)] destptr mem)
324 (Zero [2] destptr mem) => (MOVWstoreconst [makeValAndOff(0,0)] destptr mem)
325 (Zero [4] destptr mem) => (MOVLstoreconst [makeValAndOff(0,0)] destptr mem)
326 (Zero [8] destptr mem) => (MOVQstoreconst [makeValAndOff(0,0)] destptr mem)
327
328 (Zero [3] destptr mem) =>
329 (MOVBstoreconst [makeValAndOff(0,2)] destptr
330 (MOVWstoreconst [makeValAndOff(0,0)] destptr mem))
331 (Zero [5] destptr mem) =>
332 (MOVBstoreconst [makeValAndOff(0,4)] destptr
333 (MOVLstoreconst [makeValAndOff(0,0)] destptr mem))
334 (Zero [6] destptr mem) =>
335 (MOVWstoreconst [makeValAndOff(0,4)] destptr
336 (MOVLstoreconst [makeValAndOff(0,0)] destptr mem))
337 (Zero [7] destptr mem) =>
338 (MOVLstoreconst [makeValAndOff(0,3)] destptr
339 (MOVLstoreconst [makeValAndOff(0,0)] destptr mem))
340
341 // Zero small numbers of words directly.
342 (Zero [9] destptr mem) =>
343 (MOVBstoreconst [makeValAndOff(0,8)] destptr
344 (MOVQstoreconst [makeValAndOff(0,0)] destptr mem))
345
346 (Zero [10] destptr mem) =>
347 (MOVWstoreconst [makeValAndOff(0,8)] destptr
348 (MOVQstoreconst [makeValAndOff(0,0)] destptr mem))
349
350 (Zero [11] destptr mem) =>
351 (MOVLstoreconst [makeValAndOff(0,7)] destptr
352 (MOVQstoreconst [makeValAndOff(0,0)] destptr mem))
353
354 (Zero [12] destptr mem) =>
355 (MOVLstoreconst [makeValAndOff(0,8)] destptr
356 (MOVQstoreconst [makeValAndOff(0,0)] destptr mem))
357
358 (Zero [s] destptr mem) && s > 12 && s < 16 =>
359 (MOVQstoreconst [makeValAndOff(0,int32(s-8))] destptr
360 (MOVQstoreconst [makeValAndOff(0,0)] destptr mem))
361
362 // Zeroing up to 192 bytes uses straightline code.
363 (Zero [s] destptr mem) && s >= 16 && s < 192 => (LoweredZero [s] destptr mem)
364
365 // Zeroing up to ~1KB uses a small loop.
366 (Zero [s] destptr mem) && s >= 192 && s <= repZeroThreshold => (LoweredZeroLoop [s] destptr mem)
367
368 // Large zeroing uses REP STOSQ.
369 (Zero [s] destptr mem) && s > repZeroThreshold && s%8 != 0 =>
370 (Zero [s-s%8] (OffPtr <destptr.Type> destptr [s%8])
371 (MOVOstoreconst [makeValAndOff(0,0)] destptr mem))
372 (Zero [s] destptr mem) && s > repZeroThreshold && s%8 == 0 =>
373 (REPSTOSQ destptr (MOVQconst [s/8]) (MOVQconst [0]) mem)
374
375 // Lowering constants
376 (Const8 [c]) => (MOVLconst [int32(c)])
377 (Const16 [c]) => (MOVLconst [int32(c)])
378 (Const32 ...) => (MOVLconst ...)
379 (Const64 ...) => (MOVQconst ...)
380 (Const32F ...) => (MOVSSconst ...)
381 (Const64F ...) => (MOVSDconst ...)
382 (ConstNil ) => (MOVQconst [0])
383 (ConstBool [c]) => (MOVLconst [b2i32(c)])
384
385 // Lowering calls
386 (StaticCall ...) => (CALLstatic ...)
387 (ClosureCall ...) => (CALLclosure ...)
388 (InterCall ...) => (CALLinter ...)
389 (TailCall ...) => (CALLtail ...)
390 (TailCallInter ...) => (CALLtailinter ...)
391
392 // Lowering conditional moves
393 // If the condition is a SETxx, we can just run a CMOV from the comparison that was
394 // setting the flags.
395 // Legend: HI=unsigned ABOVE, CS=unsigned BELOW, CC=unsigned ABOVE EQUAL, LS=unsigned BELOW EQUAL
396 (CondSelect <t> x y (SET(EQ|NE|L|G|LE|GE|A|B|AE|BE|EQF|NEF|GF|GEF) cond)) && (is64BitInt(t) || isPtr(t))
397 => (CMOVQ(EQ|NE|LT|GT|LE|GE|HI|CS|CC|LS|EQF|NEF|GTF|GEF) y x cond)
398 (CondSelect <t> x y (SET(EQ|NE|L|G|LE|GE|A|B|AE|BE|EQF|NEF|GF|GEF) cond)) && is32BitInt(t)
399 => (CMOVL(EQ|NE|LT|GT|LE|GE|HI|CS|CC|LS|EQF|NEF|GTF|GEF) y x cond)
400 (CondSelect <t> x y (SET(EQ|NE|L|G|LE|GE|A|B|AE|BE|EQF|NEF|GF|GEF) cond)) && is16BitInt(t)
401 => (CMOVW(EQ|NE|LT|GT|LE|GE|HI|CS|CC|LS|EQF|NEF|GTF|GEF) y x cond)
402
403 (CondSelect <t> x y check) && !check.Type.IsFlags() && check.Type.Size() == 8 && (is64BitInt(t) || isPtr(t))
404 => (CMOVQNE y x (CMPQconst [0] check))
405 (CondSelect <t> x y check) && !check.Type.IsFlags() && check.Type.Size() == 8 && is32BitInt(t)
406 => (CMOVLNE y x (CMPQconst [0] check))
407 (CondSelect <t> x y check) && !check.Type.IsFlags() && check.Type.Size() == 8 && is16BitInt(t)
408 => (CMOVWNE y x (CMPQconst [0] check))
409 (CondSelect <t> x y check) && !check.Type.IsFlags() && check.Type.Size() == 4 && (is64BitInt(t) || isPtr(t))
410 => (CMOVQNE y x (CMPLconst [0] check))
411 (CondSelect <t> x y check) && !check.Type.IsFlags() && check.Type.Size() == 4 && is32BitInt(t)
412 => (CMOVLNE y x (CMPLconst [0] check))
413 (CondSelect <t> x y check) && !check.Type.IsFlags() && check.Type.Size() == 4 && is16BitInt(t)
414 => (CMOVWNE y x (CMPLconst [0] check))
415 (CondSelect <t> x y check) && !check.Type.IsFlags() && check.Type.Size() == 2 && (is64BitInt(t) || isPtr(t))
416 => (CMOVQNE y x (CMPWconst [0] check))
417 (CondSelect <t> x y check) && !check.Type.IsFlags() && check.Type.Size() == 2 && is32BitInt(t)
418 => (CMOVLNE y x (CMPWconst [0] check))
419 (CondSelect <t> x y check) && !check.Type.IsFlags() && check.Type.Size() == 2 && is16BitInt(t)
420 => (CMOVWNE y x (CMPWconst [0] check))
421 (CondSelect <t> x y check) && !check.Type.IsFlags() && check.Type.Size() == 1 && (is64BitInt(t) || isPtr(t))
422 => (CMOVQNE y x (CMPBconst [0] check))
423 (CondSelect <t> x y check) && !check.Type.IsFlags() && check.Type.Size() == 1 && is32BitInt(t)
424 => (CMOVLNE y x (CMPBconst [0] check))
425 (CondSelect <t> x y check) && !check.Type.IsFlags() && check.Type.Size() == 1 && is16BitInt(t)
426 => (CMOVWNE y x (CMPBconst [0] check))
427
428 // Absorb InvertFlags
429 (CMOVQ(EQ|NE|LT|GT|LE|GE|HI|CS|CC|LS) x y (InvertFlags cond))
430 => (CMOVQ(EQ|NE|GT|LT|GE|LE|CS|HI|LS|CC) x y cond)
431 (CMOVL(EQ|NE|LT|GT|LE|GE|HI|CS|CC|LS) x y (InvertFlags cond))
432 => (CMOVL(EQ|NE|GT|LT|GE|LE|CS|HI|LS|CC) x y cond)
433 (CMOVW(EQ|NE|LT|GT|LE|GE|HI|CS|CC|LS) x y (InvertFlags cond))
434 => (CMOVW(EQ|NE|GT|LT|GE|LE|CS|HI|LS|CC) x y cond)
435
436 // Absorb constants generated during lower
437 (CMOV(QEQ|QLE|QGE|QCC|QLS|LEQ|LLE|LGE|LCC|LLS|WEQ|WLE|WGE|WCC|WLS) _ x (FlagEQ)) => x
438 (CMOV(QNE|QLT|QGT|QCS|QHI|LNE|LLT|LGT|LCS|LHI|WNE|WLT|WGT|WCS|WHI) y _ (FlagEQ)) => y
439 (CMOV(QNE|QGT|QGE|QHI|QCC|LNE|LGT|LGE|LHI|LCC|WNE|WGT|WGE|WHI|WCC) _ x (FlagGT_UGT)) => x
440 (CMOV(QEQ|QLE|QLT|QLS|QCS|LEQ|LLE|LLT|LLS|LCS|WEQ|WLE|WLT|WLS|WCS) y _ (FlagGT_UGT)) => y
441 (CMOV(QNE|QGT|QGE|QLS|QCS|LNE|LGT|LGE|LLS|LCS|WNE|WGT|WGE|WLS|WCS) _ x (FlagGT_ULT)) => x
442 (CMOV(QEQ|QLE|QLT|QHI|QCC|LEQ|LLE|LLT|LHI|LCC|WEQ|WLE|WLT|WHI|WCC) y _ (FlagGT_ULT)) => y
443 (CMOV(QNE|QLT|QLE|QCS|QLS|LNE|LLT|LLE|LCS|LLS|WNE|WLT|WLE|WCS|WLS) _ x (FlagLT_ULT)) => x
444 (CMOV(QEQ|QGT|QGE|QHI|QCC|LEQ|LGT|LGE|LHI|LCC|WEQ|WGT|WGE|WHI|WCC) y _ (FlagLT_ULT)) => y
445 (CMOV(QNE|QLT|QLE|QHI|QCC|LNE|LLT|LLE|LHI|LCC|WNE|WLT|WLE|WHI|WCC) _ x (FlagLT_UGT)) => x
446 (CMOV(QEQ|QGT|QGE|QCS|QLS|LEQ|LGT|LGE|LCS|LLS|WEQ|WGT|WGE|WCS|WLS) y _ (FlagLT_UGT)) => y
447
448 // Miscellaneous
449 (IsNonNil p) => (SETNE (TESTQ p p))
450 (IsInBounds idx len) => (SETB (CMPQ idx len))
451 (IsSliceInBounds idx len) => (SETBE (CMPQ idx len))
452 (NilCheck ...) => (LoweredNilCheck ...)
453 (GetG mem) && v.Block.Func.OwnAux.Fn.ABI() != obj.ABIInternal => (LoweredGetG mem) // only lower in old ABI. in new ABI we have a G register.
454 (GetClosurePtr ...) => (LoweredGetClosurePtr ...)
455 (GetCallerPC ...) => (LoweredGetCallerPC ...)
456 (GetCallerSP ...) => (LoweredGetCallerSP ...)
457
458 (HasCPUFeature {s}) => (SETNE (CMPLconst [0] (LoweredHasCPUFeature {s})))
459 (Addr {sym} base) => (LEAQ {sym} base)
460 (LocalAddr <t> {sym} base mem) && t.Elem().HasPointers() => (LEAQ {sym} (SPanchored base mem))
461 (LocalAddr <t> {sym} base _) && !t.Elem().HasPointers() => (LEAQ {sym} base)
462
463 (MOVBstore [off] {sym} ptr y:(SETL x) mem) && y.Uses == 1 => (SETLstore [off] {sym} ptr x mem)
464 (MOVBstore [off] {sym} ptr y:(SETLE x) mem) && y.Uses == 1 => (SETLEstore [off] {sym} ptr x mem)
465 (MOVBstore [off] {sym} ptr y:(SETG x) mem) && y.Uses == 1 => (SETGstore [off] {sym} ptr x mem)
466 (MOVBstore [off] {sym} ptr y:(SETGE x) mem) && y.Uses == 1 => (SETGEstore [off] {sym} ptr x mem)
467 (MOVBstore [off] {sym} ptr y:(SETEQ x) mem) && y.Uses == 1 => (SETEQstore [off] {sym} ptr x mem)
468 (MOVBstore [off] {sym} ptr y:(SETNE x) mem) && y.Uses == 1 => (SETNEstore [off] {sym} ptr x mem)
469 (MOVBstore [off] {sym} ptr y:(SETB x) mem) && y.Uses == 1 => (SETBstore [off] {sym} ptr x mem)
470 (MOVBstore [off] {sym} ptr y:(SETBE x) mem) && y.Uses == 1 => (SETBEstore [off] {sym} ptr x mem)
471 (MOVBstore [off] {sym} ptr y:(SETA x) mem) && y.Uses == 1 => (SETAstore [off] {sym} ptr x mem)
472 (MOVBstore [off] {sym} ptr y:(SETAE x) mem) && y.Uses == 1 => (SETAEstore [off] {sym} ptr x mem)
473
474 // block rewrites
475 (If (SETL cmp) yes no) => (LT cmp yes no)
476 (If (SETLE cmp) yes no) => (LE cmp yes no)
477 (If (SETG cmp) yes no) => (GT cmp yes no)
478 (If (SETGE cmp) yes no) => (GE cmp yes no)
479 (If (SETEQ cmp) yes no) => (EQ cmp yes no)
480 (If (SETNE cmp) yes no) => (NE cmp yes no)
481 (If (SETB cmp) yes no) => (ULT cmp yes no)
482 (If (SETBE cmp) yes no) => (ULE cmp yes no)
483 (If (SETA cmp) yes no) => (UGT cmp yes no)
484 (If (SETAE cmp) yes no) => (UGE cmp yes no)
485 (If (SETO cmp) yes no) => (OS cmp yes no)
486
487 // Special case for floating point - LF/LEF not generated
488 (If (SETGF cmp) yes no) => (UGT cmp yes no)
489 (If (SETGEF cmp) yes no) => (UGE cmp yes no)
490 (If (SETEQF cmp) yes no) => (EQF cmp yes no)
491 (If (SETNEF cmp) yes no) => (NEF cmp yes no)
492
493 (If cond yes no) => (NE (TESTB cond cond) yes no)
494
495 (JumpTable idx) => (JUMPTABLE {makeJumpTableSym(b)} idx (LEAQ <typ.Uintptr> {makeJumpTableSym(b)} (SB)))
496
497 // Atomic loads. Other than preserving their ordering with respect to other loads, nothing special here.
498 (AtomicLoad8 ptr mem) => (MOVBatomicload ptr mem)
499 (AtomicLoad32 ptr mem) => (MOVLatomicload ptr mem)
500 (AtomicLoad64 ptr mem) => (MOVQatomicload ptr mem)
501 (AtomicLoadPtr ptr mem) => (MOVQatomicload ptr mem)
502
503 // Atomic stores. We use XCHG to prevent the hardware reordering a subsequent load.
504 // TODO: most runtime uses of atomic stores don't need that property. Use normal stores for those?
505 (AtomicStore8 ptr val mem) => (Select1 (XCHGB <types.NewTuple(typ.UInt8,types.TypeMem)> val ptr mem))
506 (AtomicStore32 ptr val mem) => (Select1 (XCHGL <types.NewTuple(typ.UInt32,types.TypeMem)> val ptr mem))
507 (AtomicStore64 ptr val mem) => (Select1 (XCHGQ <types.NewTuple(typ.UInt64,types.TypeMem)> val ptr mem))
508 (AtomicStorePtrNoWB ptr val mem) => (Select1 (XCHGQ <types.NewTuple(typ.BytePtr,types.TypeMem)> val ptr mem))
509
510 // Atomic exchanges.
511 (AtomicExchange8 ptr val mem) => (XCHGB val ptr mem)
512 (AtomicExchange32 ptr val mem) => (XCHGL val ptr mem)
513 (AtomicExchange64 ptr val mem) => (XCHGQ val ptr mem)
514
515 // Atomic adds.
516 (AtomicAdd32 ptr val mem) => (AddTupleFirst32 val (XADDLlock val ptr mem))
517 (AtomicAdd64 ptr val mem) => (AddTupleFirst64 val (XADDQlock val ptr mem))
518 (Select0 <t> (AddTupleFirst32 val tuple)) => (ADDL val (Select0 <t> tuple))
519 (Select1 (AddTupleFirst32 _ tuple)) => (Select1 tuple)
520 (Select0 <t> (AddTupleFirst64 val tuple)) => (ADDQ val (Select0 <t> tuple))
521 (Select1 (AddTupleFirst64 _ tuple)) => (Select1 tuple)
522
523 // Atomic compare and swap.
524 (AtomicCompareAndSwap32 ptr old new_ mem) => (CMPXCHGLlock ptr old new_ mem)
525 (AtomicCompareAndSwap64 ptr old new_ mem) => (CMPXCHGQlock ptr old new_ mem)
526
527 // Atomic memory logical operations (old style).
528 (AtomicAnd8 ptr val mem) => (ANDBlock ptr val mem)
529 (AtomicAnd32 ptr val mem) => (ANDLlock ptr val mem)
530 (AtomicOr8 ptr val mem) => (ORBlock ptr val mem)
531 (AtomicOr32 ptr val mem) => (ORLlock ptr val mem)
532
533 // Atomic memory logical operations (new style).
534 (Atomic(And64|And32|Or64|Or32)value ptr val mem) => (LoweredAtomic(And64|And32|Or64|Or32) ptr val mem)
535
536 // Write barrier.
537 (WB ...) => (LoweredWB ...)
538
539 (PanicBounds ...) => (LoweredPanicBoundsRR ...)
540 (LoweredPanicBoundsRR [kind] x (MOVQconst [c]) mem) => (LoweredPanicBoundsRC [kind] x {PanicBoundsC{C:c}} mem)
541 (LoweredPanicBoundsRR [kind] (MOVQconst [c]) y mem) => (LoweredPanicBoundsCR [kind] {PanicBoundsC{C:c}} y mem)
542 (LoweredPanicBoundsRC [kind] {p} (MOVQconst [c]) mem) => (LoweredPanicBoundsCC [kind] {PanicBoundsCC{Cx:c, Cy:p.C}} mem)
543 (LoweredPanicBoundsCR [kind] {p} (MOVQconst [c]) mem) => (LoweredPanicBoundsCC [kind] {PanicBoundsCC{Cx:p.C, Cy:c}} mem)
544
545 // lowering rotates
546 (RotateLeft8 ...) => (ROLB ...)
547 (RotateLeft16 ...) => (ROLW ...)
548 (RotateLeft32 ...) => (ROLL ...)
549 (RotateLeft64 ...) => (ROLQ ...)
550
551 // ***************************
552 // Above: lowering rules
553 // Below: optimizations
554 // ***************************
555 // TODO: Should the optimizations be a separate pass?
556
557 // Fold boolean tests into blocks
558 (NE (TESTB (SETL cmp) (SETL cmp)) yes no) => (LT cmp yes no)
559 (NE (TESTB (SETLE cmp) (SETLE cmp)) yes no) => (LE cmp yes no)
560 (NE (TESTB (SETG cmp) (SETG cmp)) yes no) => (GT cmp yes no)
561 (NE (TESTB (SETGE cmp) (SETGE cmp)) yes no) => (GE cmp yes no)
562 (NE (TESTB (SETEQ cmp) (SETEQ cmp)) yes no) => (EQ cmp yes no)
563 (NE (TESTB (SETNE cmp) (SETNE cmp)) yes no) => (NE cmp yes no)
564 (NE (TESTB (SETB cmp) (SETB cmp)) yes no) => (ULT cmp yes no)
565 (NE (TESTB (SETBE cmp) (SETBE cmp)) yes no) => (ULE cmp yes no)
566 (NE (TESTB (SETA cmp) (SETA cmp)) yes no) => (UGT cmp yes no)
567 (NE (TESTB (SETAE cmp) (SETAE cmp)) yes no) => (UGE cmp yes no)
568 (NE (TESTB (SETO cmp) (SETO cmp)) yes no) => (OS cmp yes no)
569
570 // Unsigned comparisons to 0/1
571 (ULT (TEST(Q|L|W|B) x x) yes no) => (First no yes)
572 (UGE (TEST(Q|L|W|B) x x) yes no) => (First yes no)
573 (SETB (TEST(Q|L|W|B) x x)) => (ConstBool [false])
574 (SETAE (TEST(Q|L|W|B) x x)) => (ConstBool [true])
575
576 // x & 1 != 0 -> x & 1
577 (SETNE (TEST(B|W)const [1] x)) => (AND(L|L)const [1] x)
578 (SETB (BT(L|Q)const [0] x)) => (AND(L|Q)const [1] x)
579 // x & 1 == 0 -> (x & 1) ^ 1
580 (SETAE (BT(L|Q)const [0] x)) => (XORLconst [1] (ANDLconst <typ.Bool> [1] x))
581
582 // Shorten compare by rewriting x < 128 as x <= 127, which can be encoded in a single-byte immediate on x86.
583 (SETL c:(CMP(Q|L)const [128] x)) && c.Uses == 1 => (SETLE (CMP(Q|L)const [127] x))
584 (SETB c:(CMP(Q|L)const [128] x)) && c.Uses == 1 => (SETBE (CMP(Q|L)const [127] x))
585
586 // x >= 128 -> x > 127
587 (SETGE c:(CMP(Q|L)const [128] x)) && c.Uses == 1 => (SETG (CMP(Q|L)const [127] x))
588 (SETAE c:(CMP(Q|L)const [128] x)) && c.Uses == 1 => (SETA (CMP(Q|L)const [127] x))
589
590 (CMOVQLT x y c:(CMP(Q|L)const [128] z)) && c.Uses == 1 => (CMOVQLE x y (CMP(Q|L)const [127] z))
591 (CMOVLLT x y c:(CMP(Q|L)const [128] z)) && c.Uses == 1 => (CMOVLLE x y (CMP(Q|L)const [127] z))
592 (LT c:(CMP(Q|L)const [128] z) yes no) && c.Uses == 1 => (LE (CMP(Q|L)const [127] z) yes no)
593 (CMOVQGE x y c:(CMP(Q|L)const [128] z)) && c.Uses == 1 => (CMOVQGT x y (CMP(Q|L)const [127] z))
594 (CMOVLGE x y c:(CMP(Q|L)const [128] z)) && c.Uses == 1 => (CMOVLGT x y (CMP(Q|L)const [127] z))
595 (GE c:(CMP(Q|L)const [128] z) yes no) && c.Uses == 1 => (GT (CMP(Q|L)const [127] z) yes no)
596
597 // Recognize bit tests: a&(1<<b) != 0 for b suitably bounded
598 // Note that BTx instructions use the carry bit, so we need to convert tests for zero flag
599 // into tests for carry flags.
600 // ULT and SETB check the carry flag; they are identical to CS and SETCS. Same, mutatis
601 // mutandis, for UGE and SETAE, and CC and SETCC.
602 ((NE|EQ) (TESTL (SHLL (MOVLconst [1]) x) y)) => ((ULT|UGE) (BTL x y))
603 ((NE|EQ) (TESTQ (SHLQ (MOVQconst [1]) x) y)) => ((ULT|UGE) (BTQ x y))
604 ((NE|EQ) (TESTLconst [c] x)) && isPowerOfTwo(uint32(c))
605 => ((ULT|UGE) (BTLconst [int8(log32u(uint32(c)))] x))
606 ((NE|EQ) (TESTQconst [c] x)) && isPowerOfTwo(uint64(c))
607 => ((ULT|UGE) (BTQconst [int8(log32u(uint32(c)))] x))
608 ((NE|EQ) (TESTQ (MOVQconst [c]) x)) && isPowerOfTwo(uint64(c))
609 => ((ULT|UGE) (BTQconst [int8(log64u(uint64(c)))] x))
610 (SET(NE|EQ) (TESTL (SHLL (MOVLconst [1]) x) y)) => (SET(B|AE) (BTL x y))
611 (SET(NE|EQ) (TESTQ (SHLQ (MOVQconst [1]) x) y)) => (SET(B|AE) (BTQ x y))
612 (SET(NE|EQ) (TESTLconst [c] x)) && isPowerOfTwo(uint32(c))
613 => (SET(B|AE) (BTLconst [int8(log32u(uint32(c)))] x))
614 (SET(NE|EQ) (TESTQconst [c] x)) && isPowerOfTwo(uint64(c))
615 => (SET(B|AE) (BTQconst [int8(log32u(uint32(c)))] x))
616 (SET(NE|EQ) (TESTQ (MOVQconst [c]) x)) && isPowerOfTwo(uint64(c))
617 => (SET(B|AE) (BTQconst [int8(log64u(uint64(c)))] x))
618 // SET..store variant
619 (SET(NE|EQ)store [off] {sym} ptr (TESTL (SHLL (MOVLconst [1]) x) y) mem)
620 => (SET(B|AE)store [off] {sym} ptr (BTL x y) mem)
621 (SET(NE|EQ)store [off] {sym} ptr (TESTQ (SHLQ (MOVQconst [1]) x) y) mem)
622 => (SET(B|AE)store [off] {sym} ptr (BTQ x y) mem)
623 (SET(NE|EQ)store [off] {sym} ptr (TESTLconst [c] x) mem) && isPowerOfTwo(uint32(c))
624 => (SET(B|AE)store [off] {sym} ptr (BTLconst [int8(log32u(uint32(c)))] x) mem)
625 (SET(NE|EQ)store [off] {sym} ptr (TESTQconst [c] x) mem) && isPowerOfTwo(uint64(c))
626 => (SET(B|AE)store [off] {sym} ptr (BTQconst [int8(log32u(uint32(c)))] x) mem)
627 (SET(NE|EQ)store [off] {sym} ptr (TESTQ (MOVQconst [c]) x) mem) && isPowerOfTwo(uint64(c))
628 => (SET(B|AE)store [off] {sym} ptr (BTQconst [int8(log64u(uint64(c)))] x) mem)
629
630 // Handle bit-testing in the form (a>>b)&1 != 0 by building the above rules
631 // and further combining shifts.
632 (BT(Q|L)const [c] (SHRQconst [d] x)) && (c+d)<64 => (BTQconst [c+d] x)
633 (BT(Q|L)const [c] (ADDQ x x)) && c>1 => (BT(Q|L)const [c-1] x)
634 (BT(Q|L)const [c] (SHLQconst [d] x)) && c>d => (BT(Q|L)const [c-d] x)
635 (BT(Q|L)const [0] s:(SHRQ x y)) => (BTQ y x)
636 (BTLconst [c] (SHRLconst [d] x)) && (c+d)<32 => (BTLconst [c+d] x)
637 (BTLconst [c] (ADDL x x)) && c>1 => (BTLconst [c-1] x)
638 (BTLconst [c] (SHLLconst [d] x)) && c>d => (BTLconst [c-d] x)
639 (BTLconst [0] s:(SHR(L|XL) x y)) => (BTL y x)
640
641 // Rewrite a & 1 != 1 into a & 1 == 0.
642 // Among other things, this lets us turn (a>>b)&1 != 1 into a bit test.
643 (SET(NE|EQ) (CMPLconst [1] s:(ANDLconst [1] _))) => (SET(EQ|NE) (CMPLconst [0] s))
644 (SET(NE|EQ)store [off] {sym} ptr (CMPLconst [1] s:(ANDLconst [1] _)) mem) => (SET(EQ|NE)store [off] {sym} ptr (CMPLconst [0] s) mem)
645 (SET(NE|EQ) (CMPQconst [1] s:(ANDQconst [1] _))) => (SET(EQ|NE) (CMPQconst [0] s))
646 (SET(NE|EQ)store [off] {sym} ptr (CMPQconst [1] s:(ANDQconst [1] _)) mem) => (SET(EQ|NE)store [off] {sym} ptr (CMPQconst [0] s) mem)
647
648 // Recognize bit setting (a |= 1<<b) and toggling (a ^= 1<<b)
649 (OR(Q|L) (SHL(Q|L) (MOV(Q|L)const [1]) y) x) => (BTS(Q|L) x y)
650 (XOR(Q|L) (SHL(Q|L) (MOV(Q|L)const [1]) y) x) => (BTC(Q|L) x y)
651 // Note: only convert OR/XOR to BTS/BTC if the constant wouldn't fit in
652 // the constant field of the OR/XOR instruction. See issue 61694.
653 ((OR|XOR)Q (MOVQconst [c]) x) && isPowerOfTwo(uint64(c)) && uint64(c) >= 1<<31 => (BT(S|C)Qconst [int8(log64u(uint64(c)))] x)
654
655 // Recognize bit clearing: a &^= 1<<b
656 (AND(Q|L) (NOT(Q|L) (SHL(Q|L) (MOV(Q|L)const [1]) y)) x) => (BTR(Q|L) x y)
657 (ANDN(Q|L) x (SHL(Q|L) (MOV(Q|L)const [1]) y)) => (BTR(Q|L) x y)
658 // Note: only convert AND to BTR if the constant wouldn't fit in
659 // the constant field of the AND instruction. See issue 61694.
660 (ANDQ (MOVQconst [c]) x) && isPowerOfTwo(uint64(^c)) && uint64(^c) >= 1<<31 => (BTRQconst [int8(log64u(uint64(^c)))] x)
661
662 // Special-case bit patterns on first/last bit.
663 // generic.rules changes ANDs of high-part/low-part masks into a couple of shifts,
664 // for instance:
665 // x & 0xFFFF0000 -> (x >> 16) << 16
666 // x & 0x80000000 -> (x >> 31) << 31
667 //
668 // In case the mask is just one bit (like second example above), it conflicts
669 // with the above rules to detect bit-testing / bit-clearing of first/last bit.
670 // We thus special-case them, by detecting the shift patterns.
671
672 // Special case resetting first/last bit
673 (ADD(L|Q) (SHR(L|Q)const [1] x) (SHR(L|Q)const [1] x))
674 => (AND(L|Q)const [-2] x)
675 (SHRLconst [1] (ADDL x x))
676 => (ANDLconst [0x7fffffff] x)
677 (SHRQconst [1] (ADDQ x x))
678 => (BTRQconst [63] x)
679
680 // Special case testing first/last bit (with double-shift generated by generic.rules)
681 ((SETNE|SETEQ|NE|EQ) (TESTQ z1:(SHLQconst [63] (SHRQconst [63] x)) z2)) && z1==z2
682 => ((SETB|SETAE|ULT|UGE) (BTQconst [63] x))
683 ((SETNE|SETEQ|NE|EQ) (TESTL z1:(SHLLconst [31] (SHRQconst [31] x)) z2)) && z1==z2
684 => ((SETB|SETAE|ULT|UGE) (BTQconst [31] x))
685 (SET(NE|EQ)store [off] {sym} ptr (TESTQ z1:(SHLQconst [63] (SHRQconst [63] x)) z2) mem) && z1==z2
686 => (SET(B|AE)store [off] {sym} ptr (BTQconst [63] x) mem)
687 (SET(NE|EQ)store [off] {sym} ptr (TESTL z1:(SHLLconst [31] (SHRLconst [31] x)) z2) mem) && z1==z2
688 => (SET(B|AE)store [off] {sym} ptr (BTLconst [31] x) mem)
689
690 ((SETNE|SETEQ|NE|EQ) (TESTQ z1:(SHRQconst [63] (SHLQconst [63] x)) z2)) && z1==z2
691 => ((SETB|SETAE|ULT|UGE) (BTQconst [0] x))
692 ((SETNE|SETEQ|NE|EQ) (TESTL z1:(SHRLconst [31] (SHLLconst [31] x)) z2)) && z1==z2
693 => ((SETB|SETAE|ULT|UGE) (BTLconst [0] x))
694 (SET(NE|EQ)store [off] {sym} ptr (TESTQ z1:(SHRQconst [63] (SHLQconst [63] x)) z2) mem) && z1==z2
695 => (SET(B|AE)store [off] {sym} ptr (BTQconst [0] x) mem)
696 (SET(NE|EQ)store [off] {sym} ptr (TESTL z1:(SHRLconst [31] (SHLLconst [31] x)) z2) mem) && z1==z2
697 => (SET(B|AE)store [off] {sym} ptr (BTLconst [0] x) mem)
698
699 // Special-case manually testing last bit with "a>>63 != 0" (without "&1")
700 ((SETNE|SETEQ|NE|EQ) (TESTQ z1:(SHRQconst [63] x) z2)) && z1==z2
701 => ((SETB|SETAE|ULT|UGE) (BTQconst [63] x))
702 ((SETNE|SETEQ|NE|EQ) (TESTL z1:(SHRLconst [31] x) z2)) && z1==z2
703 => ((SETB|SETAE|ULT|UGE) (BTLconst [31] x))
704 (SET(NE|EQ)store [off] {sym} ptr (TESTQ z1:(SHRQconst [63] x) z2) mem) && z1==z2
705 => (SET(B|AE)store [off] {sym} ptr (BTQconst [63] x) mem)
706 (SET(NE|EQ)store [off] {sym} ptr (TESTL z1:(SHRLconst [31] x) z2) mem) && z1==z2
707 => (SET(B|AE)store [off] {sym} ptr (BTLconst [31] x) mem)
708
709 // Fold combinations of bit ops on same bit. An example is math.Copysign(c,-1)
710 (BTSQconst [c] (BTRQconst [c] x)) => (BTSQconst [c] x)
711 (BTSQconst [c] (BTCQconst [c] x)) => (BTSQconst [c] x)
712 (BTRQconst [c] (BTSQconst [c] x)) => (BTRQconst [c] x)
713 (BTRQconst [c] (BTCQconst [c] x)) => (BTRQconst [c] x)
714
715 // Fold boolean negation into SETcc.
716 (XORLconst [1] (SETNE x)) => (SETEQ x)
717 (XORLconst [1] (SETEQ x)) => (SETNE x)
718 (XORLconst [1] (SETL x)) => (SETGE x)
719 (XORLconst [1] (SETGE x)) => (SETL x)
720 (XORLconst [1] (SETLE x)) => (SETG x)
721 (XORLconst [1] (SETG x)) => (SETLE x)
722 (XORLconst [1] (SETB x)) => (SETAE x)
723 (XORLconst [1] (SETAE x)) => (SETB x)
724 (XORLconst [1] (SETBE x)) => (SETA x)
725 (XORLconst [1] (SETA x)) => (SETBE x)
726
727 // Special case for floating point - LF/LEF not generated
728 (NE (TESTB (SETGF cmp) (SETGF cmp)) yes no) => (UGT cmp yes no)
729 (NE (TESTB (SETGEF cmp) (SETGEF cmp)) yes no) => (UGE cmp yes no)
730 (NE (TESTB (SETEQF cmp) (SETEQF cmp)) yes no) => (EQF cmp yes no)
731 (NE (TESTB (SETNEF cmp) (SETNEF cmp)) yes no) => (NEF cmp yes no)
732
733 // Disabled because it interferes with the pattern match above and makes worse code.
734 // (SETNEF x) => (ORQ (SETNE <typ.Int8> x) (SETNAN <typ.Int8> x))
735 // (SETEQF x) => (ANDQ (SETEQ <typ.Int8> x) (SETORD <typ.Int8> x))
736
737 // fold constants into instructions
738 (ADDQ x (MOVQconst <t> [c])) && is32Bit(c) && !t.IsPtr() => (ADDQconst [int32(c)] x)
739 (ADDQ x (MOVLconst [c])) => (ADDQconst [c] x)
740 (ADDL x (MOVLconst [c])) => (ADDLconst [c] x)
741
742 (SUBQ x (MOVQconst [c])) && is32Bit(c) => (SUBQconst x [int32(c)])
743 (SUBQ (MOVQconst [c]) x) && is32Bit(c) => (NEGQ (SUBQconst <v.Type> x [int32(c)]))
744 (SUBL x (MOVLconst [c])) => (SUBLconst x [c])
745 (SUBL (MOVLconst [c]) x) => (NEGL (SUBLconst <v.Type> x [c]))
746
747 (MULQ x (MOVQconst [c])) && is32Bit(c) => (MULQconst [int32(c)] x)
748 (MULL x (MOVLconst [c])) => (MULLconst [c] x)
749
750 (ANDQ x (MOVQconst [c])) && is32Bit(c) => (ANDQconst [int32(c)] x)
751 (ANDL x (MOVLconst [c])) => (ANDLconst [c] x)
752
753 (AND(L|Q)const [c] (AND(L|Q)const [d] x)) => (AND(L|Q)const [c & d] x)
754 (XOR(L|Q)const [c] (XOR(L|Q)const [d] x)) => (XOR(L|Q)const [c ^ d] x)
755 (OR(L|Q)const [c] (OR(L|Q)const [d] x)) => (OR(L|Q)const [c | d] x)
756
757 (MULLconst [c] (MULLconst [d] x)) => (MULLconst [c * d] x)
758 (MULQconst [c] (MULQconst [d] x)) && is32Bit(int64(c)*int64(d)) => (MULQconst [c * d] x)
759
760 (ORQ x (MOVQconst [c])) && is32Bit(c) => (ORQconst [int32(c)] x)
761 (ORQ x (MOVLconst [c])) => (ORQconst [c] x)
762 (ORL x (MOVLconst [c])) => (ORLconst [c] x)
763
764 (XORQ x (MOVQconst [c])) && is32Bit(c) => (XORQconst [int32(c)] x)
765 (XORL x (MOVLconst [c])) => (XORLconst [c] x)
766
767 (SHLQ x (MOV(Q|L)const [c])) => (SHLQconst [int8(c&63)] x)
768 (SHLL x (MOV(Q|L)const [c])) => (SHLLconst [int8(c&31)] x)
769
770 (SHRQ x (MOV(Q|L)const [c])) => (SHRQconst [int8(c&63)] x)
771 (SHRL x (MOV(Q|L)const [c])) => (SHRLconst [int8(c&31)] x)
772 (SHRW x (MOV(Q|L)const [c])) && c&31 < 16 => (SHRWconst [int8(c&31)] x)
773 (SHRW _ (MOV(Q|L)const [c])) && c&31 >= 16 => (MOVLconst [0])
774 (SHRB x (MOV(Q|L)const [c])) && c&31 < 8 => (SHRBconst [int8(c&31)] x)
775 (SHRB _ (MOV(Q|L)const [c])) && c&31 >= 8 => (MOVLconst [0])
776
777 (SARQ x (MOV(Q|L)const [c])) => (SARQconst [int8(c&63)] x)
778 (SARL x (MOV(Q|L)const [c])) => (SARLconst [int8(c&31)] x)
779 (SARW x (MOV(Q|L)const [c])) => (SARWconst [int8(min(int64(c)&31,15))] x)
780 (SARB x (MOV(Q|L)const [c])) => (SARBconst [int8(min(int64(c)&31,7))] x)
781
782 // Operations which don't affect the low 6/5 bits of the shift amount are NOPs.
783 ((SHLQ|SHRQ|SARQ) x (ADDQconst [c] y)) && c & 63 == 0 => ((SHLQ|SHRQ|SARQ) x y)
784 ((SHLQ|SHRQ|SARQ) x (NEGQ <t> (ADDQconst [c] y))) && c & 63 == 0 => ((SHLQ|SHRQ|SARQ) x (NEGQ <t> y))
785 ((SHLQ|SHRQ|SARQ) x (ANDQconst [c] y)) && c & 63 == 63 => ((SHLQ|SHRQ|SARQ) x y)
786 ((SHLQ|SHRQ|SARQ) x (NEGQ <t> (ANDQconst [c] y))) && c & 63 == 63 => ((SHLQ|SHRQ|SARQ) x (NEGQ <t> y))
787
788 ((SHLL|SHRL|SARL) x (ADDQconst [c] y)) && c & 31 == 0 => ((SHLL|SHRL|SARL) x y)
789 ((SHLL|SHRL|SARL) x (NEGQ <t> (ADDQconst [c] y))) && c & 31 == 0 => ((SHLL|SHRL|SARL) x (NEGQ <t> y))
790 ((SHLL|SHRL|SARL) x (ANDQconst [c] y)) && c & 31 == 31 => ((SHLL|SHRL|SARL) x y)
791 ((SHLL|SHRL|SARL) x (NEGQ <t> (ANDQconst [c] y))) && c & 31 == 31 => ((SHLL|SHRL|SARL) x (NEGQ <t> y))
792
793 ((SHLQ|SHRQ|SARQ) x (ADDLconst [c] y)) && c & 63 == 0 => ((SHLQ|SHRQ|SARQ) x y)
794 ((SHLQ|SHRQ|SARQ) x (NEGL <t> (ADDLconst [c] y))) && c & 63 == 0 => ((SHLQ|SHRQ|SARQ) x (NEGL <t> y))
795 ((SHLQ|SHRQ|SARQ) x (ANDLconst [c] y)) && c & 63 == 63 => ((SHLQ|SHRQ|SARQ) x y)
796 ((SHLQ|SHRQ|SARQ) x (NEGL <t> (ANDLconst [c] y))) && c & 63 == 63 => ((SHLQ|SHRQ|SARQ) x (NEGL <t> y))
797
798 ((SHLL|SHRL|SARL) x (ADDLconst [c] y)) && c & 31 == 0 => ((SHLL|SHRL|SARL) x y)
799 ((SHLL|SHRL|SARL) x (NEGL <t> (ADDLconst [c] y))) && c & 31 == 0 => ((SHLL|SHRL|SARL) x (NEGL <t> y))
800 ((SHLL|SHRL|SARL) x (ANDLconst [c] y)) && c & 31 == 31 => ((SHLL|SHRL|SARL) x y)
801 ((SHLL|SHRL|SARL) x (NEGL <t> (ANDLconst [c] y))) && c & 31 == 31 => ((SHLL|SHRL|SARL) x (NEGL <t> y))
802
803 // rotate left negative = rotate right
804 (ROLQ x (NEG(Q|L) y)) => (RORQ x y)
805 (ROLL x (NEG(Q|L) y)) => (RORL x y)
806 (ROLW x (NEG(Q|L) y)) => (RORW x y)
807 (ROLB x (NEG(Q|L) y)) => (RORB x y)
808
809 // rotate right negative = rotate left
810 (RORQ x (NEG(Q|L) y)) => (ROLQ x y)
811 (RORL x (NEG(Q|L) y)) => (ROLL x y)
812 (RORW x (NEG(Q|L) y)) => (ROLW x y)
813 (RORB x (NEG(Q|L) y)) => (ROLB x y)
814
815 // rotate by constants
816 (ROLQ x (MOV(Q|L)const [c])) => (ROLQconst [int8(c&63)] x)
817 (ROLL x (MOV(Q|L)const [c])) => (ROLLconst [int8(c&31)] x)
818 (ROLW x (MOV(Q|L)const [c])) => (ROLWconst [int8(c&15)] x)
819 (ROLB x (MOV(Q|L)const [c])) => (ROLBconst [int8(c&7) ] x)
820
821 (RORQ x (MOV(Q|L)const [c])) => (ROLQconst [int8((-c)&63)] x)
822 (RORL x (MOV(Q|L)const [c])) => (ROLLconst [int8((-c)&31)] x)
823 (RORW x (MOV(Q|L)const [c])) => (ROLWconst [int8((-c)&15)] x)
824 (RORB x (MOV(Q|L)const [c])) => (ROLBconst [int8((-c)&7) ] x)
825
826 // Constant shift simplifications
827 ((SHLQ|SHRQ|SARQ)const x [0]) => x
828 ((SHLL|SHRL|SARL)const x [0]) => x
829 ((SHRW|SARW)const x [0]) => x
830 ((SHRB|SARB)const x [0]) => x
831 ((ROLQ|ROLL|ROLW|ROLB)const x [0]) => x
832
833 // Multi-register shifts
834 (ORQ (SH(R|L)Q lo bits) (SH(L|R)Q hi (NEGQ bits))) => (SH(R|L)DQ lo hi bits)
835 (ORQ (SH(R|L)XQ lo bits) (SH(L|R)XQ hi (NEGQ bits))) => (SH(R|L)DQ lo hi bits)
836
837 // Note: the word and byte shifts keep the low 5 bits (not the low 4 or 3 bits)
838 // because the x86 instructions are defined to use all 5 bits of the shift even
839 // for the small shifts. I don't think we'll ever generate a weird shift (e.g.
840 // (SHRW x (MOVLconst [24])), but just in case.
841
842 (CMPQ x (MOVQconst [c])) && is32Bit(c) => (CMPQconst x [int32(c)])
843 (CMPQ (MOVQconst [c]) x) && is32Bit(c) => (InvertFlags (CMPQconst x [int32(c)]))
844 (CMPL x (MOVLconst [c])) => (CMPLconst x [c])
845 (CMPL (MOVLconst [c]) x) => (InvertFlags (CMPLconst x [c]))
846 (CMPW x (MOVLconst [c])) => (CMPWconst x [int16(c)])
847 (CMPW (MOVLconst [c]) x) => (InvertFlags (CMPWconst x [int16(c)]))
848 (CMPB x (MOVLconst [c])) => (CMPBconst x [int8(c)])
849 (CMPB (MOVLconst [c]) x) => (InvertFlags (CMPBconst x [int8(c)]))
850
851 // Canonicalize the order of arguments to comparisons - helps with CSE.
852 (CMP(Q|L|W|B) x y) && canonLessThan(x,y) => (InvertFlags (CMP(Q|L|W|B) y x))
853
854 // Using MOVZX instead of AND is cheaper.
855 (AND(Q|L)const [ 0xFF] x) => (MOVBQZX x)
856 (AND(Q|L)const [0xFFFF] x) => (MOVWQZX x)
857 // This rule is currently invalid because 0xFFFFFFFF is not representable by a signed int32.
858 // Commenting out for now, because it also can't trigger because of the is32bit guard on the
859 // ANDQconst lowering-rule, above, prevents 0xFFFFFFFF from matching (for the same reason)
860 // Using an alternate form of this rule segfaults some binaries because of
861 // adverse interactions with other passes.
862 // (ANDQconst [0xFFFFFFFF] x) => (MOVLQZX x)
863
864 // strength reduction
865 (MUL(Q|L)const [ 0] _) => (MOV(Q|L)const [0])
866 (MUL(Q|L)const [ 1] x) => x
867 (MULQconst [c] x) && canMulStrengthReduce(config, int64(c)) => {mulStrengthReduce(v, x, int64(c))}
868 (MULLconst [c] x) && v.Type.Size() <= 4 && canMulStrengthReduce32(config, c) => {mulStrengthReduce32(v, x, c)}
869
870 // Prefer addition when shifting left by one
871 (SHL(Q|L)const [1] x) => (ADD(Q|L) x x)
872
873 // combine add/shift into LEAQ/LEAL
874 (ADD(L|Q) x (SHL(L|Q)const [3] y)) => (LEA(L|Q)8 x y)
875 (ADD(L|Q) x (SHL(L|Q)const [2] y)) => (LEA(L|Q)4 x y)
876 (ADD(L|Q) x (ADD(L|Q) y y)) => (LEA(L|Q)2 x y)
877 (ADD(L|Q) x (ADD(L|Q) x y)) => (LEA(L|Q)2 y x)
878
879 // combine ADDQ/ADDQconst into LEAQ1/LEAL1
880 (ADD(Q|L)const [c] (ADD(Q|L) x y)) => (LEA(Q|L)1 [c] x y)
881 (ADD(Q|L) (ADD(Q|L)const [c] x) y) => (LEA(Q|L)1 [c] x y)
882 (ADD(Q|L)const [c] (ADD(Q|L) x x)) => (LEA(Q|L)1 [c] x x)
883
884 // fold ADDQ/ADDL into LEAQ/LEAL
885 (ADD(Q|L)const [c] (LEA(Q|L) [d] {s} x)) && is32Bit(int64(c)+int64(d)) => (LEA(Q|L) [c+d] {s} x)
886 (LEA(Q|L) [c] {s} (ADD(Q|L)const [d] x)) && is32Bit(int64(c)+int64(d)) => (LEA(Q|L) [c+d] {s} x)
887 (LEA(Q|L) [c] {s} (ADD(Q|L) x y)) && x.Op != OpSB && y.Op != OpSB => (LEA(Q|L)1 [c] {s} x y)
888 (ADD(Q|L) x (LEA(Q|L) [c] {s} y)) && x.Op != OpSB && y.Op != OpSB => (LEA(Q|L)1 [c] {s} x y)
889
890 // fold ADDQconst/ADDLconst into LEAQx/LEALx
891 (ADD(Q|L)const [c] (LEA(Q|L)1 [d] {s} x y)) && is32Bit(int64(c)+int64(d)) => (LEA(Q|L)1 [c+d] {s} x y)
892 (ADD(Q|L)const [c] (LEA(Q|L)2 [d] {s} x y)) && is32Bit(int64(c)+int64(d)) => (LEA(Q|L)2 [c+d] {s} x y)
893 (ADD(Q|L)const [c] (LEA(Q|L)4 [d] {s} x y)) && is32Bit(int64(c)+int64(d)) => (LEA(Q|L)4 [c+d] {s} x y)
894 (ADD(Q|L)const [c] (LEA(Q|L)8 [d] {s} x y)) && is32Bit(int64(c)+int64(d)) => (LEA(Q|L)8 [c+d] {s} x y)
895 (LEA(Q|L)1 [c] {s} (ADD(Q|L)const [d] x) y) && is32Bit(int64(c)+int64(d)) && x.Op != OpSB => (LEA(Q|L)1 [c+d] {s} x y)
896 (LEA(Q|L)2 [c] {s} (ADD(Q|L)const [d] x) y) && is32Bit(int64(c)+int64(d)) && x.Op != OpSB => (LEA(Q|L)2 [c+d] {s} x y)
897 (LEA(Q|L)2 [c] {s} x (ADD(Q|L)const [d] y)) && is32Bit(int64(c)+2*int64(d)) && y.Op != OpSB => (LEA(Q|L)2 [c+2*d] {s} x y)
898 (LEA(Q|L)4 [c] {s} (ADD(Q|L)const [d] x) y) && is32Bit(int64(c)+int64(d)) && x.Op != OpSB => (LEA(Q|L)4 [c+d] {s} x y)
899 (LEA(Q|L)4 [c] {s} x (ADD(Q|L)const [d] y)) && is32Bit(int64(c)+4*int64(d)) && y.Op != OpSB => (LEA(Q|L)4 [c+4*d] {s} x y)
900 (LEA(Q|L)8 [c] {s} (ADD(Q|L)const [d] x) y) && is32Bit(int64(c)+int64(d)) && x.Op != OpSB => (LEA(Q|L)8 [c+d] {s} x y)
901 (LEA(Q|L)8 [c] {s} x (ADD(Q|L)const [d] y)) && is32Bit(int64(c)+8*int64(d)) && y.Op != OpSB => (LEA(Q|L)8 [c+8*d] {s} x y)
902
903 // fold shifts into LEAQx/LEALx
904 (LEA(Q|L)1 [c] {s} x z:(ADD(Q|L) y y)) && x != z => (LEA(Q|L)2 [c] {s} x y)
905 (LEA(Q|L)1 [c] {s} x (SHL(Q|L)const [2] y)) => (LEA(Q|L)4 [c] {s} x y)
906 (LEA(Q|L)1 [c] {s} x (SHL(Q|L)const [3] y)) => (LEA(Q|L)8 [c] {s} x y)
907 (LEA(Q|L)2 [c] {s} x z:(ADD(Q|L) y y)) && x != z => (LEA(Q|L)4 [c] {s} x y)
908 (LEA(Q|L)2 [c] {s} x (SHL(Q|L)const [2] y)) => (LEA(Q|L)8 [c] {s} x y)
909 (LEA(Q|L)4 [c] {s} x z:(ADD(Q|L) y y)) && x != z => (LEA(Q|L)8 [c] {s} x y)
910
911 // (x + x) << 1 -> x << 2
912 (LEA(Q|L)2 [0] {s} (ADD(Q|L) x x) x) && s == nil => (SHL(Q|L)const [2] x)
913
914 // (x + x) << 2 -> x << 3 and similar
915 (SHL(Q|L)const [c] (ADD(Q|L) x x)) => (SHL(Q|L)const [c+1] x)
916
917 // reverse ordering of compare instruction
918 (SETL (InvertFlags x)) => (SETG x)
919 (SETG (InvertFlags x)) => (SETL x)
920 (SETB (InvertFlags x)) => (SETA x)
921 (SETA (InvertFlags x)) => (SETB x)
922 (SETLE (InvertFlags x)) => (SETGE x)
923 (SETGE (InvertFlags x)) => (SETLE x)
924 (SETBE (InvertFlags x)) => (SETAE x)
925 (SETAE (InvertFlags x)) => (SETBE x)
926 (SETEQ (InvertFlags x)) => (SETEQ x)
927 (SETNE (InvertFlags x)) => (SETNE x)
928
929 (SETLstore [off] {sym} ptr (InvertFlags x) mem) => (SETGstore [off] {sym} ptr x mem)
930 (SETGstore [off] {sym} ptr (InvertFlags x) mem) => (SETLstore [off] {sym} ptr x mem)
931 (SETBstore [off] {sym} ptr (InvertFlags x) mem) => (SETAstore [off] {sym} ptr x mem)
932 (SETAstore [off] {sym} ptr (InvertFlags x) mem) => (SETBstore [off] {sym} ptr x mem)
933 (SETLEstore [off] {sym} ptr (InvertFlags x) mem) => (SETGEstore [off] {sym} ptr x mem)
934 (SETGEstore [off] {sym} ptr (InvertFlags x) mem) => (SETLEstore [off] {sym} ptr x mem)
935 (SETBEstore [off] {sym} ptr (InvertFlags x) mem) => (SETAEstore [off] {sym} ptr x mem)
936 (SETAEstore [off] {sym} ptr (InvertFlags x) mem) => (SETBEstore [off] {sym} ptr x mem)
937 (SETEQstore [off] {sym} ptr (InvertFlags x) mem) => (SETEQstore [off] {sym} ptr x mem)
938 (SETNEstore [off] {sym} ptr (InvertFlags x) mem) => (SETNEstore [off] {sym} ptr x mem)
939
940 // sign extended loads
941 // Note: The combined instruction must end up in the same block
942 // as the original load. If not, we end up making a value with
943 // memory type live in two different blocks, which can lead to
944 // multiple memory values alive simultaneously.
945 // Make sure we don't combine these ops if the load has another use.
946 // This prevents a single load from being split into multiple loads
947 // which then might return different values. See test/atomicload.go.
948 (MOVBQSX x:(MOVBload [off] {sym} ptr mem)) && x.Uses == 1 && clobber(x) => @x.Block (MOVBQSXload <v.Type> [off] {sym} ptr mem)
949 (MOVBQSX x:(MOVWload [off] {sym} ptr mem)) && x.Uses == 1 && clobber(x) => @x.Block (MOVBQSXload <v.Type> [off] {sym} ptr mem)
950 (MOVBQSX x:(MOVLload [off] {sym} ptr mem)) && x.Uses == 1 && clobber(x) => @x.Block (MOVBQSXload <v.Type> [off] {sym} ptr mem)
951 (MOVBQSX x:(MOVQload [off] {sym} ptr mem)) && x.Uses == 1 && clobber(x) => @x.Block (MOVBQSXload <v.Type> [off] {sym} ptr mem)
952 (MOVBQZX x:(MOVBload [off] {sym} ptr mem)) && x.Uses == 1 && clobber(x) => @x.Block (MOVBload <v.Type> [off] {sym} ptr mem)
953 (MOVBQZX x:(MOVWload [off] {sym} ptr mem)) && x.Uses == 1 && clobber(x) => @x.Block (MOVBload <v.Type> [off] {sym} ptr mem)
954 (MOVBQZX x:(MOVLload [off] {sym} ptr mem)) && x.Uses == 1 && clobber(x) => @x.Block (MOVBload <v.Type> [off] {sym} ptr mem)
955 (MOVBQZX x:(MOVQload [off] {sym} ptr mem)) && x.Uses == 1 && clobber(x) => @x.Block (MOVBload <v.Type> [off] {sym} ptr mem)
956 (MOVWQSX x:(MOVWload [off] {sym} ptr mem)) && x.Uses == 1 && clobber(x) => @x.Block (MOVWQSXload <v.Type> [off] {sym} ptr mem)
957 (MOVWQSX x:(MOVLload [off] {sym} ptr mem)) && x.Uses == 1 && clobber(x) => @x.Block (MOVWQSXload <v.Type> [off] {sym} ptr mem)
958 (MOVWQSX x:(MOVQload [off] {sym} ptr mem)) && x.Uses == 1 && clobber(x) => @x.Block (MOVWQSXload <v.Type> [off] {sym} ptr mem)
959 (MOVWQZX x:(MOVWload [off] {sym} ptr mem)) && x.Uses == 1 && clobber(x) => @x.Block (MOVWload <v.Type> [off] {sym} ptr mem)
960 (MOVWQZX x:(MOVLload [off] {sym} ptr mem)) && x.Uses == 1 && clobber(x) => @x.Block (MOVWload <v.Type> [off] {sym} ptr mem)
961 (MOVWQZX x:(MOVQload [off] {sym} ptr mem)) && x.Uses == 1 && clobber(x) => @x.Block (MOVWload <v.Type> [off] {sym} ptr mem)
962 (MOVLQSX x:(MOVLload [off] {sym} ptr mem)) && x.Uses == 1 && clobber(x) => @x.Block (MOVLQSXload <v.Type> [off] {sym} ptr mem)
963 (MOVLQSX x:(MOVQload [off] {sym} ptr mem)) && x.Uses == 1 && clobber(x) => @x.Block (MOVLQSXload <v.Type> [off] {sym} ptr mem)
964 (MOVLQZX x:(MOVLload [off] {sym} ptr mem)) && x.Uses == 1 && clobber(x) => @x.Block (MOVLload <v.Type> [off] {sym} ptr mem)
965 (MOVLQZX x:(MOVQload [off] {sym} ptr mem)) && x.Uses == 1 && clobber(x) => @x.Block (MOVLload <v.Type> [off] {sym} ptr mem)
966
967 // replace load from same location as preceding store with zero/sign extension (or copy in case of full width)
968 (MOVBload [off] {sym} ptr (MOVBstore [off2] {sym2} ptr2 x _)) && sym == sym2 && off == off2 && isSamePtr(ptr, ptr2) => (MOVBQZX x)
969 (MOVWload [off] {sym} ptr (MOVWstore [off2] {sym2} ptr2 x _)) && sym == sym2 && off == off2 && isSamePtr(ptr, ptr2) => (MOVWQZX x)
970 (MOVLload [off] {sym} ptr (MOVLstore [off2] {sym2} ptr2 x _)) && sym == sym2 && off == off2 && isSamePtr(ptr, ptr2) => (MOVLQZX x)
971 (MOVQload [off] {sym} ptr (MOVQstore [off2] {sym2} ptr2 x _)) && sym == sym2 && off == off2 && isSamePtr(ptr, ptr2) => x
972 (MOVBQSXload [off] {sym} ptr (MOVBstore [off2] {sym2} ptr2 x _)) && sym == sym2 && off == off2 && isSamePtr(ptr, ptr2) => (MOVBQSX x)
973 (MOVWQSXload [off] {sym} ptr (MOVWstore [off2] {sym2} ptr2 x _)) && sym == sym2 && off == off2 && isSamePtr(ptr, ptr2) => (MOVWQSX x)
974 (MOVLQSXload [off] {sym} ptr (MOVLstore [off2] {sym2} ptr2 x _)) && sym == sym2 && off == off2 && isSamePtr(ptr, ptr2) => (MOVLQSX x)
975
976 // Fold extensions and ANDs together.
977 (MOVBQZX (ANDLconst [c] x)) => (ANDLconst [c & 0xff] x)
978 (MOVWQZX (ANDLconst [c] x)) => (ANDLconst [c & 0xffff] x)
979 (MOVLQZX (ANDLconst [c] x)) => (ANDLconst [c] x)
980 (MOVBQSX (ANDLconst [c] x)) && c & 0x80 == 0 => (ANDLconst [c & 0x7f] x)
981 (MOVWQSX (ANDLconst [c] x)) && c & 0x8000 == 0 => (ANDLconst [c & 0x7fff] x)
982 (MOVLQSX (ANDLconst [c] x)) && uint32(c) & 0x80000000 == 0 => (ANDLconst [c & 0x7fffffff] x)
983
984 // Don't extend before storing
985 (MOVLstore [off] {sym} ptr (MOVLQSX x) mem) => (MOVLstore [off] {sym} ptr x mem)
986 (MOVWstore [off] {sym} ptr (MOVWQSX x) mem) => (MOVWstore [off] {sym} ptr x mem)
987 (MOVBstore [off] {sym} ptr (MOVBQSX x) mem) => (MOVBstore [off] {sym} ptr x mem)
988 (MOVLstore [off] {sym} ptr (MOVLQZX x) mem) => (MOVLstore [off] {sym} ptr x mem)
989 (MOVWstore [off] {sym} ptr (MOVWQZX x) mem) => (MOVWstore [off] {sym} ptr x mem)
990 (MOVBstore [off] {sym} ptr (MOVBQZX x) mem) => (MOVBstore [off] {sym} ptr x mem)
991
992 // fold constants into memory operations
993 // Note that this is not always a good idea because if not all the uses of
994 // the ADDQconst get eliminated, we still have to compute the ADDQconst and we now
995 // have potentially two live values (ptr and (ADDQconst [off] ptr)) instead of one.
996 // Nevertheless, let's do it!
997 (MOV(Q|L|W|B|SS|SD|O)load [off1] {sym} (ADDQconst [off2] ptr) mem) && is32Bit(int64(off1)+int64(off2)) =>
998 (MOV(Q|L|W|B|SS|SD|O)load [off1+off2] {sym} ptr mem)
999 (MOV(Q|L|W|B|SS|SD|O)store [off1] {sym} (ADDQconst [off2] ptr) val mem) && is32Bit(int64(off1)+int64(off2)) =>
1000 (MOV(Q|L|W|B|SS|SD|O)store [off1+off2] {sym} ptr val mem)
1001 (SET(L|G|B|A|LE|GE|BE|AE|EQ|NE)store [off1] {sym} (ADDQconst [off2] base) val mem) && is32Bit(int64(off1)+int64(off2)) =>
1002 (SET(L|G|B|A|LE|GE|BE|AE|EQ|NE)store [off1+off2] {sym} base val mem)
1003 ((ADD|SUB|AND|OR|XOR)Qload [off1] {sym} val (ADDQconst [off2] base) mem) && is32Bit(int64(off1)+int64(off2)) =>
1004 ((ADD|SUB|AND|OR|XOR)Qload [off1+off2] {sym} val base mem)
1005 ((ADD|SUB|AND|OR|XOR)Lload [off1] {sym} val (ADDQconst [off2] base) mem) && is32Bit(int64(off1)+int64(off2)) =>
1006 ((ADD|SUB|AND|OR|XOR)Lload [off1+off2] {sym} val base mem)
1007 (CMP(Q|L|W|B)load [off1] {sym} (ADDQconst [off2] base) val mem) && is32Bit(int64(off1)+int64(off2)) =>
1008 (CMP(Q|L|W|B)load [off1+off2] {sym} base val mem)
1009 (CMP(Q|L|W|B)constload [valoff1] {sym} (ADDQconst [off2] base) mem) && ValAndOff(valoff1).canAdd32(off2) =>
1010 (CMP(Q|L|W|B)constload [ValAndOff(valoff1).addOffset32(off2)] {sym} base mem)
1011
1012 ((ADD|SUB|MUL|DIV)SSload [off1] {sym} val (ADDQconst [off2] base) mem) && is32Bit(int64(off1)+int64(off2)) =>
1013 ((ADD|SUB|MUL|DIV)SSload [off1+off2] {sym} val base mem)
1014 ((ADD|SUB|MUL|DIV)SDload [off1] {sym} val (ADDQconst [off2] base) mem) && is32Bit(int64(off1)+int64(off2)) =>
1015 ((ADD|SUB|MUL|DIV)SDload [off1+off2] {sym} val base mem)
1016 ((ADD|AND|OR|XOR)Qconstmodify [valoff1] {sym} (ADDQconst [off2] base) mem) && ValAndOff(valoff1).canAdd32(off2) =>
1017 ((ADD|AND|OR|XOR)Qconstmodify [ValAndOff(valoff1).addOffset32(off2)] {sym} base mem)
1018 ((ADD|AND|OR|XOR)Lconstmodify [valoff1] {sym} (ADDQconst [off2] base) mem) && ValAndOff(valoff1).canAdd32(off2) =>
1019 ((ADD|AND|OR|XOR)Lconstmodify [ValAndOff(valoff1).addOffset32(off2)] {sym} base mem)
1020 ((ADD|SUB|AND|OR|XOR)Qmodify [off1] {sym} (ADDQconst [off2] base) val mem) && is32Bit(int64(off1)+int64(off2)) =>
1021 ((ADD|SUB|AND|OR|XOR)Qmodify [off1+off2] {sym} base val mem)
1022 ((ADD|SUB|AND|OR|XOR)Lmodify [off1] {sym} (ADDQconst [off2] base) val mem) && is32Bit(int64(off1)+int64(off2)) =>
1023 ((ADD|SUB|AND|OR|XOR)Lmodify [off1+off2] {sym} base val mem)
1024
1025 // Fold constants into stores.
1026 (MOVQstore [off] {sym} ptr (MOVQconst [c]) mem) && validVal(c) =>
1027 (MOVQstoreconst [makeValAndOff(int32(c),off)] {sym} ptr mem)
1028 (MOVLstore [off] {sym} ptr (MOV(L|Q)const [c]) mem) =>
1029 (MOVLstoreconst [makeValAndOff(int32(c),off)] {sym} ptr mem)
1030 (MOVWstore [off] {sym} ptr (MOV(L|Q)const [c]) mem) =>
1031 (MOVWstoreconst [makeValAndOff(int32(int16(c)),off)] {sym} ptr mem)
1032 (MOVBstore [off] {sym} ptr (MOV(L|Q)const [c]) mem) =>
1033 (MOVBstoreconst [makeValAndOff(int32(int8(c)),off)] {sym} ptr mem)
1034
1035 // Fold address offsets into constant stores.
1036 (MOV(Q|L|W|B|O)storeconst [sc] {s} (ADDQconst [off] ptr) mem) && ValAndOff(sc).canAdd32(off) =>
1037 (MOV(Q|L|W|B|O)storeconst [ValAndOff(sc).addOffset32(off)] {s} ptr mem)
1038
1039 // We need to fold LEAQ into the MOVx ops so that the live variable analysis knows
1040 // what variables are being read/written by the ops.
1041 (MOV(Q|L|W|B|SS|SD|O|BQSX|WQSX|LQSX)load [off1] {sym1} (LEAQ [off2] {sym2} base) mem)
1042 && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) =>
1043 (MOV(Q|L|W|B|SS|SD|O|BQSX|WQSX|LQSX)load [off1+off2] {mergeSym(sym1,sym2)} base mem)
1044 (MOV(Q|L|W|B|SS|SD|O)store [off1] {sym1} (LEAQ [off2] {sym2} base) val mem)
1045 && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) =>
1046 (MOV(Q|L|W|B|SS|SD|O)store [off1+off2] {mergeSym(sym1,sym2)} base val mem)
1047 (MOV(Q|L|W|B|O)storeconst [sc] {sym1} (LEAQ [off] {sym2} ptr) mem) && canMergeSym(sym1, sym2) && ValAndOff(sc).canAdd32(off) =>
1048 (MOV(Q|L|W|B|O)storeconst [ValAndOff(sc).addOffset32(off)] {mergeSym(sym1, sym2)} ptr mem)
1049 (SET(L|G|B|A|LE|GE|BE|AE|EQ|NE)store [off1] {sym1} (LEAQ [off2] {sym2} base) val mem)
1050 && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) =>
1051 (SET(L|G|B|A|LE|GE|BE|AE|EQ|NE)store [off1+off2] {mergeSym(sym1,sym2)} base val mem)
1052 ((ADD|SUB|AND|OR|XOR)Qload [off1] {sym1} val (LEAQ [off2] {sym2} base) mem)
1053 && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) =>
1054 ((ADD|SUB|AND|OR|XOR)Qload [off1+off2] {mergeSym(sym1,sym2)} val base mem)
1055 ((ADD|SUB|AND|OR|XOR)Lload [off1] {sym1} val (LEAQ [off2] {sym2} base) mem)
1056 && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) =>
1057 ((ADD|SUB|AND|OR|XOR)Lload [off1+off2] {mergeSym(sym1,sym2)} val base mem)
1058 (CMP(Q|L|W|B)load [off1] {sym1} (LEAQ [off2] {sym2} base) val mem)
1059 && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) =>
1060 (CMP(Q|L|W|B)load [off1+off2] {mergeSym(sym1,sym2)} base val mem)
1061 (CMP(Q|L|W|B)constload [valoff1] {sym1} (LEAQ [off2] {sym2} base) mem)
1062 && ValAndOff(valoff1).canAdd32(off2) && canMergeSym(sym1, sym2) =>
1063 (CMP(Q|L|W|B)constload [ValAndOff(valoff1).addOffset32(off2)] {mergeSym(sym1,sym2)} base mem)
1064
1065 ((ADD|SUB|MUL|DIV)SSload [off1] {sym1} val (LEAQ [off2] {sym2} base) mem)
1066 && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) =>
1067 ((ADD|SUB|MUL|DIV)SSload [off1+off2] {mergeSym(sym1,sym2)} val base mem)
1068 ((ADD|SUB|MUL|DIV)SDload [off1] {sym1} val (LEAQ [off2] {sym2} base) mem)
1069 && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) =>
1070 ((ADD|SUB|MUL|DIV)SDload [off1+off2] {mergeSym(sym1,sym2)} val base mem)
1071 ((ADD|AND|OR|XOR)Qconstmodify [valoff1] {sym1} (LEAQ [off2] {sym2} base) mem)
1072 && ValAndOff(valoff1).canAdd32(off2) && canMergeSym(sym1, sym2) =>
1073 ((ADD|AND|OR|XOR)Qconstmodify [ValAndOff(valoff1).addOffset32(off2)] {mergeSym(sym1,sym2)} base mem)
1074 ((ADD|AND|OR|XOR)Lconstmodify [valoff1] {sym1} (LEAQ [off2] {sym2} base) mem)
1075 && ValAndOff(valoff1).canAdd32(off2) && canMergeSym(sym1, sym2) =>
1076 ((ADD|AND|OR|XOR)Lconstmodify [ValAndOff(valoff1).addOffset32(off2)] {mergeSym(sym1,sym2)} base mem)
1077 ((ADD|SUB|AND|OR|XOR)Qmodify [off1] {sym1} (LEAQ [off2] {sym2} base) val mem)
1078 && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) =>
1079 ((ADD|SUB|AND|OR|XOR)Qmodify [off1+off2] {mergeSym(sym1,sym2)} base val mem)
1080 ((ADD|SUB|AND|OR|XOR)Lmodify [off1] {sym1} (LEAQ [off2] {sym2} base) val mem)
1081 && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) =>
1082 ((ADD|SUB|AND|OR|XOR)Lmodify [off1+off2] {mergeSym(sym1,sym2)} base val mem)
1083
1084 // fold LEAQs together
1085 (LEAQ [off1] {sym1} (LEAQ [off2] {sym2} x)) && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) =>
1086 (LEAQ [off1+off2] {mergeSym(sym1,sym2)} x)
1087
1088 // LEAQ into LEAQ1
1089 (LEAQ1 [off1] {sym1} (LEAQ [off2] {sym2} x) y) && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) && x.Op != OpSB =>
1090 (LEAQ1 [off1+off2] {mergeSym(sym1,sym2)} x y)
1091
1092 // LEAQ1 into LEAQ
1093 (LEAQ [off1] {sym1} (LEAQ1 [off2] {sym2} x y)) && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) =>
1094 (LEAQ1 [off1+off2] {mergeSym(sym1,sym2)} x y)
1095
1096 // LEAQ into LEAQ[248]
1097 (LEAQ2 [off1] {sym1} (LEAQ [off2] {sym2} x) y) && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) && x.Op != OpSB =>
1098 (LEAQ2 [off1+off2] {mergeSym(sym1,sym2)} x y)
1099 (LEAQ4 [off1] {sym1} (LEAQ [off2] {sym2} x) y) && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) && x.Op != OpSB =>
1100 (LEAQ4 [off1+off2] {mergeSym(sym1,sym2)} x y)
1101 (LEAQ8 [off1] {sym1} (LEAQ [off2] {sym2} x) y) && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) && x.Op != OpSB =>
1102 (LEAQ8 [off1+off2] {mergeSym(sym1,sym2)} x y)
1103
1104 // LEAQ[248] into LEAQ
1105 (LEAQ [off1] {sym1} (LEAQ2 [off2] {sym2} x y)) && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) =>
1106 (LEAQ2 [off1+off2] {mergeSym(sym1,sym2)} x y)
1107 (LEAQ [off1] {sym1} (LEAQ4 [off2] {sym2} x y)) && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) =>
1108 (LEAQ4 [off1+off2] {mergeSym(sym1,sym2)} x y)
1109 (LEAQ [off1] {sym1} (LEAQ8 [off2] {sym2} x y)) && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) =>
1110 (LEAQ8 [off1+off2] {mergeSym(sym1,sym2)} x y)
1111
1112 // LEAQ[1248] into LEAQ[1248]. Only some such merges are possible.
1113 (LEAQ1 [off1] {sym1} x (LEAQ1 [off2] {sym2} y y)) && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) =>
1114 (LEAQ2 [off1+off2] {mergeSym(sym1, sym2)} x y)
1115 (LEAQ1 [off1] {sym1} x (LEAQ1 [off2] {sym2} x y)) && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) =>
1116 (LEAQ2 [off1+off2] {mergeSym(sym1, sym2)} y x)
1117 (LEAQ2 [off1] {sym1} x (LEAQ1 [off2] {sym2} y y)) && is32Bit(int64(off1)+2*int64(off2)) && sym2 == nil =>
1118 (LEAQ4 [off1+2*off2] {sym1} x y)
1119 (LEAQ4 [off1] {sym1} x (LEAQ1 [off2] {sym2} y y)) && is32Bit(int64(off1)+4*int64(off2)) && sym2 == nil =>
1120 (LEAQ8 [off1+4*off2] {sym1} x y)
1121 // TODO: more?
1122
1123 // Lower LEAQ2/4/8 when the offset is a constant
1124 (LEAQ2 [off] {sym} x (MOV(Q|L)const [scale])) && is32Bit(int64(off)+int64(scale)*2) =>
1125 (LEAQ [off+int32(scale)*2] {sym} x)
1126 (LEAQ4 [off] {sym} x (MOV(Q|L)const [scale])) && is32Bit(int64(off)+int64(scale)*4) =>
1127 (LEAQ [off+int32(scale)*4] {sym} x)
1128 (LEAQ8 [off] {sym} x (MOV(Q|L)const [scale])) && is32Bit(int64(off)+int64(scale)*8) =>
1129 (LEAQ [off+int32(scale)*8] {sym} x)
1130
1131 // Absorb InvertFlags into branches.
1132 (LT (InvertFlags cmp) yes no) => (GT cmp yes no)
1133 (GT (InvertFlags cmp) yes no) => (LT cmp yes no)
1134 (LE (InvertFlags cmp) yes no) => (GE cmp yes no)
1135 (GE (InvertFlags cmp) yes no) => (LE cmp yes no)
1136 (ULT (InvertFlags cmp) yes no) => (UGT cmp yes no)
1137 (UGT (InvertFlags cmp) yes no) => (ULT cmp yes no)
1138 (ULE (InvertFlags cmp) yes no) => (UGE cmp yes no)
1139 (UGE (InvertFlags cmp) yes no) => (ULE cmp yes no)
1140 (EQ (InvertFlags cmp) yes no) => (EQ cmp yes no)
1141 (NE (InvertFlags cmp) yes no) => (NE cmp yes no)
1142
1143 // Constant comparisons.
1144 (CMPQconst (MOVQconst [x]) [y]) && x==int64(y) => (FlagEQ)
1145 (CMPQconst (MOVQconst [x]) [y]) && x<int64(y) && uint64(x)<uint64(int64(y)) => (FlagLT_ULT)
1146 (CMPQconst (MOVQconst [x]) [y]) && x<int64(y) && uint64(x)>uint64(int64(y)) => (FlagLT_UGT)
1147 (CMPQconst (MOVQconst [x]) [y]) && x>int64(y) && uint64(x)<uint64(int64(y)) => (FlagGT_ULT)
1148 (CMPQconst (MOVQconst [x]) [y]) && x>int64(y) && uint64(x)>uint64(int64(y)) => (FlagGT_UGT)
1149 (CMPLconst (MOVLconst [x]) [y]) && x==y => (FlagEQ)
1150 (CMPLconst (MOVLconst [x]) [y]) && x<y && uint32(x)<uint32(y) => (FlagLT_ULT)
1151 (CMPLconst (MOVLconst [x]) [y]) && x<y && uint32(x)>uint32(y) => (FlagLT_UGT)
1152 (CMPLconst (MOVLconst [x]) [y]) && x>y && uint32(x)<uint32(y) => (FlagGT_ULT)
1153 (CMPLconst (MOVLconst [x]) [y]) && x>y && uint32(x)>uint32(y) => (FlagGT_UGT)
1154 (CMPWconst (MOVLconst [x]) [y]) && int16(x)==y => (FlagEQ)
1155 (CMPWconst (MOVLconst [x]) [y]) && int16(x)<y && uint16(x)<uint16(y) => (FlagLT_ULT)
1156 (CMPWconst (MOVLconst [x]) [y]) && int16(x)<y && uint16(x)>uint16(y) => (FlagLT_UGT)
1157 (CMPWconst (MOVLconst [x]) [y]) && int16(x)>y && uint16(x)<uint16(y) => (FlagGT_ULT)
1158 (CMPWconst (MOVLconst [x]) [y]) && int16(x)>y && uint16(x)>uint16(y) => (FlagGT_UGT)
1159 (CMPBconst (MOVLconst [x]) [y]) && int8(x)==y => (FlagEQ)
1160 (CMPBconst (MOVLconst [x]) [y]) && int8(x)<y && uint8(x)<uint8(y) => (FlagLT_ULT)
1161 (CMPBconst (MOVLconst [x]) [y]) && int8(x)<y && uint8(x)>uint8(y) => (FlagLT_UGT)
1162 (CMPBconst (MOVLconst [x]) [y]) && int8(x)>y && uint8(x)<uint8(y) => (FlagGT_ULT)
1163 (CMPBconst (MOVLconst [x]) [y]) && int8(x)>y && uint8(x)>uint8(y) => (FlagGT_UGT)
1164
1165 // CMPQconst requires a 32 bit const, but we can still constant-fold 64 bit consts.
1166 // In theory this applies to any of the simplifications above,
1167 // but CMPQ is the only one I've actually seen occur.
1168 (CMPQ (MOVQconst [x]) (MOVQconst [y])) && x==y => (FlagEQ)
1169 (CMPQ (MOVQconst [x]) (MOVQconst [y])) && x<y && uint64(x)<uint64(y) => (FlagLT_ULT)
1170 (CMPQ (MOVQconst [x]) (MOVQconst [y])) && x<y && uint64(x)>uint64(y) => (FlagLT_UGT)
1171 (CMPQ (MOVQconst [x]) (MOVQconst [y])) && x>y && uint64(x)<uint64(y) => (FlagGT_ULT)
1172 (CMPQ (MOVQconst [x]) (MOVQconst [y])) && x>y && uint64(x)>uint64(y) => (FlagGT_UGT)
1173
1174 // Other known comparisons.
1175 (CMPQconst (MOVBQZX _) [c]) && 0xFF < c => (FlagLT_ULT)
1176 (CMPQconst (MOVWQZX _) [c]) && 0xFFFF < c => (FlagLT_ULT)
1177 (CMPLconst (SHRLconst _ [c]) [n]) && 0 <= n && 0 < c && c <= 32 && (1<<uint64(32-c)) <= uint64(n) => (FlagLT_ULT)
1178 (CMPQconst (SHRQconst _ [c]) [n]) && 0 <= n && 0 < c && c <= 64 && (1<<uint64(64-c)) <= uint64(n) => (FlagLT_ULT)
1179 (CMPQconst (ANDQconst _ [m]) [n]) && 0 <= m && m < n => (FlagLT_ULT)
1180 (CMPQconst (ANDLconst _ [m]) [n]) && 0 <= m && m < n => (FlagLT_ULT)
1181 (CMPLconst (ANDLconst _ [m]) [n]) && 0 <= m && m < n => (FlagLT_ULT)
1182 (CMPWconst (ANDLconst _ [m]) [n]) && 0 <= int16(m) && int16(m) < n => (FlagLT_ULT)
1183 (CMPBconst (ANDLconst _ [m]) [n]) && 0 <= int8(m) && int8(m) < n => (FlagLT_ULT)
1184
1185 // TESTQ c c sets flags like CMPQ c 0.
1186 (TESTQconst [c] (MOVQconst [d])) && int64(c) == d && c == 0 => (FlagEQ)
1187 (TESTLconst [c] (MOVLconst [c])) && c == 0 => (FlagEQ)
1188 (TESTQconst [c] (MOVQconst [d])) && int64(c) == d && c < 0 => (FlagLT_UGT)
1189 (TESTLconst [c] (MOVLconst [c])) && c < 0 => (FlagLT_UGT)
1190 (TESTQconst [c] (MOVQconst [d])) && int64(c) == d && c > 0 => (FlagGT_UGT)
1191 (TESTLconst [c] (MOVLconst [c])) && c > 0 => (FlagGT_UGT)
1192
1193 // TODO: DIVxU also.
1194
1195 // Absorb flag constants into SBB ops.
1196 (SBBQcarrymask (FlagEQ)) => (MOVQconst [0])
1197 (SBBQcarrymask (FlagLT_ULT)) => (MOVQconst [-1])
1198 (SBBQcarrymask (FlagLT_UGT)) => (MOVQconst [0])
1199 (SBBQcarrymask (FlagGT_ULT)) => (MOVQconst [-1])
1200 (SBBQcarrymask (FlagGT_UGT)) => (MOVQconst [0])
1201 (SBBLcarrymask (FlagEQ)) => (MOVLconst [0])
1202 (SBBLcarrymask (FlagLT_ULT)) => (MOVLconst [-1])
1203 (SBBLcarrymask (FlagLT_UGT)) => (MOVLconst [0])
1204 (SBBLcarrymask (FlagGT_ULT)) => (MOVLconst [-1])
1205 (SBBLcarrymask (FlagGT_UGT)) => (MOVLconst [0])
1206
1207 // Absorb flag constants into branches.
1208 ((EQ|LE|GE|ULE|UGE) (FlagEQ) yes no) => (First yes no)
1209 ((NE|LT|GT|ULT|UGT) (FlagEQ) yes no) => (First no yes)
1210 ((NE|LT|LE|ULT|ULE) (FlagLT_ULT) yes no) => (First yes no)
1211 ((EQ|GT|GE|UGT|UGE) (FlagLT_ULT) yes no) => (First no yes)
1212 ((NE|LT|LE|UGT|UGE) (FlagLT_UGT) yes no) => (First yes no)
1213 ((EQ|GT|GE|ULT|ULE) (FlagLT_UGT) yes no) => (First no yes)
1214 ((NE|GT|GE|ULT|ULE) (FlagGT_ULT) yes no) => (First yes no)
1215 ((EQ|LT|LE|UGT|UGE) (FlagGT_ULT) yes no) => (First no yes)
1216 ((NE|GT|GE|UGT|UGE) (FlagGT_UGT) yes no) => (First yes no)
1217 ((EQ|LT|LE|ULT|ULE) (FlagGT_UGT) yes no) => (First no yes)
1218
1219 // Absorb flag constants into SETxx ops.
1220 ((SETEQ|SETLE|SETGE|SETBE|SETAE) (FlagEQ)) => (MOVLconst [1])
1221 ((SETNE|SETL|SETG|SETB|SETA) (FlagEQ)) => (MOVLconst [0])
1222 ((SETNE|SETL|SETLE|SETB|SETBE) (FlagLT_ULT)) => (MOVLconst [1])
1223 ((SETEQ|SETG|SETGE|SETA|SETAE) (FlagLT_ULT)) => (MOVLconst [0])
1224 ((SETNE|SETL|SETLE|SETA|SETAE) (FlagLT_UGT)) => (MOVLconst [1])
1225 ((SETEQ|SETG|SETGE|SETB|SETBE) (FlagLT_UGT)) => (MOVLconst [0])
1226 ((SETNE|SETG|SETGE|SETB|SETBE) (FlagGT_ULT)) => (MOVLconst [1])
1227 ((SETEQ|SETL|SETLE|SETA|SETAE) (FlagGT_ULT)) => (MOVLconst [0])
1228 ((SETNE|SETG|SETGE|SETA|SETAE) (FlagGT_UGT)) => (MOVLconst [1])
1229 ((SETEQ|SETL|SETLE|SETB|SETBE) (FlagGT_UGT)) => (MOVLconst [0])
1230
1231 (SETEQstore [off] {sym} ptr (FlagEQ) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1232 (SETEQstore [off] {sym} ptr (FlagLT_ULT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1233 (SETEQstore [off] {sym} ptr (FlagLT_UGT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1234 (SETEQstore [off] {sym} ptr (FlagGT_ULT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1235 (SETEQstore [off] {sym} ptr (FlagGT_UGT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1236
1237 (SETNEstore [off] {sym} ptr (FlagEQ) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1238 (SETNEstore [off] {sym} ptr (FlagLT_ULT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1239 (SETNEstore [off] {sym} ptr (FlagLT_UGT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1240 (SETNEstore [off] {sym} ptr (FlagGT_ULT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1241 (SETNEstore [off] {sym} ptr (FlagGT_UGT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1242
1243 (SETLstore [off] {sym} ptr (FlagEQ) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1244 (SETLstore [off] {sym} ptr (FlagLT_ULT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1245 (SETLstore [off] {sym} ptr (FlagLT_UGT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1246 (SETLstore [off] {sym} ptr (FlagGT_ULT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1247 (SETLstore [off] {sym} ptr (FlagGT_UGT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1248
1249 (SETLEstore [off] {sym} ptr (FlagEQ) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1250 (SETLEstore [off] {sym} ptr (FlagLT_ULT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1251 (SETLEstore [off] {sym} ptr (FlagLT_UGT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1252 (SETLEstore [off] {sym} ptr (FlagGT_ULT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1253 (SETLEstore [off] {sym} ptr (FlagGT_UGT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1254
1255 (SETGstore [off] {sym} ptr (FlagEQ) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1256 (SETGstore [off] {sym} ptr (FlagLT_ULT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1257 (SETGstore [off] {sym} ptr (FlagLT_UGT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1258 (SETGstore [off] {sym} ptr (FlagGT_ULT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1259 (SETGstore [off] {sym} ptr (FlagGT_UGT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1260
1261 (SETGEstore [off] {sym} ptr (FlagEQ) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1262 (SETGEstore [off] {sym} ptr (FlagLT_ULT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1263 (SETGEstore [off] {sym} ptr (FlagLT_UGT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1264 (SETGEstore [off] {sym} ptr (FlagGT_ULT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1265 (SETGEstore [off] {sym} ptr (FlagGT_UGT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1266
1267 (SETBstore [off] {sym} ptr (FlagEQ) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1268 (SETBstore [off] {sym} ptr (FlagLT_ULT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1269 (SETBstore [off] {sym} ptr (FlagLT_UGT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1270 (SETBstore [off] {sym} ptr (FlagGT_ULT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1271 (SETBstore [off] {sym} ptr (FlagGT_UGT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1272
1273 (SETBEstore [off] {sym} ptr (FlagEQ) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1274 (SETBEstore [off] {sym} ptr (FlagLT_ULT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1275 (SETBEstore [off] {sym} ptr (FlagLT_UGT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1276 (SETBEstore [off] {sym} ptr (FlagGT_ULT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1277 (SETBEstore [off] {sym} ptr (FlagGT_UGT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1278
1279 (SETAstore [off] {sym} ptr (FlagEQ) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1280 (SETAstore [off] {sym} ptr (FlagLT_ULT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1281 (SETAstore [off] {sym} ptr (FlagLT_UGT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1282 (SETAstore [off] {sym} ptr (FlagGT_ULT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1283 (SETAstore [off] {sym} ptr (FlagGT_UGT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1284
1285 (SETAEstore [off] {sym} ptr (FlagEQ) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1286 (SETAEstore [off] {sym} ptr (FlagLT_ULT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1287 (SETAEstore [off] {sym} ptr (FlagLT_UGT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1288 (SETAEstore [off] {sym} ptr (FlagGT_ULT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [0]) mem)
1289 (SETAEstore [off] {sym} ptr (FlagGT_UGT) mem) => (MOVBstore [off] {sym} ptr (MOVLconst <typ.UInt8> [1]) mem)
1290
1291 // Remove redundant *const ops
1292 (ADD(Q|L)const [0] x) => x
1293 (SUB(Q|L)const [0] x) => x
1294 (AND(Q|L)const [0] _) => (MOVLconst [0])
1295 (AND(Q|L)const [-1] x) => x
1296 (OR(Q|L)const [0] x) => x
1297 (OR(Q|L)const [-1] _) => (MOV(Q|L)const [-1])
1298 (XOR(Q|L)const [0] x) => x
1299 // TODO: since we got rid of the W/B versions, we might miss
1300 // things like (ANDLconst [0x100] x) which were formerly
1301 // (ANDBconst [0] x). Probably doesn't happen very often.
1302 // If we cared, we might do:
1303 // (ANDLconst <t> [c] x) && t.Size()==1 && int8(x)==0 -> (MOVLconst [0])
1304
1305 // Remove redundant ops
1306 // Not in generic rules, because they may appear after lowering e. g. Slicemask
1307 (NEG(Q|L) (NEG(Q|L) x)) => x
1308 (NEG(Q|L) s:(SUB(Q|L) x y)) && s.Uses == 1 => (SUB(Q|L) y x)
1309
1310 // Convert constant subtracts to constant adds
1311 (SUBQconst [c] x) && c != -(1<<31) => (ADDQconst [-c] x)
1312 (SUBLconst [c] x) => (ADDLconst [-c] x)
1313
1314 // generic constant folding
1315 // TODO: more of this
1316 (ADDQconst [c] (MOVQconst [d])) => (MOVQconst [int64(c)+d])
1317 (ADDLconst [c] (MOVLconst [d])) => (MOVLconst [c+d])
1318 (ADDQconst [c] (ADDQconst [d] x)) && is32Bit(int64(c)+int64(d)) => (ADDQconst [c+d] x)
1319 (ADDLconst [c] (ADDLconst [d] x)) => (ADDLconst [c+d] x)
1320 (SUBQconst (MOVQconst [d]) [c]) => (MOVQconst [d-int64(c)])
1321 (SUBQconst (SUBQconst x [d]) [c]) && is32Bit(int64(-c)-int64(d)) => (ADDQconst [-c-d] x)
1322 (SARQconst [c] (MOVQconst [d])) => (MOVQconst [d>>uint64(c)])
1323 (SARLconst [c] (MOVQconst [d])) => (MOVQconst [int64(int32(d))>>uint64(c)])
1324 (SARWconst [c] (MOVQconst [d])) => (MOVQconst [int64(int16(d))>>uint64(c)])
1325 (SARBconst [c] (MOVQconst [d])) => (MOVQconst [int64(int8(d))>>uint64(c)])
1326 (NEG(Q|L) (MOV(Q|L)const [c])) => (MOV(Q|L)const [-c])
1327 (MULQconst [c] (MOVQconst [d])) => (MOVQconst [int64(c)*d])
1328 (MULLconst [c] (MOVLconst [d])) => (MOVLconst [c*d])
1329 (ANDQconst [c] (MOVQconst [d])) => (MOVQconst [int64(c)&d])
1330 (ANDLconst [c] (MOVLconst [d])) => (MOVLconst [c&d])
1331 (ORQconst [c] (MOVQconst [d])) => (MOVQconst [int64(c)|d])
1332 (ORLconst [c] (MOVLconst [d])) => (MOVLconst [c|d])
1333 (XORQconst [c] (MOVQconst [d])) => (MOVQconst [int64(c)^d])
1334 (XORLconst [c] (MOVLconst [d])) => (MOVLconst [c^d])
1335 (NOT(Q|L) (MOV(Q|L)const [c])) => (MOV(Q|L)const [^c])
1336 (BTSQconst [c] (MOVQconst [d])) => (MOVQconst [d|(1<<uint32(c))])
1337 (BTRQconst [c] (MOVQconst [d])) => (MOVQconst [d&^(1<<uint32(c))])
1338 (BTCQconst [c] (MOVQconst [d])) => (MOVQconst [d^(1<<uint32(c))])
1339
1340 // If c or d doesn't fit into 32 bits, then we can't construct ORQconst,
1341 // but we can still constant-fold.
1342 // In theory this applies to any of the simplifications above,
1343 // but ORQ is the only one I've actually seen occur.
1344 (ORQ (MOVQconst [c]) (MOVQconst [d])) => (MOVQconst [c|d])
1345
1346 // generic simplifications
1347 // TODO: more of this
1348 (ADD(Q|L) x (NEG(Q|L) y)) => (SUB(Q|L) x y)
1349 (SUB(Q|L) x x) => (MOVLconst [0])
1350 (AND(Q|L) x x) => x
1351 (OR(Q|L) x x) => x
1352 (XOR(Q|L) x x) => (MOVLconst [0])
1353
1354 (SHLLconst [d] (MOVLconst [c])) => (MOVLconst [c << uint64(d)])
1355 (SHLQconst [d] (MOVQconst [c])) => (MOVQconst [c << uint64(d)])
1356 (SHLQconst [d] (MOVLconst [c])) => (MOVQconst [int64(c) << uint64(d)])
1357
1358 // Fold NEG into ADDconst/MULconst. Take care to keep c in 32 bit range.
1359 (NEGQ (ADDQconst [c] (NEGQ x))) && c != -(1<<31) => (ADDQconst [-c] x)
1360 (MULQconst [c] (NEGQ x)) && c != -(1<<31) => (MULQconst [-c] x)
1361
1362 // checking AND against 0.
1363 (CMP(Q|L|W|B)const a:(AND(Q|L|L|L) x y) [0]) && a.Uses == 1 => (TEST(Q|L|W|B) x y)
1364 (CMPQconst a:(ANDQconst [c] x) [0]) && a.Uses == 1 => (TESTQconst [c] x)
1365 (CMPLconst a:(ANDLconst [c] x) [0]) && a.Uses == 1 => (TESTLconst [c] x)
1366 (CMPWconst a:(ANDLconst [c] x) [0]) && a.Uses == 1 => (TESTWconst [int16(c)] x)
1367 (CMPBconst a:(ANDLconst [c] x) [0]) && a.Uses == 1 => (TESTBconst [int8(c)] x)
1368
1369 // Convert TESTx to TESTxconst if possible.
1370 (TESTQ (MOVQconst [c]) x) && is32Bit(c) => (TESTQconst [int32(c)] x)
1371 (TESTL (MOVLconst [c]) x) => (TESTLconst [c] x)
1372 (TESTW (MOVLconst [c]) x) => (TESTWconst [int16(c)] x)
1373 (TESTB (MOVLconst [c]) x) => (TESTBconst [int8(c)] x)
1374
1375 // TEST %reg,%reg is shorter than CMP
1376 (CMP(Q|L|W|B)const x [0]) => (TEST(Q|L|W|B) x x)
1377 (TESTQconst [-1] x) && x.Op != OpAMD64MOVQconst => (TESTQ x x)
1378 (TESTLconst [-1] x) && x.Op != OpAMD64MOVLconst => (TESTL x x)
1379 (TESTWconst [-1] x) && x.Op != OpAMD64MOVLconst => (TESTW x x)
1380 (TESTBconst [-1] x) && x.Op != OpAMD64MOVLconst => (TESTB x x)
1381
1382 // Convert LEAQ1 back to ADDQ if we can
1383 (LEAQ1 [0] x y) && v.Aux == nil => (ADDQ x y)
1384
1385 (MOVQstoreconst [c] {s} p1 x:(MOVQstoreconst [a] {s} p0 mem))
1386 && x.Uses == 1
1387 && sequentialAddresses(p0, p1, int64(a.Off()+8-c.Off()))
1388 && a.Val() == 0
1389 && c.Val() == 0
1390 && setPos(v, x.Pos)
1391 && clobber(x)
1392 => (MOVOstoreconst [makeValAndOff(0,a.Off())] {s} p0 mem)
1393 (MOVQstoreconst [a] {s} p0 x:(MOVQstoreconst [c] {s} p1 mem))
1394 && x.Uses == 1
1395 && sequentialAddresses(p0, p1, int64(a.Off()+8-c.Off()))
1396 && a.Val() == 0
1397 && c.Val() == 0
1398 && setPos(v, x.Pos)
1399 && clobber(x)
1400 => (MOVOstoreconst [makeValAndOff(0,a.Off())] {s} p0 mem)
1401
1402 // Merge load and op
1403 // TODO: add indexed variants?
1404 ((ADD|SUB|AND|OR|XOR)Q x l:(MOVQload [off] {sym} ptr mem)) && canMergeLoadClobber(v, l, x) && clobber(l) => ((ADD|SUB|AND|OR|XOR)Qload x [off] {sym} ptr mem)
1405 ((ADD|SUB|AND|OR|XOR)L x l:(MOVLload [off] {sym} ptr mem)) && canMergeLoadClobber(v, l, x) && clobber(l) => ((ADD|SUB|AND|OR|XOR)Lload x [off] {sym} ptr mem)
1406 ((ADD|SUB|MUL|DIV)SD x l:(MOVSDload [off] {sym} ptr mem)) && canMergeLoadClobber(v, l, x) && clobber(l) => ((ADD|SUB|MUL|DIV)SDload x [off] {sym} ptr mem)
1407 ((ADD|SUB|MUL|DIV)SS x l:(MOVSSload [off] {sym} ptr mem)) && canMergeLoadClobber(v, l, x) && clobber(l) => ((ADD|SUB|MUL|DIV)SSload x [off] {sym} ptr mem)
1408 (MOVLstore {sym} [off] ptr y:((ADD|AND|OR|XOR)Lload x [off] {sym} ptr mem) mem) && y.Uses==1 && clobber(y) => ((ADD|AND|OR|XOR)Lmodify [off] {sym} ptr x mem)
1409 (MOVLstore {sym} [off] ptr y:((ADD|SUB|AND|OR|XOR)L l:(MOVLload [off] {sym} ptr mem) x) mem) && y.Uses==1 && l.Uses==1 && clobber(y, l) =>
1410 ((ADD|SUB|AND|OR|XOR)Lmodify [off] {sym} ptr x mem)
1411 (MOVQstore {sym} [off] ptr y:((ADD|AND|OR|XOR)Qload x [off] {sym} ptr mem) mem) && y.Uses==1 && clobber(y) => ((ADD|AND|OR|XOR)Qmodify [off] {sym} ptr x mem)
1412 (MOVQstore {sym} [off] ptr y:((ADD|SUB|AND|OR|XOR)Q l:(MOVQload [off] {sym} ptr mem) x) mem) && y.Uses==1 && l.Uses==1 && clobber(y, l) =>
1413 ((ADD|SUB|AND|OR|XOR)Qmodify [off] {sym} ptr x mem)
1414 (MOVQstore {sym} [off] ptr x:(BT(S|R|C)Qconst [c] l:(MOVQload {sym} [off] ptr mem)) mem) && x.Uses == 1 && l.Uses == 1 && clobber(x, l) =>
1415 (BT(S|R|C)Qconstmodify {sym} [makeValAndOff(int32(c),off)] ptr mem)
1416
1417 // Merge ADDQconst and LEAQ into atomic loads.
1418 (MOV(Q|L|B)atomicload [off1] {sym} (ADDQconst [off2] ptr) mem) && is32Bit(int64(off1)+int64(off2)) =>
1419 (MOV(Q|L|B)atomicload [off1+off2] {sym} ptr mem)
1420 (MOV(Q|L|B)atomicload [off1] {sym1} (LEAQ [off2] {sym2} ptr) mem) && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) =>
1421 (MOV(Q|L|B)atomicload [off1+off2] {mergeSym(sym1, sym2)} ptr mem)
1422
1423 // Merge ADDQconst and LEAQ into atomic stores.
1424 (XCHGQ [off1] {sym} val (ADDQconst [off2] ptr) mem) && is32Bit(int64(off1)+int64(off2)) =>
1425 (XCHGQ [off1+off2] {sym} val ptr mem)
1426 (XCHGQ [off1] {sym1} val (LEAQ [off2] {sym2} ptr) mem) && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) && ptr.Op != OpSB =>
1427 (XCHGQ [off1+off2] {mergeSym(sym1,sym2)} val ptr mem)
1428 (XCHGL [off1] {sym} val (ADDQconst [off2] ptr) mem) && is32Bit(int64(off1)+int64(off2)) =>
1429 (XCHGL [off1+off2] {sym} val ptr mem)
1430 (XCHGL [off1] {sym1} val (LEAQ [off2] {sym2} ptr) mem) && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) && ptr.Op != OpSB =>
1431 (XCHGL [off1+off2] {mergeSym(sym1,sym2)} val ptr mem)
1432
1433 // Merge ADDQconst into atomic adds.
1434 // TODO: merging LEAQ doesn't work, assembler doesn't like the resulting instructions.
1435 (XADDQlock [off1] {sym} val (ADDQconst [off2] ptr) mem) && is32Bit(int64(off1)+int64(off2)) =>
1436 (XADDQlock [off1+off2] {sym} val ptr mem)
1437 (XADDLlock [off1] {sym} val (ADDQconst [off2] ptr) mem) && is32Bit(int64(off1)+int64(off2)) =>
1438 (XADDLlock [off1+off2] {sym} val ptr mem)
1439
1440 // Merge ADDQconst into atomic compare and swaps.
1441 // TODO: merging LEAQ doesn't work, assembler doesn't like the resulting instructions.
1442 (CMPXCHGQlock [off1] {sym} (ADDQconst [off2] ptr) old new_ mem) && is32Bit(int64(off1)+int64(off2)) =>
1443 (CMPXCHGQlock [off1+off2] {sym} ptr old new_ mem)
1444 (CMPXCHGLlock [off1] {sym} (ADDQconst [off2] ptr) old new_ mem) && is32Bit(int64(off1)+int64(off2)) =>
1445 (CMPXCHGLlock [off1+off2] {sym} ptr old new_ mem)
1446
1447 // We don't need the conditional move if we know the arg of BSF is not zero.
1448 (CMOVQEQ x _ (Select1 (BS(F|R)Q (ORQconst [c] _)))) && c != 0 => x
1449 // Extension is unnecessary for trailing zeros.
1450 (BSFQ (ORQconst <t> [1<<8] (MOVBQZX x))) => (BSFQ (ORQconst <t> [1<<8] x))
1451 (BSFQ (ORQconst <t> [1<<16] (MOVWQZX x))) => (BSFQ (ORQconst <t> [1<<16] x))
1452
1453 // Redundant sign/zero extensions
1454 // Note: see issue 21963. We have to make sure we use the right type on
1455 // the resulting extension (the outer type, not the inner type).
1456 (MOVLQSX (MOVLQSX x)) => (MOVLQSX x)
1457 (MOVLQSX (MOVWQSX x)) => (MOVWQSX x)
1458 (MOVLQSX (MOVBQSX x)) => (MOVBQSX x)
1459 (MOVWQSX (MOVWQSX x)) => (MOVWQSX x)
1460 (MOVWQSX (MOVBQSX x)) => (MOVBQSX x)
1461 (MOVBQSX (MOVBQSX x)) => (MOVBQSX x)
1462 (MOVLQZX (MOVLQZX x)) => (MOVLQZX x)
1463 (MOVLQZX (MOVWQZX x)) => (MOVWQZX x)
1464 (MOVLQZX (MOVBQZX x)) => (MOVBQZX x)
1465 (MOVWQZX (MOVWQZX x)) => (MOVWQZX x)
1466 (MOVWQZX (MOVBQZX x)) => (MOVBQZX x)
1467 (MOVBQZX (MOVBQZX x)) => (MOVBQZX x)
1468
1469 (MOVQstore [off] {sym} ptr a:((ADD|AND|OR|XOR)Qconst [c] l:(MOVQload [off] {sym} ptr2 mem)) mem)
1470 && isSamePtr(ptr, ptr2) && a.Uses == 1 && l.Uses == 1 && clobber(l, a) =>
1471 ((ADD|AND|OR|XOR)Qconstmodify {sym} [makeValAndOff(int32(c),off)] ptr mem)
1472 (MOVLstore [off] {sym} ptr a:((ADD|AND|OR|XOR)Lconst [c] l:(MOVLload [off] {sym} ptr2 mem)) mem)
1473 && isSamePtr(ptr, ptr2) && a.Uses == 1 && l.Uses == 1 && clobber(l, a) =>
1474 ((ADD|AND|OR|XOR)Lconstmodify {sym} [makeValAndOff(int32(c),off)] ptr mem)
1475
1476 // float <-> int register moves, with no conversion.
1477 // These come up when compiling math.{Float{32,64}bits,Float{32,64}frombits}.
1478 (MOVQload [off] {sym} ptr (MOVSDstore [off] {sym} ptr val _)) => (MOVQf2i val)
1479 (MOVLload [off] {sym} ptr (MOVSSstore [off] {sym} ptr val _)) => (MOVLf2i val)
1480 (MOVSDload [off] {sym} ptr (MOVQstore [off] {sym} ptr val _)) => (MOVQi2f val)
1481 (MOVSSload [off] {sym} ptr (MOVLstore [off] {sym} ptr val _)) => (MOVLi2f val)
1482
1483 // Other load-like ops.
1484 (ADDQload x [off] {sym} ptr (MOVSDstore [off] {sym} ptr y _)) => (ADDQ x (MOVQf2i y))
1485 (ADDLload x [off] {sym} ptr (MOVSSstore [off] {sym} ptr y _)) => (ADDL x (MOVLf2i y))
1486 (SUBQload x [off] {sym} ptr (MOVSDstore [off] {sym} ptr y _)) => (SUBQ x (MOVQf2i y))
1487 (SUBLload x [off] {sym} ptr (MOVSSstore [off] {sym} ptr y _)) => (SUBL x (MOVLf2i y))
1488 (ANDQload x [off] {sym} ptr (MOVSDstore [off] {sym} ptr y _)) => (ANDQ x (MOVQf2i y))
1489 (ANDLload x [off] {sym} ptr (MOVSSstore [off] {sym} ptr y _)) => (ANDL x (MOVLf2i y))
1490 ( ORQload x [off] {sym} ptr (MOVSDstore [off] {sym} ptr y _)) => ( ORQ x (MOVQf2i y))
1491 ( ORLload x [off] {sym} ptr (MOVSSstore [off] {sym} ptr y _)) => ( ORL x (MOVLf2i y))
1492 (XORQload x [off] {sym} ptr (MOVSDstore [off] {sym} ptr y _)) => (XORQ x (MOVQf2i y))
1493 (XORLload x [off] {sym} ptr (MOVSSstore [off] {sym} ptr y _)) => (XORL x (MOVLf2i y))
1494
1495 (ADDSDload x [off] {sym} ptr (MOVQstore [off] {sym} ptr y _)) => (ADDSD x (MOVQi2f y))
1496 (ADDSSload x [off] {sym} ptr (MOVLstore [off] {sym} ptr y _)) => (ADDSS x (MOVLi2f y))
1497 (SUBSDload x [off] {sym} ptr (MOVQstore [off] {sym} ptr y _)) => (SUBSD x (MOVQi2f y))
1498 (SUBSSload x [off] {sym} ptr (MOVLstore [off] {sym} ptr y _)) => (SUBSS x (MOVLi2f y))
1499 (MULSDload x [off] {sym} ptr (MOVQstore [off] {sym} ptr y _)) => (MULSD x (MOVQi2f y))
1500 (MULSSload x [off] {sym} ptr (MOVLstore [off] {sym} ptr y _)) => (MULSS x (MOVLi2f y))
1501
1502 // Detect FMA
1503 (ADDS(S|D) (MULS(S|D) x y) z) && buildcfg.GOAMD64 >= 3 && z.Block.Func.useFMA(v) => (VFMADD231S(S|D) z x y)
1504
1505 // Redirect stores to use the other register set.
1506 (MOVQstore [off] {sym} ptr (MOVQf2i val) mem) => (MOVSDstore [off] {sym} ptr val mem)
1507 (MOVLstore [off] {sym} ptr (MOVLf2i val) mem) => (MOVSSstore [off] {sym} ptr val mem)
1508 (MOVSDstore [off] {sym} ptr (MOVQi2f val) mem) => (MOVQstore [off] {sym} ptr val mem)
1509 (MOVSSstore [off] {sym} ptr (MOVLi2f val) mem) => (MOVLstore [off] {sym} ptr val mem)
1510
1511 (MOVSDstore [off] {sym} ptr (MOVSDconst [f]) mem) && f == f => (MOVQstore [off] {sym} ptr (MOVQconst [int64(math.Float64bits(f))]) mem)
1512 (MOVSSstore [off] {sym} ptr (MOVSSconst [f]) mem) && f == f => (MOVLstore [off] {sym} ptr (MOVLconst [int32(math.Float32bits(f))]) mem)
1513
1514 // Load args directly into the register class where it will be used.
1515 // We do this by just modifying the type of the Arg.
1516 (MOVQf2i <t> (Arg <u> [off] {sym})) && t.Size() == u.Size() => @b.Func.Entry (Arg <t> [off] {sym})
1517 (MOVLf2i <t> (Arg <u> [off] {sym})) && t.Size() == u.Size() => @b.Func.Entry (Arg <t> [off] {sym})
1518 (MOVQi2f <t> (Arg <u> [off] {sym})) && t.Size() == u.Size() => @b.Func.Entry (Arg <t> [off] {sym})
1519 (MOVLi2f <t> (Arg <u> [off] {sym})) && t.Size() == u.Size() => @b.Func.Entry (Arg <t> [off] {sym})
1520
1521 // LEAQ is rematerializeable, so this helps to avoid register spill.
1522 // See issue 22947 for details
1523 (ADD(Q|L)const [off] x:(SP)) => (LEA(Q|L) [off] x)
1524
1525 // HMULx is commutative, but its first argument must go in AX.
1526 // If possible, put a rematerializeable value in the first argument slot,
1527 // to reduce the odds that another value will be have to spilled
1528 // specifically to free up AX.
1529 (HMUL(Q|L) x y) && !x.rematerializeable() && y.rematerializeable() => (HMUL(Q|L) y x)
1530 (HMUL(Q|L)U x y) && !x.rematerializeable() && y.rematerializeable() => (HMUL(Q|L)U y x)
1531
1532 // Fold loads into compares
1533 // Note: these may be undone by the flagalloc pass.
1534 (CMP(Q|L|W|B) l:(MOV(Q|L|W|B)load {sym} [off] ptr mem) x) && canMergeLoad(v, l) && clobber(l) => (CMP(Q|L|W|B)load {sym} [off] ptr x mem)
1535 (CMP(Q|L|W|B) x l:(MOV(Q|L|W|B)load {sym} [off] ptr mem)) && canMergeLoad(v, l) && clobber(l) => (InvertFlags (CMP(Q|L|W|B)load {sym} [off] ptr x mem))
1536
1537 (CMP(Q|L)const l:(MOV(Q|L)load {sym} [off] ptr mem) [c])
1538 && l.Uses == 1
1539 && clobber(l) =>
1540 @l.Block (CMP(Q|L)constload {sym} [makeValAndOff(c,off)] ptr mem)
1541 (CMP(W|B)const l:(MOV(W|B)load {sym} [off] ptr mem) [c])
1542 && l.Uses == 1
1543 && clobber(l) =>
1544 @l.Block (CMP(W|B)constload {sym} [makeValAndOff(int32(c),off)] ptr mem)
1545
1546 (CMPQload {sym} [off] ptr (MOVQconst [c]) mem) && validVal(c) => (CMPQconstload {sym} [makeValAndOff(int32(c),off)] ptr mem)
1547 (CMPLload {sym} [off] ptr (MOVLconst [c]) mem) => (CMPLconstload {sym} [makeValAndOff(c,off)] ptr mem)
1548 (CMPWload {sym} [off] ptr (MOVLconst [c]) mem) => (CMPWconstload {sym} [makeValAndOff(int32(int16(c)),off)] ptr mem)
1549 (CMPBload {sym} [off] ptr (MOVLconst [c]) mem) => (CMPBconstload {sym} [makeValAndOff(int32(int8(c)),off)] ptr mem)
1550
1551 (TEST(Q|L|W|B) l:(MOV(Q|L|W|B)load {sym} [off] ptr mem) l2)
1552 && l == l2
1553 && l.Uses == 2
1554 && clobber(l) =>
1555 @l.Block (CMP(Q|L|W|B)constload {sym} [makeValAndOff(0, off)] ptr mem)
1556
1557 // Convert ANDload to MOVload when we can do the AND in a containing TEST op.
1558 // Only do when it's within the same block, so we don't have flags live across basic block boundaries.
1559 // See issue 44228.
1560 (TEST(Q|L) a:(AND(Q|L)load [off] {sym} x ptr mem) a) && a.Uses == 2 && a.Block == v.Block && clobber(a) => (TEST(Q|L) (MOV(Q|L)load <a.Type> [off] {sym} ptr mem) x)
1561
1562 (MOVBload [off] {sym} (SB) _) && symIsRO(sym) => (MOVLconst [int32(read8(sym, int64(off)))])
1563 (MOVWload [off] {sym} (SB) _) && symIsRO(sym) => (MOVLconst [int32(read16(sym, int64(off), config.ctxt.Arch.ByteOrder))])
1564 (MOVLload <t> [off] {sym} (SB) _) && symIsRO(sym) && is32BitInt(t) => (MOVLconst [int32(read32(sym, int64(off), config.ctxt.Arch.ByteOrder))])
1565 (MOVLload <t> [off] {sym} (SB) _) && symIsRO(sym) && is64BitInt(t) => (MOVQconst [int64(read32(sym, int64(off), config.ctxt.Arch.ByteOrder))])
1566 (MOVQload [off] {sym} (SB) _) && symIsRO(sym) => (MOVQconst [int64(read64(sym, int64(off), config.ctxt.Arch.ByteOrder))])
1567 (MOVBQSXload [off] {sym} (SB) _) && symIsRO(sym) => (MOVQconst [int64(int8(read8(sym, int64(off))))])
1568 (MOVWQSXload [off] {sym} (SB) _) && symIsRO(sym) => (MOVQconst [int64(int16(read16(sym, int64(off), config.ctxt.Arch.ByteOrder)))])
1569 (MOVLQSXload [off] {sym} (SB) _) && symIsRO(sym) => (MOVQconst [int64(int32(read32(sym, int64(off), config.ctxt.Arch.ByteOrder)))])
1570
1571
1572 (MOVOstore [dstOff] {dstSym} ptr (MOVOload [srcOff] {srcSym} (SB) _) mem) && symIsRO(srcSym) =>
1573 (MOVQstore [dstOff+8] {dstSym} ptr (MOVQconst [int64(read64(srcSym, int64(srcOff)+8, config.ctxt.Arch.ByteOrder))])
1574 (MOVQstore [dstOff] {dstSym} ptr (MOVQconst [int64(read64(srcSym, int64(srcOff), config.ctxt.Arch.ByteOrder))]) mem))
1575
1576 // Arch-specific inlining for small or disjoint runtime.memmove
1577 // Match post-lowering calls, memory version.
1578 (SelectN [0] call:(CALLstatic {sym} s1:(MOVQstoreconst _ [sc] s2:(MOVQstore _ src s3:(MOVQstore _ dst mem)))))
1579 && sc.Val64() >= 0
1580 && isSameCall(sym, "runtime.memmove")
1581 && s1.Uses == 1 && s2.Uses == 1 && s3.Uses == 1
1582 && isInlinableMemmove(dst, src, sc.Val64(), config)
1583 && clobber(s1, s2, s3, call)
1584 => (Move [sc.Val64()] dst src mem)
1585
1586 // Match post-lowering calls, register version.
1587 (SelectN [0] call:(CALLstatic {sym} dst src (MOVQconst [sz]) mem))
1588 && sz >= 0
1589 && isSameCall(sym, "runtime.memmove")
1590 && call.Uses == 1
1591 && isInlinableMemmove(dst, src, sz, config)
1592 && clobber(call)
1593 => (Move [sz] dst src mem)
1594
1595 // Prefetch instructions
1596 (PrefetchCache ...) => (PrefetchT0 ...)
1597 (PrefetchCacheStreamed ...) => (PrefetchNTA ...)
1598
1599 // CPUID feature: BMI1.
1600 (AND(Q|L) x (NOT(Q|L) y)) && buildcfg.GOAMD64 >= 3 => (ANDN(Q|L) x y)
1601 (AND(Q|L) x (NEG(Q|L) x)) && buildcfg.GOAMD64 >= 3 => (BLSI(Q|L) x)
1602 (XOR(Q|L) x (ADD(Q|L)const [-1] x)) && buildcfg.GOAMD64 >= 3 => (BLSMSK(Q|L) x)
1603 (AND(Q|L) <t> x (ADD(Q|L)const [-1] x)) && buildcfg.GOAMD64 >= 3 => (Select0 <t> (BLSR(Q|L) x))
1604 // eliminate TEST instruction in classical "isPowerOfTwo" check
1605 (SETEQ (TEST(Q|L) s:(Select0 blsr:(BLSR(Q|L) _)) s)) => (SETEQ (Select1 <types.TypeFlags> blsr))
1606 (CMOVQEQ x y (TEST(Q|L) s:(Select0 blsr:(BLSR(Q|L) _)) s)) => (CMOVQEQ x y (Select1 <types.TypeFlags> blsr))
1607 (CMOVLEQ x y (TEST(Q|L) s:(Select0 blsr:(BLSR(Q|L) _)) s)) => (CMOVLEQ x y (Select1 <types.TypeFlags> blsr))
1608 (EQ (TEST(Q|L) s:(Select0 blsr:(BLSR(Q|L) _)) s) yes no) => (EQ (Select1 <types.TypeFlags> blsr) yes no)
1609 (SETNE (TEST(Q|L) s:(Select0 blsr:(BLSR(Q|L) _)) s)) => (SETNE (Select1 <types.TypeFlags> blsr))
1610 (CMOVQNE x y (TEST(Q|L) s:(Select0 blsr:(BLSR(Q|L) _)) s)) => (CMOVQNE x y (Select1 <types.TypeFlags> blsr))
1611 (CMOVLNE x y (TEST(Q|L) s:(Select0 blsr:(BLSR(Q|L) _)) s)) => (CMOVLNE x y (Select1 <types.TypeFlags> blsr))
1612 (NE (TEST(Q|L) s:(Select0 blsr:(BLSR(Q|L) _)) s) yes no) => (NE (Select1 <types.TypeFlags> blsr) yes no)
1613
1614 (BSWAP(Q|L) (BSWAP(Q|L) p)) => p
1615
1616 // CPUID feature: MOVBE.
1617 (MOV(Q|L)store [i] {s} p x:(BSWAP(Q|L) w) mem) && x.Uses == 1 && buildcfg.GOAMD64 >= 3 => (MOVBE(Q|L)store [i] {s} p w mem)
1618 (MOVBE(Q|L)store [i] {s} p x:(BSWAP(Q|L) w) mem) && x.Uses == 1 => (MOV(Q|L)store [i] {s} p w mem)
1619 (BSWAP(Q|L) x:(MOV(Q|L)load [i] {s} p mem)) && x.Uses == 1 && buildcfg.GOAMD64 >= 3 => @x.Block (MOVBE(Q|L)load [i] {s} p mem)
1620 (BSWAP(Q|L) x:(MOVBE(Q|L)load [i] {s} p mem)) && x.Uses == 1 => @x.Block (MOV(Q|L)load [i] {s} p mem)
1621 (MOVWstore [i] {s} p x:(ROLWconst [8] w) mem) && x.Uses == 1 && buildcfg.GOAMD64 >= 3 => (MOVBEWstore [i] {s} p w mem)
1622 (MOVBEWstore [i] {s} p x:(ROLWconst [8] w) mem) && x.Uses == 1 => (MOVWstore [i] {s} p w mem)
1623
1624 (SAR(Q|L) l:(MOV(Q|L)load [off] {sym} ptr mem) x) && buildcfg.GOAMD64 >= 3 && canMergeLoad(v, l) && clobber(l) => (SARX(Q|L)load [off] {sym} ptr x mem)
1625 (SHL(Q|L) l:(MOV(Q|L)load [off] {sym} ptr mem) x) && buildcfg.GOAMD64 >= 3 && canMergeLoad(v, l) && clobber(l) => (SHLX(Q|L)load [off] {sym} ptr x mem)
1626 (SHR(Q|L) l:(MOV(Q|L)load [off] {sym} ptr mem) x) && buildcfg.GOAMD64 >= 3 && canMergeLoad(v, l) && clobber(l) => (SHRX(Q|L)load [off] {sym} ptr x mem)
1627
1628 ((SHL|SHR|SAR)XQload [off] {sym} ptr (MOVQconst [c]) mem) => ((SHL|SHR|SAR)Qconst [int8(c&63)] (MOVQload [off] {sym} ptr mem))
1629 ((SHL|SHR|SAR)XQload [off] {sym} ptr (MOVLconst [c]) mem) => ((SHL|SHR|SAR)Qconst [int8(c&63)] (MOVQload [off] {sym} ptr mem))
1630 ((SHL|SHR|SAR)XLload [off] {sym} ptr (MOVLconst [c]) mem) => ((SHL|SHR|SAR)Lconst [int8(c&31)] (MOVLload [off] {sym} ptr mem))
1631
1632 // Convert atomic logical operations to easier ones if we don't use the result.
1633 (Select1 a:(LoweredAtomic(And64|And32|Or64|Or32) ptr val mem)) && a.Uses == 1 && clobber(a) => ((ANDQ|ANDL|ORQ|ORL)lock ptr val mem)
1634
1635 // If we are checking the results of an add, use the flags directly from the add.
1636 // Note that this only works for EQ/NE. ADD sets the CF/OF flags differently
1637 // than TEST sets them.
1638 // Note also that a.Args[0] here refers to the post-flagify'd value.
1639 ((EQ|NE) t:(TESTQ a:(ADDQconst [c] x) a)) && t.Uses == 1 && flagify(a) => ((EQ|NE) (Select1 <types.TypeFlags> a.Args[0]))
1640 ((EQ|NE) t:(TESTL a:(ADDLconst [c] x) a)) && t.Uses == 1 && flagify(a) => ((EQ|NE) (Select1 <types.TypeFlags> a.Args[0]))
1641
1642 // If we don't use the flags any more, just use the standard op.
1643 (Select0 a:(ADD(Q|L)constflags [c] x)) && a.Uses == 1 => (ADD(Q|L)const [c] x)
1644
1645 // SIMD lowering rules
1646
1647 // Mask conversions
1648 // integers to masks
1649 (Cvt16toMask8x16 <t> x) => (VPMOVMToVec8x16 <types.TypeVec128> (KMOVWk <t> x))
1650 (Cvt32toMask8x32 <t> x) => (VPMOVMToVec8x32 <types.TypeVec256> (KMOVDk <t> x))
1651 (Cvt64toMask8x64 <t> x) => (VPMOVMToVec8x64 <types.TypeVec512> (KMOVQk <t> x))
1652
1653 (Cvt8toMask16x8 <t> x) => (VPMOVMToVec16x8 <types.TypeVec128> (KMOVBk <t> x))
1654 (Cvt16toMask16x16 <t> x) => (VPMOVMToVec16x16 <types.TypeVec256> (KMOVWk <t> x))
1655 (Cvt32toMask16x32 <t> x) => (VPMOVMToVec16x32 <types.TypeVec512> (KMOVDk <t> x))
1656
1657 (Cvt8toMask32x4 <t> x) => (VPMOVMToVec32x4 <types.TypeVec128> (KMOVBk <t> x))
1658 (Cvt8toMask32x8 <t> x) => (VPMOVMToVec32x8 <types.TypeVec256> (KMOVBk <t> x))
1659 (Cvt16toMask32x16 <t> x) => (VPMOVMToVec32x16 <types.TypeVec512> (KMOVWk <t> x))
1660
1661 (Cvt8toMask64x2 <t> x) => (VPMOVMToVec64x2 <types.TypeVec128> (KMOVBk <t> x))
1662 (Cvt8toMask64x4 <t> x) => (VPMOVMToVec64x4 <types.TypeVec256> (KMOVBk <t> x))
1663 (Cvt8toMask64x8 <t> x) => (VPMOVMToVec64x8 <types.TypeVec512> (KMOVBk <t> x))
1664
1665 // masks to integers
1666 (CvtMask8x16to16 ...) => (VPMOVMSKB128 ...)
1667 (CvtMask8x32to32 ...) => (VPMOVMSKB256 ...)
1668 (CvtMask8x64to64 x) => (KMOVQi (VPMOVVec8x64ToM <types.TypeMask> x))
1669
1670 (CvtMask16x8to8 x) => (KMOVBi (VPMOVVec16x8ToM <types.TypeMask> x))
1671 (CvtMask16x16to16 x) => (KMOVWi (VPMOVVec16x16ToM <types.TypeMask> x))
1672 (CvtMask16x32to32 x) => (KMOVDi (VPMOVVec16x32ToM <types.TypeMask> x))
1673
1674 (CvtMask32x4to8 ...) => (VMOVMSKPS128 ...)
1675 (CvtMask32x8to8 ...) => (VMOVMSKPS256 ...)
1676 (CvtMask32x16to16 x) => (KMOVWi (VPMOVVec32x16ToM <types.TypeMask> x))
1677
1678 (CvtMask64x2to8 ...) => (VMOVMSKPD128 ...)
1679 (CvtMask64x4to8 ...) => (VMOVMSKPD256 ...)
1680 (CvtMask64x8to8 x) => (KMOVBi (VPMOVVec64x8ToM <types.TypeMask> x))
1681
1682 // optimizations
1683 (MOVBstore [off] {sym} ptr (KMOVBi mask) mem) => (KMOVBstore [off] {sym} ptr mask mem)
1684 (MOVWstore [off] {sym} ptr (KMOVWi mask) mem) => (KMOVWstore [off] {sym} ptr mask mem)
1685 (MOVLstore [off] {sym} ptr (KMOVDi mask) mem) => (KMOVDstore [off] {sym} ptr mask mem)
1686 (MOVQstore [off] {sym} ptr (KMOVQi mask) mem) => (KMOVQstore [off] {sym} ptr mask mem)
1687
1688 (KMOVBk l:(MOVBload [off] {sym} ptr mem)) && canMergeLoad(v, l) && clobber(l) => (KMOVBload [off] {sym} ptr mem)
1689 (KMOVWk l:(MOVWload [off] {sym} ptr mem)) && canMergeLoad(v, l) && clobber(l) => (KMOVWload [off] {sym} ptr mem)
1690 (KMOVDk l:(MOVLload [off] {sym} ptr mem)) && canMergeLoad(v, l) && clobber(l) => (KMOVDload [off] {sym} ptr mem)
1691 (KMOVQk l:(MOVQload [off] {sym} ptr mem)) && canMergeLoad(v, l) && clobber(l) => (KMOVQload [off] {sym} ptr mem)
1692
1693 // SIMD vector loads and stores
1694 (Load <t> ptr mem) && t.Size() == 16 => (VMOVDQUload128 ptr mem)
1695 (Store {t} ptr val mem) && t.Size() == 16 => (VMOVDQUstore128 ptr val mem)
1696
1697 (Load <t> ptr mem) && t.Size() == 32 => (VMOVDQUload256 ptr mem)
1698 (Store {t} ptr val mem) && t.Size() == 32 => (VMOVDQUstore256 ptr val mem)
1699
1700 (Load <t> ptr mem) && t.Size() == 64 => (VMOVDQUload512 ptr mem)
1701 (Store {t} ptr val mem) && t.Size() == 64 => (VMOVDQUstore512 ptr val mem)
1702
1703 // SIMD vector integer-vector-masked loads and stores.
1704 (LoadMasked32 <t> ptr mask mem) && t.Size() == 16 => (VPMASK32load128 ptr mask mem)
1705 (LoadMasked32 <t> ptr mask mem) && t.Size() == 32 => (VPMASK32load256 ptr mask mem)
1706 (LoadMasked64 <t> ptr mask mem) && t.Size() == 16 => (VPMASK64load128 ptr mask mem)
1707 (LoadMasked64 <t> ptr mask mem) && t.Size() == 32 => (VPMASK64load256 ptr mask mem)
1708
1709 (StoreMasked32 {t} ptr mask val mem) && t.Size() == 16 => (VPMASK32store128 ptr mask val mem)
1710 (StoreMasked32 {t} ptr mask val mem) && t.Size() == 32 => (VPMASK32store256 ptr mask val mem)
1711 (StoreMasked64 {t} ptr mask val mem) && t.Size() == 16 => (VPMASK64store128 ptr mask val mem)
1712 (StoreMasked64 {t} ptr mask val mem) && t.Size() == 32 => (VPMASK64store256 ptr mask val mem)
1713
1714 // Misc
1715 (IsZeroVec x) => (SETEQ (VPTEST x x))
1716
1717 (IsNaNFloat32x4 x) => (VCMPPS128 [3] x x)
1718 (IsNaNFloat32x8 x) => (VCMPPS256 [3] x x)
1719 (IsNaNFloat32x16 x) => (VPMOVMToVec32x16 (VCMPPS512 [3] x x))
1720 (IsNaNFloat64x2 x) => (VCMPPD128 [3] x x)
1721 (IsNaNFloat64x4 x) => (VCMPPD256 [3] x x)
1722 (IsNaNFloat64x8 x) => (VPMOVMToVec64x8 (VCMPPD512 [3] x x))
1723
1724 // SIMD vector K-masked loads and stores
1725
1726 (LoadMasked64 <t> ptr mask mem) && t.Size() == 64 => (VPMASK64load512 ptr (VPMOVVec64x8ToM <types.TypeMask> mask) mem)
1727 (LoadMasked32 <t> ptr mask mem) && t.Size() == 64 => (VPMASK32load512 ptr (VPMOVVec32x16ToM <types.TypeMask> mask) mem)
1728 (LoadMasked16 <t> ptr mask mem) && t.Size() == 64 => (VPMASK16load512 ptr (VPMOVVec16x32ToM <types.TypeMask> mask) mem)
1729 (LoadMasked8 <t> ptr mask mem) && t.Size() == 64 => (VPMASK8load512 ptr (VPMOVVec8x64ToM <types.TypeMask> mask) mem)
1730
1731 (StoreMasked64 {t} ptr mask val mem) && t.Size() == 64 => (VPMASK64store512 ptr (VPMOVVec64x8ToM <types.TypeMask> mask) val mem)
1732 (StoreMasked32 {t} ptr mask val mem) && t.Size() == 64 => (VPMASK32store512 ptr (VPMOVVec32x16ToM <types.TypeMask> mask) val mem)
1733 (StoreMasked16 {t} ptr mask val mem) && t.Size() == 64 => (VPMASK16store512 ptr (VPMOVVec16x32ToM <types.TypeMask> mask) val mem)
1734 (StoreMasked8 {t} ptr mask val mem) && t.Size() == 64 => (VPMASK8store512 ptr (VPMOVVec8x64ToM <types.TypeMask> mask) val mem)
1735
1736 (ZeroSIMD <t>) && t.Size() == 16 => (Zero128 <t>)
1737 (ZeroSIMD <t>) && t.Size() == 32 => (Zero256 <t>)
1738 (ZeroSIMD <t>) && t.Size() == 64 => (Zero512 <t>)
1739
1740 (VPMOVVec8x16ToM (VPMOVMToVec8x16 x)) => x
1741 (VPMOVVec8x32ToM (VPMOVMToVec8x32 x)) => x
1742 (VPMOVVec8x64ToM (VPMOVMToVec8x64 x)) => x
1743
1744 (VPMOVVec16x8ToM (VPMOVMToVec16x8 x)) => x
1745 (VPMOVVec16x16ToM (VPMOVMToVec16x16 x)) => x
1746 (VPMOVVec16x32ToM (VPMOVMToVec16x32 x)) => x
1747
1748 (VPMOVVec32x4ToM (VPMOVMToVec32x4 x)) => x
1749 (VPMOVVec32x8ToM (VPMOVMToVec32x8 x)) => x
1750 (VPMOVVec32x16ToM (VPMOVMToVec32x16 x)) => x
1751
1752 (VPMOVVec64x2ToM (VPMOVMToVec64x2 x)) => x
1753 (VPMOVVec64x4ToM (VPMOVMToVec64x4 x)) => x
1754 (VPMOVVec64x8ToM (VPMOVMToVec64x8 x)) => x
1755
1756 (VPANDQ512 x (VPMOVMToVec64x8 k)) => (VMOVDQU64Masked512 x k)
1757 (VPANDQ512 x (VPMOVMToVec32x16 k)) => (VMOVDQU32Masked512 x k)
1758 (VPANDQ512 x (VPMOVMToVec16x32 k)) => (VMOVDQU16Masked512 x k)
1759 (VPANDQ512 x (VPMOVMToVec8x64 k)) => (VMOVDQU8Masked512 x k)
1760 (VPANDD512 x (VPMOVMToVec64x8 k)) => (VMOVDQU64Masked512 x k)
1761 (VPANDD512 x (VPMOVMToVec32x16 k)) => (VMOVDQU32Masked512 x k)
1762 (VPANDD512 x (VPMOVMToVec16x32 k)) => (VMOVDQU16Masked512 x k)
1763 (VPANDD512 x (VPMOVMToVec8x64 k)) => (VMOVDQU8Masked512 x k)
1764
1765 (VPAND128 x (VPMOVMToVec8x16 k)) && v.Block.CPUfeatures.hasFeature(CPUavx512) => (VMOVDQU8Masked128 x k)
1766 (VPAND128 x (VPMOVMToVec16x8 k)) && v.Block.CPUfeatures.hasFeature(CPUavx512) => (VMOVDQU16Masked128 x k)
1767 (VPAND128 x (VPMOVMToVec32x4 k)) && v.Block.CPUfeatures.hasFeature(CPUavx512) => (VMOVDQU32Masked128 x k)
1768 (VPAND128 x (VPMOVMToVec64x2 k)) && v.Block.CPUfeatures.hasFeature(CPUavx512) => (VMOVDQU64Masked128 x k)
1769
1770 (VPAND256 x (VPMOVMToVec8x32 k)) && v.Block.CPUfeatures.hasFeature(CPUavx512) => (VMOVDQU8Masked256 x k)
1771 (VPAND256 x (VPMOVMToVec16x16 k)) && v.Block.CPUfeatures.hasFeature(CPUavx512) => (VMOVDQU16Masked256 x k)
1772 (VPAND256 x (VPMOVMToVec32x8 k)) && v.Block.CPUfeatures.hasFeature(CPUavx512) => (VMOVDQU32Masked256 x k)
1773 (VPAND256 x (VPMOVMToVec64x4 k)) && v.Block.CPUfeatures.hasFeature(CPUavx512) => (VMOVDQU64Masked256 x k)
1774
1775 // Insert to zero of 32/64 bit floats and ints to a zero is just MOVS[SD]
1776 (VPINSRQ128 [0] (Zero128 <t>) y) && y.Type.IsFloat() => (VMOVSDf2v <types.TypeVec128> y)
1777 (VPINSRD128 [0] (Zero128 <t>) y) && y.Type.IsFloat() => (VMOVSSf2v <types.TypeVec128> y)
1778 (VPINSRQ128 [0] (Zero128 <t>) y) && !y.Type.IsFloat() => (VMOVQ <types.TypeVec128> y)
1779 (VPINSRD128 [0] (Zero128 <t>) y) && !y.Type.IsFloat() => (VMOVD <types.TypeVec128> y)
1780
1781 // These rewrites can skip zero-extending the 8/16-bit inputs because they are
1782 // only used as the input to a broadcast; the potentially "bad" bits are ignored
1783 (VPBROADCASTB(128|256|512) x:(VPINSRB128 [0] (Zero128 <t>) y)) && x.Uses == 1 =>
1784 (VPBROADCASTB(128|256|512) (VMOVQ <types.TypeVec128> y))
1785 (VPBROADCASTW(128|256|512) x:(VPINSRW128 [0] (Zero128 <t>) y)) && x.Uses == 1 =>
1786 (VPBROADCASTW(128|256|512) (VMOVQ <types.TypeVec128> y))
1787
1788 (VMOVQ x:(MOVQload [off] {sym} ptr mem)) && x.Uses == 1 && clobber(x) => @x.Block (VMOVQload <v.Type> [off] {sym} ptr mem)
1789 (VMOVD x:(MOVLload [off] {sym} ptr mem)) && x.Uses == 1 && clobber(x) => @x.Block (VMOVDload <v.Type> [off] {sym} ptr mem)
1790
1791 (VMOVSDf2v x:(MOVSDload [off] {sym} ptr mem)) && x.Uses == 1 && clobber(x) => @x.Block (VMOVSDload <v.Type> [off] {sym} ptr mem)
1792 (VMOVSSf2v x:(MOVSSload [off] {sym} ptr mem)) && x.Uses == 1 && clobber(x) => @x.Block (VMOVSSload <v.Type> [off] {sym} ptr mem)
1793
1794 (VMOVSDf2v x:(MOVSDconst [c] )) => (VMOVSDconst [c] )
1795 (VMOVSSf2v x:(MOVSSconst [c] )) => (VMOVSSconst [c] )
1796
1797 (VMOVDQUload(128|256|512) [off1] {sym} x:(ADDQconst [off2] ptr) mem) && is32Bit(int64(off1)+int64(off2)) => (VMOVDQUload(128|256|512) [off1+off2] {sym} ptr mem)
1798 (VMOVDQUstore(128|256|512) [off1] {sym} x:(ADDQconst [off2] ptr) val mem) && is32Bit(int64(off1)+int64(off2)) => (VMOVDQUstore(128|256|512) [off1+off2] {sym} ptr val mem)
1799 (VMOVDQUload(128|256|512) [off1] {sym1} x:(LEAQ [off2] {sym2} base) mem) && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) => (VMOVDQUload(128|256|512) [off1+off2] {mergeSym(sym1, sym2)} base mem)
1800 (VMOVDQUstore(128|256|512) [off1] {sym1} x:(LEAQ [off2] {sym2} base) val mem) && is32Bit(int64(off1)+int64(off2)) && canMergeSym(sym1, sym2) => (VMOVDQUstore(128|256|512) [off1+off2] {mergeSym(sym1, sym2)} base val mem)
1801
1802 // 2-op VPTEST optimizations
1803 (SETEQ (VPTEST x:(VPAND(128|256) j k) y)) && x == y && x.Uses == 2 => (SETEQ (VPTEST j k))
1804 (SETEQ (VPTEST x:(VPAND(D|Q)512 j k) y)) && x == y && x.Uses == 2 => (SETEQ (VPTEST j k))
1805 (SETEQ (VPTEST x:(VPANDN(128|256) j k) y)) && x == y && x.Uses == 2 => (SETB (VPTEST k j)) // AndNot has swapped its operand order
1806 (SETEQ (VPTEST x:(VPANDN(D|Q)512 j k) y)) && x == y && x.Uses == 2 => (SETB (VPTEST k j)) // AndNot has swapped its operand order
1807 (EQ (VPTEST x:(VPAND(128|256) j k) y) yes no) && x == y && x.Uses == 2 => (EQ (VPTEST j k) yes no)
1808 (EQ (VPTEST x:(VPAND(D|Q)512 j k) y) yes no) && x == y && x.Uses == 2 => (EQ (VPTEST j k) yes no)
1809 (EQ (VPTEST x:(VPANDN(128|256) j k) y) yes no) && x == y && x.Uses == 2 => (ULT (VPTEST k j) yes no) // AndNot has swapped its operand order
1810 (EQ (VPTEST x:(VPANDN(D|Q)512 j k) y) yes no) && x == y && x.Uses == 2 => (ULT (VPTEST k j) yes no) // AndNot has swapped its operand order
1811
1812 // optimize x.IsNaN().Or(y.IsNaN())
1813 (VPOR128 (VCMPP(S|D)128 [3] x x) (VCMPP(S|D)128 [3] y y)) => (VCMPP(S|D)128 [3] x y)
1814 (VPOR256 (VCMPP(S|D)256 [3] x x) (VCMPP(S|D)256 [3] y y)) => (VCMPP(S|D)256 [3] x y)
1815 (VPORD512 (VPMOVMToVec32x16 (VCMPPS512 [3] x x)) (VPMOVMToVec32x16 (VCMPPS512 [3] y y))) =>
1816 (VPMOVMToVec32x16 (VCMPPS512 [3] x y))
1817 (VPORD512 (VPMOVMToVec64x8 (VCMPPD512 [3] x x)) (VPMOVMToVec64x8 (VCMPPD512 [3] y y))) =>
1818 (VPMOVMToVec64x8 (VCMPPD512 [3] x y))
1819
View as plain text