8ec221ea6adc108430beeb3aa0a50e1f416afc57
[oota-llvm.git] / lib / Target / X86 / X86InstrSSE.td
1 //====- X86InstrSSE.td - Describe the X86 Instruction Set --*- tablegen -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file describes the X86 SSE instruction set, defining the instructions,
11 // and properties of the instructions which are needed for code generation,
12 // machine code emission, and analysis.
13 //
14 //===----------------------------------------------------------------------===//
15
16
17 //===----------------------------------------------------------------------===//
18 // SSE 1 & 2 Instructions Classes
19 //===----------------------------------------------------------------------===//
20
21 /// sse12_fp_scalar - SSE 1 & 2 scalar instructions class
22 multiclass sse12_fp_scalar<bits<8> opc, string OpcodeStr, SDNode OpNode,
23                            RegisterClass RC, X86MemOperand x86memop,
24                            bit Is2Addr = 1> {
25   let isCommutable = 1 in {
26     def rr : SI<opc, MRMSrcReg, (outs RC:$dst), (ins RC:$src1, RC:$src2),
27        !if(Is2Addr,
28            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
29            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
30        [(set RC:$dst, (OpNode RC:$src1, RC:$src2))]>;
31   }
32   def rm : SI<opc, MRMSrcMem, (outs RC:$dst), (ins RC:$src1, x86memop:$src2),
33        !if(Is2Addr,
34            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
35            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
36        [(set RC:$dst, (OpNode RC:$src1, (load addr:$src2)))]>;
37 }
38
39 /// sse12_fp_scalar_int - SSE 1 & 2 scalar instructions intrinsics class
40 multiclass sse12_fp_scalar_int<bits<8> opc, string OpcodeStr, RegisterClass RC,
41                              string asm, string SSEVer, string FPSizeStr,
42                              Operand memopr, ComplexPattern mem_cpat,
43                              bit Is2Addr = 1> {
44   def rr_Int : SI<opc, MRMSrcReg, (outs RC:$dst), (ins RC:$src1, RC:$src2),
45        !if(Is2Addr,
46            !strconcat(asm, "\t{$src2, $dst|$dst, $src2}"),
47            !strconcat(asm, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
48        [(set RC:$dst, (!nameconcat<Intrinsic>("int_x86_sse",
49                        !strconcat(SSEVer, !strconcat("_",
50                        !strconcat(OpcodeStr, FPSizeStr))))
51              RC:$src1, RC:$src2))]>;
52   def rm_Int : SI<opc, MRMSrcMem, (outs RC:$dst), (ins RC:$src1, memopr:$src2),
53        !if(Is2Addr,
54            !strconcat(asm, "\t{$src2, $dst|$dst, $src2}"),
55            !strconcat(asm, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
56        [(set RC:$dst, (!nameconcat<Intrinsic>("int_x86_sse",
57                        !strconcat(SSEVer, !strconcat("_",
58                        !strconcat(OpcodeStr, FPSizeStr))))
59              RC:$src1, mem_cpat:$src2))]>;
60 }
61
62 /// sse12_fp_packed - SSE 1 & 2 packed instructions class
63 multiclass sse12_fp_packed<bits<8> opc, string OpcodeStr, SDNode OpNode,
64                            RegisterClass RC, ValueType vt,
65                            X86MemOperand x86memop, PatFrag mem_frag,
66                            Domain d, bit Is2Addr = 1> {
67   let isCommutable = 1 in
68     def rr : PI<opc, MRMSrcReg, (outs RC:$dst), (ins RC:$src1, RC:$src2),
69        !if(Is2Addr,
70            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
71            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
72        [(set RC:$dst, (vt (OpNode RC:$src1, RC:$src2)))], d>;
73   let mayLoad = 1 in
74     def rm : PI<opc, MRMSrcMem, (outs RC:$dst), (ins RC:$src1, x86memop:$src2),
75        !if(Is2Addr,
76            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
77            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
78        [(set RC:$dst, (OpNode RC:$src1, (mem_frag addr:$src2)))], d>;
79 }
80
81 /// sse12_fp_packed_logical_rm - SSE 1 & 2 packed instructions class
82 multiclass sse12_fp_packed_logical_rm<bits<8> opc, RegisterClass RC, Domain d,
83                                       string OpcodeStr, X86MemOperand x86memop,
84                                       list<dag> pat_rr, list<dag> pat_rm,
85                                       bit Is2Addr = 1> {
86   let isCommutable = 1 in
87     def rr : PI<opc, MRMSrcReg, (outs RC:$dst), (ins RC:$src1, RC:$src2),
88        !if(Is2Addr,
89            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
90            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
91        pat_rr, d>;
92   def rm : PI<opc, MRMSrcMem, (outs RC:$dst), (ins RC:$src1, x86memop:$src2),
93        !if(Is2Addr,
94            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
95            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
96        pat_rm, d>;
97 }
98
99 /// sse12_fp_packed_int - SSE 1 & 2 packed instructions intrinsics class
100 multiclass sse12_fp_packed_int<bits<8> opc, string OpcodeStr, RegisterClass RC,
101                            string asm, string SSEVer, string FPSizeStr,
102                            X86MemOperand x86memop, PatFrag mem_frag,
103                            Domain d, bit Is2Addr = 1> {
104   def rr_Int : PI<opc, MRMSrcReg, (outs RC:$dst), (ins RC:$src1, RC:$src2),
105        !if(Is2Addr,
106            !strconcat(asm, "\t{$src2, $dst|$dst, $src2}"),
107            !strconcat(asm, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
108            [(set RC:$dst, (!nameconcat<Intrinsic>("int_x86_",
109                            !strconcat(SSEVer, !strconcat("_",
110                            !strconcat(OpcodeStr, FPSizeStr))))
111                  RC:$src1, RC:$src2))], d>;
112   def rm_Int : PI<opc, MRMSrcMem, (outs RC:$dst), (ins RC:$src1,x86memop:$src2),
113        !if(Is2Addr,
114            !strconcat(asm, "\t{$src2, $dst|$dst, $src2}"),
115            !strconcat(asm, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
116        [(set RC:$dst, (!nameconcat<Intrinsic>("int_x86_",
117                        !strconcat(SSEVer, !strconcat("_",
118                        !strconcat(OpcodeStr, FPSizeStr))))
119              RC:$src1, (mem_frag addr:$src2)))], d>;
120 }
121
122 //===----------------------------------------------------------------------===//
123 // SSE 1 & 2 - Move Instructions
124 //===----------------------------------------------------------------------===//
125
126 class sse12_move_rr<RegisterClass RC, ValueType vt, string asm> :
127       SI<0x10, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src1, RC:$src2), asm,
128       [(set (vt VR128:$dst), (movl VR128:$src1, (scalar_to_vector RC:$src2)))]>;
129
130 // Loading from memory automatically zeroing upper bits.
131 class sse12_move_rm<RegisterClass RC, X86MemOperand x86memop,
132                     PatFrag mem_pat, string OpcodeStr> :
133       SI<0x10, MRMSrcMem, (outs RC:$dst), (ins x86memop:$src),
134          !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"),
135                         [(set RC:$dst, (mem_pat addr:$src))]>;
136
137 // Move Instructions. Register-to-register movss/movsd is not used for FR32/64
138 // register copies because it's a partial register update; FsMOVAPSrr/FsMOVAPDrr
139 // is used instead. Register-to-register movss/movsd is not modeled as an
140 // INSERT_SUBREG because INSERT_SUBREG requires that the insert be implementable
141 // in terms of a copy, and just mentioned, we don't use movss/movsd for copies.
142 let isAsmParserOnly = 1 in {
143   def VMOVSSrr : sse12_move_rr<FR32, v4f32,
144                   "movss\t{$src2, $src1, $dst|$dst, $src1, $src2}">, XS, VEX_4V;
145   def VMOVSDrr : sse12_move_rr<FR64, v2f64,
146                   "movsd\t{$src2, $src1, $dst|$dst, $src1, $src2}">, XD, VEX_4V;
147
148   let canFoldAsLoad = 1, isReMaterializable = 1 in {
149     def VMOVSSrm : sse12_move_rm<FR32, f32mem, loadf32, "movss">, XS, VEX;
150
151     let AddedComplexity = 20 in
152       def VMOVSDrm : sse12_move_rm<FR64, f64mem, loadf64, "movsd">, XD, VEX;
153   }
154 }
155
156 let Constraints = "$src1 = $dst" in {
157   def MOVSSrr : sse12_move_rr<FR32, v4f32,
158                           "movss\t{$src2, $dst|$dst, $src2}">, XS;
159   def MOVSDrr : sse12_move_rr<FR64, v2f64,
160                           "movsd\t{$src2, $dst|$dst, $src2}">, XD;
161 }
162
163 let canFoldAsLoad = 1, isReMaterializable = 1 in {
164   def MOVSSrm : sse12_move_rm<FR32, f32mem, loadf32, "movss">, XS;
165
166   let AddedComplexity = 20 in
167     def MOVSDrm : sse12_move_rm<FR64, f64mem, loadf64, "movsd">, XD;
168 }
169
170 let AddedComplexity = 15 in {
171 // Extract the low 32-bit value from one vector and insert it into another.
172 def : Pat<(v4f32 (movl VR128:$src1, VR128:$src2)),
173           (MOVSSrr (v4f32 VR128:$src1),
174                    (EXTRACT_SUBREG (v4f32 VR128:$src2), sub_ss))>;
175 // Extract the low 64-bit value from one vector and insert it into another.
176 def : Pat<(v2f64 (movl VR128:$src1, VR128:$src2)),
177           (MOVSDrr (v2f64 VR128:$src1),
178                    (EXTRACT_SUBREG (v2f64 VR128:$src2), sub_sd))>;
179 }
180
181 // Implicitly promote a 32-bit scalar to a vector.
182 def : Pat<(v4f32 (scalar_to_vector FR32:$src)),
183           (INSERT_SUBREG (v4f32 (IMPLICIT_DEF)), FR32:$src, sub_ss)>;
184 // Implicitly promote a 64-bit scalar to a vector.
185 def : Pat<(v2f64 (scalar_to_vector FR64:$src)),
186           (INSERT_SUBREG (v2f64 (IMPLICIT_DEF)), FR64:$src, sub_sd)>;
187
188 let AddedComplexity = 20 in {
189 // MOVSSrm zeros the high parts of the register; represent this
190 // with SUBREG_TO_REG.
191 def : Pat<(v4f32 (X86vzmovl (v4f32 (scalar_to_vector (loadf32 addr:$src))))),
192           (SUBREG_TO_REG (i32 0), (MOVSSrm addr:$src), sub_ss)>;
193 def : Pat<(v4f32 (scalar_to_vector (loadf32 addr:$src))),
194           (SUBREG_TO_REG (i32 0), (MOVSSrm addr:$src), sub_ss)>;
195 def : Pat<(v4f32 (X86vzmovl (loadv4f32 addr:$src))),
196           (SUBREG_TO_REG (i32 0), (MOVSSrm addr:$src), sub_ss)>;
197 // MOVSDrm zeros the high parts of the register; represent this
198 // with SUBREG_TO_REG.
199 def : Pat<(v2f64 (X86vzmovl (v2f64 (scalar_to_vector (loadf64 addr:$src))))),
200           (SUBREG_TO_REG (i64 0), (MOVSDrm addr:$src), sub_sd)>;
201 def : Pat<(v2f64 (scalar_to_vector (loadf64 addr:$src))),
202           (SUBREG_TO_REG (i64 0), (MOVSDrm addr:$src), sub_sd)>;
203 def : Pat<(v2f64 (X86vzmovl (loadv2f64 addr:$src))),
204           (SUBREG_TO_REG (i64 0), (MOVSDrm addr:$src), sub_sd)>;
205 def : Pat<(v2f64 (X86vzmovl (bc_v2f64 (loadv4f32 addr:$src)))),
206           (SUBREG_TO_REG (i64 0), (MOVSDrm addr:$src), sub_sd)>;
207 def : Pat<(v2f64 (X86vzload addr:$src)),
208           (SUBREG_TO_REG (i64 0), (MOVSDrm addr:$src), sub_sd)>;
209 }
210
211 // Store scalar value to memory.
212 def MOVSSmr : SSI<0x11, MRMDestMem, (outs), (ins f32mem:$dst, FR32:$src),
213                   "movss\t{$src, $dst|$dst, $src}",
214                   [(store FR32:$src, addr:$dst)]>;
215 def MOVSDmr : SDI<0x11, MRMDestMem, (outs), (ins f64mem:$dst, FR64:$src),
216                   "movsd\t{$src, $dst|$dst, $src}",
217                   [(store FR64:$src, addr:$dst)]>;
218
219 let isAsmParserOnly = 1 in {
220 def VMOVSSmr : SI<0x11, MRMDestMem, (outs), (ins f32mem:$dst, FR32:$src),
221                   "movss\t{$src, $dst|$dst, $src}",
222                   [(store FR32:$src, addr:$dst)]>, XS, VEX;
223 def VMOVSDmr : SI<0x11, MRMDestMem, (outs), (ins f64mem:$dst, FR64:$src),
224                   "movsd\t{$src, $dst|$dst, $src}",
225                   [(store FR64:$src, addr:$dst)]>, XD, VEX;
226 }
227
228 // Extract and store.
229 def : Pat<(store (f32 (vector_extract (v4f32 VR128:$src), (iPTR 0))),
230                  addr:$dst),
231           (MOVSSmr addr:$dst,
232                    (EXTRACT_SUBREG (v4f32 VR128:$src), sub_ss))>;
233 def : Pat<(store (f64 (vector_extract (v2f64 VR128:$src), (iPTR 0))),
234                  addr:$dst),
235           (MOVSDmr addr:$dst,
236                    (EXTRACT_SUBREG (v2f64 VR128:$src), sub_sd))>;
237
238 // Move Aligned/Unaligned floating point values
239 multiclass sse12_mov_packed<bits<8> opc, RegisterClass RC,
240                             X86MemOperand x86memop, PatFrag ld_frag,
241                             string asm, Domain d,
242                             bit IsReMaterializable = 1> {
243 let neverHasSideEffects = 1 in
244   def rr : PI<opc, MRMSrcReg, (outs RC:$dst), (ins RC:$src),
245               !strconcat(asm, "\t{$src, $dst|$dst, $src}"), [], d>;
246 let canFoldAsLoad = 1, isReMaterializable = IsReMaterializable in
247   def rm : PI<opc, MRMSrcMem, (outs RC:$dst), (ins x86memop:$src),
248               !strconcat(asm, "\t{$src, $dst|$dst, $src}"),
249                    [(set RC:$dst, (ld_frag addr:$src))], d>;
250 }
251
252 let isAsmParserOnly = 1 in {
253 defm VMOVAPS : sse12_mov_packed<0x28, VR128, f128mem, alignedloadv4f32,
254                               "movaps", SSEPackedSingle>, VEX;
255 defm VMOVAPD : sse12_mov_packed<0x28, VR128, f128mem, alignedloadv2f64,
256                               "movapd", SSEPackedDouble>, OpSize, VEX;
257 defm VMOVUPS : sse12_mov_packed<0x10, VR128, f128mem, loadv4f32,
258                               "movups", SSEPackedSingle>, VEX;
259 defm VMOVUPD : sse12_mov_packed<0x10, VR128, f128mem, loadv2f64,
260                               "movupd", SSEPackedDouble, 0>, OpSize, VEX;
261
262 defm VMOVAPSY : sse12_mov_packed<0x28, VR256, f256mem, alignedloadv8f32,
263                               "movaps", SSEPackedSingle>, VEX;
264 defm VMOVAPDY : sse12_mov_packed<0x28, VR256, f256mem, alignedloadv4f64,
265                               "movapd", SSEPackedDouble>, OpSize, VEX;
266 defm VMOVUPSY : sse12_mov_packed<0x10, VR256, f256mem, loadv8f32,
267                               "movups", SSEPackedSingle>, VEX;
268 defm VMOVUPDY : sse12_mov_packed<0x10, VR256, f256mem, loadv4f64,
269                               "movupd", SSEPackedDouble, 0>, OpSize, VEX;
270 }
271 defm MOVAPS : sse12_mov_packed<0x28, VR128, f128mem, alignedloadv4f32,
272                               "movaps", SSEPackedSingle>, TB;
273 defm MOVAPD : sse12_mov_packed<0x28, VR128, f128mem, alignedloadv2f64,
274                               "movapd", SSEPackedDouble>, TB, OpSize;
275 defm MOVUPS : sse12_mov_packed<0x10, VR128, f128mem, loadv4f32,
276                               "movups", SSEPackedSingle>, TB;
277 defm MOVUPD : sse12_mov_packed<0x10, VR128, f128mem, loadv2f64,
278                               "movupd", SSEPackedDouble, 0>, TB, OpSize;
279
280 let isAsmParserOnly = 1 in {
281 def VMOVAPSmr : VPSI<0x29, MRMDestMem, (outs), (ins f128mem:$dst, VR128:$src),
282                    "movaps\t{$src, $dst|$dst, $src}",
283                    [(alignedstore (v4f32 VR128:$src), addr:$dst)]>, VEX;
284 def VMOVAPDmr : VPDI<0x29, MRMDestMem, (outs), (ins f128mem:$dst, VR128:$src),
285                    "movapd\t{$src, $dst|$dst, $src}",
286                    [(alignedstore (v2f64 VR128:$src), addr:$dst)]>, VEX;
287 def VMOVUPSmr : VPSI<0x11, MRMDestMem, (outs), (ins f128mem:$dst, VR128:$src),
288                    "movups\t{$src, $dst|$dst, $src}",
289                    [(store (v4f32 VR128:$src), addr:$dst)]>, VEX;
290 def VMOVUPDmr : VPDI<0x11, MRMDestMem, (outs), (ins f128mem:$dst, VR128:$src),
291                    "movupd\t{$src, $dst|$dst, $src}",
292                    [(store (v2f64 VR128:$src), addr:$dst)]>, VEX;
293 def VMOVAPSYmr : VPSI<0x29, MRMDestMem, (outs), (ins f256mem:$dst, VR256:$src),
294                    "movaps\t{$src, $dst|$dst, $src}",
295                    [(alignedstore (v8f32 VR256:$src), addr:$dst)]>, VEX;
296 def VMOVAPDYmr : VPDI<0x29, MRMDestMem, (outs), (ins f256mem:$dst, VR256:$src),
297                    "movapd\t{$src, $dst|$dst, $src}",
298                    [(alignedstore (v4f64 VR256:$src), addr:$dst)]>, VEX;
299 def VMOVUPSYmr : VPSI<0x11, MRMDestMem, (outs), (ins f256mem:$dst, VR256:$src),
300                    "movups\t{$src, $dst|$dst, $src}",
301                    [(store (v8f32 VR256:$src), addr:$dst)]>, VEX;
302 def VMOVUPDYmr : VPDI<0x11, MRMDestMem, (outs), (ins f256mem:$dst, VR256:$src),
303                    "movupd\t{$src, $dst|$dst, $src}",
304                    [(store (v4f64 VR256:$src), addr:$dst)]>, VEX;
305 }
306
307 def : Pat<(int_x86_avx_loadu_ps_256 addr:$src), (VMOVUPSYrm addr:$src)>;
308 def : Pat<(int_x86_avx_storeu_ps_256 addr:$dst, VR256:$src),
309           (VMOVUPSYmr addr:$dst, VR256:$src)>;
310
311 def : Pat<(int_x86_avx_loadu_pd_256 addr:$src), (VMOVUPDYrm addr:$src)>;
312 def : Pat<(int_x86_avx_storeu_pd_256 addr:$dst, VR256:$src),
313           (VMOVUPDYmr addr:$dst, VR256:$src)>;
314
315 def MOVAPSmr : PSI<0x29, MRMDestMem, (outs), (ins f128mem:$dst, VR128:$src),
316                    "movaps\t{$src, $dst|$dst, $src}",
317                    [(alignedstore (v4f32 VR128:$src), addr:$dst)]>;
318 def MOVAPDmr : PDI<0x29, MRMDestMem, (outs), (ins f128mem:$dst, VR128:$src),
319                    "movapd\t{$src, $dst|$dst, $src}",
320                    [(alignedstore (v2f64 VR128:$src), addr:$dst)]>;
321 def MOVUPSmr : PSI<0x11, MRMDestMem, (outs), (ins f128mem:$dst, VR128:$src),
322                    "movups\t{$src, $dst|$dst, $src}",
323                    [(store (v4f32 VR128:$src), addr:$dst)]>;
324 def MOVUPDmr : PDI<0x11, MRMDestMem, (outs), (ins f128mem:$dst, VR128:$src),
325                    "movupd\t{$src, $dst|$dst, $src}",
326                    [(store (v2f64 VR128:$src), addr:$dst)]>;
327
328 // Intrinsic forms of MOVUPS/D load and store
329 let isAsmParserOnly = 1 in {
330   let canFoldAsLoad = 1, isReMaterializable = 1 in
331   def VMOVUPSrm_Int : VPSI<0x10, MRMSrcMem, (outs VR128:$dst),
332              (ins f128mem:$src),
333              "movups\t{$src, $dst|$dst, $src}",
334              [(set VR128:$dst, (int_x86_sse_loadu_ps addr:$src))]>, VEX;
335   def VMOVUPDrm_Int : VPDI<0x10, MRMSrcMem, (outs VR128:$dst),
336              (ins f128mem:$src),
337              "movupd\t{$src, $dst|$dst, $src}",
338              [(set VR128:$dst, (int_x86_sse2_loadu_pd addr:$src))]>, VEX;
339   def VMOVUPSmr_Int : VPSI<0x11, MRMDestMem, (outs),
340              (ins f128mem:$dst, VR128:$src),
341              "movups\t{$src, $dst|$dst, $src}",
342              [(int_x86_sse_storeu_ps addr:$dst, VR128:$src)]>, VEX;
343   def VMOVUPDmr_Int : VPDI<0x11, MRMDestMem, (outs),
344              (ins f128mem:$dst, VR128:$src),
345              "movupd\t{$src, $dst|$dst, $src}",
346              [(int_x86_sse2_storeu_pd addr:$dst, VR128:$src)]>, VEX;
347 }
348 let canFoldAsLoad = 1, isReMaterializable = 1 in
349 def MOVUPSrm_Int : PSI<0x10, MRMSrcMem, (outs VR128:$dst), (ins f128mem:$src),
350                        "movups\t{$src, $dst|$dst, $src}",
351                        [(set VR128:$dst, (int_x86_sse_loadu_ps addr:$src))]>;
352 def MOVUPDrm_Int : PDI<0x10, MRMSrcMem, (outs VR128:$dst), (ins f128mem:$src),
353                        "movupd\t{$src, $dst|$dst, $src}",
354                        [(set VR128:$dst, (int_x86_sse2_loadu_pd addr:$src))]>;
355
356 def MOVUPSmr_Int : PSI<0x11, MRMDestMem, (outs), (ins f128mem:$dst, VR128:$src),
357                        "movups\t{$src, $dst|$dst, $src}",
358                        [(int_x86_sse_storeu_ps addr:$dst, VR128:$src)]>;
359 def MOVUPDmr_Int : PDI<0x11, MRMDestMem, (outs), (ins f128mem:$dst, VR128:$src),
360                        "movupd\t{$src, $dst|$dst, $src}",
361                        [(int_x86_sse2_storeu_pd addr:$dst, VR128:$src)]>;
362
363 // Move Low/High packed floating point values
364 multiclass sse12_mov_hilo_packed<bits<8>opc, RegisterClass RC,
365                                  PatFrag mov_frag, string base_opc,
366                                  string asm_opr> {
367   def PSrm : PI<opc, MRMSrcMem,
368          (outs VR128:$dst), (ins VR128:$src1, f64mem:$src2),
369          !strconcat(!strconcat(base_opc,"s"), asm_opr),
370      [(set RC:$dst,
371        (mov_frag RC:$src1,
372               (bc_v4f32 (v2f64 (scalar_to_vector (loadf64 addr:$src2))))))],
373               SSEPackedSingle>, TB;
374
375   def PDrm : PI<opc, MRMSrcMem,
376          (outs RC:$dst), (ins RC:$src1, f64mem:$src2),
377          !strconcat(!strconcat(base_opc,"d"), asm_opr),
378      [(set RC:$dst, (v2f64 (mov_frag RC:$src1,
379                               (scalar_to_vector (loadf64 addr:$src2)))))],
380               SSEPackedDouble>, TB, OpSize;
381 }
382
383 let isAsmParserOnly = 1, AddedComplexity = 20 in {
384   defm VMOVL : sse12_mov_hilo_packed<0x12, VR128, movlp, "movlp",
385                      "\t{$src2, $src1, $dst|$dst, $src1, $src2}">, VEX_4V;
386   defm VMOVH : sse12_mov_hilo_packed<0x16, VR128, movlhps, "movhp",
387                      "\t{$src2, $src1, $dst|$dst, $src1, $src2}">, VEX_4V;
388 }
389 let Constraints = "$src1 = $dst", AddedComplexity = 20 in {
390   defm MOVL : sse12_mov_hilo_packed<0x12, VR128, movlp, "movlp",
391                                    "\t{$src2, $dst|$dst, $src2}">;
392   defm MOVH : sse12_mov_hilo_packed<0x16, VR128, movlhps, "movhp",
393                                    "\t{$src2, $dst|$dst, $src2}">;
394 }
395
396 let isAsmParserOnly = 1 in {
397 def VMOVLPSmr : VPSI<0x13, MRMDestMem, (outs), (ins f64mem:$dst, VR128:$src),
398                    "movlps\t{$src, $dst|$dst, $src}",
399                    [(store (f64 (vector_extract (bc_v2f64 (v4f32 VR128:$src)),
400                                  (iPTR 0))), addr:$dst)]>, VEX;
401 def VMOVLPDmr : VPDI<0x13, MRMDestMem, (outs), (ins f64mem:$dst, VR128:$src),
402                    "movlpd\t{$src, $dst|$dst, $src}",
403                    [(store (f64 (vector_extract (v2f64 VR128:$src),
404                                  (iPTR 0))), addr:$dst)]>, VEX;
405 }
406 def MOVLPSmr : PSI<0x13, MRMDestMem, (outs), (ins f64mem:$dst, VR128:$src),
407                    "movlps\t{$src, $dst|$dst, $src}",
408                    [(store (f64 (vector_extract (bc_v2f64 (v4f32 VR128:$src)),
409                                  (iPTR 0))), addr:$dst)]>;
410 def MOVLPDmr : PDI<0x13, MRMDestMem, (outs), (ins f64mem:$dst, VR128:$src),
411                    "movlpd\t{$src, $dst|$dst, $src}",
412                    [(store (f64 (vector_extract (v2f64 VR128:$src),
413                                  (iPTR 0))), addr:$dst)]>;
414
415 // v2f64 extract element 1 is always custom lowered to unpack high to low
416 // and extract element 0 so the non-store version isn't too horrible.
417 let isAsmParserOnly = 1 in {
418 def VMOVHPSmr : VPSI<0x17, MRMDestMem, (outs), (ins f64mem:$dst, VR128:$src),
419                    "movhps\t{$src, $dst|$dst, $src}",
420                    [(store (f64 (vector_extract
421                                  (unpckh (bc_v2f64 (v4f32 VR128:$src)),
422                                          (undef)), (iPTR 0))), addr:$dst)]>,
423                    VEX;
424 def VMOVHPDmr : VPDI<0x17, MRMDestMem, (outs), (ins f64mem:$dst, VR128:$src),
425                    "movhpd\t{$src, $dst|$dst, $src}",
426                    [(store (f64 (vector_extract
427                                  (v2f64 (unpckh VR128:$src, (undef))),
428                                  (iPTR 0))), addr:$dst)]>,
429                    VEX;
430 }
431 def MOVHPSmr : PSI<0x17, MRMDestMem, (outs), (ins f64mem:$dst, VR128:$src),
432                    "movhps\t{$src, $dst|$dst, $src}",
433                    [(store (f64 (vector_extract
434                                  (unpckh (bc_v2f64 (v4f32 VR128:$src)),
435                                          (undef)), (iPTR 0))), addr:$dst)]>;
436 def MOVHPDmr : PDI<0x17, MRMDestMem, (outs), (ins f64mem:$dst, VR128:$src),
437                    "movhpd\t{$src, $dst|$dst, $src}",
438                    [(store (f64 (vector_extract
439                                  (v2f64 (unpckh VR128:$src, (undef))),
440                                  (iPTR 0))), addr:$dst)]>;
441
442 let isAsmParserOnly = 1, AddedComplexity = 20 in {
443   def VMOVLHPSrr : VPSI<0x16, MRMSrcReg, (outs VR128:$dst),
444                                        (ins VR128:$src1, VR128:$src2),
445                       "movlhps\t{$src2, $src1, $dst|$dst, $src1, $src2}",
446                       [(set VR128:$dst,
447                         (v4f32 (movlhps VR128:$src1, VR128:$src2)))]>,
448                       VEX_4V;
449   def VMOVHLPSrr : VPSI<0x12, MRMSrcReg, (outs VR128:$dst),
450                                        (ins VR128:$src1, VR128:$src2),
451                       "movhlps\t{$src2, $src1, $dst|$dst, $src1, $src2}",
452                       [(set VR128:$dst,
453                         (v4f32 (movhlps VR128:$src1, VR128:$src2)))]>,
454                       VEX_4V;
455 }
456 let Constraints = "$src1 = $dst", AddedComplexity = 20 in {
457   def MOVLHPSrr : PSI<0x16, MRMSrcReg, (outs VR128:$dst),
458                                        (ins VR128:$src1, VR128:$src2),
459                       "movlhps\t{$src2, $dst|$dst, $src2}",
460                       [(set VR128:$dst,
461                         (v4f32 (movlhps VR128:$src1, VR128:$src2)))]>;
462   def MOVHLPSrr : PSI<0x12, MRMSrcReg, (outs VR128:$dst),
463                                        (ins VR128:$src1, VR128:$src2),
464                       "movhlps\t{$src2, $dst|$dst, $src2}",
465                       [(set VR128:$dst,
466                         (v4f32 (movhlps VR128:$src1, VR128:$src2)))]>;
467 }
468
469 def : Pat<(movlhps VR128:$src1, (bc_v4i32 (v2i64 (X86vzload addr:$src2)))),
470           (MOVHPSrm (v4i32 VR128:$src1), addr:$src2)>;
471 let AddedComplexity = 20 in {
472   def : Pat<(v4f32 (movddup VR128:$src, (undef))),
473             (MOVLHPSrr (v4f32 VR128:$src), (v4f32 VR128:$src))>;
474   def : Pat<(v2i64 (movddup VR128:$src, (undef))),
475             (MOVLHPSrr (v2i64 VR128:$src), (v2i64 VR128:$src))>;
476 }
477
478 //===----------------------------------------------------------------------===//
479 // SSE 1 & 2 - Conversion Instructions
480 //===----------------------------------------------------------------------===//
481
482 multiclass sse12_cvt_s<bits<8> opc, RegisterClass SrcRC, RegisterClass DstRC,
483                      SDNode OpNode, X86MemOperand x86memop, PatFrag ld_frag,
484                      string asm> {
485   def rr : SI<opc, MRMSrcReg, (outs DstRC:$dst), (ins SrcRC:$src), asm,
486                         [(set DstRC:$dst, (OpNode SrcRC:$src))]>;
487   def rm : SI<opc, MRMSrcMem, (outs DstRC:$dst), (ins x86memop:$src), asm,
488                         [(set DstRC:$dst, (OpNode (ld_frag addr:$src)))]>;
489 }
490
491 multiclass sse12_cvt_s_np<bits<8> opc, RegisterClass SrcRC, RegisterClass DstRC,
492                           X86MemOperand x86memop, string asm> {
493   def rr : SI<opc, MRMSrcReg, (outs DstRC:$dst), (ins SrcRC:$src), asm,
494                         []>;
495   def rm : SI<opc, MRMSrcMem, (outs DstRC:$dst), (ins x86memop:$src), asm,
496                         []>;
497 }
498
499 multiclass sse12_cvt_p<bits<8> opc, RegisterClass SrcRC, RegisterClass DstRC,
500                          SDNode OpNode, X86MemOperand x86memop, PatFrag ld_frag,
501                          string asm, Domain d> {
502   def rr : PI<opc, MRMSrcReg, (outs DstRC:$dst), (ins SrcRC:$src), asm,
503                         [(set DstRC:$dst, (OpNode SrcRC:$src))], d>;
504   def rm : PI<opc, MRMSrcMem, (outs DstRC:$dst), (ins x86memop:$src), asm,
505                         [(set DstRC:$dst, (OpNode (ld_frag addr:$src)))], d>;
506 }
507
508 multiclass sse12_vcvt_avx<bits<8> opc, RegisterClass SrcRC, RegisterClass DstRC,
509                           X86MemOperand x86memop, string asm> {
510   def rr : SI<opc, MRMSrcReg, (outs DstRC:$dst), (ins DstRC:$src1, SrcRC:$src),
511               !strconcat(asm,"\t{$src, $src1, $dst|$dst, $src1, $src}"), []>;
512   def rm : SI<opc, MRMSrcMem, (outs DstRC:$dst),
513               (ins DstRC:$src1, x86memop:$src),
514               !strconcat(asm,"\t{$src, $src1, $dst|$dst, $src1, $src}"), []>;
515 }
516
517 let isAsmParserOnly = 1 in {
518 defm VCVTTSS2SI   : sse12_cvt_s<0x2C, FR32, GR32, fp_to_sint, f32mem, loadf32,
519                                 "cvttss2si\t{$src, $dst|$dst, $src}">, XS, VEX;
520 defm VCVTTSS2SI64 : sse12_cvt_s<0x2C, FR32, GR64, fp_to_sint, f32mem, loadf32,
521                                 "cvttss2si\t{$src, $dst|$dst, $src}">, XS, VEX,
522                                 VEX_W;
523 defm VCVTTSD2SI   : sse12_cvt_s<0x2C, FR64, GR32, fp_to_sint, f64mem, loadf64,
524                                 "cvttsd2si\t{$src, $dst|$dst, $src}">, XD, VEX;
525 defm VCVTTSD2SI64 : sse12_cvt_s<0x2C, FR64, GR64, fp_to_sint, f64mem, loadf64,
526                                 "cvttsd2si\t{$src, $dst|$dst, $src}">, XD,
527                                 VEX, VEX_W;
528
529 // The assembler can recognize rr 64-bit instructions by seeing a rxx
530 // register, but the same isn't true when only using memory operands,
531 // provide other assembly "l" and "q" forms to address this explicitly
532 // where appropriate to do so.
533 defm VCVTSI2SS   : sse12_vcvt_avx<0x2A, GR32, FR32, i32mem, "cvtsi2ss">, XS,
534                                   VEX_4V;
535 defm VCVTSI2SS64 : sse12_vcvt_avx<0x2A, GR64, FR32, i64mem, "cvtsi2ss{q}">, XS,
536                                   VEX_4V, VEX_W;
537 defm VCVTSI2SD   : sse12_vcvt_avx<0x2A, GR32, FR64, i32mem, "cvtsi2sd">, XD,
538                                   VEX_4V;
539 defm VCVTSI2SDL  : sse12_vcvt_avx<0x2A, GR32, FR64, i32mem, "cvtsi2sd{l}">, XD,
540                                   VEX_4V;
541 defm VCVTSI2SD64 : sse12_vcvt_avx<0x2A, GR64, FR64, i64mem, "cvtsi2sd{q}">, XD,
542                                   VEX_4V, VEX_W;
543 }
544
545 defm CVTTSS2SI : sse12_cvt_s<0x2C, FR32, GR32, fp_to_sint, f32mem, loadf32,
546                       "cvttss2si\t{$src, $dst|$dst, $src}">, XS;
547 defm CVTTSS2SI64 : sse12_cvt_s<0x2C, FR32, GR64, fp_to_sint, f32mem, loadf32,
548                       "cvttss2si{q}\t{$src, $dst|$dst, $src}">, XS, REX_W;
549 defm CVTTSD2SI : sse12_cvt_s<0x2C, FR64, GR32, fp_to_sint, f64mem, loadf64,
550                       "cvttsd2si\t{$src, $dst|$dst, $src}">, XD;
551 defm CVTTSD2SI64 : sse12_cvt_s<0x2C, FR64, GR64, fp_to_sint, f64mem, loadf64,
552                       "cvttsd2si{q}\t{$src, $dst|$dst, $src}">, XD, REX_W;
553 defm CVTSI2SS  : sse12_cvt_s<0x2A, GR32, FR32, sint_to_fp, i32mem, loadi32,
554                       "cvtsi2ss\t{$src, $dst|$dst, $src}">, XS;
555 defm CVTSI2SS64 : sse12_cvt_s<0x2A, GR64, FR32, sint_to_fp, i64mem, loadi64,
556                       "cvtsi2ss{q}\t{$src, $dst|$dst, $src}">, XS, REX_W;
557 defm CVTSI2SD  : sse12_cvt_s<0x2A, GR32, FR64, sint_to_fp, i32mem, loadi32,
558                       "cvtsi2sd\t{$src, $dst|$dst, $src}">, XD;
559 defm CVTSI2SD64 : sse12_cvt_s<0x2A, GR64, FR64, sint_to_fp, i64mem, loadi64,
560                       "cvtsi2sd{q}\t{$src, $dst|$dst, $src}">, XD, REX_W;
561
562 // Conversion Instructions Intrinsics - Match intrinsics which expect MM
563 // and/or XMM operand(s).
564
565 multiclass sse12_cvt_sint<bits<8> opc, RegisterClass SrcRC, RegisterClass DstRC,
566                          Intrinsic Int, X86MemOperand x86memop, PatFrag ld_frag,
567                          string asm> {
568   def rr : SI<opc, MRMSrcReg, (outs DstRC:$dst), (ins SrcRC:$src),
569               !strconcat(asm, "\t{$src, $dst|$dst, $src}"),
570               [(set DstRC:$dst, (Int SrcRC:$src))]>;
571   def rm : SI<opc, MRMSrcMem, (outs DstRC:$dst), (ins x86memop:$src),
572               !strconcat(asm, "\t{$src, $dst|$dst, $src}"),
573               [(set DstRC:$dst, (Int (ld_frag addr:$src)))]>;
574 }
575
576 multiclass sse12_cvt_sint_3addr<bits<8> opc, RegisterClass SrcRC,
577                     RegisterClass DstRC, Intrinsic Int, X86MemOperand x86memop,
578                     PatFrag ld_frag, string asm, bit Is2Addr = 1> {
579   def rr : SI<opc, MRMSrcReg, (outs DstRC:$dst), (ins DstRC:$src1, SrcRC:$src2),
580               !if(Is2Addr,
581                   !strconcat(asm, "\t{$src2, $dst|$dst, $src2}"),
582                   !strconcat(asm, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
583               [(set DstRC:$dst, (Int DstRC:$src1, SrcRC:$src2))]>;
584   def rm : SI<opc, MRMSrcMem, (outs DstRC:$dst),
585               (ins DstRC:$src1, x86memop:$src2),
586               !if(Is2Addr,
587                   !strconcat(asm, "\t{$src2, $dst|$dst, $src2}"),
588                   !strconcat(asm, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
589               [(set DstRC:$dst, (Int DstRC:$src1, (ld_frag addr:$src2)))]>;
590 }
591
592 let isAsmParserOnly = 1 in {
593   defm Int_VCVTSS2SI : sse12_cvt_sint<0x2D, VR128, GR32, int_x86_sse_cvtss2si,
594                         f32mem, load, "cvtss2si">, XS, VEX;
595   defm Int_VCVTSS2SI64 : sse12_cvt_sint<0x2D, VR128, GR64,
596                           int_x86_sse_cvtss2si64, f32mem, load, "cvtss2si">,
597                           XS, VEX, VEX_W;
598   defm Int_VCVTSD2SI : sse12_cvt_sint<0x2D, VR128, GR32, int_x86_sse2_cvtsd2si,
599                         f128mem, load, "cvtsd2si">, XD, VEX;
600   defm Int_VCVTSD2SI64 : sse12_cvt_sint<0x2D, VR128, GR64,
601                         int_x86_sse2_cvtsd2si64, f128mem, load, "cvtsd2si">,
602                         XD, VEX, VEX_W;
603
604   // FIXME: The asm matcher has a hack to ignore instructions with _Int and Int_
605   // Get rid of this hack or rename the intrinsics, there are several
606   // intructions that only match with the intrinsic form, why create duplicates
607   // to let them be recognized by the assembler?
608   defm VCVTSD2SI_alt : sse12_cvt_s_np<0x2D, FR64, GR32, f64mem,
609                         "cvtsd2si\t{$src, $dst|$dst, $src}">, XD, VEX;
610   defm VCVTSD2SI64   : sse12_cvt_s_np<0x2D, FR64, GR64, f64mem,
611                         "cvtsd2si\t{$src, $dst|$dst, $src}">, XD, VEX, VEX_W;
612 }
613 defm Int_CVTSS2SI : sse12_cvt_sint<0x2D, VR128, GR32, int_x86_sse_cvtss2si,
614                       f32mem, load, "cvtss2si">, XS;
615 defm Int_CVTSS2SI64 : sse12_cvt_sint<0x2D, VR128, GR64, int_x86_sse_cvtss2si64,
616                       f32mem, load, "cvtss2si{q}">, XS, REX_W;
617 defm CVTSD2SI : sse12_cvt_sint<0x2D, VR128, GR32, int_x86_sse2_cvtsd2si,
618                 f128mem, load, "cvtsd2si{l}">, XD;
619 defm CVTSD2SI64 : sse12_cvt_sint<0x2D, VR128, GR64, int_x86_sse2_cvtsd2si64,
620                   f128mem, load, "cvtsd2si{q}">, XD, REX_W;
621
622
623 let isAsmParserOnly = 1 in {
624   defm Int_VCVTSI2SS : sse12_cvt_sint_3addr<0x2A, GR32, VR128,
625             int_x86_sse_cvtsi2ss, i32mem, loadi32, "cvtsi2ss", 0>, XS, VEX_4V;
626   defm Int_VCVTSI2SS64 : sse12_cvt_sint_3addr<0x2A, GR64, VR128,
627             int_x86_sse_cvtsi642ss, i64mem, loadi64, "cvtsi2ss", 0>, XS, VEX_4V,
628             VEX_W;
629   defm Int_VCVTSI2SD : sse12_cvt_sint_3addr<0x2A, GR32, VR128,
630             int_x86_sse2_cvtsi2sd, i32mem, loadi32, "cvtsi2sd", 0>, XD, VEX_4V;
631   defm Int_VCVTSI2SD64 : sse12_cvt_sint_3addr<0x2A, GR64, VR128,
632             int_x86_sse2_cvtsi642sd, i64mem, loadi64, "cvtsi2sd", 0>, XD,
633             VEX_4V, VEX_W;
634 }
635
636 let Constraints = "$src1 = $dst" in {
637   defm Int_CVTSI2SS : sse12_cvt_sint_3addr<0x2A, GR32, VR128,
638                         int_x86_sse_cvtsi2ss, i32mem, loadi32,
639                         "cvtsi2ss">, XS;
640   defm Int_CVTSI2SS64 : sse12_cvt_sint_3addr<0x2A, GR64, VR128,
641                         int_x86_sse_cvtsi642ss, i64mem, loadi64,
642                         "cvtsi2ss{q}">, XS, REX_W;
643   defm Int_CVTSI2SD : sse12_cvt_sint_3addr<0x2A, GR32, VR128,
644                         int_x86_sse2_cvtsi2sd, i32mem, loadi32,
645                         "cvtsi2sd">, XD;
646   defm Int_CVTSI2SD64 : sse12_cvt_sint_3addr<0x2A, GR64, VR128,
647                         int_x86_sse2_cvtsi642sd, i64mem, loadi64,
648                         "cvtsi2sd">, XD, REX_W;
649 }
650
651 /// SSE 1 Only
652
653 // Aliases for intrinsics
654 let isAsmParserOnly = 1 in {
655 defm Int_VCVTTSS2SI : sse12_cvt_sint<0x2C, VR128, GR32, int_x86_sse_cvttss2si,
656                                     f32mem, load, "cvttss2si">, XS, VEX;
657 defm Int_VCVTTSS2SI64 : sse12_cvt_sint<0x2C, VR128, GR64,
658                                     int_x86_sse_cvttss2si64, f32mem, load,
659                                     "cvttss2si">, XS, VEX, VEX_W;
660 defm Int_VCVTTSD2SI : sse12_cvt_sint<0x2C, VR128, GR32, int_x86_sse2_cvttsd2si,
661                                     f128mem, load, "cvttss2si">, XD, VEX;
662 defm Int_VCVTTSD2SI64 : sse12_cvt_sint<0x2C, VR128, GR64,
663                                     int_x86_sse2_cvttsd2si64, f128mem, load,
664                                     "cvttss2si">, XD, VEX, VEX_W;
665 }
666 defm Int_CVTTSS2SI : sse12_cvt_sint<0x2C, VR128, GR32, int_x86_sse_cvttss2si,
667                                     f32mem, load, "cvttss2si">, XS;
668 defm Int_CVTTSS2SI64 : sse12_cvt_sint<0x2C, VR128, GR64,
669                                     int_x86_sse_cvttss2si64, f32mem, load,
670                                     "cvttss2si{q}">, XS, REX_W;
671 defm Int_CVTTSD2SI : sse12_cvt_sint<0x2C, VR128, GR32, int_x86_sse2_cvttsd2si,
672                                     f128mem, load, "cvttss2si">, XD;
673 defm Int_CVTTSD2SI64 : sse12_cvt_sint<0x2C, VR128, GR64,
674                                     int_x86_sse2_cvttsd2si64, f128mem, load,
675                                     "cvttss2si{q}">, XD, REX_W;
676
677 let isAsmParserOnly = 1, Pattern = []<dag> in {
678 defm VCVTSS2SI   : sse12_cvt_s<0x2D, FR32, GR32, undef, f32mem, load,
679                                "cvtss2si{l}\t{$src, $dst|$dst, $src}">, XS, VEX;
680 defm VCVTSS2SI64 : sse12_cvt_s<0x2D, FR32, GR64, undef, f32mem, load,
681                                "cvtss2si\t{$src, $dst|$dst, $src}">, XS, VEX,
682                                VEX_W;
683 defm VCVTDQ2PS   : sse12_cvt_p<0x5B, VR128, VR128, undef, i128mem, load,
684                                "cvtdq2ps\t{$src, $dst|$dst, $src}",
685                                SSEPackedSingle>, TB, VEX;
686 defm VCVTDQ2PSY  : sse12_cvt_p<0x5B, VR256, VR256, undef, i256mem, load,
687                                "cvtdq2ps\t{$src, $dst|$dst, $src}",
688                                SSEPackedSingle>, TB, VEX;
689 }
690 let Pattern = []<dag> in {
691 defm CVTSS2SI : sse12_cvt_s<0x2D, FR32, GR32, undef, f32mem, load /*dummy*/,
692                           "cvtss2si{l}\t{$src, $dst|$dst, $src}">, XS;
693 defm CVTSS2SI64 : sse12_cvt_s<0x2D, FR32, GR64, undef, f32mem, load /*dummy*/,
694                           "cvtss2si{q}\t{$src, $dst|$dst, $src}">, XS, REX_W;
695 defm CVTDQ2PS : sse12_cvt_p<0x5B, VR128, VR128, undef, i128mem, load /*dummy*/,
696                             "cvtdq2ps\t{$src, $dst|$dst, $src}",
697                             SSEPackedSingle>, TB; /* PD SSE3 form is avaiable */
698 }
699
700 /// SSE 2 Only
701
702 // Convert scalar double to scalar single
703 let isAsmParserOnly = 1 in {
704 def VCVTSD2SSrr  : VSDI<0x5A, MRMSrcReg, (outs FR32:$dst),
705                        (ins FR64:$src1, FR64:$src2),
706                       "cvtsd2ss\t{$src2, $src1, $dst|$dst, $src1, $src2}", []>,
707                       VEX_4V;
708 def VCVTSD2SSrm  : I<0x5A, MRMSrcMem, (outs FR32:$dst),
709                        (ins FR64:$src1, f64mem:$src2),
710                       "vcvtsd2ss\t{$src2, $src1, $dst|$dst, $src1, $src2}",
711                       []>, XD, Requires<[HasAVX, OptForSize]>, VEX_4V;
712 }
713 def CVTSD2SSrr  : SDI<0x5A, MRMSrcReg, (outs FR32:$dst), (ins FR64:$src),
714                       "cvtsd2ss\t{$src, $dst|$dst, $src}",
715                       [(set FR32:$dst, (fround FR64:$src))]>;
716 def CVTSD2SSrm  : I<0x5A, MRMSrcMem, (outs FR32:$dst), (ins f64mem:$src),
717                       "cvtsd2ss\t{$src, $dst|$dst, $src}",
718                       [(set FR32:$dst, (fround (loadf64 addr:$src)))]>, XD,
719                   Requires<[HasSSE2, OptForSize]>;
720
721 let isAsmParserOnly = 1 in
722 defm Int_VCVTSD2SS: sse12_cvt_sint_3addr<0x5A, VR128, VR128,
723                       int_x86_sse2_cvtsd2ss, f64mem, load, "cvtsd2ss", 0>,
724                       XS, VEX_4V;
725 let Constraints = "$src1 = $dst" in
726 defm Int_CVTSD2SS: sse12_cvt_sint_3addr<0x5A, VR128, VR128,
727                       int_x86_sse2_cvtsd2ss, f64mem, load, "cvtsd2ss">, XS;
728
729 // Convert scalar single to scalar double
730 let isAsmParserOnly = 1 in { // SSE2 instructions with XS prefix
731 def VCVTSS2SDrr : I<0x5A, MRMSrcReg, (outs FR64:$dst),
732                     (ins FR32:$src1, FR32:$src2),
733                     "vcvtss2sd\t{$src2, $src1, $dst|$dst, $src1, $src2}",
734                     []>, XS, Requires<[HasAVX]>, VEX_4V;
735 def VCVTSS2SDrm : I<0x5A, MRMSrcMem, (outs FR64:$dst),
736                     (ins FR32:$src1, f32mem:$src2),
737                     "vcvtss2sd\t{$src2, $src1, $dst|$dst, $src1, $src2}",
738                     []>, XS, VEX_4V, Requires<[HasAVX, OptForSize]>;
739 }
740 def CVTSS2SDrr : I<0x5A, MRMSrcReg, (outs FR64:$dst), (ins FR32:$src),
741                    "cvtss2sd\t{$src, $dst|$dst, $src}",
742                    [(set FR64:$dst, (fextend FR32:$src))]>, XS,
743                  Requires<[HasSSE2]>;
744 def CVTSS2SDrm : I<0x5A, MRMSrcMem, (outs FR64:$dst), (ins f32mem:$src),
745                    "cvtss2sd\t{$src, $dst|$dst, $src}",
746                    [(set FR64:$dst, (extloadf32 addr:$src))]>, XS,
747                  Requires<[HasSSE2, OptForSize]>;
748
749 let isAsmParserOnly = 1 in {
750 def Int_VCVTSS2SDrr: I<0x5A, MRMSrcReg,
751                       (outs VR128:$dst), (ins VR128:$src1, VR128:$src2),
752                     "vcvtss2sd\t{$src2, $src1, $dst|$dst, $src1, $src2}",
753                     [(set VR128:$dst, (int_x86_sse2_cvtss2sd VR128:$src1,
754                                        VR128:$src2))]>, XS, VEX_4V,
755                     Requires<[HasAVX]>;
756 def Int_VCVTSS2SDrm: I<0x5A, MRMSrcMem,
757                       (outs VR128:$dst), (ins VR128:$src1, f32mem:$src2),
758                     "vcvtss2sd\t{$src2, $src1, $dst|$dst, $src1, $src2}",
759                     [(set VR128:$dst, (int_x86_sse2_cvtss2sd VR128:$src1,
760                                        (load addr:$src2)))]>, XS, VEX_4V,
761                     Requires<[HasAVX]>;
762 }
763 let Constraints = "$src1 = $dst" in { // SSE2 instructions with XS prefix
764 def Int_CVTSS2SDrr: I<0x5A, MRMSrcReg,
765                       (outs VR128:$dst), (ins VR128:$src1, VR128:$src2),
766                     "cvtss2sd\t{$src2, $dst|$dst, $src2}",
767                     [(set VR128:$dst, (int_x86_sse2_cvtss2sd VR128:$src1,
768                                        VR128:$src2))]>, XS,
769                     Requires<[HasSSE2]>;
770 def Int_CVTSS2SDrm: I<0x5A, MRMSrcMem,
771                       (outs VR128:$dst), (ins VR128:$src1, f32mem:$src2),
772                     "cvtss2sd\t{$src2, $dst|$dst, $src2}",
773                     [(set VR128:$dst, (int_x86_sse2_cvtss2sd VR128:$src1,
774                                        (load addr:$src2)))]>, XS,
775                     Requires<[HasSSE2]>;
776 }
777
778 def : Pat<(extloadf32 addr:$src),
779           (CVTSS2SDrr (MOVSSrm addr:$src))>,
780       Requires<[HasSSE2, OptForSpeed]>;
781
782 // Convert doubleword to packed single/double fp
783 let isAsmParserOnly = 1 in { // SSE2 instructions without OpSize prefix
784 def Int_VCVTDQ2PSrr : I<0x5B, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
785                        "vcvtdq2ps\t{$src, $dst|$dst, $src}",
786                        [(set VR128:$dst, (int_x86_sse2_cvtdq2ps VR128:$src))]>,
787                      TB, VEX, Requires<[HasAVX]>;
788 def Int_VCVTDQ2PSrm : I<0x5B, MRMSrcMem, (outs VR128:$dst), (ins i128mem:$src),
789                       "vcvtdq2ps\t{$src, $dst|$dst, $src}",
790                       [(set VR128:$dst, (int_x86_sse2_cvtdq2ps
791                                         (bitconvert (memopv2i64 addr:$src))))]>,
792                      TB, VEX, Requires<[HasAVX]>;
793 }
794 def Int_CVTDQ2PSrr : I<0x5B, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
795                        "cvtdq2ps\t{$src, $dst|$dst, $src}",
796                        [(set VR128:$dst, (int_x86_sse2_cvtdq2ps VR128:$src))]>,
797                      TB, Requires<[HasSSE2]>;
798 def Int_CVTDQ2PSrm : I<0x5B, MRMSrcMem, (outs VR128:$dst), (ins i128mem:$src),
799                       "cvtdq2ps\t{$src, $dst|$dst, $src}",
800                       [(set VR128:$dst, (int_x86_sse2_cvtdq2ps
801                                         (bitconvert (memopv2i64 addr:$src))))]>,
802                      TB, Requires<[HasSSE2]>;
803
804 // FIXME: why the non-intrinsic version is described as SSE3?
805 let isAsmParserOnly = 1 in { // SSE2 instructions with XS prefix
806 def Int_VCVTDQ2PDrr : I<0xE6, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
807                        "vcvtdq2pd\t{$src, $dst|$dst, $src}",
808                        [(set VR128:$dst, (int_x86_sse2_cvtdq2pd VR128:$src))]>,
809                      XS, VEX, Requires<[HasAVX]>;
810 def Int_VCVTDQ2PDrm : I<0xE6, MRMSrcMem, (outs VR128:$dst), (ins i64mem:$src),
811                        "vcvtdq2pd\t{$src, $dst|$dst, $src}",
812                        [(set VR128:$dst, (int_x86_sse2_cvtdq2pd
813                                         (bitconvert (memopv2i64 addr:$src))))]>,
814                      XS, VEX, Requires<[HasAVX]>;
815 }
816 def Int_CVTDQ2PDrr : I<0xE6, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
817                        "cvtdq2pd\t{$src, $dst|$dst, $src}",
818                        [(set VR128:$dst, (int_x86_sse2_cvtdq2pd VR128:$src))]>,
819                      XS, Requires<[HasSSE2]>;
820 def Int_CVTDQ2PDrm : I<0xE6, MRMSrcMem, (outs VR128:$dst), (ins i64mem:$src),
821                      "cvtdq2pd\t{$src, $dst|$dst, $src}",
822                      [(set VR128:$dst, (int_x86_sse2_cvtdq2pd
823                                         (bitconvert (memopv2i64 addr:$src))))]>,
824                      XS, Requires<[HasSSE2]>;
825
826
827 // Convert packed single/double fp to doubleword
828 let isAsmParserOnly = 1 in {
829 def VCVTPS2DQrr : VPDI<0x5B, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
830                        "cvtps2dq\t{$src, $dst|$dst, $src}", []>, VEX;
831 def VCVTPS2DQrm : VPDI<0x5B, MRMSrcMem, (outs VR128:$dst), (ins f128mem:$src),
832                        "cvtps2dq\t{$src, $dst|$dst, $src}", []>, VEX;
833 def VCVTPS2DQYrr : VPDI<0x5B, MRMSrcReg, (outs VR256:$dst), (ins VR256:$src),
834                         "cvtps2dq\t{$src, $dst|$dst, $src}", []>, VEX;
835 def VCVTPS2DQYrm : VPDI<0x5B, MRMSrcMem, (outs VR256:$dst), (ins f256mem:$src),
836                         "cvtps2dq\t{$src, $dst|$dst, $src}", []>, VEX;
837 }
838 def CVTPS2DQrr : PDI<0x5B, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
839                      "cvtps2dq\t{$src, $dst|$dst, $src}", []>;
840 def CVTPS2DQrm : PDI<0x5B, MRMSrcMem, (outs VR128:$dst), (ins f128mem:$src),
841                      "cvtps2dq\t{$src, $dst|$dst, $src}", []>;
842
843 let isAsmParserOnly = 1 in {
844 def Int_VCVTPS2DQrr : VPDI<0x5B, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
845                         "cvtps2dq\t{$src, $dst|$dst, $src}",
846                         [(set VR128:$dst, (int_x86_sse2_cvtps2dq VR128:$src))]>,
847                         VEX;
848 def Int_VCVTPS2DQrm : VPDI<0x5B, MRMSrcMem, (outs VR128:$dst),
849                          (ins f128mem:$src),
850                          "cvtps2dq\t{$src, $dst|$dst, $src}",
851                          [(set VR128:$dst, (int_x86_sse2_cvtps2dq
852                                             (memop addr:$src)))]>, VEX;
853 }
854 def Int_CVTPS2DQrr : PDI<0x5B, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
855                         "cvtps2dq\t{$src, $dst|$dst, $src}",
856                         [(set VR128:$dst, (int_x86_sse2_cvtps2dq VR128:$src))]>;
857 def Int_CVTPS2DQrm : PDI<0x5B, MRMSrcMem, (outs VR128:$dst), (ins f128mem:$src),
858                          "cvtps2dq\t{$src, $dst|$dst, $src}",
859                          [(set VR128:$dst, (int_x86_sse2_cvtps2dq
860                                             (memop addr:$src)))]>;
861
862 let isAsmParserOnly = 1 in { // SSE2 packed instructions with XD prefix
863 def Int_VCVTPD2DQrr : I<0xE6, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
864                        "vcvtpd2dq\t{$src, $dst|$dst, $src}",
865                        [(set VR128:$dst, (int_x86_sse2_cvtpd2dq VR128:$src))]>,
866                      XD, VEX, Requires<[HasAVX]>;
867 def Int_VCVTPD2DQrm : I<0xE6, MRMSrcMem, (outs VR128:$dst), (ins f128mem:$src),
868                        "vcvtpd2dq\t{$src, $dst|$dst, $src}",
869                        [(set VR128:$dst, (int_x86_sse2_cvtpd2dq
870                                           (memop addr:$src)))]>,
871                      XD, VEX, Requires<[HasAVX]>;
872 }
873 def Int_CVTPD2DQrr : I<0xE6, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
874                        "cvtpd2dq\t{$src, $dst|$dst, $src}",
875                        [(set VR128:$dst, (int_x86_sse2_cvtpd2dq VR128:$src))]>,
876                      XD, Requires<[HasSSE2]>;
877 def Int_CVTPD2DQrm : I<0xE6, MRMSrcMem, (outs VR128:$dst), (ins f128mem:$src),
878                        "cvtpd2dq\t{$src, $dst|$dst, $src}",
879                        [(set VR128:$dst, (int_x86_sse2_cvtpd2dq
880                                           (memop addr:$src)))]>,
881                      XD, Requires<[HasSSE2]>;
882
883
884 // Convert with truncation packed single/double fp to doubleword
885 let isAsmParserOnly = 1 in { // SSE2 packed instructions with XS prefix
886 def VCVTTPS2DQrr : VSSI<0x5B, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
887                       "cvttps2dq\t{$src, $dst|$dst, $src}", []>, VEX;
888 def VCVTTPS2DQrm : VSSI<0x5B, MRMSrcMem, (outs VR128:$dst), (ins f128mem:$src),
889                       "cvttps2dq\t{$src, $dst|$dst, $src}", []>, VEX;
890 def VCVTTPS2DQYrr : VSSI<0x5B, MRMSrcReg, (outs VR256:$dst), (ins VR256:$src),
891                       "cvttps2dq\t{$src, $dst|$dst, $src}", []>, VEX;
892 def VCVTTPS2DQYrm : VSSI<0x5B, MRMSrcMem, (outs VR256:$dst), (ins f256mem:$src),
893                       "cvttps2dq\t{$src, $dst|$dst, $src}", []>, VEX;
894 }
895 def CVTTPS2DQrr : SSI<0x5B, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
896                       "cvttps2dq\t{$src, $dst|$dst, $src}",
897                       [(set VR128:$dst,
898                             (int_x86_sse2_cvttps2dq VR128:$src))]>;
899 def CVTTPS2DQrm : SSI<0x5B, MRMSrcMem, (outs VR128:$dst), (ins f128mem:$src),
900                       "cvttps2dq\t{$src, $dst|$dst, $src}",
901                       [(set VR128:$dst,
902                             (int_x86_sse2_cvttps2dq (memop addr:$src)))]>;
903
904
905 let isAsmParserOnly = 1 in {
906 def Int_VCVTTPS2DQrr : I<0x5B, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
907                         "vcvttps2dq\t{$src, $dst|$dst, $src}",
908                         [(set VR128:$dst,
909                               (int_x86_sse2_cvttps2dq VR128:$src))]>,
910                       XS, VEX, Requires<[HasAVX]>;
911 def Int_VCVTTPS2DQrm : I<0x5B, MRMSrcMem, (outs VR128:$dst), (ins f128mem:$src),
912                         "vcvttps2dq\t{$src, $dst|$dst, $src}",
913                         [(set VR128:$dst, (int_x86_sse2_cvttps2dq
914                                            (memop addr:$src)))]>,
915                       XS, VEX, Requires<[HasAVX]>;
916 }
917
918 let isAsmParserOnly = 1 in {
919 def Int_VCVTTPD2DQrr : VPDI<0xE6, MRMSrcReg, (outs VR128:$dst),
920                             (ins VR128:$src),
921                           "cvttpd2dq\t{$src, $dst|$dst, $src}",
922                        [(set VR128:$dst, (int_x86_sse2_cvttpd2dq VR128:$src))]>,
923                        VEX;
924 def Int_VCVTTPD2DQrm : VPDI<0xE6, MRMSrcMem, (outs VR128:$dst),
925                           (ins f128mem:$src),
926                           "cvttpd2dq\t{$src, $dst|$dst, $src}",
927                           [(set VR128:$dst, (int_x86_sse2_cvttpd2dq
928                                              (memop addr:$src)))]>, VEX;
929 }
930 def CVTTPD2DQrr : PDI<0xE6, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
931                       "cvttpd2dq\t{$src, $dst|$dst, $src}",
932                       [(set VR128:$dst, (int_x86_sse2_cvttpd2dq VR128:$src))]>;
933 def CVTTPD2DQrm : PDI<0xE6, MRMSrcMem, (outs VR128:$dst),(ins f128mem:$src),
934                       "cvttpd2dq\t{$src, $dst|$dst, $src}",
935                       [(set VR128:$dst, (int_x86_sse2_cvttpd2dq
936                                         (memop addr:$src)))]>;
937
938 let isAsmParserOnly = 1 in {
939 // The assembler can recognize rr 256-bit instructions by seeing a ymm
940 // register, but the same isn't true when using memory operands instead.
941 // Provide other assembly rr and rm forms to address this explicitly.
942 def VCVTTPD2DQrr : VPDI<0xE6, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
943                         "cvttpd2dq\t{$src, $dst|$dst, $src}", []>, VEX;
944 def VCVTTPD2DQXrYr : VPDI<0xE6, MRMSrcReg, (outs VR128:$dst), (ins VR256:$src),
945                           "cvttpd2dq\t{$src, $dst|$dst, $src}", []>, VEX;
946
947 // XMM only
948 def VCVTTPD2DQXrr : VPDI<0xE6, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
949                          "cvttpd2dqx\t{$src, $dst|$dst, $src}", []>, VEX;
950 def VCVTTPD2DQXrm : VPDI<0xE6, MRMSrcMem, (outs VR128:$dst), (ins f128mem:$src),
951                          "cvttpd2dqx\t{$src, $dst|$dst, $src}", []>, VEX;
952
953 // YMM only
954 def VCVTTPD2DQYrr : VPDI<0xE6, MRMSrcReg, (outs VR128:$dst), (ins VR256:$src),
955                          "cvttpd2dqy\t{$src, $dst|$dst, $src}", []>, VEX;
956 def VCVTTPD2DQYrm : VPDI<0xE6, MRMSrcMem, (outs VR128:$dst), (ins f256mem:$src),
957                          "cvttpd2dqy\t{$src, $dst|$dst, $src}", []>, VEX, VEX_L;
958 }
959
960 // Convert packed single to packed double
961 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
962                   // SSE2 instructions without OpSize prefix
963 def VCVTPS2PDrr : I<0x5A, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
964                      "vcvtps2pd\t{$src, $dst|$dst, $src}", []>, VEX;
965 def VCVTPS2PDrm : I<0x5A, MRMSrcMem, (outs VR128:$dst), (ins f64mem:$src),
966                      "vcvtps2pd\t{$src, $dst|$dst, $src}", []>, VEX;
967 def VCVTPS2PDYrr : I<0x5A, MRMSrcReg, (outs VR256:$dst), (ins VR128:$src),
968                      "vcvtps2pd\t{$src, $dst|$dst, $src}", []>, VEX;
969 def VCVTPS2PDYrm : I<0x5A, MRMSrcMem, (outs VR256:$dst), (ins f128mem:$src),
970                      "vcvtps2pd\t{$src, $dst|$dst, $src}", []>, VEX;
971 }
972 def CVTPS2PDrr : I<0x5A, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
973                        "cvtps2pd\t{$src, $dst|$dst, $src}", []>, TB;
974 def CVTPS2PDrm : I<0x5A, MRMSrcMem, (outs VR128:$dst), (ins f64mem:$src),
975                        "cvtps2pd\t{$src, $dst|$dst, $src}", []>, TB;
976
977 let isAsmParserOnly = 1 in {
978 def Int_VCVTPS2PDrr : I<0x5A, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
979                        "vcvtps2pd\t{$src, $dst|$dst, $src}",
980                        [(set VR128:$dst, (int_x86_sse2_cvtps2pd VR128:$src))]>,
981                      VEX, Requires<[HasAVX]>;
982 def Int_VCVTPS2PDrm : I<0x5A, MRMSrcMem, (outs VR128:$dst), (ins f64mem:$src),
983                        "vcvtps2pd\t{$src, $dst|$dst, $src}",
984                        [(set VR128:$dst, (int_x86_sse2_cvtps2pd
985                                           (load addr:$src)))]>,
986                      VEX, Requires<[HasAVX]>;
987 }
988 def Int_CVTPS2PDrr : I<0x5A, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
989                        "cvtps2pd\t{$src, $dst|$dst, $src}",
990                        [(set VR128:$dst, (int_x86_sse2_cvtps2pd VR128:$src))]>,
991                      TB, Requires<[HasSSE2]>;
992 def Int_CVTPS2PDrm : I<0x5A, MRMSrcMem, (outs VR128:$dst), (ins f64mem:$src),
993                        "cvtps2pd\t{$src, $dst|$dst, $src}",
994                        [(set VR128:$dst, (int_x86_sse2_cvtps2pd
995                                           (load addr:$src)))]>,
996                      TB, Requires<[HasSSE2]>;
997
998 // Convert packed double to packed single
999 let isAsmParserOnly = 1 in {
1000 // The assembler can recognize rr 256-bit instructions by seeing a ymm
1001 // register, but the same isn't true when using memory operands instead.
1002 // Provide other assembly rr and rm forms to address this explicitly.
1003 def VCVTPD2PSrr : VPDI<0x5A, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
1004                        "cvtpd2ps\t{$src, $dst|$dst, $src}", []>, VEX;
1005 def VCVTPD2PSXrYr : VPDI<0x5A, MRMSrcReg, (outs VR128:$dst), (ins VR256:$src),
1006                          "cvtpd2ps\t{$src, $dst|$dst, $src}", []>, VEX;
1007
1008 // XMM only
1009 def VCVTPD2PSXrr : VPDI<0x5A, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
1010                         "cvtpd2psx\t{$src, $dst|$dst, $src}", []>, VEX;
1011 def VCVTPD2PSXrm : VPDI<0x5A, MRMSrcMem, (outs VR128:$dst), (ins f128mem:$src),
1012                         "cvtpd2psx\t{$src, $dst|$dst, $src}", []>, VEX;
1013
1014 // YMM only
1015 def VCVTPD2PSYrr : VPDI<0x5A, MRMSrcReg, (outs VR128:$dst), (ins VR256:$src),
1016                         "cvtpd2psy\t{$src, $dst|$dst, $src}", []>, VEX;
1017 def VCVTPD2PSYrm : VPDI<0x5A, MRMSrcMem, (outs VR128:$dst), (ins f256mem:$src),
1018                         "cvtpd2psy\t{$src, $dst|$dst, $src}", []>, VEX, VEX_L;
1019 }
1020 def CVTPD2PSrr : PDI<0x5A, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
1021                      "cvtpd2ps\t{$src, $dst|$dst, $src}", []>;
1022 def CVTPD2PSrm : PDI<0x5A, MRMSrcMem, (outs VR128:$dst), (ins f128mem:$src),
1023                      "cvtpd2ps\t{$src, $dst|$dst, $src}", []>;
1024
1025
1026 let isAsmParserOnly = 1 in {
1027 def Int_VCVTPD2PSrr : VPDI<0x5A, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
1028                          "cvtpd2ps\t{$src, $dst|$dst, $src}",
1029                         [(set VR128:$dst, (int_x86_sse2_cvtpd2ps VR128:$src))]>;
1030 def Int_VCVTPD2PSrm : VPDI<0x5A, MRMSrcMem, (outs VR128:$dst),
1031                          (ins f128mem:$src),
1032                          "cvtpd2ps\t{$src, $dst|$dst, $src}",
1033                          [(set VR128:$dst, (int_x86_sse2_cvtpd2ps
1034                                             (memop addr:$src)))]>;
1035 }
1036 def Int_CVTPD2PSrr : PDI<0x5A, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
1037                          "cvtpd2ps\t{$src, $dst|$dst, $src}",
1038                         [(set VR128:$dst, (int_x86_sse2_cvtpd2ps VR128:$src))]>;
1039 def Int_CVTPD2PSrm : PDI<0x5A, MRMSrcMem, (outs VR128:$dst), (ins f128mem:$src),
1040                          "cvtpd2ps\t{$src, $dst|$dst, $src}",
1041                          [(set VR128:$dst, (int_x86_sse2_cvtpd2ps
1042                                             (memop addr:$src)))]>;
1043
1044 // AVX 256-bit register conversion intrinsics
1045 // FIXME: Migrate SSE conversion intrinsics matching to use patterns as below
1046 // whenever possible to avoid declaring two versions of each one.
1047 def : Pat<(int_x86_avx_cvtdq2_ps_256 VR256:$src),
1048           (VCVTDQ2PSYrr VR256:$src)>;
1049 def : Pat<(int_x86_avx_cvtdq2_ps_256 (memopv8i32 addr:$src)),
1050           (VCVTDQ2PSYrm addr:$src)>;
1051
1052 def : Pat<(int_x86_avx_cvt_pd2_ps_256 VR256:$src),
1053           (VCVTPD2PSYrr VR256:$src)>;
1054 def : Pat<(int_x86_avx_cvt_pd2_ps_256 (memopv4f64 addr:$src)),
1055           (VCVTPD2PSYrm addr:$src)>;
1056
1057 def : Pat<(int_x86_avx_cvt_ps2dq_256 VR256:$src),
1058           (VCVTPS2DQYrr VR256:$src)>;
1059 def : Pat<(int_x86_avx_cvt_ps2dq_256 (memopv8f32 addr:$src)),
1060           (VCVTPS2DQYrm addr:$src)>;
1061
1062 def : Pat<(int_x86_avx_cvt_ps2_pd_256 VR128:$src),
1063           (VCVTPS2PDYrr VR128:$src)>;
1064 def : Pat<(int_x86_avx_cvt_ps2_pd_256 (memopv4f32 addr:$src)),
1065           (VCVTPS2PDYrm addr:$src)>;
1066
1067 def : Pat<(int_x86_avx_cvtt_pd2dq_256 VR256:$src),
1068           (VCVTTPD2DQYrr VR256:$src)>;
1069 def : Pat<(int_x86_avx_cvtt_pd2dq_256 (memopv4f64 addr:$src)),
1070           (VCVTTPD2DQYrm addr:$src)>;
1071
1072 def : Pat<(int_x86_avx_cvtt_ps2dq_256 VR256:$src),
1073           (VCVTTPS2DQYrr VR256:$src)>;
1074 def : Pat<(int_x86_avx_cvtt_ps2dq_256 (memopv8f32 addr:$src)),
1075           (VCVTTPS2DQYrm addr:$src)>;
1076
1077 //===----------------------------------------------------------------------===//
1078 // SSE 1 & 2 - Compare Instructions
1079 //===----------------------------------------------------------------------===//
1080
1081 // sse12_cmp_scalar - sse 1 & 2 compare scalar instructions
1082 multiclass sse12_cmp_scalar<RegisterClass RC, X86MemOperand x86memop,
1083                             string asm, string asm_alt> {
1084   def rr : SIi8<0xC2, MRMSrcReg,
1085                     (outs RC:$dst), (ins RC:$src1, RC:$src, SSECC:$cc),
1086                     asm, []>;
1087   let mayLoad = 1 in
1088   def rm : SIi8<0xC2, MRMSrcMem,
1089                     (outs RC:$dst), (ins RC:$src1, x86memop:$src, SSECC:$cc),
1090                     asm, []>;
1091   // Accept explicit immediate argument form instead of comparison code.
1092   let isAsmParserOnly = 1 in {
1093     def rr_alt : SIi8<0xC2, MRMSrcReg,
1094                   (outs RC:$dst), (ins RC:$src1, RC:$src, i8imm:$src2),
1095                   asm_alt, []>;
1096     let mayLoad = 1 in
1097     def rm_alt : SIi8<0xC2, MRMSrcMem,
1098                   (outs RC:$dst), (ins RC:$src1, x86memop:$src, i8imm:$src2),
1099                   asm_alt, []>;
1100   }
1101 }
1102
1103 let neverHasSideEffects = 1, isAsmParserOnly = 1 in {
1104   defm VCMPSS  : sse12_cmp_scalar<FR32, f32mem,
1105                   "cmp${cc}ss\t{$src, $src1, $dst|$dst, $src1, $src}",
1106                   "cmpss\t{$src2, $src, $src1, $dst|$dst, $src1, $src, $src2}">,
1107                   XS, VEX_4V;
1108   defm VCMPSD  : sse12_cmp_scalar<FR64, f64mem,
1109                   "cmp${cc}sd\t{$src, $src1, $dst|$dst, $src1, $src}",
1110                   "cmpsd\t{$src2, $src, $src1, $dst|$dst, $src1, $src, $src2}">,
1111                   XD, VEX_4V;
1112 }
1113
1114 let Constraints = "$src1 = $dst", neverHasSideEffects = 1 in {
1115   defm CMPSS  : sse12_cmp_scalar<FR32, f32mem,
1116                     "cmp${cc}ss\t{$src, $dst|$dst, $src}",
1117                     "cmpss\t{$src2, $src, $dst|$dst, $src, $src2}">, XS;
1118   defm CMPSD  : sse12_cmp_scalar<FR64, f64mem,
1119                     "cmp${cc}sd\t{$src, $dst|$dst, $src}",
1120                     "cmpsd\t{$src2, $src, $dst|$dst, $src, $src2}">, XD;
1121 }
1122
1123 multiclass sse12_cmp_scalar_int<RegisterClass RC, X86MemOperand x86memop,
1124                          Intrinsic Int, string asm> {
1125   def rr : SIi8<0xC2, MRMSrcReg, (outs VR128:$dst),
1126                       (ins VR128:$src1, VR128:$src, SSECC:$cc), asm,
1127                         [(set VR128:$dst, (Int VR128:$src1,
1128                                                VR128:$src, imm:$cc))]>;
1129   def rm : SIi8<0xC2, MRMSrcMem, (outs VR128:$dst),
1130                       (ins VR128:$src1, f32mem:$src, SSECC:$cc), asm,
1131                         [(set VR128:$dst, (Int VR128:$src1,
1132                                                (load addr:$src), imm:$cc))]>;
1133 }
1134
1135 // Aliases to match intrinsics which expect XMM operand(s).
1136 let isAsmParserOnly = 1 in {
1137   defm Int_VCMPSS  : sse12_cmp_scalar_int<VR128, f32mem, int_x86_sse_cmp_ss,
1138                        "cmp${cc}ss\t{$src, $src1, $dst|$dst, $src1, $src}">,
1139                        XS, VEX_4V;
1140   defm Int_VCMPSD  : sse12_cmp_scalar_int<VR128, f64mem, int_x86_sse2_cmp_sd,
1141                        "cmp${cc}sd\t{$src, $src1, $dst|$dst, $src1, $src}">,
1142                        XD, VEX_4V;
1143 }
1144 let Constraints = "$src1 = $dst" in {
1145   defm Int_CMPSS  : sse12_cmp_scalar_int<VR128, f32mem, int_x86_sse_cmp_ss,
1146                        "cmp${cc}ss\t{$src, $dst|$dst, $src}">, XS;
1147   defm Int_CMPSD  : sse12_cmp_scalar_int<VR128, f64mem, int_x86_sse2_cmp_sd,
1148                        "cmp${cc}sd\t{$src, $dst|$dst, $src}">, XD;
1149 }
1150
1151
1152 // sse12_ord_cmp - Unordered/Ordered scalar fp compare and set EFLAGS
1153 multiclass sse12_ord_cmp<bits<8> opc, RegisterClass RC, SDNode OpNode,
1154                             ValueType vt, X86MemOperand x86memop,
1155                             PatFrag ld_frag, string OpcodeStr, Domain d> {
1156   def rr: PI<opc, MRMSrcReg, (outs), (ins RC:$src1, RC:$src2),
1157                      !strconcat(OpcodeStr, "\t{$src2, $src1|$src1, $src2}"),
1158                      [(set EFLAGS, (OpNode (vt RC:$src1), RC:$src2))], d>;
1159   def rm: PI<opc, MRMSrcMem, (outs), (ins RC:$src1, x86memop:$src2),
1160                      !strconcat(OpcodeStr, "\t{$src2, $src1|$src1, $src2}"),
1161                      [(set EFLAGS, (OpNode (vt RC:$src1),
1162                                            (ld_frag addr:$src2)))], d>;
1163 }
1164
1165 let Defs = [EFLAGS] in {
1166   let isAsmParserOnly = 1 in {
1167     defm VUCOMISS : sse12_ord_cmp<0x2E, FR32, X86cmp, f32, f32mem, loadf32,
1168                                     "ucomiss", SSEPackedSingle>, VEX;
1169     defm VUCOMISD : sse12_ord_cmp<0x2E, FR64, X86cmp, f64, f64mem, loadf64,
1170                                     "ucomisd", SSEPackedDouble>, OpSize, VEX;
1171     let Pattern = []<dag> in {
1172       defm VCOMISS  : sse12_ord_cmp<0x2F, VR128, undef, v4f32, f128mem, load,
1173                                       "comiss", SSEPackedSingle>, VEX;
1174       defm VCOMISD  : sse12_ord_cmp<0x2F, VR128, undef, v2f64, f128mem, load,
1175                                       "comisd", SSEPackedDouble>, OpSize, VEX;
1176     }
1177
1178     defm Int_VUCOMISS  : sse12_ord_cmp<0x2E, VR128, X86ucomi, v4f32, f128mem,
1179                               load, "ucomiss", SSEPackedSingle>, VEX;
1180     defm Int_VUCOMISD  : sse12_ord_cmp<0x2E, VR128, X86ucomi, v2f64, f128mem,
1181                               load, "ucomisd", SSEPackedDouble>, OpSize, VEX;
1182
1183     defm Int_VCOMISS  : sse12_ord_cmp<0x2F, VR128, X86comi, v4f32, f128mem,
1184                               load, "comiss", SSEPackedSingle>, VEX;
1185     defm Int_VCOMISD  : sse12_ord_cmp<0x2F, VR128, X86comi, v2f64, f128mem,
1186                               load, "comisd", SSEPackedDouble>, OpSize, VEX;
1187   }
1188   defm UCOMISS  : sse12_ord_cmp<0x2E, FR32, X86cmp, f32, f32mem, loadf32,
1189                                   "ucomiss", SSEPackedSingle>, TB;
1190   defm UCOMISD  : sse12_ord_cmp<0x2E, FR64, X86cmp, f64, f64mem, loadf64,
1191                                   "ucomisd", SSEPackedDouble>, TB, OpSize;
1192
1193   let Pattern = []<dag> in {
1194     defm COMISS  : sse12_ord_cmp<0x2F, VR128, undef, v4f32, f128mem, load,
1195                                     "comiss", SSEPackedSingle>, TB;
1196     defm COMISD  : sse12_ord_cmp<0x2F, VR128, undef, v2f64, f128mem, load,
1197                                     "comisd", SSEPackedDouble>, TB, OpSize;
1198   }
1199
1200   defm Int_UCOMISS  : sse12_ord_cmp<0x2E, VR128, X86ucomi, v4f32, f128mem,
1201                               load, "ucomiss", SSEPackedSingle>, TB;
1202   defm Int_UCOMISD  : sse12_ord_cmp<0x2E, VR128, X86ucomi, v2f64, f128mem,
1203                               load, "ucomisd", SSEPackedDouble>, TB, OpSize;
1204
1205   defm Int_COMISS  : sse12_ord_cmp<0x2F, VR128, X86comi, v4f32, f128mem, load,
1206                                   "comiss", SSEPackedSingle>, TB;
1207   defm Int_COMISD  : sse12_ord_cmp<0x2F, VR128, X86comi, v2f64, f128mem, load,
1208                                   "comisd", SSEPackedDouble>, TB, OpSize;
1209 } // Defs = [EFLAGS]
1210
1211 // sse12_cmp_packed - sse 1 & 2 compared packed instructions
1212 multiclass sse12_cmp_packed<RegisterClass RC, X86MemOperand x86memop,
1213                             Intrinsic Int, string asm, string asm_alt,
1214                             Domain d> {
1215   def rri : PIi8<0xC2, MRMSrcReg,
1216              (outs RC:$dst), (ins RC:$src1, RC:$src, SSECC:$cc), asm,
1217              [(set RC:$dst, (Int RC:$src1, RC:$src, imm:$cc))], d>;
1218   def rmi : PIi8<0xC2, MRMSrcMem,
1219              (outs RC:$dst), (ins RC:$src1, f128mem:$src, SSECC:$cc), asm,
1220              [(set RC:$dst, (Int RC:$src1, (memop addr:$src), imm:$cc))], d>;
1221   // Accept explicit immediate argument form instead of comparison code.
1222   let isAsmParserOnly = 1 in {
1223     def rri_alt : PIi8<0xC2, MRMSrcReg,
1224                (outs RC:$dst), (ins RC:$src1, RC:$src, i8imm:$src2),
1225                asm_alt, [], d>;
1226     def rmi_alt : PIi8<0xC2, MRMSrcMem,
1227                (outs RC:$dst), (ins RC:$src1, f128mem:$src, i8imm:$src2),
1228                asm_alt, [], d>;
1229   }
1230 }
1231
1232 let isAsmParserOnly = 1 in {
1233   defm VCMPPS : sse12_cmp_packed<VR128, f128mem, int_x86_sse_cmp_ps,
1234                  "cmp${cc}ps\t{$src, $src1, $dst|$dst, $src1, $src}",
1235                  "cmpps\t{$src2, $src, $src1, $dst|$dst, $src1, $src, $src2}",
1236                  SSEPackedSingle>, VEX_4V;
1237   defm VCMPPD : sse12_cmp_packed<VR128, f128mem, int_x86_sse2_cmp_pd,
1238                  "cmp${cc}pd\t{$src, $src1, $dst|$dst, $src1, $src}",
1239                  "cmppd\t{$src2, $src, $src1, $dst|$dst, $src1, $src, $src2}",
1240                  SSEPackedDouble>, OpSize, VEX_4V;
1241   defm VCMPPSY : sse12_cmp_packed<VR256, f256mem, int_x86_avx_cmp_ps_256,
1242                  "cmp${cc}ps\t{$src, $src1, $dst|$dst, $src1, $src}",
1243                  "cmpps\t{$src2, $src, $src1, $dst|$dst, $src1, $src, $src2}",
1244                  SSEPackedSingle>, VEX_4V;
1245   defm VCMPPDY : sse12_cmp_packed<VR256, f256mem, int_x86_avx_cmp_pd_256,
1246                  "cmp${cc}pd\t{$src, $src1, $dst|$dst, $src1, $src}",
1247                  "cmppd\t{$src2, $src, $src1, $dst|$dst, $src1, $src, $src2}",
1248                  SSEPackedDouble>, OpSize, VEX_4V;
1249 }
1250 let Constraints = "$src1 = $dst" in {
1251   defm CMPPS : sse12_cmp_packed<VR128, f128mem, int_x86_sse_cmp_ps,
1252                  "cmp${cc}ps\t{$src, $dst|$dst, $src}",
1253                  "cmpps\t{$src2, $src, $dst|$dst, $src, $src2}",
1254                  SSEPackedSingle>, TB;
1255   defm CMPPD : sse12_cmp_packed<VR128, f128mem, int_x86_sse2_cmp_pd,
1256                  "cmp${cc}pd\t{$src, $dst|$dst, $src}",
1257                  "cmppd\t{$src2, $src, $dst|$dst, $src, $src2}",
1258                  SSEPackedDouble>, TB, OpSize;
1259 }
1260
1261 def : Pat<(v4i32 (X86cmpps (v4f32 VR128:$src1), VR128:$src2, imm:$cc)),
1262           (CMPPSrri (v4f32 VR128:$src1), (v4f32 VR128:$src2), imm:$cc)>;
1263 def : Pat<(v4i32 (X86cmpps (v4f32 VR128:$src1), (memop addr:$src2), imm:$cc)),
1264           (CMPPSrmi (v4f32 VR128:$src1), addr:$src2, imm:$cc)>;
1265 def : Pat<(v2i64 (X86cmppd (v2f64 VR128:$src1), VR128:$src2, imm:$cc)),
1266           (CMPPDrri VR128:$src1, VR128:$src2, imm:$cc)>;
1267 def : Pat<(v2i64 (X86cmppd (v2f64 VR128:$src1), (memop addr:$src2), imm:$cc)),
1268           (CMPPDrmi VR128:$src1, addr:$src2, imm:$cc)>;
1269
1270 //===----------------------------------------------------------------------===//
1271 // SSE 1 & 2 - Shuffle Instructions
1272 //===----------------------------------------------------------------------===//
1273
1274 /// sse12_shuffle - sse 1 & 2 shuffle instructions
1275 multiclass sse12_shuffle<RegisterClass RC, X86MemOperand x86memop,
1276                          ValueType vt, string asm, PatFrag mem_frag,
1277                          Domain d, bit IsConvertibleToThreeAddress = 0> {
1278   def rmi : PIi8<0xC6, MRMSrcMem, (outs RC:$dst),
1279                    (ins RC:$src1, f128mem:$src2, i8imm:$src3), asm,
1280                    [(set RC:$dst, (vt (shufp:$src3
1281                             RC:$src1, (mem_frag addr:$src2))))], d>;
1282   let isConvertibleToThreeAddress = IsConvertibleToThreeAddress in
1283     def rri : PIi8<0xC6, MRMSrcReg, (outs RC:$dst),
1284                    (ins RC:$src1, RC:$src2, i8imm:$src3), asm,
1285                    [(set RC:$dst,
1286                             (vt (shufp:$src3 RC:$src1, RC:$src2)))], d>;
1287 }
1288
1289 let isAsmParserOnly = 1 in {
1290   defm VSHUFPS  : sse12_shuffle<VR128, f128mem, v4f32,
1291              "shufps\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}",
1292              memopv4f32, SSEPackedSingle>, VEX_4V;
1293   defm VSHUFPSY : sse12_shuffle<VR256, f256mem, v8f32,
1294              "shufps\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}",
1295              memopv8f32, SSEPackedSingle>, VEX_4V;
1296   defm VSHUFPD  : sse12_shuffle<VR128, f128mem, v2f64,
1297              "shufpd\t{$src3, $src2, $src1, $dst|$dst, $src2, $src2, $src3}",
1298              memopv2f64, SSEPackedDouble>, OpSize, VEX_4V;
1299   defm VSHUFPDY : sse12_shuffle<VR256, f256mem, v4f64,
1300              "shufpd\t{$src3, $src2, $src1, $dst|$dst, $src2, $src2, $src3}",
1301              memopv4f64, SSEPackedDouble>, OpSize, VEX_4V;
1302 }
1303
1304 let Constraints = "$src1 = $dst" in {
1305   defm SHUFPS : sse12_shuffle<VR128, f128mem, v4f32,
1306                     "shufps\t{$src3, $src2, $dst|$dst, $src2, $src3}",
1307                     memopv4f32, SSEPackedSingle, 1 /* cvt to pshufd */>,
1308                     TB;
1309   defm SHUFPD : sse12_shuffle<VR128, f128mem, v2f64,
1310                     "shufpd\t{$src3, $src2, $dst|$dst, $src2, $src3}",
1311                     memopv2f64, SSEPackedDouble>, TB, OpSize;
1312 }
1313
1314 //===----------------------------------------------------------------------===//
1315 // SSE 1 & 2 - Unpack Instructions
1316 //===----------------------------------------------------------------------===//
1317
1318 /// sse12_unpack_interleave - sse 1 & 2 unpack and interleave
1319 multiclass sse12_unpack_interleave<bits<8> opc, PatFrag OpNode, ValueType vt,
1320                                    PatFrag mem_frag, RegisterClass RC,
1321                                    X86MemOperand x86memop, string asm,
1322                                    Domain d> {
1323     def rr : PI<opc, MRMSrcReg,
1324                 (outs RC:$dst), (ins RC:$src1, RC:$src2),
1325                 asm, [(set RC:$dst,
1326                            (vt (OpNode RC:$src1, RC:$src2)))], d>;
1327     def rm : PI<opc, MRMSrcMem,
1328                 (outs RC:$dst), (ins RC:$src1, x86memop:$src2),
1329                 asm, [(set RC:$dst,
1330                            (vt (OpNode RC:$src1,
1331                                        (mem_frag addr:$src2))))], d>;
1332 }
1333
1334 let AddedComplexity = 10 in {
1335   let isAsmParserOnly = 1 in {
1336     defm VUNPCKHPS: sse12_unpack_interleave<0x15, unpckh, v4f32, memopv4f32,
1337           VR128, f128mem, "unpckhps\t{$src2, $src1, $dst|$dst, $src1, $src2}",
1338                          SSEPackedSingle>, VEX_4V;
1339     defm VUNPCKHPD: sse12_unpack_interleave<0x15, unpckh, v2f64, memopv2f64,
1340           VR128, f128mem, "unpckhpd\t{$src2, $src1, $dst|$dst, $src1, $src2}",
1341                          SSEPackedDouble>, OpSize, VEX_4V;
1342     defm VUNPCKLPS: sse12_unpack_interleave<0x14, unpckl, v4f32, memopv4f32,
1343           VR128, f128mem, "unpcklps\t{$src2, $src1, $dst|$dst, $src1, $src2}",
1344                          SSEPackedSingle>, VEX_4V;
1345     defm VUNPCKLPD: sse12_unpack_interleave<0x14, unpckl, v2f64, memopv2f64,
1346           VR128, f128mem, "unpcklpd\t{$src2, $src1, $dst|$dst, $src1, $src2}",
1347                          SSEPackedDouble>, OpSize, VEX_4V;
1348
1349     defm VUNPCKHPSY: sse12_unpack_interleave<0x15, unpckh, v8f32, memopv8f32,
1350           VR256, f256mem, "unpckhps\t{$src2, $src1, $dst|$dst, $src1, $src2}",
1351                          SSEPackedSingle>, VEX_4V;
1352     defm VUNPCKHPDY: sse12_unpack_interleave<0x15, unpckh, v4f64, memopv4f64,
1353           VR256, f256mem, "unpckhpd\t{$src2, $src1, $dst|$dst, $src1, $src2}",
1354                          SSEPackedDouble>, OpSize, VEX_4V;
1355     defm VUNPCKLPSY: sse12_unpack_interleave<0x14, unpckl, v8f32, memopv8f32,
1356           VR256, f256mem, "unpcklps\t{$src2, $src1, $dst|$dst, $src1, $src2}",
1357                          SSEPackedSingle>, VEX_4V;
1358     defm VUNPCKLPDY: sse12_unpack_interleave<0x14, unpckl, v4f64, memopv4f64,
1359           VR256, f256mem, "unpcklpd\t{$src2, $src1, $dst|$dst, $src1, $src2}",
1360                          SSEPackedDouble>, OpSize, VEX_4V;
1361   }
1362
1363   let Constraints = "$src1 = $dst" in {
1364     defm UNPCKHPS: sse12_unpack_interleave<0x15, unpckh, v4f32, memopv4f32,
1365           VR128, f128mem, "unpckhps\t{$src2, $dst|$dst, $src2}",
1366                          SSEPackedSingle>, TB;
1367     defm UNPCKHPD: sse12_unpack_interleave<0x15, unpckh, v2f64, memopv2f64,
1368           VR128, f128mem, "unpckhpd\t{$src2, $dst|$dst, $src2}",
1369                          SSEPackedDouble>, TB, OpSize;
1370     defm UNPCKLPS: sse12_unpack_interleave<0x14, unpckl, v4f32, memopv4f32,
1371           VR128, f128mem, "unpcklps\t{$src2, $dst|$dst, $src2}",
1372                          SSEPackedSingle>, TB;
1373     defm UNPCKLPD: sse12_unpack_interleave<0x14, unpckl, v2f64, memopv2f64,
1374           VR128, f128mem, "unpcklpd\t{$src2, $dst|$dst, $src2}",
1375                          SSEPackedDouble>, TB, OpSize;
1376   } // Constraints = "$src1 = $dst"
1377 } // AddedComplexity
1378
1379 //===----------------------------------------------------------------------===//
1380 // SSE 1 & 2 - Extract Floating-Point Sign mask
1381 //===----------------------------------------------------------------------===//
1382
1383 /// sse12_extr_sign_mask - sse 1 & 2 unpack and interleave
1384 multiclass sse12_extr_sign_mask<RegisterClass RC, Intrinsic Int, string asm,
1385                                 Domain d> {
1386   def rr32 : PI<0x50, MRMSrcReg, (outs GR32:$dst), (ins RC:$src),
1387                 !strconcat(asm, "\t{$src, $dst|$dst, $src}"),
1388                      [(set GR32:$dst, (Int RC:$src))], d>;
1389   def rr64 : PI<0x50, MRMSrcReg, (outs GR64:$dst), (ins RC:$src),
1390                 !strconcat(asm, "\t{$src, $dst|$dst, $src}"), [], d>, REX_W;
1391 }
1392
1393 // Mask creation
1394 defm MOVMSKPS : sse12_extr_sign_mask<VR128, int_x86_sse_movmsk_ps, "movmskps",
1395                                      SSEPackedSingle>, TB;
1396 defm MOVMSKPD : sse12_extr_sign_mask<VR128, int_x86_sse2_movmsk_pd, "movmskpd",
1397                                      SSEPackedDouble>, TB, OpSize;
1398
1399 let isAsmParserOnly = 1 in {
1400   defm VMOVMSKPS : sse12_extr_sign_mask<VR128, int_x86_sse_movmsk_ps,
1401                                         "movmskps", SSEPackedSingle>, VEX;
1402   defm VMOVMSKPD : sse12_extr_sign_mask<VR128, int_x86_sse2_movmsk_pd,
1403                                         "movmskpd", SSEPackedDouble>, OpSize,
1404                                         VEX;
1405   defm VMOVMSKPSY : sse12_extr_sign_mask<VR256, int_x86_avx_movmsk_ps_256,
1406                                         "movmskps", SSEPackedSingle>, VEX;
1407   defm VMOVMSKPDY : sse12_extr_sign_mask<VR256, int_x86_avx_movmsk_pd_256,
1408                                         "movmskpd", SSEPackedDouble>, OpSize,
1409                                         VEX;
1410
1411   // Assembler Only
1412   def VMOVMSKPSr64r : PI<0x50, MRMSrcReg, (outs GR64:$dst), (ins VR128:$src),
1413              "movmskps\t{$src, $dst|$dst, $src}", [], SSEPackedSingle>, VEX;
1414   def VMOVMSKPDr64r : PI<0x50, MRMSrcReg, (outs GR64:$dst), (ins VR128:$src),
1415              "movmskpd\t{$src, $dst|$dst, $src}", [], SSEPackedDouble>, OpSize,
1416              VEX;
1417   def VMOVMSKPSYr64r : PI<0x50, MRMSrcReg, (outs GR64:$dst), (ins VR256:$src),
1418              "movmskps\t{$src, $dst|$dst, $src}", [], SSEPackedSingle>, VEX;
1419   def VMOVMSKPDYr64r : PI<0x50, MRMSrcReg, (outs GR64:$dst), (ins VR256:$src),
1420              "movmskpd\t{$src, $dst|$dst, $src}", [], SSEPackedDouble>, OpSize,
1421              VEX;
1422 }
1423
1424 //===----------------------------------------------------------------------===//
1425 // SSE 1 & 2 - Misc aliasing of packed SSE 1 & 2 instructions
1426 //===----------------------------------------------------------------------===//
1427
1428 // Aliases of packed SSE1 & SSE2 instructions for scalar use. These all have
1429 // names that start with 'Fs'.
1430
1431 // Alias instructions that map fld0 to pxor for sse.
1432 let isReMaterializable = 1, isAsCheapAsAMove = 1, isCodeGenOnly = 1,
1433     canFoldAsLoad = 1 in {
1434   // FIXME: Set encoding to pseudo!
1435 def FsFLD0SS : I<0xEF, MRMInitReg, (outs FR32:$dst), (ins), "",
1436                  [(set FR32:$dst, fp32imm0)]>,
1437                  Requires<[HasSSE1]>, TB, OpSize;
1438 def FsFLD0SD : I<0xEF, MRMInitReg, (outs FR64:$dst), (ins), "",
1439                  [(set FR64:$dst, fpimm0)]>,
1440                Requires<[HasSSE2]>, TB, OpSize;
1441 }
1442
1443 // Alias instruction to do FR32 or FR64 reg-to-reg copy using movaps. Upper
1444 // bits are disregarded.
1445 let neverHasSideEffects = 1 in {
1446 def FsMOVAPSrr : PSI<0x28, MRMSrcReg, (outs FR32:$dst), (ins FR32:$src),
1447                      "movaps\t{$src, $dst|$dst, $src}", []>;
1448 def FsMOVAPDrr : PDI<0x28, MRMSrcReg, (outs FR64:$dst), (ins FR64:$src),
1449                      "movapd\t{$src, $dst|$dst, $src}", []>;
1450 }
1451
1452 // Alias instruction to load FR32 or FR64 from f128mem using movaps. Upper
1453 // bits are disregarded.
1454 let canFoldAsLoad = 1, isReMaterializable = 1 in {
1455 def FsMOVAPSrm : PSI<0x28, MRMSrcMem, (outs FR32:$dst), (ins f128mem:$src),
1456                      "movaps\t{$src, $dst|$dst, $src}",
1457                      [(set FR32:$dst, (alignedloadfsf32 addr:$src))]>;
1458 def FsMOVAPDrm : PDI<0x28, MRMSrcMem, (outs FR64:$dst), (ins f128mem:$src),
1459                      "movapd\t{$src, $dst|$dst, $src}",
1460                      [(set FR64:$dst, (alignedloadfsf64 addr:$src))]>;
1461 }
1462
1463 //===----------------------------------------------------------------------===//
1464 // SSE 1 & 2 - Logical Instructions
1465 //===----------------------------------------------------------------------===//
1466
1467 /// sse12_fp_alias_pack_logical - SSE 1 & 2 aliased packed FP logical ops
1468 ///
1469 multiclass sse12_fp_alias_pack_logical<bits<8> opc, string OpcodeStr,
1470                                        SDNode OpNode> {
1471   let isAsmParserOnly = 1 in {
1472     defm V#NAME#PS : sse12_fp_packed<opc, !strconcat(OpcodeStr, "ps"), OpNode,
1473                 FR32, f32, f128mem, memopfsf32, SSEPackedSingle, 0>, VEX_4V;
1474
1475     defm V#NAME#PD : sse12_fp_packed<opc, !strconcat(OpcodeStr, "pd"), OpNode,
1476           FR64, f64, f128mem, memopfsf64, SSEPackedDouble, 0>, OpSize, VEX_4V;
1477   }
1478
1479   let Constraints = "$src1 = $dst" in {
1480     defm PS : sse12_fp_packed<opc, !strconcat(OpcodeStr, "ps"), OpNode, FR32,
1481                 f32, f128mem, memopfsf32, SSEPackedSingle>, TB;
1482
1483     defm PD : sse12_fp_packed<opc, !strconcat(OpcodeStr, "pd"), OpNode, FR64,
1484                 f64, f128mem, memopfsf64, SSEPackedDouble>, TB, OpSize;
1485   }
1486 }
1487
1488 // Alias bitwise logical operations using SSE logical ops on packed FP values.
1489 let mayLoad = 0 in {
1490   defm FsAND  : sse12_fp_alias_pack_logical<0x54, "and", X86fand>;
1491   defm FsOR   : sse12_fp_alias_pack_logical<0x56, "or", X86for>;
1492   defm FsXOR  : sse12_fp_alias_pack_logical<0x57, "xor", X86fxor>;
1493 }
1494
1495 let neverHasSideEffects = 1, Pattern = []<dag>, isCommutable = 0 in
1496   defm FsANDN : sse12_fp_alias_pack_logical<0x55, "andn", undef>;
1497
1498 /// sse12_fp_packed_logical - SSE 1 & 2 packed FP logical ops
1499 ///
1500 multiclass sse12_fp_packed_logical<bits<8> opc, string OpcodeStr,
1501                                  SDNode OpNode, int HasPat = 0,
1502                                  list<list<dag>> Pattern = []> {
1503   let isAsmParserOnly = 1, Pattern = []<dag> in {
1504     defm V#NAME#PS : sse12_fp_packed_logical_rm<opc, VR128, SSEPackedSingle,
1505          !strconcat(OpcodeStr, "ps"), f128mem,
1506          !if(HasPat, Pattern[0], // rr
1507                      [(set VR128:$dst, (v2i64 (OpNode VR128:$src1,
1508                                                       VR128:$src2)))]),
1509          !if(HasPat, Pattern[2], // rm
1510                      [(set VR128:$dst, (OpNode (bc_v2i64 (v4f32 VR128:$src1)),
1511                                                (memopv2i64 addr:$src2)))]), 0>,
1512                                                VEX_4V;
1513
1514     defm V#NAME#PD : sse12_fp_packed_logical_rm<opc, VR128, SSEPackedDouble,
1515          !strconcat(OpcodeStr, "pd"), f128mem,
1516          !if(HasPat, Pattern[1], // rr
1517                      [(set VR128:$dst, (OpNode (bc_v2i64 (v2f64 VR128:$src1)),
1518                                                (bc_v2i64 (v2f64
1519                                                VR128:$src2))))]),
1520          !if(HasPat, Pattern[3], // rm
1521                      [(set VR128:$dst, (OpNode (bc_v2i64 (v2f64 VR128:$src1)),
1522                                                (memopv2i64 addr:$src2)))]), 0>,
1523                                                                OpSize, VEX_4V;
1524   }
1525   let Constraints = "$src1 = $dst" in {
1526     defm PS : sse12_fp_packed_logical_rm<opc, VR128, SSEPackedSingle,
1527          !strconcat(OpcodeStr, "ps"), f128mem,
1528          !if(HasPat, Pattern[0], // rr
1529                      [(set VR128:$dst, (v2i64 (OpNode VR128:$src1,
1530                                                       VR128:$src2)))]),
1531          !if(HasPat, Pattern[2], // rm
1532                      [(set VR128:$dst, (OpNode (bc_v2i64 (v4f32 VR128:$src1)),
1533                                                (memopv2i64 addr:$src2)))])>, TB;
1534
1535     defm PD : sse12_fp_packed_logical_rm<opc, VR128, SSEPackedDouble,
1536          !strconcat(OpcodeStr, "pd"), f128mem,
1537          !if(HasPat, Pattern[1], // rr
1538                      [(set VR128:$dst, (OpNode (bc_v2i64 (v2f64 VR128:$src1)),
1539                                                (bc_v2i64 (v2f64
1540                                                VR128:$src2))))]),
1541          !if(HasPat, Pattern[3], // rm
1542                      [(set VR128:$dst, (OpNode (bc_v2i64 (v2f64 VR128:$src1)),
1543                                                (memopv2i64 addr:$src2)))])>,
1544                                                                     TB, OpSize;
1545   }
1546 }
1547
1548 /// sse12_fp_packed_logical_y - AVX 256-bit SSE 1 & 2 logical ops forms
1549 ///
1550 let isAsmParserOnly = 1 in {
1551 multiclass sse12_fp_packed_logical_y<bits<8> opc, string OpcodeStr> {
1552     defm PSY : sse12_fp_packed_logical_rm<opc, VR256, SSEPackedSingle,
1553           !strconcat(OpcodeStr, "ps"), f256mem, [], [], 0>, VEX_4V;
1554
1555     defm PDY : sse12_fp_packed_logical_rm<opc, VR256, SSEPackedDouble,
1556           !strconcat(OpcodeStr, "pd"), f256mem, [], [], 0>, OpSize, VEX_4V;
1557 }
1558 }
1559
1560 // AVX 256-bit packed logical ops forms
1561 defm VAND : sse12_fp_packed_logical_y<0x54, "and">;
1562 defm VOR  : sse12_fp_packed_logical_y<0x56, "or">;
1563 defm VXOR : sse12_fp_packed_logical_y<0x57, "xor">;
1564 let isCommutable = 0 in
1565   defm VANDN : sse12_fp_packed_logical_y<0x55, "andn">;
1566
1567 defm AND  : sse12_fp_packed_logical<0x54, "and", and>;
1568 defm OR   : sse12_fp_packed_logical<0x56, "or", or>;
1569 defm XOR  : sse12_fp_packed_logical<0x57, "xor", xor>;
1570 let isCommutable = 0 in
1571   defm ANDN : sse12_fp_packed_logical<0x55, "andn", undef /* dummy */, 1, [
1572     // single r+r
1573     [(set VR128:$dst, (v2i64 (and (xor VR128:$src1,
1574                                        (bc_v2i64 (v4i32 immAllOnesV))),
1575                                    VR128:$src2)))],
1576     // double r+r
1577     [(set VR128:$dst, (and (vnot (bc_v2i64 (v2f64 VR128:$src1))),
1578                                  (bc_v2i64 (v2f64 VR128:$src2))))],
1579     // single r+m
1580     [(set VR128:$dst, (v2i64 (and (xor (bc_v2i64 (v4f32 VR128:$src1)),
1581                                        (bc_v2i64 (v4i32 immAllOnesV))),
1582                                   (memopv2i64 addr:$src2))))],
1583     // double r+m
1584     [(set VR128:$dst, (and (vnot (bc_v2i64 (v2f64 VR128:$src1))),
1585                            (memopv2i64 addr:$src2)))]]>;
1586
1587 //===----------------------------------------------------------------------===//
1588 // SSE 1 & 2 - Arithmetic Instructions
1589 //===----------------------------------------------------------------------===//
1590
1591 /// basic_sse12_fp_binop_xxx - SSE 1 & 2 binops come in both scalar and
1592 /// vector forms.
1593 ///
1594 /// In addition, we also have a special variant of the scalar form here to
1595 /// represent the associated intrinsic operation.  This form is unlike the
1596 /// plain scalar form, in that it takes an entire vector (instead of a scalar)
1597 /// and leaves the top elements unmodified (therefore these cannot be commuted).
1598 ///
1599 /// These three forms can each be reg+reg or reg+mem.
1600 ///
1601
1602 /// FIXME: once all 256-bit intrinsics are matched, cleanup and refactor those
1603 /// classes below
1604 multiclass basic_sse12_fp_binop_s<bits<8> opc, string OpcodeStr, SDNode OpNode,
1605                                   bit Is2Addr = 1> {
1606   defm SS : sse12_fp_scalar<opc, !strconcat(OpcodeStr, "ss"),
1607                             OpNode, FR32, f32mem, Is2Addr>, XS;
1608   defm SD : sse12_fp_scalar<opc, !strconcat(OpcodeStr, "sd"),
1609                             OpNode, FR64, f64mem, Is2Addr>, XD;
1610 }
1611
1612 multiclass basic_sse12_fp_binop_p<bits<8> opc, string OpcodeStr, SDNode OpNode,
1613                                    bit Is2Addr = 1> {
1614   let mayLoad = 0 in {
1615   defm PS : sse12_fp_packed<opc, !strconcat(OpcodeStr, "ps"), OpNode, VR128,
1616               v4f32, f128mem, memopv4f32, SSEPackedSingle, Is2Addr>, TB;
1617   defm PD : sse12_fp_packed<opc, !strconcat(OpcodeStr, "pd"), OpNode, VR128,
1618               v2f64, f128mem, memopv2f64, SSEPackedDouble, Is2Addr>, TB, OpSize;
1619   }
1620 }
1621
1622 multiclass basic_sse12_fp_binop_p_y<bits<8> opc, string OpcodeStr,
1623                                     SDNode OpNode> {
1624   let mayLoad = 0 in {
1625     defm PSY : sse12_fp_packed<opc, !strconcat(OpcodeStr, "ps"), OpNode, VR256,
1626                 v8f32, f256mem, memopv8f32, SSEPackedSingle, 0>, TB;
1627     defm PDY : sse12_fp_packed<opc, !strconcat(OpcodeStr, "pd"), OpNode, VR256,
1628                 v4f64, f256mem, memopv4f64, SSEPackedDouble, 0>, TB, OpSize;
1629   }
1630 }
1631
1632 multiclass basic_sse12_fp_binop_s_int<bits<8> opc, string OpcodeStr,
1633                                       bit Is2Addr = 1> {
1634   defm SS : sse12_fp_scalar_int<opc, OpcodeStr, VR128,
1635      !strconcat(OpcodeStr, "ss"), "", "_ss", ssmem, sse_load_f32, Is2Addr>, XS;
1636   defm SD : sse12_fp_scalar_int<opc, OpcodeStr, VR128,
1637      !strconcat(OpcodeStr, "sd"), "2", "_sd", sdmem, sse_load_f64, Is2Addr>, XD;
1638 }
1639
1640 multiclass basic_sse12_fp_binop_p_int<bits<8> opc, string OpcodeStr,
1641                                       bit Is2Addr = 1> {
1642   defm PS : sse12_fp_packed_int<opc, OpcodeStr, VR128,
1643      !strconcat(OpcodeStr, "ps"), "sse", "_ps", f128mem, memopv4f32,
1644                                               SSEPackedSingle, Is2Addr>, TB;
1645
1646   defm PD : sse12_fp_packed_int<opc, OpcodeStr, VR128,
1647      !strconcat(OpcodeStr, "pd"), "sse2", "_pd", f128mem, memopv2f64,
1648                                       SSEPackedDouble, Is2Addr>, TB, OpSize;
1649 }
1650
1651 multiclass basic_sse12_fp_binop_p_y_int<bits<8> opc, string OpcodeStr> {
1652   defm PSY : sse12_fp_packed_int<opc, OpcodeStr, VR256,
1653      !strconcat(OpcodeStr, "ps"), "avx", "_ps_256", f256mem, memopv8f32,
1654       SSEPackedSingle, 0>, TB;
1655
1656   defm PDY : sse12_fp_packed_int<opc, OpcodeStr, VR256,
1657      !strconcat(OpcodeStr, "pd"), "avx", "_pd_256", f256mem, memopv4f64,
1658       SSEPackedDouble, 0>, TB, OpSize;
1659 }
1660
1661 // Binary Arithmetic instructions
1662 let isAsmParserOnly = 1 in {
1663   defm VADD : basic_sse12_fp_binop_s<0x58, "add", fadd, 0>,
1664               basic_sse12_fp_binop_s_int<0x58, "add", 0>,
1665               basic_sse12_fp_binop_p<0x58, "add", fadd, 0>,
1666               basic_sse12_fp_binop_p_y<0x58, "add", fadd>, VEX_4V;
1667   defm VMUL : basic_sse12_fp_binop_s<0x59, "mul", fmul, 0>,
1668               basic_sse12_fp_binop_s_int<0x59, "mul", 0>,
1669               basic_sse12_fp_binop_p<0x59, "mul", fmul, 0>,
1670               basic_sse12_fp_binop_p_y<0x59, "mul", fmul>, VEX_4V;
1671
1672   let isCommutable = 0 in {
1673     defm VSUB : basic_sse12_fp_binop_s<0x5C, "sub", fsub, 0>,
1674                 basic_sse12_fp_binop_s_int<0x5C, "sub", 0>,
1675                 basic_sse12_fp_binop_p<0x5C, "sub", fsub, 0>,
1676                 basic_sse12_fp_binop_p_y<0x5C, "sub", fsub>, VEX_4V;
1677     defm VDIV : basic_sse12_fp_binop_s<0x5E, "div", fdiv, 0>,
1678                 basic_sse12_fp_binop_s_int<0x5E, "div", 0>,
1679                 basic_sse12_fp_binop_p<0x5E, "div", fdiv, 0>,
1680                 basic_sse12_fp_binop_p_y<0x5E, "div", fdiv>, VEX_4V;
1681     defm VMAX : basic_sse12_fp_binop_s<0x5F, "max", X86fmax, 0>,
1682                 basic_sse12_fp_binop_s_int<0x5F, "max", 0>,
1683                 basic_sse12_fp_binop_p<0x5F, "max", X86fmax, 0>,
1684                 basic_sse12_fp_binop_p_int<0x5F, "max", 0>,
1685                 basic_sse12_fp_binop_p_y<0x5F, "max", X86fmax>,
1686                 basic_sse12_fp_binop_p_y_int<0x5F, "max">, VEX_4V;
1687     defm VMIN : basic_sse12_fp_binop_s<0x5D, "min", X86fmin, 0>,
1688                 basic_sse12_fp_binop_s_int<0x5D, "min", 0>,
1689                 basic_sse12_fp_binop_p<0x5D, "min", X86fmin, 0>,
1690                 basic_sse12_fp_binop_p_int<0x5D, "min", 0>,
1691                 basic_sse12_fp_binop_p_y_int<0x5D, "min">,
1692                 basic_sse12_fp_binop_p_y<0x5D, "min", X86fmin>, VEX_4V;
1693   }
1694 }
1695
1696 let Constraints = "$src1 = $dst" in {
1697   defm ADD : basic_sse12_fp_binop_s<0x58, "add", fadd>,
1698              basic_sse12_fp_binop_p<0x58, "add", fadd>,
1699              basic_sse12_fp_binop_s_int<0x58, "add">;
1700   defm MUL : basic_sse12_fp_binop_s<0x59, "mul", fmul>,
1701              basic_sse12_fp_binop_p<0x59, "mul", fmul>,
1702              basic_sse12_fp_binop_s_int<0x59, "mul">;
1703
1704   let isCommutable = 0 in {
1705     defm SUB : basic_sse12_fp_binop_s<0x5C, "sub", fsub>,
1706                basic_sse12_fp_binop_p<0x5C, "sub", fsub>,
1707                basic_sse12_fp_binop_s_int<0x5C, "sub">;
1708     defm DIV : basic_sse12_fp_binop_s<0x5E, "div", fdiv>,
1709                basic_sse12_fp_binop_p<0x5E, "div", fdiv>,
1710                basic_sse12_fp_binop_s_int<0x5E, "div">;
1711     defm MAX : basic_sse12_fp_binop_s<0x5F, "max", X86fmax>,
1712                basic_sse12_fp_binop_p<0x5F, "max", X86fmax>,
1713                basic_sse12_fp_binop_s_int<0x5F, "max">,
1714                basic_sse12_fp_binop_p_int<0x5F, "max">;
1715     defm MIN : basic_sse12_fp_binop_s<0x5D, "min", X86fmin>,
1716                basic_sse12_fp_binop_p<0x5D, "min", X86fmin>,
1717                basic_sse12_fp_binop_s_int<0x5D, "min">,
1718                basic_sse12_fp_binop_p_int<0x5D, "min">;
1719   }
1720 }
1721
1722 /// Unop Arithmetic
1723 /// In addition, we also have a special variant of the scalar form here to
1724 /// represent the associated intrinsic operation.  This form is unlike the
1725 /// plain scalar form, in that it takes an entire vector (instead of a
1726 /// scalar) and leaves the top elements undefined.
1727 ///
1728 /// And, we have a special variant form for a full-vector intrinsic form.
1729
1730 /// sse1_fp_unop_s - SSE1 unops in scalar form.
1731 multiclass sse1_fp_unop_s<bits<8> opc, string OpcodeStr,
1732                           SDNode OpNode, Intrinsic F32Int> {
1733   def SSr : SSI<opc, MRMSrcReg, (outs FR32:$dst), (ins FR32:$src),
1734                 !strconcat(OpcodeStr, "ss\t{$src, $dst|$dst, $src}"),
1735                 [(set FR32:$dst, (OpNode FR32:$src))]>;
1736   // For scalar unary operations, fold a load into the operation
1737   // only in OptForSize mode. It eliminates an instruction, but it also
1738   // eliminates a whole-register clobber (the load), so it introduces a
1739   // partial register update condition.
1740   def SSm : I<opc, MRMSrcMem, (outs FR32:$dst), (ins f32mem:$src),
1741                 !strconcat(OpcodeStr, "ss\t{$src, $dst|$dst, $src}"),
1742                 [(set FR32:$dst, (OpNode (load addr:$src)))]>, XS,
1743             Requires<[HasSSE1, OptForSize]>;
1744   def SSr_Int : SSI<opc, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
1745                     !strconcat(OpcodeStr, "ss\t{$src, $dst|$dst, $src}"),
1746                     [(set VR128:$dst, (F32Int VR128:$src))]>;
1747   def SSm_Int : SSI<opc, MRMSrcMem, (outs VR128:$dst), (ins ssmem:$src),
1748                     !strconcat(OpcodeStr, "ss\t{$src, $dst|$dst, $src}"),
1749                     [(set VR128:$dst, (F32Int sse_load_f32:$src))]>;
1750 }
1751
1752 /// sse1_fp_unop_s_avx - AVX SSE1 unops in scalar form.
1753 multiclass sse1_fp_unop_s_avx<bits<8> opc, string OpcodeStr,
1754                               SDNode OpNode, Intrinsic F32Int> {
1755   def SSr : SSI<opc, MRMSrcReg, (outs FR32:$dst), (ins FR32:$src1, FR32:$src2),
1756                 !strconcat(OpcodeStr,
1757                            "ss\t{$src2, $src1, $dst|$dst, $src1, $src2}"), []>;
1758   def SSm : I<opc, MRMSrcMem, (outs FR32:$dst), (ins FR32:$src1, f32mem:$src2),
1759                 !strconcat(OpcodeStr,
1760                            "ss\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
1761                 []>, XS, Requires<[HasAVX, OptForSize]>;
1762   def SSr_Int : SSI<opc, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
1763                 !strconcat(OpcodeStr,
1764                            "ss\t{$src, $dst, $dst|$dst, $dst, $src}"),
1765                 [(set VR128:$dst, (F32Int VR128:$src))]>;
1766   def SSm_Int : SSI<opc, MRMSrcMem, (outs VR128:$dst), (ins ssmem:$src),
1767                 !strconcat(OpcodeStr,
1768                            "ss\t{$src, $dst, $dst|$dst, $dst, $src}"),
1769                 [(set VR128:$dst, (F32Int sse_load_f32:$src))]>;
1770 }
1771
1772 /// sse1_fp_unop_p - SSE1 unops in packed form.
1773 multiclass sse1_fp_unop_p<bits<8> opc, string OpcodeStr, SDNode OpNode> {
1774   def PSr : PSI<opc, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
1775               !strconcat(OpcodeStr, "ps\t{$src, $dst|$dst, $src}"),
1776               [(set VR128:$dst, (v4f32 (OpNode VR128:$src)))]>;
1777   def PSm : PSI<opc, MRMSrcMem, (outs VR128:$dst), (ins f128mem:$src),
1778                 !strconcat(OpcodeStr, "ps\t{$src, $dst|$dst, $src}"),
1779                 [(set VR128:$dst, (OpNode (memopv4f32 addr:$src)))]>;
1780 }
1781
1782 /// sse1_fp_unop_p_y - AVX 256-bit SSE1 unops in packed form.
1783 multiclass sse1_fp_unop_p_y<bits<8> opc, string OpcodeStr, SDNode OpNode> {
1784   def PSYr : PSI<opc, MRMSrcReg, (outs VR256:$dst), (ins VR256:$src),
1785               !strconcat(OpcodeStr, "ps\t{$src, $dst|$dst, $src}"),
1786               [(set VR256:$dst, (v8f32 (OpNode VR256:$src)))]>;
1787   def PSYm : PSI<opc, MRMSrcMem, (outs VR256:$dst), (ins f256mem:$src),
1788                 !strconcat(OpcodeStr, "ps\t{$src, $dst|$dst, $src}"),
1789                 [(set VR256:$dst, (OpNode (memopv8f32 addr:$src)))]>;
1790 }
1791
1792 /// sse1_fp_unop_p_int - SSE1 intrinsics unops in packed forms.
1793 multiclass sse1_fp_unop_p_int<bits<8> opc, string OpcodeStr,
1794                               Intrinsic V4F32Int> {
1795   def PSr_Int : PSI<opc, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
1796                     !strconcat(OpcodeStr, "ps\t{$src, $dst|$dst, $src}"),
1797                     [(set VR128:$dst, (V4F32Int VR128:$src))]>;
1798   def PSm_Int : PSI<opc, MRMSrcMem, (outs VR128:$dst), (ins f128mem:$src),
1799                     !strconcat(OpcodeStr, "ps\t{$src, $dst|$dst, $src}"),
1800                     [(set VR128:$dst, (V4F32Int (memopv4f32 addr:$src)))]>;
1801 }
1802
1803 /// sse1_fp_unop_p_y_int - AVX 256-bit intrinsics unops in packed forms.
1804 multiclass sse1_fp_unop_p_y_int<bits<8> opc, string OpcodeStr,
1805                                 Intrinsic V4F32Int> {
1806   def PSYr_Int : PSI<opc, MRMSrcReg, (outs VR256:$dst), (ins VR256:$src),
1807                     !strconcat(OpcodeStr, "ps\t{$src, $dst|$dst, $src}"),
1808                     [(set VR256:$dst, (V4F32Int VR256:$src))]>;
1809   def PSYm_Int : PSI<opc, MRMSrcMem, (outs VR256:$dst), (ins f256mem:$src),
1810                     !strconcat(OpcodeStr, "ps\t{$src, $dst|$dst, $src}"),
1811                     [(set VR256:$dst, (V4F32Int (memopv8f32 addr:$src)))]>;
1812 }
1813
1814 /// sse2_fp_unop_s - SSE2 unops in scalar form.
1815 multiclass sse2_fp_unop_s<bits<8> opc, string OpcodeStr,
1816                           SDNode OpNode, Intrinsic F64Int> {
1817   def SDr : SDI<opc, MRMSrcReg, (outs FR64:$dst), (ins FR64:$src),
1818                 !strconcat(OpcodeStr, "sd\t{$src, $dst|$dst, $src}"),
1819                 [(set FR64:$dst, (OpNode FR64:$src))]>;
1820   // See the comments in sse1_fp_unop_s for why this is OptForSize.
1821   def SDm : I<opc, MRMSrcMem, (outs FR64:$dst), (ins f64mem:$src),
1822                 !strconcat(OpcodeStr, "sd\t{$src, $dst|$dst, $src}"),
1823                 [(set FR64:$dst, (OpNode (load addr:$src)))]>, XD,
1824             Requires<[HasSSE2, OptForSize]>;
1825   def SDr_Int : SDI<opc, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
1826                     !strconcat(OpcodeStr, "sd\t{$src, $dst|$dst, $src}"),
1827                     [(set VR128:$dst, (F64Int VR128:$src))]>;
1828   def SDm_Int : SDI<opc, MRMSrcMem, (outs VR128:$dst), (ins sdmem:$src),
1829                     !strconcat(OpcodeStr, "sd\t{$src, $dst|$dst, $src}"),
1830                     [(set VR128:$dst, (F64Int sse_load_f64:$src))]>;
1831 }
1832
1833 /// sse2_fp_unop_s_avx - AVX SSE2 unops in scalar form.
1834 multiclass sse2_fp_unop_s_avx<bits<8> opc, string OpcodeStr,
1835                               SDNode OpNode, Intrinsic F64Int> {
1836   def SDr : SDI<opc, MRMSrcReg, (outs FR64:$dst), (ins FR64:$src1, FR64:$src2),
1837                !strconcat(OpcodeStr,
1838                           "sd\t{$src2, $src1, $dst|$dst, $src1, $src2}"), []>;
1839   def SDm : SDI<opc, MRMSrcMem, (outs FR64:$dst),
1840                (ins FR64:$src1, f64mem:$src2),
1841                !strconcat(OpcodeStr,
1842                           "sd\t{$src2, $src1, $dst|$dst, $src1, $src2}"), []>;
1843   def SDr_Int : SDI<opc, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
1844            !strconcat(OpcodeStr, "sd\t{$src, $dst, $dst|$dst, $dst, $src}"),
1845            [(set VR128:$dst, (F64Int VR128:$src))]>;
1846   def SDm_Int : SDI<opc, MRMSrcMem, (outs VR128:$dst), (ins sdmem:$src),
1847            !strconcat(OpcodeStr, "sd\t{$src, $dst, $dst|$dst, $dst, $src}"),
1848            [(set VR128:$dst, (F64Int sse_load_f64:$src))]>;
1849 }
1850
1851 /// sse2_fp_unop_p - SSE2 unops in vector forms.
1852 multiclass sse2_fp_unop_p<bits<8> opc, string OpcodeStr,
1853                           SDNode OpNode> {
1854   def PDr : PDI<opc, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
1855               !strconcat(OpcodeStr, "pd\t{$src, $dst|$dst, $src}"),
1856               [(set VR128:$dst, (v2f64 (OpNode VR128:$src)))]>;
1857   def PDm : PDI<opc, MRMSrcMem, (outs VR128:$dst), (ins f128mem:$src),
1858                 !strconcat(OpcodeStr, "pd\t{$src, $dst|$dst, $src}"),
1859                 [(set VR128:$dst, (OpNode (memopv2f64 addr:$src)))]>;
1860 }
1861
1862 /// sse2_fp_unop_p_y - AVX SSE2 256-bit unops in vector forms.
1863 multiclass sse2_fp_unop_p_y<bits<8> opc, string OpcodeStr, SDNode OpNode> {
1864   def PDYr : PDI<opc, MRMSrcReg, (outs VR256:$dst), (ins VR256:$src),
1865               !strconcat(OpcodeStr, "pd\t{$src, $dst|$dst, $src}"),
1866               [(set VR256:$dst, (v4f64 (OpNode VR256:$src)))]>;
1867   def PDYm : PDI<opc, MRMSrcMem, (outs VR256:$dst), (ins f256mem:$src),
1868                 !strconcat(OpcodeStr, "pd\t{$src, $dst|$dst, $src}"),
1869                 [(set VR256:$dst, (OpNode (memopv4f64 addr:$src)))]>;
1870 }
1871
1872 /// sse2_fp_unop_p_int - SSE2 intrinsic unops in vector forms.
1873 multiclass sse2_fp_unop_p_int<bits<8> opc, string OpcodeStr,
1874                               Intrinsic V2F64Int> {
1875   def PDr_Int : PDI<opc, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
1876                     !strconcat(OpcodeStr, "pd\t{$src, $dst|$dst, $src}"),
1877                     [(set VR128:$dst, (V2F64Int VR128:$src))]>;
1878   def PDm_Int : PDI<opc, MRMSrcMem, (outs VR128:$dst), (ins f128mem:$src),
1879                     !strconcat(OpcodeStr, "pd\t{$src, $dst|$dst, $src}"),
1880                     [(set VR128:$dst, (V2F64Int (memopv2f64 addr:$src)))]>;
1881 }
1882
1883 /// sse2_fp_unop_p_y_int - AVX 256-bit intrinsic unops in vector forms.
1884 multiclass sse2_fp_unop_p_y_int<bits<8> opc, string OpcodeStr,
1885                                 Intrinsic V2F64Int> {
1886   def PDYr_Int : PDI<opc, MRMSrcReg, (outs VR256:$dst), (ins VR256:$src),
1887                     !strconcat(OpcodeStr, "pd\t{$src, $dst|$dst, $src}"),
1888                     [(set VR256:$dst, (V2F64Int VR256:$src))]>;
1889   def PDYm_Int : PDI<opc, MRMSrcMem, (outs VR256:$dst), (ins f256mem:$src),
1890                     !strconcat(OpcodeStr, "pd\t{$src, $dst|$dst, $src}"),
1891                     [(set VR256:$dst, (V2F64Int (memopv4f64 addr:$src)))]>;
1892 }
1893
1894 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
1895   // Square root.
1896   defm VSQRT  : sse1_fp_unop_s_avx<0x51, "vsqrt", fsqrt, int_x86_sse_sqrt_ss>,
1897                 sse2_fp_unop_s_avx<0x51, "vsqrt", fsqrt, int_x86_sse2_sqrt_sd>,
1898                 VEX_4V;
1899
1900   defm VSQRT  : sse1_fp_unop_p<0x51, "vsqrt", fsqrt>,
1901                 sse2_fp_unop_p<0x51, "vsqrt", fsqrt>,
1902                 sse1_fp_unop_p_y<0x51, "vsqrt", fsqrt>,
1903                 sse2_fp_unop_p_y<0x51, "vsqrt", fsqrt>,
1904                 sse1_fp_unop_p_int<0x51, "vsqrt", int_x86_sse_sqrt_ps>,
1905                 sse2_fp_unop_p_int<0x51, "vsqrt", int_x86_sse2_sqrt_pd>,
1906                 sse1_fp_unop_p_y_int<0x51, "vsqrt", int_x86_avx_sqrt_ps_256>,
1907                 sse2_fp_unop_p_y_int<0x51, "vsqrt", int_x86_avx_sqrt_pd_256>,
1908                 VEX;
1909
1910   // Reciprocal approximations. Note that these typically require refinement
1911   // in order to obtain suitable precision.
1912   defm VRSQRT : sse1_fp_unop_s_avx<0x52, "vrsqrt", X86frsqrt,
1913                                    int_x86_sse_rsqrt_ss>, VEX_4V;
1914   defm VRSQRT : sse1_fp_unop_p<0x52, "vrsqrt", X86frsqrt>,
1915                 sse1_fp_unop_p_y<0x52, "vrsqrt", X86frsqrt>,
1916                 sse1_fp_unop_p_y_int<0x52, "vrsqrt", int_x86_avx_rsqrt_ps_256>,
1917                 sse1_fp_unop_p_int<0x52, "vrsqrt", int_x86_sse_rsqrt_ps>, VEX;
1918
1919   defm VRCP   : sse1_fp_unop_s_avx<0x53, "vrcp", X86frcp, int_x86_sse_rcp_ss>,
1920                                    VEX_4V;
1921   defm VRCP   : sse1_fp_unop_p<0x53, "vrcp", X86frcp>,
1922                 sse1_fp_unop_p_y<0x53, "vrcp", X86frcp>,
1923                 sse1_fp_unop_p_y_int<0x53, "vrcp", int_x86_avx_rcp_ps_256>,
1924                 sse1_fp_unop_p_int<0x53, "vrcp", int_x86_sse_rcp_ps>, VEX;
1925 }
1926
1927 // Square root.
1928 defm SQRT  : sse1_fp_unop_s<0x51, "sqrt",  fsqrt, int_x86_sse_sqrt_ss>,
1929              sse1_fp_unop_p<0x51, "sqrt",  fsqrt>,
1930              sse1_fp_unop_p_int<0x51, "sqrt",  int_x86_sse_sqrt_ps>,
1931              sse2_fp_unop_s<0x51, "sqrt",  fsqrt, int_x86_sse2_sqrt_sd>,
1932              sse2_fp_unop_p<0x51, "sqrt",  fsqrt>,
1933              sse2_fp_unop_p_int<0x51, "sqrt", int_x86_sse2_sqrt_pd>;
1934
1935 // Reciprocal approximations. Note that these typically require refinement
1936 // in order to obtain suitable precision.
1937 defm RSQRT : sse1_fp_unop_s<0x52, "rsqrt", X86frsqrt, int_x86_sse_rsqrt_ss>,
1938              sse1_fp_unop_p<0x52, "rsqrt", X86frsqrt>,
1939              sse1_fp_unop_p_int<0x52, "rsqrt", int_x86_sse_rsqrt_ps>;
1940 defm RCP   : sse1_fp_unop_s<0x53, "rcp", X86frcp, int_x86_sse_rcp_ss>,
1941              sse1_fp_unop_p<0x53, "rcp", X86frcp>,
1942              sse1_fp_unop_p_int<0x53, "rcp", int_x86_sse_rcp_ps>;
1943
1944 // There is no f64 version of the reciprocal approximation instructions.
1945
1946 //===----------------------------------------------------------------------===//
1947 // SSE 1 & 2 - Non-temporal stores
1948 //===----------------------------------------------------------------------===//
1949
1950 let isAsmParserOnly = 1 in {
1951   def VMOVNTPSmr_Int : VPSI<0x2B, MRMDestMem, (outs),
1952                          (ins i128mem:$dst, VR128:$src),
1953                          "movntps\t{$src, $dst|$dst, $src}",
1954                          [(int_x86_sse_movnt_ps addr:$dst, VR128:$src)]>, VEX;
1955   def VMOVNTPDmr_Int : VPDI<0x2B, MRMDestMem, (outs),
1956                          (ins i128mem:$dst, VR128:$src),
1957                          "movntpd\t{$src, $dst|$dst, $src}",
1958                          [(int_x86_sse2_movnt_pd addr:$dst, VR128:$src)]>, VEX;
1959
1960   let ExeDomain = SSEPackedInt in
1961     def VMOVNTDQmr_Int : VPDI<0xE7, MRMDestMem, (outs),
1962                        (ins f128mem:$dst, VR128:$src),
1963                        "movntdq\t{$src, $dst|$dst, $src}",
1964                        [(int_x86_sse2_movnt_dq addr:$dst, VR128:$src)]>, VEX;
1965
1966   let AddedComplexity = 400 in { // Prefer non-temporal versions
1967     def VMOVNTPSmr : VPSI<0x2B, MRMDestMem, (outs),
1968                          (ins f128mem:$dst, VR128:$src),
1969                          "movntps\t{$src, $dst|$dst, $src}",
1970                          [(alignednontemporalstore (v4f32 VR128:$src),
1971                                                    addr:$dst)]>, VEX;
1972     def VMOVNTPDmr : VPDI<0x2B, MRMDestMem, (outs),
1973                          (ins f128mem:$dst, VR128:$src),
1974                          "movntpd\t{$src, $dst|$dst, $src}",
1975                          [(alignednontemporalstore (v2f64 VR128:$src),
1976                                                    addr:$dst)]>, VEX;
1977     def VMOVNTDQ_64mr : VPDI<0xE7, MRMDestMem, (outs),
1978                           (ins f128mem:$dst, VR128:$src),
1979                           "movntdq\t{$src, $dst|$dst, $src}",
1980                           [(alignednontemporalstore (v2f64 VR128:$src),
1981                                                     addr:$dst)]>, VEX;
1982     let ExeDomain = SSEPackedInt in
1983     def VMOVNTDQmr : VPDI<0xE7, MRMDestMem, (outs),
1984                         (ins f128mem:$dst, VR128:$src),
1985                         "movntdq\t{$src, $dst|$dst, $src}",
1986                         [(alignednontemporalstore (v4f32 VR128:$src),
1987                                                   addr:$dst)]>, VEX;
1988
1989     def VMOVNTPSYmr : VPSI<0x2B, MRMDestMem, (outs),
1990                          (ins f256mem:$dst, VR256:$src),
1991                          "movntps\t{$src, $dst|$dst, $src}",
1992                          [(alignednontemporalstore (v8f32 VR256:$src),
1993                                                    addr:$dst)]>, VEX;
1994     def VMOVNTPDYmr : VPDI<0x2B, MRMDestMem, (outs),
1995                          (ins f256mem:$dst, VR256:$src),
1996                          "movntpd\t{$src, $dst|$dst, $src}",
1997                          [(alignednontemporalstore (v4f64 VR256:$src),
1998                                                    addr:$dst)]>, VEX;
1999     def VMOVNTDQY_64mr : VPDI<0xE7, MRMDestMem, (outs),
2000                           (ins f256mem:$dst, VR256:$src),
2001                           "movntdq\t{$src, $dst|$dst, $src}",
2002                           [(alignednontemporalstore (v4f64 VR256:$src),
2003                                                     addr:$dst)]>, VEX;
2004     let ExeDomain = SSEPackedInt in
2005     def VMOVNTDQYmr : VPDI<0xE7, MRMDestMem, (outs),
2006                         (ins f256mem:$dst, VR256:$src),
2007                         "movntdq\t{$src, $dst|$dst, $src}",
2008                         [(alignednontemporalstore (v8f32 VR256:$src),
2009                                                   addr:$dst)]>, VEX;
2010   }
2011 }
2012
2013 def : Pat<(int_x86_avx_movnt_dq_256 addr:$dst, VR256:$src),
2014           (VMOVNTDQYmr addr:$dst, VR256:$src)>;
2015 def : Pat<(int_x86_avx_movnt_pd_256 addr:$dst, VR256:$src),
2016           (VMOVNTPDYmr addr:$dst, VR256:$src)>;
2017 def : Pat<(int_x86_avx_movnt_ps_256 addr:$dst, VR256:$src),
2018           (VMOVNTPSYmr addr:$dst, VR256:$src)>;
2019
2020 def MOVNTPSmr_Int : PSI<0x2B, MRMDestMem, (outs), (ins i128mem:$dst, VR128:$src),
2021                     "movntps\t{$src, $dst|$dst, $src}",
2022                     [(int_x86_sse_movnt_ps addr:$dst, VR128:$src)]>;
2023 def MOVNTPDmr_Int : PDI<0x2B, MRMDestMem, (outs), (ins i128mem:$dst, VR128:$src),
2024                         "movntpd\t{$src, $dst|$dst, $src}",
2025                         [(int_x86_sse2_movnt_pd addr:$dst, VR128:$src)]>;
2026
2027 let ExeDomain = SSEPackedInt in
2028 def MOVNTDQmr_Int : PDI<0xE7, MRMDestMem, (outs), (ins f128mem:$dst, VR128:$src),
2029                         "movntdq\t{$src, $dst|$dst, $src}",
2030                         [(int_x86_sse2_movnt_dq addr:$dst, VR128:$src)]>;
2031
2032 let AddedComplexity = 400 in { // Prefer non-temporal versions
2033 def MOVNTPSmr : PSI<0x2B, MRMDestMem, (outs), (ins f128mem:$dst, VR128:$src),
2034                     "movntps\t{$src, $dst|$dst, $src}",
2035                     [(alignednontemporalstore (v4f32 VR128:$src), addr:$dst)]>;
2036 def MOVNTPDmr : PDI<0x2B, MRMDestMem, (outs), (ins f128mem:$dst, VR128:$src),
2037                     "movntpd\t{$src, $dst|$dst, $src}",
2038                     [(alignednontemporalstore(v2f64 VR128:$src), addr:$dst)]>;
2039
2040 def MOVNTDQ_64mr : PDI<0xE7, MRMDestMem, (outs), (ins f128mem:$dst, VR128:$src),
2041                     "movntdq\t{$src, $dst|$dst, $src}",
2042                     [(alignednontemporalstore (v2f64 VR128:$src), addr:$dst)]>;
2043
2044 let ExeDomain = SSEPackedInt in
2045 def MOVNTDQmr : PDI<0xE7, MRMDestMem, (outs), (ins f128mem:$dst, VR128:$src),
2046                     "movntdq\t{$src, $dst|$dst, $src}",
2047                     [(alignednontemporalstore (v4f32 VR128:$src), addr:$dst)]>;
2048
2049 // There is no AVX form for instructions below this point
2050 def MOVNTImr : I<0xC3, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
2051                  "movnti\t{$src, $dst|$dst, $src}",
2052                  [(nontemporalstore (i32 GR32:$src), addr:$dst)]>,
2053                TB, Requires<[HasSSE2]>;
2054
2055 def MOVNTI_64mr : RI<0xC3, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src),
2056                      "movnti\t{$src, $dst|$dst, $src}",
2057                      [(nontemporalstore (i64 GR64:$src), addr:$dst)]>,
2058                   TB, Requires<[HasSSE2]>;
2059
2060 }
2061 def MOVNTImr_Int  :   I<0xC3, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
2062                     "movnti\t{$src, $dst|$dst, $src}",
2063                     [(int_x86_sse2_movnt_i addr:$dst, GR32:$src)]>,
2064                   TB, Requires<[HasSSE2]>;
2065
2066 //===----------------------------------------------------------------------===//
2067 // SSE 1 & 2 - Misc Instructions (No AVX form)
2068 //===----------------------------------------------------------------------===//
2069
2070 // Prefetch intrinsic.
2071 def PREFETCHT0   : PSI<0x18, MRM1m, (outs), (ins i8mem:$src),
2072     "prefetcht0\t$src", [(prefetch addr:$src, imm, (i32 3))]>;
2073 def PREFETCHT1   : PSI<0x18, MRM2m, (outs), (ins i8mem:$src),
2074     "prefetcht1\t$src", [(prefetch addr:$src, imm, (i32 2))]>;
2075 def PREFETCHT2   : PSI<0x18, MRM3m, (outs), (ins i8mem:$src),
2076     "prefetcht2\t$src", [(prefetch addr:$src, imm, (i32 1))]>;
2077 def PREFETCHNTA  : PSI<0x18, MRM0m, (outs), (ins i8mem:$src),
2078     "prefetchnta\t$src", [(prefetch addr:$src, imm, (i32 0))]>;
2079
2080 // Load, store, and memory fence
2081 def SFENCE : I<0xAE, MRM_F8, (outs), (ins), "sfence", [(int_x86_sse_sfence)]>,
2082              TB, Requires<[HasSSE1]>;
2083 def : Pat<(X86SFence), (SFENCE)>;
2084
2085 // Alias instructions that map zero vector to pxor / xorp* for sse.
2086 // We set canFoldAsLoad because this can be converted to a constant-pool
2087 // load of an all-zeros value if folding it would be beneficial.
2088 // FIXME: Change encoding to pseudo! This is blocked right now by the x86
2089 // JIT implementatioan, it does not expand the instructions below like
2090 // X86MCInstLower does.
2091 let isReMaterializable = 1, isAsCheapAsAMove = 1, canFoldAsLoad = 1,
2092     isCodeGenOnly = 1 in {
2093 def V_SET0PS : PSI<0x57, MRMInitReg, (outs VR128:$dst), (ins), "",
2094                  [(set VR128:$dst, (v4f32 immAllZerosV))]>;
2095 def V_SET0PD : PDI<0x57, MRMInitReg, (outs VR128:$dst), (ins), "",
2096                  [(set VR128:$dst, (v2f64 immAllZerosV))]>;
2097 let ExeDomain = SSEPackedInt in
2098 def V_SET0PI : PDI<0xEF, MRMInitReg, (outs VR128:$dst), (ins), "",
2099                  [(set VR128:$dst, (v4i32 immAllZerosV))]>;
2100 }
2101
2102 // The same as done above but for AVX. The 128-bit versions are the
2103 // same, but re-encoded. The 256-bit does not support PI version.
2104 // FIXME: Change encoding to pseudo! This is blocked right now by the x86
2105 // JIT implementatioan, it does not expand the instructions below like
2106 // X86MCInstLower does.
2107 let isReMaterializable = 1, isAsCheapAsAMove = 1, canFoldAsLoad = 1,
2108     isCodeGenOnly = 1, Predicates = [HasAVX] in {
2109 def AVX_SET0PS  : PSI<0x57, MRMInitReg, (outs VR128:$dst), (ins), "",
2110                    [(set VR128:$dst, (v4f32 immAllZerosV))]>, VEX_4V;
2111 def AVX_SET0PD  : PDI<0x57, MRMInitReg, (outs VR128:$dst), (ins), "",
2112                    [(set VR128:$dst, (v2f64 immAllZerosV))]>, VEX_4V;
2113 def AVX_SET0PSY : PSI<0x57, MRMInitReg, (outs VR256:$dst), (ins), "",
2114                    [(set VR256:$dst, (v8f32 immAllZerosV))]>, VEX_4V;
2115 def AVX_SET0PDY : PDI<0x57, MRMInitReg, (outs VR256:$dst), (ins), "",
2116                    [(set VR256:$dst, (v4f64 immAllZerosV))]>, VEX_4V;
2117 let ExeDomain = SSEPackedInt in
2118 def AVX_SET0PI : PDI<0xEF, MRMInitReg, (outs VR128:$dst), (ins), "",
2119                  [(set VR128:$dst, (v4i32 immAllZerosV))]>;
2120 }
2121
2122 def : Pat<(v2i64 immAllZerosV), (V_SET0PI)>;
2123 def : Pat<(v8i16 immAllZerosV), (V_SET0PI)>;
2124 def : Pat<(v16i8 immAllZerosV), (V_SET0PI)>;
2125
2126 def : Pat<(f32 (vector_extract (v4f32 VR128:$src), (iPTR 0))),
2127           (f32 (EXTRACT_SUBREG (v4f32 VR128:$src), sub_ss))>;
2128
2129 //===----------------------------------------------------------------------===//
2130 // SSE 1 & 2 - Load/Store XCSR register
2131 //===----------------------------------------------------------------------===//
2132
2133 let isAsmParserOnly = 1 in {
2134   def VLDMXCSR : VPSI<0xAE, MRM2m, (outs), (ins i32mem:$src),
2135                     "ldmxcsr\t$src", [(int_x86_sse_ldmxcsr addr:$src)]>, VEX;
2136   def VSTMXCSR : VPSI<0xAE, MRM3m, (outs), (ins i32mem:$dst),
2137                     "stmxcsr\t$dst", [(int_x86_sse_stmxcsr addr:$dst)]>, VEX;
2138 }
2139
2140 def LDMXCSR : PSI<0xAE, MRM2m, (outs), (ins i32mem:$src),
2141                   "ldmxcsr\t$src", [(int_x86_sse_ldmxcsr addr:$src)]>;
2142 def STMXCSR : PSI<0xAE, MRM3m, (outs), (ins i32mem:$dst),
2143                   "stmxcsr\t$dst", [(int_x86_sse_stmxcsr addr:$dst)]>;
2144
2145 //===---------------------------------------------------------------------===//
2146 // SSE2 - Move Aligned/Unaligned Packed Integer Instructions
2147 //===---------------------------------------------------------------------===//
2148
2149 let ExeDomain = SSEPackedInt in { // SSE integer instructions
2150
2151 let isAsmParserOnly = 1 in {
2152   let neverHasSideEffects = 1 in {
2153   def VMOVDQArr  : VPDI<0x6F, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
2154                       "movdqa\t{$src, $dst|$dst, $src}", []>, VEX;
2155   def VMOVDQAYrr : VPDI<0x6F, MRMSrcReg, (outs VR256:$dst), (ins VR256:$src),
2156                       "movdqa\t{$src, $dst|$dst, $src}", []>, VEX;
2157   }
2158   def VMOVDQUrr  : VPDI<0x6F, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
2159                       "movdqu\t{$src, $dst|$dst, $src}", []>, XS, VEX;
2160   def VMOVDQUYrr : VPDI<0x6F, MRMSrcReg, (outs VR256:$dst), (ins VR256:$src),
2161                       "movdqu\t{$src, $dst|$dst, $src}", []>, XS, VEX;
2162
2163   let canFoldAsLoad = 1, mayLoad = 1 in {
2164   def VMOVDQArm  : VPDI<0x6F, MRMSrcMem, (outs VR128:$dst), (ins i128mem:$src),
2165                      "movdqa\t{$src, $dst|$dst, $src}", []>, VEX;
2166   def VMOVDQAYrm : VPDI<0x6F, MRMSrcMem, (outs VR256:$dst), (ins i256mem:$src),
2167                      "movdqa\t{$src, $dst|$dst, $src}", []>, VEX;
2168   let Predicates = [HasAVX] in {
2169     def VMOVDQUrm  : I<0x6F, MRMSrcMem, (outs VR128:$dst), (ins i128mem:$src),
2170                       "vmovdqu\t{$src, $dst|$dst, $src}",[]>, XS, VEX;
2171     def VMOVDQUYrm : I<0x6F, MRMSrcMem, (outs VR256:$dst), (ins i256mem:$src),
2172                       "vmovdqu\t{$src, $dst|$dst, $src}",[]>, XS, VEX;
2173   }
2174   }
2175
2176   let mayStore = 1 in {
2177   def VMOVDQAmr  : VPDI<0x7F, MRMDestMem, (outs),
2178                        (ins i128mem:$dst, VR128:$src),
2179                        "movdqa\t{$src, $dst|$dst, $src}", []>, VEX;
2180   def VMOVDQAYmr : VPDI<0x7F, MRMDestMem, (outs),
2181                        (ins i256mem:$dst, VR256:$src),
2182                        "movdqa\t{$src, $dst|$dst, $src}", []>, VEX;
2183   let Predicates = [HasAVX] in {
2184   def VMOVDQUmr  : I<0x7F, MRMDestMem, (outs), (ins i128mem:$dst, VR128:$src),
2185                     "vmovdqu\t{$src, $dst|$dst, $src}",[]>, XS, VEX;
2186   def VMOVDQUYmr : I<0x7F, MRMDestMem, (outs), (ins i256mem:$dst, VR256:$src),
2187                     "vmovdqu\t{$src, $dst|$dst, $src}",[]>, XS, VEX;
2188   }
2189   }
2190 }
2191
2192 let neverHasSideEffects = 1 in
2193 def MOVDQArr : PDI<0x6F, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
2194                    "movdqa\t{$src, $dst|$dst, $src}", []>;
2195
2196 let canFoldAsLoad = 1, mayLoad = 1 in {
2197 def MOVDQArm : PDI<0x6F, MRMSrcMem, (outs VR128:$dst), (ins i128mem:$src),
2198                    "movdqa\t{$src, $dst|$dst, $src}",
2199                    [/*(set VR128:$dst, (alignedloadv2i64 addr:$src))*/]>;
2200 def MOVDQUrm :   I<0x6F, MRMSrcMem, (outs VR128:$dst), (ins i128mem:$src),
2201                    "movdqu\t{$src, $dst|$dst, $src}",
2202                    [/*(set VR128:$dst, (loadv2i64 addr:$src))*/]>,
2203                  XS, Requires<[HasSSE2]>;
2204 }
2205
2206 let mayStore = 1 in {
2207 def MOVDQAmr : PDI<0x7F, MRMDestMem, (outs), (ins i128mem:$dst, VR128:$src),
2208                    "movdqa\t{$src, $dst|$dst, $src}",
2209                    [/*(alignedstore (v2i64 VR128:$src), addr:$dst)*/]>;
2210 def MOVDQUmr :   I<0x7F, MRMDestMem, (outs), (ins i128mem:$dst, VR128:$src),
2211                    "movdqu\t{$src, $dst|$dst, $src}",
2212                    [/*(store (v2i64 VR128:$src), addr:$dst)*/]>,
2213                  XS, Requires<[HasSSE2]>;
2214 }
2215
2216 // Intrinsic forms of MOVDQU load and store
2217 let isAsmParserOnly = 1 in {
2218 let canFoldAsLoad = 1 in
2219 def VMOVDQUrm_Int : I<0x6F, MRMSrcMem, (outs VR128:$dst), (ins i128mem:$src),
2220                        "vmovdqu\t{$src, $dst|$dst, $src}",
2221                        [(set VR128:$dst, (int_x86_sse2_loadu_dq addr:$src))]>,
2222                      XS, VEX, Requires<[HasAVX]>;
2223 def VMOVDQUmr_Int : I<0x7F, MRMDestMem, (outs), (ins i128mem:$dst, VR128:$src),
2224                        "vmovdqu\t{$src, $dst|$dst, $src}",
2225                        [(int_x86_sse2_storeu_dq addr:$dst, VR128:$src)]>,
2226                      XS, VEX, Requires<[HasAVX]>;
2227 }
2228
2229 let canFoldAsLoad = 1 in
2230 def MOVDQUrm_Int :   I<0x6F, MRMSrcMem, (outs VR128:$dst), (ins i128mem:$src),
2231                        "movdqu\t{$src, $dst|$dst, $src}",
2232                        [(set VR128:$dst, (int_x86_sse2_loadu_dq addr:$src))]>,
2233                  XS, Requires<[HasSSE2]>;
2234 def MOVDQUmr_Int :   I<0x7F, MRMDestMem, (outs), (ins i128mem:$dst, VR128:$src),
2235                        "movdqu\t{$src, $dst|$dst, $src}",
2236                        [(int_x86_sse2_storeu_dq addr:$dst, VR128:$src)]>,
2237                      XS, Requires<[HasSSE2]>;
2238
2239 } // ExeDomain = SSEPackedInt
2240
2241 def : Pat<(int_x86_avx_loadu_dq_256 addr:$src), (VMOVDQUYrm addr:$src)>;
2242 def : Pat<(int_x86_avx_storeu_dq_256 addr:$dst, VR256:$src),
2243           (VMOVDQUYmr addr:$dst, VR256:$src)>;
2244
2245 //===---------------------------------------------------------------------===//
2246 // SSE2 - Packed Integer Arithmetic Instructions
2247 //===---------------------------------------------------------------------===//
2248
2249 let ExeDomain = SSEPackedInt in { // SSE integer instructions
2250
2251 multiclass PDI_binop_rm_int<bits<8> opc, string OpcodeStr, Intrinsic IntId,
2252                             bit IsCommutable = 0, bit Is2Addr = 1> {
2253   let isCommutable = IsCommutable in
2254   def rr : PDI<opc, MRMSrcReg, (outs VR128:$dst),
2255        (ins VR128:$src1, VR128:$src2),
2256        !if(Is2Addr,
2257            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
2258            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
2259        [(set VR128:$dst, (IntId VR128:$src1, VR128:$src2))]>;
2260   def rm : PDI<opc, MRMSrcMem, (outs VR128:$dst),
2261        (ins VR128:$src1, i128mem:$src2),
2262        !if(Is2Addr,
2263            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
2264            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
2265        [(set VR128:$dst, (IntId VR128:$src1,
2266                                 (bitconvert (memopv2i64 addr:$src2))))]>;
2267 }
2268
2269 multiclass PDI_binop_rmi_int<bits<8> opc, bits<8> opc2, Format ImmForm,
2270                              string OpcodeStr, Intrinsic IntId,
2271                              Intrinsic IntId2, bit Is2Addr = 1> {
2272   def rr : PDI<opc, MRMSrcReg, (outs VR128:$dst),
2273        (ins VR128:$src1, VR128:$src2),
2274        !if(Is2Addr,
2275            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
2276            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
2277        [(set VR128:$dst, (IntId VR128:$src1, VR128:$src2))]>;
2278   def rm : PDI<opc, MRMSrcMem, (outs VR128:$dst),
2279        (ins VR128:$src1, i128mem:$src2),
2280        !if(Is2Addr,
2281            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
2282            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
2283        [(set VR128:$dst, (IntId VR128:$src1,
2284                                       (bitconvert (memopv2i64 addr:$src2))))]>;
2285   def ri : PDIi8<opc2, ImmForm, (outs VR128:$dst),
2286        (ins VR128:$src1, i32i8imm:$src2),
2287        !if(Is2Addr,
2288            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
2289            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
2290        [(set VR128:$dst, (IntId2 VR128:$src1, (i32 imm:$src2)))]>;
2291 }
2292
2293 /// PDI_binop_rm - Simple SSE2 binary operator.
2294 multiclass PDI_binop_rm<bits<8> opc, string OpcodeStr, SDNode OpNode,
2295                         ValueType OpVT, bit IsCommutable = 0, bit Is2Addr = 1> {
2296   let isCommutable = IsCommutable in
2297   def rr : PDI<opc, MRMSrcReg, (outs VR128:$dst),
2298        (ins VR128:$src1, VR128:$src2),
2299        !if(Is2Addr,
2300            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
2301            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
2302        [(set VR128:$dst, (OpVT (OpNode VR128:$src1, VR128:$src2)))]>;
2303   def rm : PDI<opc, MRMSrcMem, (outs VR128:$dst),
2304        (ins VR128:$src1, i128mem:$src2),
2305        !if(Is2Addr,
2306            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
2307            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
2308        [(set VR128:$dst, (OpVT (OpNode VR128:$src1,
2309                                      (bitconvert (memopv2i64 addr:$src2)))))]>;
2310 }
2311
2312 /// PDI_binop_rm_v2i64 - Simple SSE2 binary operator whose type is v2i64.
2313 ///
2314 /// FIXME: we could eliminate this and use PDI_binop_rm instead if tblgen knew
2315 /// to collapse (bitconvert VT to VT) into its operand.
2316 ///
2317 multiclass PDI_binop_rm_v2i64<bits<8> opc, string OpcodeStr, SDNode OpNode,
2318                               bit IsCommutable = 0, bit Is2Addr = 1> {
2319   let isCommutable = IsCommutable in
2320   def rr : PDI<opc, MRMSrcReg, (outs VR128:$dst),
2321        (ins VR128:$src1, VR128:$src2),
2322        !if(Is2Addr,
2323            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
2324            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
2325        [(set VR128:$dst, (v2i64 (OpNode VR128:$src1, VR128:$src2)))]>;
2326   def rm : PDI<opc, MRMSrcMem, (outs VR128:$dst),
2327        (ins VR128:$src1, i128mem:$src2),
2328        !if(Is2Addr,
2329            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
2330            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
2331        [(set VR128:$dst, (OpNode VR128:$src1, (memopv2i64 addr:$src2)))]>;
2332 }
2333
2334 } // ExeDomain = SSEPackedInt
2335
2336 // 128-bit Integer Arithmetic
2337
2338 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
2339 defm VPADDB  : PDI_binop_rm<0xFC, "vpaddb", add, v16i8, 1, 0 /*3addr*/>, VEX_4V;
2340 defm VPADDW  : PDI_binop_rm<0xFD, "vpaddw", add, v8i16, 1, 0>, VEX_4V;
2341 defm VPADDD  : PDI_binop_rm<0xFE, "vpaddd", add, v4i32, 1, 0>, VEX_4V;
2342 defm VPADDQ  : PDI_binop_rm_v2i64<0xD4, "vpaddq", add, 1, 0>, VEX_4V;
2343 defm VPMULLW : PDI_binop_rm<0xD5, "vpmullw", mul, v8i16, 1, 0>, VEX_4V;
2344 defm VPSUBB : PDI_binop_rm<0xF8, "vpsubb", sub, v16i8, 0, 0>, VEX_4V;
2345 defm VPSUBW : PDI_binop_rm<0xF9, "vpsubw", sub, v8i16, 0, 0>, VEX_4V;
2346 defm VPSUBD : PDI_binop_rm<0xFA, "vpsubd", sub, v4i32, 0, 0>, VEX_4V;
2347 defm VPSUBQ : PDI_binop_rm_v2i64<0xFB, "vpsubq", sub, 0, 0>, VEX_4V;
2348
2349 // Intrinsic forms
2350 defm VPSUBSB  : PDI_binop_rm_int<0xE8, "vpsubsb" , int_x86_sse2_psubs_b, 0, 0>,
2351                                  VEX_4V;
2352 defm VPSUBSW  : PDI_binop_rm_int<0xE9, "vpsubsw" , int_x86_sse2_psubs_w, 0, 0>,
2353                                  VEX_4V;
2354 defm VPSUBUSB : PDI_binop_rm_int<0xD8, "vpsubusb", int_x86_sse2_psubus_b, 0, 0>,
2355                                  VEX_4V;
2356 defm VPSUBUSW : PDI_binop_rm_int<0xD9, "vpsubusw", int_x86_sse2_psubus_w, 0, 0>,
2357                                  VEX_4V;
2358 defm VPADDSB  : PDI_binop_rm_int<0xEC, "vpaddsb" , int_x86_sse2_padds_b, 1, 0>,
2359                                  VEX_4V;
2360 defm VPADDSW  : PDI_binop_rm_int<0xED, "vpaddsw" , int_x86_sse2_padds_w, 1, 0>,
2361                                  VEX_4V;
2362 defm VPADDUSB : PDI_binop_rm_int<0xDC, "vpaddusb", int_x86_sse2_paddus_b, 1, 0>,
2363                                  VEX_4V;
2364 defm VPADDUSW : PDI_binop_rm_int<0xDD, "vpaddusw", int_x86_sse2_paddus_w, 1, 0>,
2365                                  VEX_4V;
2366 defm VPMULHUW : PDI_binop_rm_int<0xE4, "vpmulhuw", int_x86_sse2_pmulhu_w, 1, 0>,
2367                                  VEX_4V;
2368 defm VPMULHW  : PDI_binop_rm_int<0xE5, "vpmulhw" , int_x86_sse2_pmulh_w, 1, 0>,
2369                                  VEX_4V;
2370 defm VPMULUDQ : PDI_binop_rm_int<0xF4, "vpmuludq", int_x86_sse2_pmulu_dq, 1, 0>,
2371                                  VEX_4V;
2372 defm VPMADDWD : PDI_binop_rm_int<0xF5, "vpmaddwd", int_x86_sse2_pmadd_wd, 1, 0>,
2373                                  VEX_4V;
2374 defm VPAVGB   : PDI_binop_rm_int<0xE0, "vpavgb", int_x86_sse2_pavg_b, 1, 0>,
2375                                  VEX_4V;
2376 defm VPAVGW   : PDI_binop_rm_int<0xE3, "vpavgw", int_x86_sse2_pavg_w, 1, 0>,
2377                                  VEX_4V;
2378 defm VPMINUB  : PDI_binop_rm_int<0xDA, "vpminub", int_x86_sse2_pminu_b, 1, 0>,
2379                                  VEX_4V;
2380 defm VPMINSW  : PDI_binop_rm_int<0xEA, "vpminsw", int_x86_sse2_pmins_w, 1, 0>,
2381                                  VEX_4V;
2382 defm VPMAXUB  : PDI_binop_rm_int<0xDE, "vpmaxub", int_x86_sse2_pmaxu_b, 1, 0>,
2383                                  VEX_4V;
2384 defm VPMAXSW  : PDI_binop_rm_int<0xEE, "vpmaxsw", int_x86_sse2_pmaxs_w, 1, 0>,
2385                                  VEX_4V;
2386 defm VPSADBW  : PDI_binop_rm_int<0xF6, "vpsadbw", int_x86_sse2_psad_bw, 1, 0>,
2387                                  VEX_4V;
2388 }
2389
2390 let Constraints = "$src1 = $dst" in {
2391 defm PADDB  : PDI_binop_rm<0xFC, "paddb", add, v16i8, 1>;
2392 defm PADDW  : PDI_binop_rm<0xFD, "paddw", add, v8i16, 1>;
2393 defm PADDD  : PDI_binop_rm<0xFE, "paddd", add, v4i32, 1>;
2394 defm PADDQ  : PDI_binop_rm_v2i64<0xD4, "paddq", add, 1>;
2395 defm PMULLW : PDI_binop_rm<0xD5, "pmullw", mul, v8i16, 1>;
2396 defm PSUBB : PDI_binop_rm<0xF8, "psubb", sub, v16i8>;
2397 defm PSUBW : PDI_binop_rm<0xF9, "psubw", sub, v8i16>;
2398 defm PSUBD : PDI_binop_rm<0xFA, "psubd", sub, v4i32>;
2399 defm PSUBQ : PDI_binop_rm_v2i64<0xFB, "psubq", sub>;
2400
2401 // Intrinsic forms
2402 defm PSUBSB  : PDI_binop_rm_int<0xE8, "psubsb" , int_x86_sse2_psubs_b>;
2403 defm PSUBSW  : PDI_binop_rm_int<0xE9, "psubsw" , int_x86_sse2_psubs_w>;
2404 defm PSUBUSB : PDI_binop_rm_int<0xD8, "psubusb", int_x86_sse2_psubus_b>;
2405 defm PSUBUSW : PDI_binop_rm_int<0xD9, "psubusw", int_x86_sse2_psubus_w>;
2406 defm PADDSB  : PDI_binop_rm_int<0xEC, "paddsb" , int_x86_sse2_padds_b, 1>;
2407 defm PADDSW  : PDI_binop_rm_int<0xED, "paddsw" , int_x86_sse2_padds_w, 1>;
2408 defm PADDUSB : PDI_binop_rm_int<0xDC, "paddusb", int_x86_sse2_paddus_b, 1>;
2409 defm PADDUSW : PDI_binop_rm_int<0xDD, "paddusw", int_x86_sse2_paddus_w, 1>;
2410 defm PMULHUW : PDI_binop_rm_int<0xE4, "pmulhuw", int_x86_sse2_pmulhu_w, 1>;
2411 defm PMULHW  : PDI_binop_rm_int<0xE5, "pmulhw" , int_x86_sse2_pmulh_w, 1>;
2412 defm PMULUDQ : PDI_binop_rm_int<0xF4, "pmuludq", int_x86_sse2_pmulu_dq, 1>;
2413 defm PMADDWD : PDI_binop_rm_int<0xF5, "pmaddwd", int_x86_sse2_pmadd_wd, 1>;
2414 defm PAVGB   : PDI_binop_rm_int<0xE0, "pavgb", int_x86_sse2_pavg_b, 1>;
2415 defm PAVGW   : PDI_binop_rm_int<0xE3, "pavgw", int_x86_sse2_pavg_w, 1>;
2416 defm PMINUB  : PDI_binop_rm_int<0xDA, "pminub", int_x86_sse2_pminu_b, 1>;
2417 defm PMINSW  : PDI_binop_rm_int<0xEA, "pminsw", int_x86_sse2_pmins_w, 1>;
2418 defm PMAXUB  : PDI_binop_rm_int<0xDE, "pmaxub", int_x86_sse2_pmaxu_b, 1>;
2419 defm PMAXSW  : PDI_binop_rm_int<0xEE, "pmaxsw", int_x86_sse2_pmaxs_w, 1>;
2420 defm PSADBW  : PDI_binop_rm_int<0xF6, "psadbw", int_x86_sse2_psad_bw, 1>;
2421
2422 } // Constraints = "$src1 = $dst"
2423
2424 //===---------------------------------------------------------------------===//
2425 // SSE2 - Packed Integer Logical Instructions
2426 //===---------------------------------------------------------------------===//
2427
2428 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
2429 defm VPSLLW : PDI_binop_rmi_int<0xF1, 0x71, MRM6r, "vpsllw",
2430                                 int_x86_sse2_psll_w, int_x86_sse2_pslli_w, 0>,
2431                                 VEX_4V;
2432 defm VPSLLD : PDI_binop_rmi_int<0xF2, 0x72, MRM6r, "vpslld",
2433                                 int_x86_sse2_psll_d, int_x86_sse2_pslli_d, 0>,
2434                                 VEX_4V;
2435 defm VPSLLQ : PDI_binop_rmi_int<0xF3, 0x73, MRM6r, "vpsllq",
2436                                 int_x86_sse2_psll_q, int_x86_sse2_pslli_q, 0>,
2437                                 VEX_4V;
2438
2439 defm VPSRLW : PDI_binop_rmi_int<0xD1, 0x71, MRM2r, "vpsrlw",
2440                                 int_x86_sse2_psrl_w, int_x86_sse2_psrli_w, 0>,
2441                                 VEX_4V;
2442 defm VPSRLD : PDI_binop_rmi_int<0xD2, 0x72, MRM2r, "vpsrld",
2443                                 int_x86_sse2_psrl_d, int_x86_sse2_psrli_d, 0>,
2444                                 VEX_4V;
2445 defm VPSRLQ : PDI_binop_rmi_int<0xD3, 0x73, MRM2r, "vpsrlq",
2446                                 int_x86_sse2_psrl_q, int_x86_sse2_psrli_q, 0>,
2447                                 VEX_4V;
2448
2449 defm VPSRAW : PDI_binop_rmi_int<0xE1, 0x71, MRM4r, "vpsraw",
2450                                 int_x86_sse2_psra_w, int_x86_sse2_psrai_w, 0>,
2451                                 VEX_4V;
2452 defm VPSRAD : PDI_binop_rmi_int<0xE2, 0x72, MRM4r, "vpsrad",
2453                                 int_x86_sse2_psra_d, int_x86_sse2_psrai_d, 0>,
2454                                 VEX_4V;
2455
2456 defm VPAND : PDI_binop_rm_v2i64<0xDB, "vpand", and, 1, 0>, VEX_4V;
2457 defm VPOR  : PDI_binop_rm_v2i64<0xEB, "vpor" , or, 1, 0>, VEX_4V;
2458 defm VPXOR : PDI_binop_rm_v2i64<0xEF, "vpxor", xor, 1, 0>, VEX_4V;
2459
2460 let ExeDomain = SSEPackedInt in {
2461   let neverHasSideEffects = 1 in {
2462     // 128-bit logical shifts.
2463     def VPSLLDQri : PDIi8<0x73, MRM7r,
2464                       (outs VR128:$dst), (ins VR128:$src1, i32i8imm:$src2),
2465                       "vpslldq\t{$src2, $src1, $dst|$dst, $src1, $src2}", []>,
2466                       VEX_4V;
2467     def VPSRLDQri : PDIi8<0x73, MRM3r,
2468                       (outs VR128:$dst), (ins VR128:$src1, i32i8imm:$src2),
2469                       "vpsrldq\t{$src2, $src1, $dst|$dst, $src1, $src2}", []>,
2470                       VEX_4V;
2471     // PSRADQri doesn't exist in SSE[1-3].
2472   }
2473   def VPANDNrr : PDI<0xDF, MRMSrcReg,
2474                     (outs VR128:$dst), (ins VR128:$src1, VR128:$src2),
2475                     "vpandn\t{$src2, $src1, $dst|$dst, $src1, $src2}",
2476                     [(set VR128:$dst, (v2i64 (and (vnot VR128:$src1),
2477                                               VR128:$src2)))]>, VEX_4V;
2478
2479   def VPANDNrm : PDI<0xDF, MRMSrcMem,
2480                     (outs VR128:$dst), (ins VR128:$src1, i128mem:$src2),
2481                     "vpandn\t{$src2, $src1, $dst|$dst, $src1, $src2}",
2482                     [(set VR128:$dst, (v2i64 (and (vnot VR128:$src1),
2483                                               (memopv2i64 addr:$src2))))]>,
2484                                               VEX_4V;
2485 }
2486 }
2487
2488 let Constraints = "$src1 = $dst" in {
2489 defm PSLLW : PDI_binop_rmi_int<0xF1, 0x71, MRM6r, "psllw",
2490                                int_x86_sse2_psll_w, int_x86_sse2_pslli_w>;
2491 defm PSLLD : PDI_binop_rmi_int<0xF2, 0x72, MRM6r, "pslld",
2492                                int_x86_sse2_psll_d, int_x86_sse2_pslli_d>;
2493 defm PSLLQ : PDI_binop_rmi_int<0xF3, 0x73, MRM6r, "psllq",
2494                                int_x86_sse2_psll_q, int_x86_sse2_pslli_q>;
2495
2496 defm PSRLW : PDI_binop_rmi_int<0xD1, 0x71, MRM2r, "psrlw",
2497                                int_x86_sse2_psrl_w, int_x86_sse2_psrli_w>;
2498 defm PSRLD : PDI_binop_rmi_int<0xD2, 0x72, MRM2r, "psrld",
2499                                int_x86_sse2_psrl_d, int_x86_sse2_psrli_d>;
2500 defm PSRLQ : PDI_binop_rmi_int<0xD3, 0x73, MRM2r, "psrlq",
2501                                int_x86_sse2_psrl_q, int_x86_sse2_psrli_q>;
2502
2503 defm PSRAW : PDI_binop_rmi_int<0xE1, 0x71, MRM4r, "psraw",
2504                                int_x86_sse2_psra_w, int_x86_sse2_psrai_w>;
2505 defm PSRAD : PDI_binop_rmi_int<0xE2, 0x72, MRM4r, "psrad",
2506                                int_x86_sse2_psra_d, int_x86_sse2_psrai_d>;
2507
2508 defm PAND : PDI_binop_rm_v2i64<0xDB, "pand", and, 1>;
2509 defm POR  : PDI_binop_rm_v2i64<0xEB, "por" , or, 1>;
2510 defm PXOR : PDI_binop_rm_v2i64<0xEF, "pxor", xor, 1>;
2511
2512 let ExeDomain = SSEPackedInt in {
2513   let neverHasSideEffects = 1 in {
2514     // 128-bit logical shifts.
2515     def PSLLDQri : PDIi8<0x73, MRM7r,
2516                          (outs VR128:$dst), (ins VR128:$src1, i32i8imm:$src2),
2517                          "pslldq\t{$src2, $dst|$dst, $src2}", []>;
2518     def PSRLDQri : PDIi8<0x73, MRM3r,
2519                          (outs VR128:$dst), (ins VR128:$src1, i32i8imm:$src2),
2520                          "psrldq\t{$src2, $dst|$dst, $src2}", []>;
2521     // PSRADQri doesn't exist in SSE[1-3].
2522   }
2523   def PANDNrr : PDI<0xDF, MRMSrcReg,
2524                     (outs VR128:$dst), (ins VR128:$src1, VR128:$src2),
2525                     "pandn\t{$src2, $dst|$dst, $src2}",
2526                     [(set VR128:$dst, (v2i64 (and (vnot VR128:$src1),
2527                                               VR128:$src2)))]>;
2528
2529   def PANDNrm : PDI<0xDF, MRMSrcMem,
2530                     (outs VR128:$dst), (ins VR128:$src1, i128mem:$src2),
2531                     "pandn\t{$src2, $dst|$dst, $src2}",
2532                     [(set VR128:$dst, (v2i64 (and (vnot VR128:$src1),
2533                                               (memopv2i64 addr:$src2))))]>;
2534 }
2535 } // Constraints = "$src1 = $dst"
2536
2537 let Predicates = [HasAVX] in {
2538   def : Pat<(int_x86_sse2_psll_dq VR128:$src1, imm:$src2),
2539             (v2i64 (VPSLLDQri VR128:$src1, (BYTE_imm imm:$src2)))>;
2540   def : Pat<(int_x86_sse2_psrl_dq VR128:$src1, imm:$src2),
2541             (v2i64 (VPSRLDQri VR128:$src1, (BYTE_imm imm:$src2)))>;
2542   def : Pat<(int_x86_sse2_psll_dq_bs VR128:$src1, imm:$src2),
2543             (v2i64 (VPSLLDQri VR128:$src1, imm:$src2))>;
2544   def : Pat<(int_x86_sse2_psrl_dq_bs VR128:$src1, imm:$src2),
2545             (v2i64 (VPSRLDQri VR128:$src1, imm:$src2))>;
2546   def : Pat<(v2f64 (X86fsrl VR128:$src1, i32immSExt8:$src2)),
2547             (v2f64 (VPSRLDQri VR128:$src1, (BYTE_imm imm:$src2)))>;
2548
2549   // Shift up / down and insert zero's.
2550   def : Pat<(v2i64 (X86vshl  VR128:$src, (i8 imm:$amt))),
2551             (v2i64 (VPSLLDQri VR128:$src, (BYTE_imm imm:$amt)))>;
2552   def : Pat<(v2i64 (X86vshr  VR128:$src, (i8 imm:$amt))),
2553             (v2i64 (VPSRLDQri VR128:$src, (BYTE_imm imm:$amt)))>;
2554 }
2555
2556 let Predicates = [HasSSE2] in {
2557   def : Pat<(int_x86_sse2_psll_dq VR128:$src1, imm:$src2),
2558             (v2i64 (PSLLDQri VR128:$src1, (BYTE_imm imm:$src2)))>;
2559   def : Pat<(int_x86_sse2_psrl_dq VR128:$src1, imm:$src2),
2560             (v2i64 (PSRLDQri VR128:$src1, (BYTE_imm imm:$src2)))>;
2561   def : Pat<(int_x86_sse2_psll_dq_bs VR128:$src1, imm:$src2),
2562             (v2i64 (PSLLDQri VR128:$src1, imm:$src2))>;
2563   def : Pat<(int_x86_sse2_psrl_dq_bs VR128:$src1, imm:$src2),
2564             (v2i64 (PSRLDQri VR128:$src1, imm:$src2))>;
2565   def : Pat<(v2f64 (X86fsrl VR128:$src1, i32immSExt8:$src2)),
2566             (v2f64 (PSRLDQri VR128:$src1, (BYTE_imm imm:$src2)))>;
2567
2568   // Shift up / down and insert zero's.
2569   def : Pat<(v2i64 (X86vshl  VR128:$src, (i8 imm:$amt))),
2570             (v2i64 (PSLLDQri VR128:$src, (BYTE_imm imm:$amt)))>;
2571   def : Pat<(v2i64 (X86vshr  VR128:$src, (i8 imm:$amt))),
2572             (v2i64 (PSRLDQri VR128:$src, (BYTE_imm imm:$amt)))>;
2573 }
2574
2575 //===---------------------------------------------------------------------===//
2576 // SSE2 - Packed Integer Comparison Instructions
2577 //===---------------------------------------------------------------------===//
2578
2579 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
2580   defm VPCMPEQB  : PDI_binop_rm_int<0x74, "vpcmpeqb", int_x86_sse2_pcmpeq_b, 1,
2581                                     0>, VEX_4V;
2582   defm VPCMPEQW  : PDI_binop_rm_int<0x75, "vpcmpeqw", int_x86_sse2_pcmpeq_w, 1,
2583                                     0>, VEX_4V;
2584   defm VPCMPEQD  : PDI_binop_rm_int<0x76, "vpcmpeqd", int_x86_sse2_pcmpeq_d, 1,
2585                                     0>, VEX_4V;
2586   defm VPCMPGTB  : PDI_binop_rm_int<0x64, "vpcmpgtb", int_x86_sse2_pcmpgt_b, 0,
2587                                     0>, VEX_4V;
2588   defm VPCMPGTW  : PDI_binop_rm_int<0x65, "vpcmpgtw", int_x86_sse2_pcmpgt_w, 0,
2589                                     0>, VEX_4V;
2590   defm VPCMPGTD  : PDI_binop_rm_int<0x66, "vpcmpgtd", int_x86_sse2_pcmpgt_d, 0,
2591                                     0>, VEX_4V;
2592 }
2593
2594 let Constraints = "$src1 = $dst" in {
2595   defm PCMPEQB  : PDI_binop_rm_int<0x74, "pcmpeqb", int_x86_sse2_pcmpeq_b, 1>;
2596   defm PCMPEQW  : PDI_binop_rm_int<0x75, "pcmpeqw", int_x86_sse2_pcmpeq_w, 1>;
2597   defm PCMPEQD  : PDI_binop_rm_int<0x76, "pcmpeqd", int_x86_sse2_pcmpeq_d, 1>;
2598   defm PCMPGTB  : PDI_binop_rm_int<0x64, "pcmpgtb", int_x86_sse2_pcmpgt_b>;
2599   defm PCMPGTW  : PDI_binop_rm_int<0x65, "pcmpgtw", int_x86_sse2_pcmpgt_w>;
2600   defm PCMPGTD  : PDI_binop_rm_int<0x66, "pcmpgtd", int_x86_sse2_pcmpgt_d>;
2601 } // Constraints = "$src1 = $dst"
2602
2603 def : Pat<(v16i8 (X86pcmpeqb VR128:$src1, VR128:$src2)),
2604           (PCMPEQBrr VR128:$src1, VR128:$src2)>;
2605 def : Pat<(v16i8 (X86pcmpeqb VR128:$src1, (memop addr:$src2))),
2606           (PCMPEQBrm VR128:$src1, addr:$src2)>;
2607 def : Pat<(v8i16 (X86pcmpeqw VR128:$src1, VR128:$src2)),
2608           (PCMPEQWrr VR128:$src1, VR128:$src2)>;
2609 def : Pat<(v8i16 (X86pcmpeqw VR128:$src1, (memop addr:$src2))),
2610           (PCMPEQWrm VR128:$src1, addr:$src2)>;
2611 def : Pat<(v4i32 (X86pcmpeqd VR128:$src1, VR128:$src2)),
2612           (PCMPEQDrr VR128:$src1, VR128:$src2)>;
2613 def : Pat<(v4i32 (X86pcmpeqd VR128:$src1, (memop addr:$src2))),
2614           (PCMPEQDrm VR128:$src1, addr:$src2)>;
2615
2616 def : Pat<(v16i8 (X86pcmpgtb VR128:$src1, VR128:$src2)),
2617           (PCMPGTBrr VR128:$src1, VR128:$src2)>;
2618 def : Pat<(v16i8 (X86pcmpgtb VR128:$src1, (memop addr:$src2))),
2619           (PCMPGTBrm VR128:$src1, addr:$src2)>;
2620 def : Pat<(v8i16 (X86pcmpgtw VR128:$src1, VR128:$src2)),
2621           (PCMPGTWrr VR128:$src1, VR128:$src2)>;
2622 def : Pat<(v8i16 (X86pcmpgtw VR128:$src1, (memop addr:$src2))),
2623           (PCMPGTWrm VR128:$src1, addr:$src2)>;
2624 def : Pat<(v4i32 (X86pcmpgtd VR128:$src1, VR128:$src2)),
2625           (PCMPGTDrr VR128:$src1, VR128:$src2)>;
2626 def : Pat<(v4i32 (X86pcmpgtd VR128:$src1, (memop addr:$src2))),
2627           (PCMPGTDrm VR128:$src1, addr:$src2)>;
2628
2629 //===---------------------------------------------------------------------===//
2630 // SSE2 - Packed Integer Pack Instructions
2631 //===---------------------------------------------------------------------===//
2632
2633 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
2634 defm VPACKSSWB : PDI_binop_rm_int<0x63, "vpacksswb", int_x86_sse2_packsswb_128,
2635                                   0, 0>, VEX_4V;
2636 defm VPACKSSDW : PDI_binop_rm_int<0x6B, "vpackssdw", int_x86_sse2_packssdw_128,
2637                                   0, 0>, VEX_4V;
2638 defm VPACKUSWB : PDI_binop_rm_int<0x67, "vpackuswb", int_x86_sse2_packuswb_128,
2639                                   0, 0>, VEX_4V;
2640 }
2641
2642 let Constraints = "$src1 = $dst" in {
2643 defm PACKSSWB : PDI_binop_rm_int<0x63, "packsswb", int_x86_sse2_packsswb_128>;
2644 defm PACKSSDW : PDI_binop_rm_int<0x6B, "packssdw", int_x86_sse2_packssdw_128>;
2645 defm PACKUSWB : PDI_binop_rm_int<0x67, "packuswb", int_x86_sse2_packuswb_128>;
2646 } // Constraints = "$src1 = $dst"
2647
2648 //===---------------------------------------------------------------------===//
2649 // SSE2 - Packed Integer Shuffle Instructions
2650 //===---------------------------------------------------------------------===//
2651
2652 let ExeDomain = SSEPackedInt in {
2653 multiclass sse2_pshuffle<string OpcodeStr, ValueType vt, PatFrag pshuf_frag,
2654                          PatFrag bc_frag> {
2655 def ri : Ii8<0x70, MRMSrcReg,
2656               (outs VR128:$dst), (ins VR128:$src1, i8imm:$src2),
2657               !strconcat(OpcodeStr,
2658                          "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
2659               [(set VR128:$dst, (vt (pshuf_frag:$src2 VR128:$src1,
2660                                                       (undef))))]>;
2661 def mi : Ii8<0x70, MRMSrcMem,
2662               (outs VR128:$dst), (ins i128mem:$src1, i8imm:$src2),
2663               !strconcat(OpcodeStr,
2664                          "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
2665               [(set VR128:$dst, (vt (pshuf_frag:$src2
2666                                       (bc_frag (memopv2i64 addr:$src1)),
2667                                       (undef))))]>;
2668 }
2669 } // ExeDomain = SSEPackedInt
2670
2671 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
2672   let AddedComplexity = 5 in
2673   defm VPSHUFD : sse2_pshuffle<"vpshufd", v4i32, pshufd, bc_v4i32>, OpSize,
2674                                VEX;
2675
2676   // SSE2 with ImmT == Imm8 and XS prefix.
2677   defm VPSHUFHW : sse2_pshuffle<"vpshufhw", v8i16, pshufhw, bc_v8i16>, XS,
2678                                VEX;
2679
2680   // SSE2 with ImmT == Imm8 and XD prefix.
2681   defm VPSHUFLW : sse2_pshuffle<"vpshuflw", v8i16, pshuflw, bc_v8i16>, XD,
2682                                VEX;
2683 }
2684
2685 let Predicates = [HasSSE2] in {
2686   let AddedComplexity = 5 in
2687   defm PSHUFD : sse2_pshuffle<"pshufd", v4i32, pshufd, bc_v4i32>, TB, OpSize;
2688
2689   // SSE2 with ImmT == Imm8 and XS prefix.
2690   defm PSHUFHW : sse2_pshuffle<"pshufhw", v8i16, pshufhw, bc_v8i16>, XS;
2691
2692   // SSE2 with ImmT == Imm8 and XD prefix.
2693   defm PSHUFLW : sse2_pshuffle<"pshuflw", v8i16, pshuflw, bc_v8i16>, XD;
2694 }
2695
2696 //===---------------------------------------------------------------------===//
2697 // SSE2 - Packed Integer Unpack Instructions
2698 //===---------------------------------------------------------------------===//
2699
2700 let ExeDomain = SSEPackedInt in {
2701 multiclass sse2_unpack<bits<8> opc, string OpcodeStr, ValueType vt,
2702                        PatFrag unp_frag, PatFrag bc_frag, bit Is2Addr = 1> {
2703   def rr : PDI<opc, MRMSrcReg,
2704       (outs VR128:$dst), (ins VR128:$src1, VR128:$src2),
2705       !if(Is2Addr,
2706           !strconcat(OpcodeStr,"\t{$src2, $dst|$dst, $src2}"),
2707           !strconcat(OpcodeStr,"\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
2708       [(set VR128:$dst, (vt (unp_frag VR128:$src1, VR128:$src2)))]>;
2709   def rm : PDI<opc, MRMSrcMem,
2710       (outs VR128:$dst), (ins VR128:$src1, i128mem:$src2),
2711       !if(Is2Addr,
2712           !strconcat(OpcodeStr,"\t{$src2, $dst|$dst, $src2}"),
2713           !strconcat(OpcodeStr,"\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
2714       [(set VR128:$dst, (unp_frag VR128:$src1,
2715                                   (bc_frag (memopv2i64
2716                                                addr:$src2))))]>;
2717 }
2718
2719 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
2720   defm VPUNPCKLBW  : sse2_unpack<0x60, "vpunpcklbw", v16i8, unpckl, bc_v16i8,
2721                                  0>, VEX_4V;
2722   defm VPUNPCKLWD  : sse2_unpack<0x61, "vpunpcklwd", v8i16, unpckl, bc_v8i16,
2723                                  0>, VEX_4V;
2724   defm VPUNPCKLDQ  : sse2_unpack<0x62, "vpunpckldq", v4i32, unpckl, bc_v4i32,
2725                                  0>, VEX_4V;
2726
2727   /// FIXME: we could eliminate this and use sse2_unpack instead if tblgen
2728   /// knew to collapse (bitconvert VT to VT) into its operand.
2729   def VPUNPCKLQDQrr : PDI<0x6C, MRMSrcReg,
2730                          (outs VR128:$dst), (ins VR128:$src1, VR128:$src2),
2731                          "vpunpcklqdq\t{$src2, $src1, $dst|$dst, $src1, $src2}",
2732                         [(set VR128:$dst,
2733                           (v2i64 (unpckl VR128:$src1, VR128:$src2)))]>, VEX_4V;
2734   def VPUNPCKLQDQrm : PDI<0x6C, MRMSrcMem,
2735                          (outs VR128:$dst), (ins VR128:$src1, i128mem:$src2),
2736                          "vpunpcklqdq\t{$src2, $src1, $dst|$dst, $src1, $src2}",
2737                         [(set VR128:$dst,
2738                           (v2i64 (unpckl VR128:$src1,
2739                                          (memopv2i64 addr:$src2))))]>, VEX_4V;
2740
2741   defm VPUNPCKHBW  : sse2_unpack<0x68, "vpunpckhbw", v16i8, unpckh, bc_v16i8,
2742                                  0>, VEX_4V;
2743   defm VPUNPCKHWD  : sse2_unpack<0x69, "vpunpckhwd", v8i16, unpckh, bc_v8i16,
2744                                  0>, VEX_4V;
2745   defm VPUNPCKHDQ  : sse2_unpack<0x6A, "vpunpckhdq", v4i32, unpckh, bc_v4i32,
2746                                  0>, VEX_4V;
2747
2748   /// FIXME: we could eliminate this and use sse2_unpack instead if tblgen
2749   /// knew to collapse (bitconvert VT to VT) into its operand.
2750   def VPUNPCKHQDQrr : PDI<0x6D, MRMSrcReg,
2751                          (outs VR128:$dst), (ins VR128:$src1, VR128:$src2),
2752                          "vpunpckhqdq\t{$src2, $src1, $dst|$dst, $src1, $src2}",
2753                         [(set VR128:$dst,
2754                           (v2i64 (unpckh VR128:$src1, VR128:$src2)))]>, VEX_4V;
2755   def VPUNPCKHQDQrm : PDI<0x6D, MRMSrcMem,
2756                         (outs VR128:$dst), (ins VR128:$src1, i128mem:$src2),
2757                         "vpunpckhqdq\t{$src2, $src1, $dst|$dst, $src1, $src2}",
2758                         [(set VR128:$dst,
2759                           (v2i64 (unpckh VR128:$src1,
2760                                          (memopv2i64 addr:$src2))))]>, VEX_4V;
2761 }
2762
2763 let Constraints = "$src1 = $dst" in {
2764   defm PUNPCKLBW  : sse2_unpack<0x60, "punpcklbw", v16i8, unpckl, bc_v16i8>;
2765   defm PUNPCKLWD  : sse2_unpack<0x61, "punpcklwd", v8i16, unpckl, bc_v8i16>;
2766   defm PUNPCKLDQ  : sse2_unpack<0x62, "punpckldq", v4i32, unpckl, bc_v4i32>;
2767
2768   /// FIXME: we could eliminate this and use sse2_unpack instead if tblgen
2769   /// knew to collapse (bitconvert VT to VT) into its operand.
2770   def PUNPCKLQDQrr : PDI<0x6C, MRMSrcReg,
2771                          (outs VR128:$dst), (ins VR128:$src1, VR128:$src2),
2772                          "punpcklqdq\t{$src2, $dst|$dst, $src2}",
2773                         [(set VR128:$dst,
2774                           (v2i64 (unpckl VR128:$src1, VR128:$src2)))]>;
2775   def PUNPCKLQDQrm : PDI<0x6C, MRMSrcMem,
2776                          (outs VR128:$dst), (ins VR128:$src1, i128mem:$src2),
2777                          "punpcklqdq\t{$src2, $dst|$dst, $src2}",
2778                         [(set VR128:$dst,
2779                           (v2i64 (unpckl VR128:$src1,
2780                                          (memopv2i64 addr:$src2))))]>;
2781
2782   defm PUNPCKHBW  : sse2_unpack<0x68, "punpckhbw", v16i8, unpckh, bc_v16i8>;
2783   defm PUNPCKHWD  : sse2_unpack<0x69, "punpckhwd", v8i16, unpckh, bc_v8i16>;
2784   defm PUNPCKHDQ  : sse2_unpack<0x6A, "punpckhdq", v4i32, unpckh, bc_v4i32>;
2785
2786   /// FIXME: we could eliminate this and use sse2_unpack instead if tblgen
2787   /// knew to collapse (bitconvert VT to VT) into its operand.
2788   def PUNPCKHQDQrr : PDI<0x6D, MRMSrcReg,
2789                          (outs VR128:$dst), (ins VR128:$src1, VR128:$src2),
2790                          "punpckhqdq\t{$src2, $dst|$dst, $src2}",
2791                         [(set VR128:$dst,
2792                           (v2i64 (unpckh VR128:$src1, VR128:$src2)))]>;
2793   def PUNPCKHQDQrm : PDI<0x6D, MRMSrcMem,
2794                         (outs VR128:$dst), (ins VR128:$src1, i128mem:$src2),
2795                         "punpckhqdq\t{$src2, $dst|$dst, $src2}",
2796                         [(set VR128:$dst,
2797                           (v2i64 (unpckh VR128:$src1,
2798                                          (memopv2i64 addr:$src2))))]>;
2799 }
2800
2801 } // ExeDomain = SSEPackedInt
2802
2803 //===---------------------------------------------------------------------===//
2804 // SSE2 - Packed Integer Extract and Insert
2805 //===---------------------------------------------------------------------===//
2806
2807 let ExeDomain = SSEPackedInt in {
2808 multiclass sse2_pinsrw<bit Is2Addr = 1> {
2809   def rri : Ii8<0xC4, MRMSrcReg,
2810        (outs VR128:$dst), (ins VR128:$src1,
2811         GR32:$src2, i32i8imm:$src3),
2812        !if(Is2Addr,
2813            "pinsrw\t{$src3, $src2, $dst|$dst, $src2, $src3}",
2814            "vpinsrw\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}"),
2815        [(set VR128:$dst,
2816          (X86pinsrw VR128:$src1, GR32:$src2, imm:$src3))]>;
2817   def rmi : Ii8<0xC4, MRMSrcMem,
2818                        (outs VR128:$dst), (ins VR128:$src1,
2819                         i16mem:$src2, i32i8imm:$src3),
2820        !if(Is2Addr,
2821            "pinsrw\t{$src3, $src2, $dst|$dst, $src2, $src3}",
2822            "vpinsrw\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}"),
2823        [(set VR128:$dst,
2824          (X86pinsrw VR128:$src1, (extloadi16 addr:$src2),
2825                     imm:$src3))]>;
2826 }
2827
2828 // Extract
2829 let isAsmParserOnly = 1, Predicates = [HasAVX] in
2830 def VPEXTRWri : Ii8<0xC5, MRMSrcReg,
2831                     (outs GR32:$dst), (ins VR128:$src1, i32i8imm:$src2),
2832                     "vpextrw\t{$src2, $src1, $dst|$dst, $src1, $src2}",
2833                     [(set GR32:$dst, (X86pextrw (v8i16 VR128:$src1),
2834                                                 imm:$src2))]>, OpSize, VEX;
2835 def PEXTRWri : PDIi8<0xC5, MRMSrcReg,
2836                     (outs GR32:$dst), (ins VR128:$src1, i32i8imm:$src2),
2837                     "pextrw\t{$src2, $src1, $dst|$dst, $src1, $src2}",
2838                     [(set GR32:$dst, (X86pextrw (v8i16 VR128:$src1),
2839                                                 imm:$src2))]>;
2840
2841 // Insert
2842 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
2843   defm VPINSRW : sse2_pinsrw<0>, OpSize, VEX_4V;
2844   def  VPINSRWrr64i : Ii8<0xC4, MRMSrcReg, (outs VR128:$dst),
2845        (ins VR128:$src1, GR64:$src2, i32i8imm:$src3),
2846        "vpinsrw\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}",
2847        []>, OpSize, VEX_4V;
2848 }
2849
2850 let Constraints = "$src1 = $dst" in
2851   defm PINSRW : sse2_pinsrw, TB, OpSize, Requires<[HasSSE2]>;
2852
2853 } // ExeDomain = SSEPackedInt
2854
2855 //===---------------------------------------------------------------------===//
2856 // SSE2 - Packed Mask Creation
2857 //===---------------------------------------------------------------------===//
2858
2859 let ExeDomain = SSEPackedInt in {
2860
2861 let isAsmParserOnly = 1 in {
2862 def VPMOVMSKBrr  : VPDI<0xD7, MRMSrcReg, (outs GR32:$dst), (ins VR128:$src),
2863            "pmovmskb\t{$src, $dst|$dst, $src}",
2864            [(set GR32:$dst, (int_x86_sse2_pmovmskb_128 VR128:$src))]>, VEX;
2865 def VPMOVMSKBr64r : VPDI<0xD7, MRMSrcReg, (outs GR64:$dst), (ins VR128:$src),
2866            "pmovmskb\t{$src, $dst|$dst, $src}", []>, VEX;
2867 }
2868 def PMOVMSKBrr : PDI<0xD7, MRMSrcReg, (outs GR32:$dst), (ins VR128:$src),
2869            "pmovmskb\t{$src, $dst|$dst, $src}",
2870            [(set GR32:$dst, (int_x86_sse2_pmovmskb_128 VR128:$src))]>;
2871
2872 } // ExeDomain = SSEPackedInt
2873
2874 //===---------------------------------------------------------------------===//
2875 // SSE2 - Conditional Store
2876 //===---------------------------------------------------------------------===//
2877
2878 let ExeDomain = SSEPackedInt in {
2879
2880 let isAsmParserOnly = 1 in {
2881 let Uses = [EDI] in
2882 def VMASKMOVDQU : VPDI<0xF7, MRMSrcReg, (outs),
2883            (ins VR128:$src, VR128:$mask),
2884            "maskmovdqu\t{$mask, $src|$src, $mask}",
2885            [(int_x86_sse2_maskmov_dqu VR128:$src, VR128:$mask, EDI)]>, VEX;
2886 let Uses = [RDI] in
2887 def VMASKMOVDQU64 : VPDI<0xF7, MRMSrcReg, (outs),
2888            (ins VR128:$src, VR128:$mask),
2889            "maskmovdqu\t{$mask, $src|$src, $mask}",
2890            [(int_x86_sse2_maskmov_dqu VR128:$src, VR128:$mask, RDI)]>, VEX;
2891 }
2892
2893 let Uses = [EDI] in
2894 def MASKMOVDQU : PDI<0xF7, MRMSrcReg, (outs), (ins VR128:$src, VR128:$mask),
2895            "maskmovdqu\t{$mask, $src|$src, $mask}",
2896            [(int_x86_sse2_maskmov_dqu VR128:$src, VR128:$mask, EDI)]>;
2897 let Uses = [RDI] in
2898 def MASKMOVDQU64 : PDI<0xF7, MRMSrcReg, (outs), (ins VR128:$src, VR128:$mask),
2899            "maskmovdqu\t{$mask, $src|$src, $mask}",
2900            [(int_x86_sse2_maskmov_dqu VR128:$src, VR128:$mask, RDI)]>;
2901
2902 } // ExeDomain = SSEPackedInt
2903
2904 //===---------------------------------------------------------------------===//
2905 // SSE2 - Move Doubleword
2906 //===---------------------------------------------------------------------===//
2907
2908 // Move Int Doubleword to Packed Double Int
2909 let isAsmParserOnly = 1 in {
2910 def VMOVDI2PDIrr : VPDI<0x6E, MRMSrcReg, (outs VR128:$dst), (ins GR32:$src),
2911                       "movd\t{$src, $dst|$dst, $src}",
2912                       [(set VR128:$dst,
2913                         (v4i32 (scalar_to_vector GR32:$src)))]>, VEX;
2914 def VMOVDI2PDIrm : VPDI<0x6E, MRMSrcMem, (outs VR128:$dst), (ins i32mem:$src),
2915                       "movd\t{$src, $dst|$dst, $src}",
2916                       [(set VR128:$dst,
2917                         (v4i32 (scalar_to_vector (loadi32 addr:$src))))]>,
2918                       VEX;
2919 }
2920 def MOVDI2PDIrr : PDI<0x6E, MRMSrcReg, (outs VR128:$dst), (ins GR32:$src),
2921                       "movd\t{$src, $dst|$dst, $src}",
2922                       [(set VR128:$dst,
2923                         (v4i32 (scalar_to_vector GR32:$src)))]>;
2924 def MOVDI2PDIrm : PDI<0x6E, MRMSrcMem, (outs VR128:$dst), (ins i32mem:$src),
2925                       "movd\t{$src, $dst|$dst, $src}",
2926                       [(set VR128:$dst,
2927                         (v4i32 (scalar_to_vector (loadi32 addr:$src))))]>;
2928
2929
2930 // Move Int Doubleword to Single Scalar
2931 let isAsmParserOnly = 1 in {
2932 def VMOVDI2SSrr  : VPDI<0x6E, MRMSrcReg, (outs FR32:$dst), (ins GR32:$src),
2933                       "movd\t{$src, $dst|$dst, $src}",
2934                       [(set FR32:$dst, (bitconvert GR32:$src))]>, VEX;
2935
2936 def VMOVDI2SSrm  : VPDI<0x6E, MRMSrcMem, (outs FR32:$dst), (ins i32mem:$src),
2937                       "movd\t{$src, $dst|$dst, $src}",
2938                       [(set FR32:$dst, (bitconvert (loadi32 addr:$src)))]>,
2939                       VEX;
2940 }
2941 def MOVDI2SSrr  : PDI<0x6E, MRMSrcReg, (outs FR32:$dst), (ins GR32:$src),
2942                       "movd\t{$src, $dst|$dst, $src}",
2943                       [(set FR32:$dst, (bitconvert GR32:$src))]>;
2944
2945 def MOVDI2SSrm  : PDI<0x6E, MRMSrcMem, (outs FR32:$dst), (ins i32mem:$src),
2946                       "movd\t{$src, $dst|$dst, $src}",
2947                       [(set FR32:$dst, (bitconvert (loadi32 addr:$src)))]>;
2948
2949 // Move Packed Doubleword Int to Packed Double Int
2950 let isAsmParserOnly = 1 in {
2951 def VMOVPDI2DIrr  : VPDI<0x7E, MRMDestReg, (outs GR32:$dst), (ins VR128:$src),
2952                        "movd\t{$src, $dst|$dst, $src}",
2953                        [(set GR32:$dst, (vector_extract (v4i32 VR128:$src),
2954                                         (iPTR 0)))]>, VEX;
2955 def VMOVPDI2DImr  : VPDI<0x7E, MRMDestMem, (outs),
2956                        (ins i32mem:$dst, VR128:$src),
2957                        "movd\t{$src, $dst|$dst, $src}",
2958                        [(store (i32 (vector_extract (v4i32 VR128:$src),
2959                                      (iPTR 0))), addr:$dst)]>, VEX;
2960 }
2961 def MOVPDI2DIrr  : PDI<0x7E, MRMDestReg, (outs GR32:$dst), (ins VR128:$src),
2962                        "movd\t{$src, $dst|$dst, $src}",
2963                        [(set GR32:$dst, (vector_extract (v4i32 VR128:$src),
2964                                         (iPTR 0)))]>;
2965 def MOVPDI2DImr  : PDI<0x7E, MRMDestMem, (outs), (ins i32mem:$dst, VR128:$src),
2966                        "movd\t{$src, $dst|$dst, $src}",
2967                        [(store (i32 (vector_extract (v4i32 VR128:$src),
2968                                      (iPTR 0))), addr:$dst)]>;
2969
2970 // Move Scalar Single to Double Int
2971 let isAsmParserOnly = 1 in {
2972 def VMOVSS2DIrr  : VPDI<0x7E, MRMDestReg, (outs GR32:$dst), (ins FR32:$src),
2973                       "movd\t{$src, $dst|$dst, $src}",
2974                       [(set GR32:$dst, (bitconvert FR32:$src))]>, VEX;
2975 def VMOVSS2DImr  : VPDI<0x7E, MRMDestMem, (outs), (ins i32mem:$dst, FR32:$src),
2976                       "movd\t{$src, $dst|$dst, $src}",
2977                       [(store (i32 (bitconvert FR32:$src)), addr:$dst)]>, VEX;
2978 }
2979 def MOVSS2DIrr  : PDI<0x7E, MRMDestReg, (outs GR32:$dst), (ins FR32:$src),
2980                       "movd\t{$src, $dst|$dst, $src}",
2981                       [(set GR32:$dst, (bitconvert FR32:$src))]>;
2982 def MOVSS2DImr  : PDI<0x7E, MRMDestMem, (outs), (ins i32mem:$dst, FR32:$src),
2983                       "movd\t{$src, $dst|$dst, $src}",
2984                       [(store (i32 (bitconvert FR32:$src)), addr:$dst)]>;
2985
2986 // movd / movq to XMM register zero-extends
2987 let AddedComplexity = 15, isAsmParserOnly = 1 in {
2988 def VMOVZDI2PDIrr : VPDI<0x6E, MRMSrcReg, (outs VR128:$dst), (ins GR32:$src),
2989                        "movd\t{$src, $dst|$dst, $src}",
2990                        [(set VR128:$dst, (v4i32 (X86vzmovl
2991                                       (v4i32 (scalar_to_vector GR32:$src)))))]>,
2992                                       VEX;
2993 def VMOVZQI2PQIrr : VPDI<0x6E, MRMSrcReg, (outs VR128:$dst), (ins GR64:$src),
2994                        "mov{d|q}\t{$src, $dst|$dst, $src}", // X86-64 only
2995                        [(set VR128:$dst, (v2i64 (X86vzmovl
2996                                       (v2i64 (scalar_to_vector GR64:$src)))))]>,
2997                                       VEX, VEX_W;
2998 }
2999 let AddedComplexity = 15 in {
3000 def MOVZDI2PDIrr : PDI<0x6E, MRMSrcReg, (outs VR128:$dst), (ins GR32:$src),
3001                        "movd\t{$src, $dst|$dst, $src}",
3002                        [(set VR128:$dst, (v4i32 (X86vzmovl
3003                                       (v4i32 (scalar_to_vector GR32:$src)))))]>;
3004 def MOVZQI2PQIrr : RPDI<0x6E, MRMSrcReg, (outs VR128:$dst), (ins GR64:$src),
3005                        "mov{d|q}\t{$src, $dst|$dst, $src}", // X86-64 only
3006                        [(set VR128:$dst, (v2i64 (X86vzmovl
3007                                       (v2i64 (scalar_to_vector GR64:$src)))))]>;
3008 }
3009
3010 let AddedComplexity = 20 in {
3011 let isAsmParserOnly = 1 in
3012 def VMOVZDI2PDIrm : VPDI<0x6E, MRMSrcMem, (outs VR128:$dst), (ins i32mem:$src),
3013                        "movd\t{$src, $dst|$dst, $src}",
3014                        [(set VR128:$dst,
3015                          (v4i32 (X86vzmovl (v4i32 (scalar_to_vector
3016                                                    (loadi32 addr:$src))))))]>,
3017                                                    VEX;
3018 def MOVZDI2PDIrm : PDI<0x6E, MRMSrcMem, (outs VR128:$dst), (ins i32mem:$src),
3019                        "movd\t{$src, $dst|$dst, $src}",
3020                        [(set VR128:$dst,
3021                          (v4i32 (X86vzmovl (v4i32 (scalar_to_vector
3022                                                    (loadi32 addr:$src))))))]>;
3023
3024 def : Pat<(v4i32 (X86vzmovl (loadv4i32 addr:$src))),
3025             (MOVZDI2PDIrm addr:$src)>;
3026 def : Pat<(v4i32 (X86vzmovl (bc_v4i32 (loadv4f32 addr:$src)))),
3027             (MOVZDI2PDIrm addr:$src)>;
3028 def : Pat<(v4i32 (X86vzmovl (bc_v4i32 (loadv2i64 addr:$src)))),
3029             (MOVZDI2PDIrm addr:$src)>;
3030 }
3031
3032 //===---------------------------------------------------------------------===//
3033 // SSE2 - Move Quadword
3034 //===---------------------------------------------------------------------===//
3035
3036 // Move Quadword Int to Packed Quadword Int
3037 let isAsmParserOnly = 1 in
3038 def VMOVQI2PQIrm : I<0x7E, MRMSrcMem, (outs VR128:$dst), (ins i64mem:$src),
3039                     "vmovq\t{$src, $dst|$dst, $src}",
3040                     [(set VR128:$dst,
3041                       (v2i64 (scalar_to_vector (loadi64 addr:$src))))]>, XS,
3042                     VEX, Requires<[HasAVX]>;
3043 def MOVQI2PQIrm : I<0x7E, MRMSrcMem, (outs VR128:$dst), (ins i64mem:$src),
3044                     "movq\t{$src, $dst|$dst, $src}",
3045                     [(set VR128:$dst,
3046                       (v2i64 (scalar_to_vector (loadi64 addr:$src))))]>, XS,
3047                     Requires<[HasSSE2]>; // SSE2 instruction with XS Prefix
3048
3049 // Move Packed Quadword Int to Quadword Int
3050 let isAsmParserOnly = 1 in
3051 def VMOVPQI2QImr : VPDI<0xD6, MRMDestMem, (outs), (ins i64mem:$dst, VR128:$src),
3052                       "movq\t{$src, $dst|$dst, $src}",
3053                       [(store (i64 (vector_extract (v2i64 VR128:$src),
3054                                     (iPTR 0))), addr:$dst)]>, VEX;
3055 def MOVPQI2QImr : PDI<0xD6, MRMDestMem, (outs), (ins i64mem:$dst, VR128:$src),
3056                       "movq\t{$src, $dst|$dst, $src}",
3057                       [(store (i64 (vector_extract (v2i64 VR128:$src),
3058                                     (iPTR 0))), addr:$dst)]>;
3059
3060 def : Pat<(f64 (vector_extract (v2f64 VR128:$src), (iPTR 0))),
3061           (f64 (EXTRACT_SUBREG (v2f64 VR128:$src), sub_sd))>;
3062
3063 // Store / copy lower 64-bits of a XMM register.
3064 let isAsmParserOnly = 1 in
3065 def VMOVLQ128mr : VPDI<0xD6, MRMDestMem, (outs), (ins i64mem:$dst, VR128:$src),
3066                      "movq\t{$src, $dst|$dst, $src}",
3067                      [(int_x86_sse2_storel_dq addr:$dst, VR128:$src)]>, VEX;
3068 def MOVLQ128mr : PDI<0xD6, MRMDestMem, (outs), (ins i64mem:$dst, VR128:$src),
3069                      "movq\t{$src, $dst|$dst, $src}",
3070                      [(int_x86_sse2_storel_dq addr:$dst, VR128:$src)]>;
3071
3072 let AddedComplexity = 20, isAsmParserOnly = 1 in
3073 def VMOVZQI2PQIrm : I<0x7E, MRMSrcMem, (outs VR128:$dst), (ins i64mem:$src),
3074                      "vmovq\t{$src, $dst|$dst, $src}",
3075                      [(set VR128:$dst,
3076                        (v2i64 (X86vzmovl (v2i64 (scalar_to_vector
3077                                                  (loadi64 addr:$src))))))]>,
3078                      XS, VEX, Requires<[HasAVX]>;
3079
3080 let AddedComplexity = 20 in {
3081 def MOVZQI2PQIrm : I<0x7E, MRMSrcMem, (outs VR128:$dst), (ins i64mem:$src),
3082                      "movq\t{$src, $dst|$dst, $src}",
3083                      [(set VR128:$dst,
3084                        (v2i64 (X86vzmovl (v2i64 (scalar_to_vector
3085                                                  (loadi64 addr:$src))))))]>,
3086                      XS, Requires<[HasSSE2]>;
3087
3088 def : Pat<(v2i64 (X86vzmovl (loadv2i64 addr:$src))),
3089             (MOVZQI2PQIrm addr:$src)>;
3090 def : Pat<(v2i64 (X86vzmovl (bc_v2i64 (loadv4f32 addr:$src)))),
3091             (MOVZQI2PQIrm addr:$src)>;
3092 def : Pat<(v2i64 (X86vzload addr:$src)), (MOVZQI2PQIrm addr:$src)>;
3093 }
3094
3095 // Moving from XMM to XMM and clear upper 64 bits. Note, there is a bug in
3096 // IA32 document. movq xmm1, xmm2 does clear the high bits.
3097 let isAsmParserOnly = 1, AddedComplexity = 15 in
3098 def VMOVZPQILo2PQIrr : I<0x7E, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
3099                         "vmovq\t{$src, $dst|$dst, $src}",
3100                     [(set VR128:$dst, (v2i64 (X86vzmovl (v2i64 VR128:$src))))]>,
3101                       XS, VEX, Requires<[HasAVX]>;
3102 let AddedComplexity = 15 in
3103 def MOVZPQILo2PQIrr : I<0x7E, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
3104                         "movq\t{$src, $dst|$dst, $src}",
3105                     [(set VR128:$dst, (v2i64 (X86vzmovl (v2i64 VR128:$src))))]>,
3106                       XS, Requires<[HasSSE2]>;
3107
3108 let AddedComplexity = 20, isAsmParserOnly = 1 in
3109 def VMOVZPQILo2PQIrm : I<0x7E, MRMSrcMem, (outs VR128:$dst), (ins i128mem:$src),
3110                         "vmovq\t{$src, $dst|$dst, $src}",
3111                     [(set VR128:$dst, (v2i64 (X86vzmovl
3112                                              (loadv2i64 addr:$src))))]>,
3113                       XS, VEX, Requires<[HasAVX]>;
3114 let AddedComplexity = 20 in {
3115 def MOVZPQILo2PQIrm : I<0x7E, MRMSrcMem, (outs VR128:$dst), (ins i128mem:$src),
3116                         "movq\t{$src, $dst|$dst, $src}",
3117                     [(set VR128:$dst, (v2i64 (X86vzmovl
3118                                              (loadv2i64 addr:$src))))]>,
3119                       XS, Requires<[HasSSE2]>;
3120
3121 def : Pat<(v2i64 (X86vzmovl (bc_v2i64 (loadv4i32 addr:$src)))),
3122             (MOVZPQILo2PQIrm addr:$src)>;
3123 }
3124
3125 // Instructions to match in the assembler
3126 let isAsmParserOnly = 1 in {
3127 def VMOVQs64rr : VPDI<0x6E, MRMSrcReg, (outs VR128:$dst), (ins GR64:$src),
3128                       "movq\t{$src, $dst|$dst, $src}", []>, VEX, VEX_W;
3129 def VMOVQd64rr : VPDI<0x7E, MRMDestReg, (outs GR64:$dst), (ins VR128:$src),
3130                       "movq\t{$src, $dst|$dst, $src}", []>, VEX, VEX_W;
3131 // Recognize "movd" with GR64 destination, but encode as a "movq"
3132 def VMOVQd64rr_alt : VPDI<0x7E, MRMDestReg, (outs GR64:$dst), (ins VR128:$src),
3133                           "movd\t{$src, $dst|$dst, $src}", []>, VEX, VEX_W;
3134 }
3135
3136 // Instructions for the disassembler
3137 // xr = XMM register
3138 // xm = mem64
3139
3140 let isAsmParserOnly = 1, Predicates = [HasAVX] in
3141 def VMOVQxrxr: I<0x7E, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
3142                  "vmovq\t{$src, $dst|$dst, $src}", []>, VEX, XS;
3143 def MOVQxrxr : I<0x7E, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
3144                  "movq\t{$src, $dst|$dst, $src}", []>, XS;
3145
3146 //===---------------------------------------------------------------------===//
3147 // SSE2 - Misc Instructions
3148 //===---------------------------------------------------------------------===//
3149
3150 // Flush cache
3151 def CLFLUSH : I<0xAE, MRM7m, (outs), (ins i8mem:$src),
3152                "clflush\t$src", [(int_x86_sse2_clflush addr:$src)]>,
3153               TB, Requires<[HasSSE2]>;
3154
3155 // Load, store, and memory fence
3156 def LFENCE : I<0xAE, MRM_E8, (outs), (ins),
3157                "lfence", [(int_x86_sse2_lfence)]>, TB, Requires<[HasSSE2]>;
3158 def MFENCE : I<0xAE, MRM_F0, (outs), (ins),
3159                "mfence", [(int_x86_sse2_mfence)]>, TB, Requires<[HasSSE2]>;
3160 def : Pat<(X86LFence), (LFENCE)>;
3161 def : Pat<(X86MFence), (MFENCE)>;
3162
3163
3164 // Pause. This "instruction" is encoded as "rep; nop", so even though it
3165 // was introduced with SSE2, it's backward compatible.
3166 def PAUSE : I<0x90, RawFrm, (outs), (ins), "pause", []>, REP;
3167
3168 // Alias instructions that map zero vector to pxor / xorp* for sse.
3169 // We set canFoldAsLoad because this can be converted to a constant-pool
3170 // load of an all-ones value if folding it would be beneficial.
3171 let isReMaterializable = 1, isAsCheapAsAMove = 1, canFoldAsLoad = 1,
3172     isCodeGenOnly = 1, ExeDomain = SSEPackedInt in
3173   // FIXME: Change encoding to pseudo.
3174   def V_SETALLONES : PDI<0x76, MRMInitReg, (outs VR128:$dst), (ins), "",
3175                          [(set VR128:$dst, (v4i32 immAllOnesV))]>;
3176
3177 //===---------------------------------------------------------------------===//
3178 // SSE3 - Conversion Instructions
3179 //===---------------------------------------------------------------------===//
3180
3181 // Convert Packed Double FP to Packed DW Integers
3182 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
3183 // The assembler can recognize rr 256-bit instructions by seeing a ymm
3184 // register, but the same isn't true when using memory operands instead.
3185 // Provide other assembly rr and rm forms to address this explicitly.
3186 def VCVTPD2DQrr  : S3DI<0xE6, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
3187                        "vcvtpd2dq\t{$src, $dst|$dst, $src}", []>, VEX;
3188 def VCVTPD2DQXrYr  : S3DI<0xE6, MRMSrcReg, (outs VR128:$dst), (ins VR256:$src),
3189                        "vcvtpd2dq\t{$src, $dst|$dst, $src}", []>, VEX;
3190
3191 // XMM only
3192 def VCVTPD2DQXrr : S3DI<0xE6, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
3193                       "vcvtpd2dqx\t{$src, $dst|$dst, $src}", []>, VEX;
3194 def VCVTPD2DQXrm : S3DI<0xE6, MRMSrcMem, (outs VR128:$dst), (ins f128mem:$src),
3195                       "vcvtpd2dqx\t{$src, $dst|$dst, $src}", []>, VEX;
3196
3197 // YMM only
3198 def VCVTPD2DQYrr : S3DI<0xE6, MRMSrcReg, (outs VR128:$dst), (ins VR256:$src),
3199                       "vcvtpd2dqy\t{$src, $dst|$dst, $src}", []>, VEX;
3200 def VCVTPD2DQYrm : S3DI<0xE6, MRMSrcMem, (outs VR128:$dst), (ins f256mem:$src),
3201                       "vcvtpd2dqy\t{$src, $dst|$dst, $src}", []>, VEX, VEX_L;
3202 }
3203
3204 def CVTPD2DQrm  : S3DI<0xE6, MRMSrcMem, (outs VR128:$dst), (ins f128mem:$src),
3205                        "cvtpd2dq\t{$src, $dst|$dst, $src}", []>;
3206 def CVTPD2DQrr  : S3DI<0xE6, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
3207                        "cvtpd2dq\t{$src, $dst|$dst, $src}", []>;
3208
3209 // Convert Packed DW Integers to Packed Double FP
3210 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
3211 def VCVTDQ2PDrm  : S3SI<0xE6, MRMSrcMem, (outs VR128:$dst), (ins f128mem:$src),
3212                      "vcvtdq2pd\t{$src, $dst|$dst, $src}", []>, VEX;
3213 def VCVTDQ2PDrr  : S3SI<0xE6, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
3214                      "vcvtdq2pd\t{$src, $dst|$dst, $src}", []>, VEX;
3215 def VCVTDQ2PDYrm  : S3SI<0xE6, MRMSrcMem, (outs VR256:$dst), (ins f128mem:$src),
3216                      "vcvtdq2pd\t{$src, $dst|$dst, $src}", []>, VEX;
3217 def VCVTDQ2PDYrr  : S3SI<0xE6, MRMSrcReg, (outs VR256:$dst), (ins VR128:$src),
3218                      "vcvtdq2pd\t{$src, $dst|$dst, $src}", []>, VEX;
3219 }
3220
3221 def CVTDQ2PDrm  : S3SI<0xE6, MRMSrcMem, (outs VR128:$dst), (ins f128mem:$src),
3222                        "cvtdq2pd\t{$src, $dst|$dst, $src}", []>;
3223 def CVTDQ2PDrr  : S3SI<0xE6, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
3224                        "cvtdq2pd\t{$src, $dst|$dst, $src}", []>;
3225
3226 // AVX 256-bit register conversion intrinsics
3227 def : Pat<(int_x86_avx_cvtdq2_pd_256 VR128:$src),
3228            (VCVTDQ2PDYrr VR128:$src)>;
3229 def : Pat<(int_x86_avx_cvtdq2_pd_256 (memopv4i32 addr:$src)),
3230            (VCVTDQ2PDYrm addr:$src)>;
3231
3232 def : Pat<(int_x86_avx_cvt_pd2dq_256 VR256:$src),
3233           (VCVTPD2DQYrr VR256:$src)>;
3234 def : Pat<(int_x86_avx_cvt_pd2dq_256 (memopv4f64 addr:$src)),
3235           (VCVTPD2DQYrm addr:$src)>;
3236
3237 //===---------------------------------------------------------------------===//
3238 // SSE3 - Move Instructions
3239 //===---------------------------------------------------------------------===//
3240
3241 // Replicate Single FP
3242 multiclass sse3_replicate_sfp<bits<8> op, PatFrag rep_frag, string OpcodeStr> {
3243 def rr : S3SI<op, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
3244                     !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"),
3245                       [(set VR128:$dst, (v4f32 (rep_frag
3246                                                 VR128:$src, (undef))))]>;
3247 def rm : S3SI<op, MRMSrcMem, (outs VR128:$dst), (ins f128mem:$src),
3248                     !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"),
3249                       [(set VR128:$dst, (rep_frag
3250                                          (memopv4f32 addr:$src), (undef)))]>;
3251 }
3252
3253 multiclass sse3_replicate_sfp_y<bits<8> op, PatFrag rep_frag,
3254                                 string OpcodeStr> {
3255 def rr : S3SI<op, MRMSrcReg, (outs VR256:$dst), (ins VR256:$src),
3256               !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"), []>;
3257 def rm : S3SI<op, MRMSrcMem, (outs VR256:$dst), (ins f256mem:$src),
3258               !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"), []>;
3259 }
3260
3261 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
3262   // FIXME: Merge above classes when we have patterns for the ymm version
3263   defm VMOVSHDUP  : sse3_replicate_sfp<0x16, movshdup, "vmovshdup">, VEX;
3264   defm VMOVSLDUP  : sse3_replicate_sfp<0x12, movsldup, "vmovsldup">, VEX;
3265   defm VMOVSHDUPY : sse3_replicate_sfp_y<0x16, movshdup, "vmovshdup">, VEX;
3266   defm VMOVSLDUPY : sse3_replicate_sfp_y<0x12, movsldup, "vmovsldup">, VEX;
3267 }
3268 defm MOVSHDUP : sse3_replicate_sfp<0x16, movshdup, "movshdup">;
3269 defm MOVSLDUP : sse3_replicate_sfp<0x12, movsldup, "movsldup">;
3270
3271 // Replicate Double FP
3272 multiclass sse3_replicate_dfp<string OpcodeStr> {
3273 def rr  : S3DI<0x12, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
3274                     !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"),
3275                     [(set VR128:$dst,(v2f64 (movddup VR128:$src, (undef))))]>;
3276 def rm  : S3DI<0x12, MRMSrcMem, (outs VR128:$dst), (ins f64mem:$src),
3277                     !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"),
3278                     [(set VR128:$dst,
3279                       (v2f64 (movddup (scalar_to_vector (loadf64 addr:$src)),
3280                                       (undef))))]>;
3281 }
3282
3283 multiclass sse3_replicate_dfp_y<string OpcodeStr> {
3284 def rr  : S3DI<0x12, MRMSrcReg, (outs VR256:$dst), (ins VR256:$src),
3285                     !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"),
3286                     []>;
3287 def rm  : S3DI<0x12, MRMSrcMem, (outs VR256:$dst), (ins f256mem:$src),
3288                     !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"),
3289                     []>;
3290 }
3291
3292 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
3293   // FIXME: Merge above classes when we have patterns for the ymm version
3294   defm VMOVDDUP  : sse3_replicate_dfp<"vmovddup">, VEX;
3295   defm VMOVDDUPY : sse3_replicate_dfp_y<"vmovddup">, VEX;
3296 }
3297 defm MOVDDUP : sse3_replicate_dfp<"movddup">;
3298
3299 // Move Unaligned Integer
3300 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
3301   def VLDDQUrm : S3DI<0xF0, MRMSrcMem, (outs VR128:$dst), (ins i128mem:$src),
3302                    "vlddqu\t{$src, $dst|$dst, $src}",
3303                    [(set VR128:$dst, (int_x86_sse3_ldu_dq addr:$src))]>, VEX;
3304   def VLDDQUYrm : S3DI<0xF0, MRMSrcMem, (outs VR256:$dst), (ins i256mem:$src),
3305                    "vlddqu\t{$src, $dst|$dst, $src}",
3306                    [(set VR256:$dst, (int_x86_avx_ldu_dq_256 addr:$src))]>, VEX;
3307 }
3308 def LDDQUrm : S3DI<0xF0, MRMSrcMem, (outs VR128:$dst), (ins i128mem:$src),
3309                    "lddqu\t{$src, $dst|$dst, $src}",
3310                    [(set VR128:$dst, (int_x86_sse3_ldu_dq addr:$src))]>;
3311
3312 def : Pat<(movddup (bc_v2f64 (v2i64 (scalar_to_vector (loadi64 addr:$src)))),
3313                    (undef)),
3314           (MOVDDUPrm addr:$src)>, Requires<[HasSSE3]>;
3315
3316 // Several Move patterns
3317 let AddedComplexity = 5 in {
3318 def : Pat<(movddup (memopv2f64 addr:$src), (undef)),
3319           (MOVDDUPrm addr:$src)>, Requires<[HasSSE3]>;
3320 def : Pat<(movddup (bc_v4f32 (memopv2f64 addr:$src)), (undef)),
3321           (MOVDDUPrm addr:$src)>, Requires<[HasSSE3]>;
3322 def : Pat<(movddup (memopv2i64 addr:$src), (undef)),
3323           (MOVDDUPrm addr:$src)>, Requires<[HasSSE3]>;
3324 def : Pat<(movddup (bc_v4i32 (memopv2i64 addr:$src)), (undef)),
3325           (MOVDDUPrm addr:$src)>, Requires<[HasSSE3]>;
3326 }
3327
3328 // vector_shuffle v1, <undef> <1, 1, 3, 3>
3329 let AddedComplexity = 15 in
3330 def : Pat<(v4i32 (movshdup VR128:$src, (undef))),
3331           (MOVSHDUPrr VR128:$src)>, Requires<[HasSSE3]>;
3332 let AddedComplexity = 20 in
3333 def : Pat<(v4i32 (movshdup (bc_v4i32 (memopv2i64 addr:$src)), (undef))),
3334           (MOVSHDUPrm addr:$src)>, Requires<[HasSSE3]>;
3335
3336 // vector_shuffle v1, <undef> <0, 0, 2, 2>
3337 let AddedComplexity = 15 in
3338   def : Pat<(v4i32 (movsldup VR128:$src, (undef))),
3339             (MOVSLDUPrr VR128:$src)>, Requires<[HasSSE3]>;
3340 let AddedComplexity = 20 in
3341   def : Pat<(v4i32 (movsldup (bc_v4i32 (memopv2i64 addr:$src)), (undef))),
3342             (MOVSLDUPrm addr:$src)>, Requires<[HasSSE3]>;
3343
3344 //===---------------------------------------------------------------------===//
3345 // SSE3 - Arithmetic
3346 //===---------------------------------------------------------------------===//
3347
3348 multiclass sse3_addsub<Intrinsic Int, string OpcodeStr, RegisterClass RC,
3349                        X86MemOperand x86memop, bit Is2Addr = 1> {
3350   def rr : I<0xD0, MRMSrcReg,
3351        (outs RC:$dst), (ins RC:$src1, RC:$src2),
3352        !if(Is2Addr,
3353            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
3354            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
3355        [(set RC:$dst, (Int RC:$src1, RC:$src2))]>;
3356   def rm : I<0xD0, MRMSrcMem,
3357        (outs RC:$dst), (ins RC:$src1, x86memop:$src2),
3358        !if(Is2Addr,
3359            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
3360            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
3361        [(set RC:$dst, (Int RC:$src1, (memop addr:$src2)))]>;
3362 }
3363
3364 let isAsmParserOnly = 1, Predicates = [HasAVX],
3365   ExeDomain = SSEPackedDouble in {
3366   defm VADDSUBPS : sse3_addsub<int_x86_sse3_addsub_ps, "vaddsubps", VR128,
3367                                f128mem, 0>, XD, VEX_4V;
3368   defm VADDSUBPD : sse3_addsub<int_x86_sse3_addsub_pd, "vaddsubpd", VR128,
3369                                f128mem, 0>, OpSize, VEX_4V;
3370   defm VADDSUBPSY : sse3_addsub<int_x86_avx_addsub_ps_256, "vaddsubps", VR256,
3371                                f256mem, 0>, XD, VEX_4V;
3372   defm VADDSUBPDY : sse3_addsub<int_x86_avx_addsub_pd_256, "vaddsubpd", VR256,
3373                                f256mem, 0>, OpSize, VEX_4V;
3374 }
3375 let Constraints = "$src1 = $dst", Predicates = [HasSSE3],
3376     ExeDomain = SSEPackedDouble in {
3377   defm ADDSUBPS : sse3_addsub<int_x86_sse3_addsub_ps, "addsubps", VR128,
3378                               f128mem>, XD;
3379   defm ADDSUBPD : sse3_addsub<int_x86_sse3_addsub_pd, "addsubpd", VR128,
3380                               f128mem>, TB, OpSize;
3381 }
3382
3383 //===---------------------------------------------------------------------===//
3384 // SSE3 Instructions
3385 //===---------------------------------------------------------------------===//
3386
3387 // Horizontal ops
3388 multiclass S3D_Int<bits<8> o, string OpcodeStr, ValueType vt, RegisterClass RC,
3389                    X86MemOperand x86memop, Intrinsic IntId, bit Is2Addr = 1> {
3390   def rr : S3DI<o, MRMSrcReg, (outs RC:$dst), (ins RC:$src1, RC:$src2),
3391        !if(Is2Addr,
3392          !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
3393          !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
3394       [(set RC:$dst, (vt (IntId RC:$src1, RC:$src2)))]>;
3395
3396   def rm : S3DI<o, MRMSrcMem, (outs RC:$dst), (ins RC:$src1, x86memop:$src2),
3397        !if(Is2Addr,
3398          !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
3399          !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
3400       [(set RC:$dst, (vt (IntId RC:$src1, (memop addr:$src2))))]>;
3401 }
3402 multiclass S3_Int<bits<8> o, string OpcodeStr, ValueType vt, RegisterClass RC,
3403                   X86MemOperand x86memop, Intrinsic IntId, bit Is2Addr = 1> {
3404   def rr : S3I<o, MRMSrcReg, (outs RC:$dst), (ins RC:$src1, RC:$src2),
3405        !if(Is2Addr,
3406          !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
3407          !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
3408       [(set RC:$dst, (vt (IntId RC:$src1, RC:$src2)))]>;
3409
3410   def rm : S3I<o, MRMSrcMem, (outs RC:$dst), (ins RC:$src1, x86memop:$src2),
3411        !if(Is2Addr,
3412          !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
3413          !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
3414       [(set RC:$dst, (vt (IntId RC:$src1, (memop addr:$src2))))]>;
3415 }
3416
3417 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
3418   defm VHADDPS  : S3D_Int<0x7C, "vhaddps", v4f32, VR128, f128mem,
3419                           int_x86_sse3_hadd_ps, 0>, VEX_4V;
3420   defm VHADDPD  : S3_Int <0x7C, "vhaddpd", v2f64, VR128, f128mem,
3421                           int_x86_sse3_hadd_pd, 0>, VEX_4V;
3422   defm VHSUBPS  : S3D_Int<0x7D, "vhsubps", v4f32, VR128, f128mem,
3423                           int_x86_sse3_hsub_ps, 0>, VEX_4V;
3424   defm VHSUBPD  : S3_Int <0x7D, "vhsubpd", v2f64, VR128, f128mem,
3425                           int_x86_sse3_hsub_pd, 0>, VEX_4V;
3426   defm VHADDPSY : S3D_Int<0x7C, "vhaddps", v8f32, VR256, f256mem,
3427                           int_x86_avx_hadd_ps_256, 0>, VEX_4V;
3428   defm VHADDPDY : S3_Int <0x7C, "vhaddpd", v4f64, VR256, f256mem,
3429                           int_x86_avx_hadd_pd_256, 0>, VEX_4V;
3430   defm VHSUBPSY : S3D_Int<0x7D, "vhsubps", v8f32, VR256, f256mem,
3431                           int_x86_avx_hsub_ps_256, 0>, VEX_4V;
3432   defm VHSUBPDY : S3_Int <0x7D, "vhsubpd", v4f64, VR256, f256mem,
3433                           int_x86_avx_hsub_pd_256, 0>, VEX_4V;
3434 }
3435
3436 let Constraints = "$src1 = $dst" in {
3437   defm HADDPS : S3D_Int<0x7C, "haddps", v4f32, VR128, f128mem,
3438                         int_x86_sse3_hadd_ps>;
3439   defm HADDPD : S3_Int<0x7C, "haddpd", v2f64, VR128, f128mem,
3440                        int_x86_sse3_hadd_pd>;
3441   defm HSUBPS : S3D_Int<0x7D, "hsubps", v4f32, VR128, f128mem,
3442                         int_x86_sse3_hsub_ps>;
3443   defm HSUBPD : S3_Int<0x7D, "hsubpd", v2f64, VR128, f128mem,
3444                        int_x86_sse3_hsub_pd>;
3445 }
3446
3447 //===---------------------------------------------------------------------===//
3448 // SSSE3 - Packed Absolute Instructions
3449 //===---------------------------------------------------------------------===//
3450
3451
3452 /// SS3I_unop_rm_int - Simple SSSE3 unary op whose type can be v*{i8,i16,i32}.
3453 multiclass SS3I_unop_rm_int<bits<8> opc, string OpcodeStr,
3454                             PatFrag mem_frag128, Intrinsic IntId128> {
3455   def rr128 : SS38I<opc, MRMSrcReg, (outs VR128:$dst),
3456                     (ins VR128:$src),
3457                     !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"),
3458                     [(set VR128:$dst, (IntId128 VR128:$src))]>,
3459                     OpSize;
3460
3461   def rm128 : SS38I<opc, MRMSrcMem, (outs VR128:$dst),
3462                     (ins i128mem:$src),
3463                     !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"),
3464                     [(set VR128:$dst,
3465                       (IntId128
3466                        (bitconvert (mem_frag128 addr:$src))))]>, OpSize;
3467 }
3468
3469 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
3470   defm VPABSB  : SS3I_unop_rm_int<0x1C, "vpabsb", memopv16i8,
3471                                   int_x86_ssse3_pabs_b_128>, VEX;
3472   defm VPABSW  : SS3I_unop_rm_int<0x1D, "vpabsw", memopv8i16,
3473                                   int_x86_ssse3_pabs_w_128>, VEX;
3474   defm VPABSD  : SS3I_unop_rm_int<0x1E, "vpabsd", memopv4i32,
3475                                   int_x86_ssse3_pabs_d_128>, VEX;
3476 }
3477
3478 defm PABSB : SS3I_unop_rm_int<0x1C, "pabsb", memopv16i8,
3479                               int_x86_ssse3_pabs_b_128>;
3480 defm PABSW : SS3I_unop_rm_int<0x1D, "pabsw", memopv8i16,
3481                               int_x86_ssse3_pabs_w_128>;
3482 defm PABSD : SS3I_unop_rm_int<0x1E, "pabsd", memopv4i32,
3483                               int_x86_ssse3_pabs_d_128>;
3484
3485 //===---------------------------------------------------------------------===//
3486 // SSSE3 - Packed Binary Operator Instructions
3487 //===---------------------------------------------------------------------===//
3488
3489 /// SS3I_binop_rm_int - Simple SSSE3 bin op whose type can be v*{i8,i16,i32}.
3490 multiclass SS3I_binop_rm_int<bits<8> opc, string OpcodeStr,
3491                              PatFrag mem_frag128, Intrinsic IntId128,
3492                              bit Is2Addr = 1> {
3493   let isCommutable = 1 in
3494   def rr128 : SS38I<opc, MRMSrcReg, (outs VR128:$dst),
3495        (ins VR128:$src1, VR128:$src2),
3496        !if(Is2Addr,
3497          !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
3498          !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
3499        [(set VR128:$dst, (IntId128 VR128:$src1, VR128:$src2))]>,
3500        OpSize;
3501   def rm128 : SS38I<opc, MRMSrcMem, (outs VR128:$dst),
3502        (ins VR128:$src1, i128mem:$src2),
3503        !if(Is2Addr,
3504          !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
3505          !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
3506        [(set VR128:$dst,
3507          (IntId128 VR128:$src1,
3508           (bitconvert (memopv16i8 addr:$src2))))]>, OpSize;
3509 }
3510
3511 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
3512 let isCommutable = 0 in {
3513   defm VPHADDW    : SS3I_binop_rm_int<0x01, "vphaddw", memopv8i16,
3514                                       int_x86_ssse3_phadd_w_128, 0>, VEX_4V;
3515   defm VPHADDD    : SS3I_binop_rm_int<0x02, "vphaddd", memopv4i32,
3516                                       int_x86_ssse3_phadd_d_128, 0>, VEX_4V;
3517   defm VPHADDSW   : SS3I_binop_rm_int<0x03, "vphaddsw", memopv8i16,
3518                                       int_x86_ssse3_phadd_sw_128, 0>, VEX_4V;
3519   defm VPHSUBW    : SS3I_binop_rm_int<0x05, "vphsubw", memopv8i16,
3520                                       int_x86_ssse3_phsub_w_128, 0>, VEX_4V;
3521   defm VPHSUBD    : SS3I_binop_rm_int<0x06, "vphsubd", memopv4i32,
3522                                       int_x86_ssse3_phsub_d_128, 0>, VEX_4V;
3523   defm VPHSUBSW   : SS3I_binop_rm_int<0x07, "vphsubsw", memopv8i16,
3524                                       int_x86_ssse3_phsub_sw_128, 0>, VEX_4V;
3525   defm VPMADDUBSW : SS3I_binop_rm_int<0x04, "vpmaddubsw", memopv16i8,
3526                                       int_x86_ssse3_pmadd_ub_sw_128, 0>, VEX_4V;
3527   defm VPSHUFB    : SS3I_binop_rm_int<0x00, "vpshufb", memopv16i8,
3528                                       int_x86_ssse3_pshuf_b_128, 0>, VEX_4V;
3529   defm VPSIGNB    : SS3I_binop_rm_int<0x08, "vpsignb", memopv16i8,
3530                                       int_x86_ssse3_psign_b_128, 0>, VEX_4V;
3531   defm VPSIGNW    : SS3I_binop_rm_int<0x09, "vpsignw", memopv8i16,
3532                                       int_x86_ssse3_psign_w_128, 0>, VEX_4V;
3533   defm VPSIGND    : SS3I_binop_rm_int<0x0A, "vpsignd", memopv4i32,
3534                                       int_x86_ssse3_psign_d_128, 0>, VEX_4V;
3535 }
3536 defm VPMULHRSW    : SS3I_binop_rm_int<0x0B, "vpmulhrsw", memopv8i16,
3537                                       int_x86_ssse3_pmul_hr_sw_128, 0>, VEX_4V;
3538 }
3539
3540 // None of these have i8 immediate fields.
3541 let ImmT = NoImm, Constraints = "$src1 = $dst" in {
3542 let isCommutable = 0 in {
3543   defm PHADDW    : SS3I_binop_rm_int<0x01, "phaddw", memopv8i16,
3544                                      int_x86_ssse3_phadd_w_128>;
3545   defm PHADDD    : SS3I_binop_rm_int<0x02, "phaddd", memopv4i32,
3546                                      int_x86_ssse3_phadd_d_128>;
3547   defm PHADDSW   : SS3I_binop_rm_int<0x03, "phaddsw", memopv8i16,
3548                                      int_x86_ssse3_phadd_sw_128>;
3549   defm PHSUBW    : SS3I_binop_rm_int<0x05, "phsubw", memopv8i16,
3550                                      int_x86_ssse3_phsub_w_128>;
3551   defm PHSUBD    : SS3I_binop_rm_int<0x06, "phsubd", memopv4i32,
3552                                      int_x86_ssse3_phsub_d_128>;
3553   defm PHSUBSW   : SS3I_binop_rm_int<0x07, "phsubsw", memopv8i16,
3554                                      int_x86_ssse3_phsub_sw_128>;
3555   defm PMADDUBSW : SS3I_binop_rm_int<0x04, "pmaddubsw", memopv16i8,
3556                                      int_x86_ssse3_pmadd_ub_sw_128>;
3557   defm PSHUFB    : SS3I_binop_rm_int<0x00, "pshufb", memopv16i8,
3558                                      int_x86_ssse3_pshuf_b_128>;
3559   defm PSIGNB    : SS3I_binop_rm_int<0x08, "psignb", memopv16i8,
3560                                      int_x86_ssse3_psign_b_128>;
3561   defm PSIGNW    : SS3I_binop_rm_int<0x09, "psignw", memopv8i16,
3562                                      int_x86_ssse3_psign_w_128>;
3563   defm PSIGND    : SS3I_binop_rm_int<0x0A, "psignd", memopv4i32,
3564                                        int_x86_ssse3_psign_d_128>;
3565 }
3566 defm PMULHRSW    : SS3I_binop_rm_int<0x0B, "pmulhrsw", memopv8i16,
3567                                      int_x86_ssse3_pmul_hr_sw_128>;
3568 }
3569
3570 def : Pat<(X86pshufb VR128:$src, VR128:$mask),
3571           (PSHUFBrr128 VR128:$src, VR128:$mask)>, Requires<[HasSSSE3]>;
3572 def : Pat<(X86pshufb VR128:$src, (bc_v16i8 (memopv2i64 addr:$mask))),
3573           (PSHUFBrm128 VR128:$src, addr:$mask)>, Requires<[HasSSSE3]>;
3574
3575 //===---------------------------------------------------------------------===//
3576 // SSSE3 - Packed Align Instruction Patterns
3577 //===---------------------------------------------------------------------===//
3578
3579 multiclass ssse3_palign<string asm, bit Is2Addr = 1> {
3580   def R128rr : SS3AI<0x0F, MRMSrcReg, (outs VR128:$dst),
3581       (ins VR128:$src1, VR128:$src2, i8imm:$src3),
3582       !if(Is2Addr,
3583         !strconcat(asm, "\t{$src3, $src2, $dst|$dst, $src2, $src3}"),
3584         !strconcat(asm,
3585                   "\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}")),
3586       []>, OpSize;
3587   def R128rm : SS3AI<0x0F, MRMSrcMem, (outs VR128:$dst),
3588       (ins VR128:$src1, i128mem:$src2, i8imm:$src3),
3589       !if(Is2Addr,
3590         !strconcat(asm, "\t{$src3, $src2, $dst|$dst, $src2, $src3}"),
3591         !strconcat(asm,
3592                   "\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}")),
3593       []>, OpSize;
3594 }
3595
3596 let isAsmParserOnly = 1, Predicates = [HasAVX] in
3597   defm VPALIGN : ssse3_palign<"vpalignr", 0>, VEX_4V;
3598 let Constraints = "$src1 = $dst" in
3599   defm PALIGN : ssse3_palign<"palignr">;
3600
3601 let AddedComplexity = 5 in {
3602 def : Pat<(v4i32 (palign:$src3 VR128:$src1, VR128:$src2)),
3603           (PALIGNR128rr VR128:$src2, VR128:$src1,
3604                         (SHUFFLE_get_palign_imm VR128:$src3))>,
3605       Requires<[HasSSSE3]>;
3606 def : Pat<(v4f32 (palign:$src3 VR128:$src1, VR128:$src2)),
3607           (PALIGNR128rr VR128:$src2, VR128:$src1,
3608                         (SHUFFLE_get_palign_imm VR128:$src3))>,
3609       Requires<[HasSSSE3]>;
3610 def : Pat<(v8i16 (palign:$src3 VR128:$src1, VR128:$src2)),
3611           (PALIGNR128rr VR128:$src2, VR128:$src1,
3612                         (SHUFFLE_get_palign_imm VR128:$src3))>,
3613       Requires<[HasSSSE3]>;
3614 def : Pat<(v16i8 (palign:$src3 VR128:$src1, VR128:$src2)),
3615           (PALIGNR128rr VR128:$src2, VR128:$src1,
3616                         (SHUFFLE_get_palign_imm VR128:$src3))>,
3617       Requires<[HasSSSE3]>;
3618 }
3619
3620 //===---------------------------------------------------------------------===//
3621 // SSSE3 Misc Instructions
3622 //===---------------------------------------------------------------------===//
3623
3624 // Thread synchronization
3625 def MONITOR : I<0x01, MRM_C8, (outs), (ins), "monitor",
3626                 [(int_x86_sse3_monitor EAX, ECX, EDX)]>,TB, Requires<[HasSSE3]>;
3627 def MWAIT   : I<0x01, MRM_C9, (outs), (ins), "mwait",
3628                 [(int_x86_sse3_mwait ECX, EAX)]>, TB, Requires<[HasSSE3]>;
3629
3630 //===---------------------------------------------------------------------===//
3631 // Non-Instruction Patterns
3632 //===---------------------------------------------------------------------===//
3633
3634 // extload f32 -> f64.  This matches load+fextend because we have a hack in
3635 // the isel (PreprocessForFPConvert) that can introduce loads after dag
3636 // combine.
3637 // Since these loads aren't folded into the fextend, we have to match it
3638 // explicitly here.
3639 let Predicates = [HasSSE2] in
3640  def : Pat<(fextend (loadf32 addr:$src)),
3641            (CVTSS2SDrm addr:$src)>;
3642
3643 // bit_convert
3644 let Predicates = [HasSSE2] in {
3645   def : Pat<(v2i64 (bitconvert (v4i32 VR128:$src))), (v2i64 VR128:$src)>;
3646   def : Pat<(v2i64 (bitconvert (v8i16 VR128:$src))), (v2i64 VR128:$src)>;
3647   def : Pat<(v2i64 (bitconvert (v16i8 VR128:$src))), (v2i64 VR128:$src)>;
3648   def : Pat<(v2i64 (bitconvert (v2f64 VR128:$src))), (v2i64 VR128:$src)>;
3649   def : Pat<(v2i64 (bitconvert (v4f32 VR128:$src))), (v2i64 VR128:$src)>;
3650   def : Pat<(v4i32 (bitconvert (v2i64 VR128:$src))), (v4i32 VR128:$src)>;
3651   def : Pat<(v4i32 (bitconvert (v8i16 VR128:$src))), (v4i32 VR128:$src)>;
3652   def : Pat<(v4i32 (bitconvert (v16i8 VR128:$src))), (v4i32 VR128:$src)>;
3653   def : Pat<(v4i32 (bitconvert (v2f64 VR128:$src))), (v4i32 VR128:$src)>;
3654   def : Pat<(v4i32 (bitconvert (v4f32 VR128:$src))), (v4i32 VR128:$src)>;
3655   def : Pat<(v8i16 (bitconvert (v2i64 VR128:$src))), (v8i16 VR128:$src)>;
3656   def : Pat<(v8i16 (bitconvert (v4i32 VR128:$src))), (v8i16 VR128:$src)>;
3657   def : Pat<(v8i16 (bitconvert (v16i8 VR128:$src))), (v8i16 VR128:$src)>;
3658   def : Pat<(v8i16 (bitconvert (v2f64 VR128:$src))), (v8i16 VR128:$src)>;
3659   def : Pat<(v8i16 (bitconvert (v4f32 VR128:$src))), (v8i16 VR128:$src)>;
3660   def : Pat<(v16i8 (bitconvert (v2i64 VR128:$src))), (v16i8 VR128:$src)>;
3661   def : Pat<(v16i8 (bitconvert (v4i32 VR128:$src))), (v16i8 VR128:$src)>;
3662   def : Pat<(v16i8 (bitconvert (v8i16 VR128:$src))), (v16i8 VR128:$src)>;
3663   def : Pat<(v16i8 (bitconvert (v2f64 VR128:$src))), (v16i8 VR128:$src)>;
3664   def : Pat<(v16i8 (bitconvert (v4f32 VR128:$src))), (v16i8 VR128:$src)>;
3665   def : Pat<(v4f32 (bitconvert (v2i64 VR128:$src))), (v4f32 VR128:$src)>;
3666   def : Pat<(v4f32 (bitconvert (v4i32 VR128:$src))), (v4f32 VR128:$src)>;
3667   def : Pat<(v4f32 (bitconvert (v8i16 VR128:$src))), (v4f32 VR128:$src)>;
3668   def : Pat<(v4f32 (bitconvert (v16i8 VR128:$src))), (v4f32 VR128:$src)>;
3669   def : Pat<(v4f32 (bitconvert (v2f64 VR128:$src))), (v4f32 VR128:$src)>;
3670   def : Pat<(v2f64 (bitconvert (v2i64 VR128:$src))), (v2f64 VR128:$src)>;
3671   def : Pat<(v2f64 (bitconvert (v4i32 VR128:$src))), (v2f64 VR128:$src)>;
3672   def : Pat<(v2f64 (bitconvert (v8i16 VR128:$src))), (v2f64 VR128:$src)>;
3673   def : Pat<(v2f64 (bitconvert (v16i8 VR128:$src))), (v2f64 VR128:$src)>;
3674   def : Pat<(v2f64 (bitconvert (v4f32 VR128:$src))), (v2f64 VR128:$src)>;
3675 }
3676
3677 // Move scalar to XMM zero-extended
3678 // movd to XMM register zero-extends
3679 let AddedComplexity = 15 in {
3680 // Zeroing a VR128 then do a MOVS{S|D} to the lower bits.
3681 def : Pat<(v2f64 (X86vzmovl (v2f64 (scalar_to_vector FR64:$src)))),
3682           (MOVSDrr (v2f64 (V_SET0PS)), FR64:$src)>;
3683 def : Pat<(v4f32 (X86vzmovl (v4f32 (scalar_to_vector FR32:$src)))),
3684           (MOVSSrr (v4f32 (V_SET0PS)), FR32:$src)>;
3685 def : Pat<(v4f32 (X86vzmovl (v4f32 VR128:$src))),
3686           (MOVSSrr (v4f32 (V_SET0PS)),
3687                    (f32 (EXTRACT_SUBREG (v4f32 VR128:$src), sub_ss)))>;
3688 def : Pat<(v4i32 (X86vzmovl (v4i32 VR128:$src))),
3689           (MOVSSrr (v4i32 (V_SET0PI)),
3690                    (EXTRACT_SUBREG (v4i32 VR128:$src), sub_ss))>;
3691 }
3692
3693 // Splat v2f64 / v2i64
3694 let AddedComplexity = 10 in {
3695 def : Pat<(splat_lo (v2f64 VR128:$src), (undef)),
3696           (UNPCKLPDrr VR128:$src, VR128:$src)>,   Requires<[HasSSE2]>;
3697 def : Pat<(unpckh (v2f64 VR128:$src), (undef)),
3698           (UNPCKHPDrr VR128:$src, VR128:$src)>,   Requires<[HasSSE2]>;
3699 def : Pat<(splat_lo (v2i64 VR128:$src), (undef)),
3700           (PUNPCKLQDQrr VR128:$src, VR128:$src)>, Requires<[HasSSE2]>;
3701 def : Pat<(unpckh (v2i64 VR128:$src), (undef)),
3702           (PUNPCKHQDQrr VR128:$src, VR128:$src)>, Requires<[HasSSE2]>;
3703 }
3704
3705 // Special unary SHUFPSrri case.
3706 def : Pat<(v4f32 (pshufd:$src3 VR128:$src1, (undef))),
3707           (SHUFPSrri VR128:$src1, VR128:$src1,
3708                      (SHUFFLE_get_shuf_imm VR128:$src3))>;
3709 let AddedComplexity = 5 in
3710 def : Pat<(v4f32 (pshufd:$src2 VR128:$src1, (undef))),
3711           (PSHUFDri VR128:$src1, (SHUFFLE_get_shuf_imm VR128:$src2))>,
3712       Requires<[HasSSE2]>;
3713 // Special unary SHUFPDrri case.
3714 def : Pat<(v2i64 (pshufd:$src3 VR128:$src1, (undef))),
3715           (SHUFPDrri VR128:$src1, VR128:$src1,
3716                      (SHUFFLE_get_shuf_imm VR128:$src3))>,
3717       Requires<[HasSSE2]>;
3718 // Special unary SHUFPDrri case.
3719 def : Pat<(v2f64 (pshufd:$src3 VR128:$src1, (undef))),
3720           (SHUFPDrri VR128:$src1, VR128:$src1,
3721                      (SHUFFLE_get_shuf_imm VR128:$src3))>,
3722       Requires<[HasSSE2]>;
3723 // Unary v4f32 shuffle with PSHUF* in order to fold a load.
3724 def : Pat<(pshufd:$src2 (bc_v4i32 (memopv4f32 addr:$src1)), (undef)),
3725           (PSHUFDmi addr:$src1, (SHUFFLE_get_shuf_imm VR128:$src2))>,
3726       Requires<[HasSSE2]>;
3727
3728 // Special binary v4i32 shuffle cases with SHUFPS.
3729 def : Pat<(v4i32 (shufp:$src3 VR128:$src1, (v4i32 VR128:$src2))),
3730           (SHUFPSrri VR128:$src1, VR128:$src2,
3731                      (SHUFFLE_get_shuf_imm VR128:$src3))>,
3732            Requires<[HasSSE2]>;
3733 def : Pat<(v4i32 (shufp:$src3 VR128:$src1, (bc_v4i32 (memopv2i64 addr:$src2)))),
3734           (SHUFPSrmi VR128:$src1, addr:$src2,
3735                     (SHUFFLE_get_shuf_imm VR128:$src3))>,
3736            Requires<[HasSSE2]>;
3737 // Special binary v2i64 shuffle cases using SHUFPDrri.
3738 def : Pat<(v2i64 (shufp:$src3 VR128:$src1, VR128:$src2)),
3739           (SHUFPDrri VR128:$src1, VR128:$src2,
3740                      (SHUFFLE_get_shuf_imm VR128:$src3))>,
3741           Requires<[HasSSE2]>;
3742
3743 // vector_shuffle v1, <undef>, <0, 0, 1, 1, ...>
3744 let AddedComplexity = 15 in {
3745 def : Pat<(v4i32 (unpckl_undef:$src2 VR128:$src, (undef))),
3746           (PSHUFDri VR128:$src, (SHUFFLE_get_shuf_imm VR128:$src2))>,
3747           Requires<[OptForSpeed, HasSSE2]>;
3748 def : Pat<(v4f32 (unpckl_undef:$src2 VR128:$src, (undef))),
3749           (PSHUFDri VR128:$src, (SHUFFLE_get_shuf_imm VR128:$src2))>,
3750           Requires<[OptForSpeed, HasSSE2]>;
3751 }
3752 let AddedComplexity = 10 in {
3753 def : Pat<(v4f32 (unpckl_undef VR128:$src, (undef))),
3754           (UNPCKLPSrr VR128:$src, VR128:$src)>;
3755 def : Pat<(v16i8 (unpckl_undef VR128:$src, (undef))),
3756           (PUNPCKLBWrr VR128:$src, VR128:$src)>;
3757 def : Pat<(v8i16 (unpckl_undef VR128:$src, (undef))),
3758           (PUNPCKLWDrr VR128:$src, VR128:$src)>;
3759 def : Pat<(v4i32 (unpckl_undef VR128:$src, (undef))),
3760           (PUNPCKLDQrr VR128:$src, VR128:$src)>;
3761 }
3762
3763 // vector_shuffle v1, <undef>, <2, 2, 3, 3, ...>
3764 let AddedComplexity = 15 in {
3765 def : Pat<(v4i32 (unpckh_undef:$src2 VR128:$src, (undef))),
3766           (PSHUFDri VR128:$src, (SHUFFLE_get_shuf_imm VR128:$src2))>,
3767           Requires<[OptForSpeed, HasSSE2]>;
3768 def : Pat<(v4f32 (unpckh_undef:$src2 VR128:$src, (undef))),
3769           (PSHUFDri VR128:$src, (SHUFFLE_get_shuf_imm VR128:$src2))>,
3770           Requires<[OptForSpeed, HasSSE2]>;
3771 }
3772 let AddedComplexity = 10 in {
3773 def : Pat<(v4f32 (unpckh_undef VR128:$src, (undef))),
3774           (UNPCKHPSrr VR128:$src, VR128:$src)>;
3775 def : Pat<(v16i8 (unpckh_undef VR128:$src, (undef))),
3776           (PUNPCKHBWrr VR128:$src, VR128:$src)>;
3777 def : Pat<(v8i16 (unpckh_undef VR128:$src, (undef))),
3778           (PUNPCKHWDrr VR128:$src, VR128:$src)>;
3779 def : Pat<(v4i32 (unpckh_undef VR128:$src, (undef))),
3780           (PUNPCKHDQrr VR128:$src, VR128:$src)>;
3781 }
3782
3783 let AddedComplexity = 20 in {
3784 // vector_shuffle v1, v2 <0, 1, 4, 5> using MOVLHPS
3785 def : Pat<(v4i32 (movlhps VR128:$src1, VR128:$src2)),
3786           (MOVLHPSrr VR128:$src1, VR128:$src2)>;
3787
3788 // vector_shuffle v1, v2 <6, 7, 2, 3> using MOVHLPS
3789 def : Pat<(v4i32 (movhlps VR128:$src1, VR128:$src2)),
3790           (MOVHLPSrr VR128:$src1, VR128:$src2)>;
3791
3792 // vector_shuffle v1, undef <2, ?, ?, ?> using MOVHLPS
3793 def : Pat<(v4f32 (movhlps_undef VR128:$src1, (undef))),
3794           (MOVHLPSrr VR128:$src1, VR128:$src1)>;
3795 def : Pat<(v4i32 (movhlps_undef VR128:$src1, (undef))),
3796           (MOVHLPSrr VR128:$src1, VR128:$src1)>;
3797 }
3798
3799 let AddedComplexity = 20 in {
3800 // vector_shuffle v1, (load v2) <4, 5, 2, 3> using MOVLPS
3801 def : Pat<(v4f32 (movlp VR128:$src1, (load addr:$src2))),
3802           (MOVLPSrm VR128:$src1, addr:$src2)>;
3803 def : Pat<(v2f64 (movlp VR128:$src1, (load addr:$src2))),
3804           (MOVLPDrm VR128:$src1, addr:$src2)>;
3805 def : Pat<(v4i32 (movlp VR128:$src1, (load addr:$src2))),
3806           (MOVLPSrm VR128:$src1, addr:$src2)>;
3807 def : Pat<(v2i64 (movlp VR128:$src1, (load addr:$src2))),
3808           (MOVLPDrm VR128:$src1, addr:$src2)>;
3809 }
3810
3811 // (store (vector_shuffle (load addr), v2, <4, 5, 2, 3>), addr) using MOVLPS
3812 def : Pat<(store (v4f32 (movlp (load addr:$src1), VR128:$src2)), addr:$src1),
3813           (MOVLPSmr addr:$src1, VR128:$src2)>;
3814 def : Pat<(store (v2f64 (movlp (load addr:$src1), VR128:$src2)), addr:$src1),
3815           (MOVLPDmr addr:$src1, VR128:$src2)>;
3816 def : Pat<(store (v4i32 (movlp (bc_v4i32 (loadv2i64 addr:$src1)), VR128:$src2)),
3817                  addr:$src1),
3818           (MOVLPSmr addr:$src1, VR128:$src2)>;
3819 def : Pat<(store (v2i64 (movlp (load addr:$src1), VR128:$src2)), addr:$src1),
3820           (MOVLPDmr addr:$src1, VR128:$src2)>;
3821
3822 let AddedComplexity = 15 in {
3823 // Setting the lowest element in the vector.
3824 def : Pat<(v4i32 (movl VR128:$src1, VR128:$src2)),
3825           (MOVSSrr (v4i32 VR128:$src1),
3826                    (EXTRACT_SUBREG (v4i32 VR128:$src2), sub_ss))>;
3827 def : Pat<(v2i64 (movl VR128:$src1, VR128:$src2)),
3828           (MOVSDrr (v2i64 VR128:$src1),
3829                    (EXTRACT_SUBREG (v2i64 VR128:$src2), sub_sd))>;
3830
3831 // vector_shuffle v1, v2 <4, 5, 2, 3> using movsd
3832 def : Pat<(v4f32 (movlp VR128:$src1, VR128:$src2)),
3833           (MOVSDrr VR128:$src1, (EXTRACT_SUBREG VR128:$src2, sub_sd))>,
3834       Requires<[HasSSE2]>;
3835 def : Pat<(v4i32 (movlp VR128:$src1, VR128:$src2)),
3836           (MOVSDrr VR128:$src1, (EXTRACT_SUBREG VR128:$src2, sub_sd))>,
3837       Requires<[HasSSE2]>;
3838 }
3839
3840 // vector_shuffle v1, v2 <4, 5, 2, 3> using SHUFPSrri (we prefer movsd, but
3841 // fall back to this for SSE1)
3842 def : Pat<(v4f32 (movlp:$src3 VR128:$src1, (v4f32 VR128:$src2))),
3843           (SHUFPSrri VR128:$src2, VR128:$src1,
3844                      (SHUFFLE_get_shuf_imm VR128:$src3))>;
3845
3846 // Set lowest element and zero upper elements.
3847 def : Pat<(v2f64 (X86vzmovl (v2f64 VR128:$src))),
3848           (MOVZPQILo2PQIrr VR128:$src)>, Requires<[HasSSE2]>;
3849
3850 // Some special case pandn patterns.
3851 def : Pat<(v2i64 (and (xor VR128:$src1, (bc_v2i64 (v4i32 immAllOnesV))),
3852                   VR128:$src2)),
3853           (PANDNrr VR128:$src1, VR128:$src2)>, Requires<[HasSSE2]>;
3854 def : Pat<(v2i64 (and (xor VR128:$src1, (bc_v2i64 (v8i16 immAllOnesV))),
3855                   VR128:$src2)),
3856           (PANDNrr VR128:$src1, VR128:$src2)>, Requires<[HasSSE2]>;
3857 def : Pat<(v2i64 (and (xor VR128:$src1, (bc_v2i64 (v16i8 immAllOnesV))),
3858                   VR128:$src2)),
3859           (PANDNrr VR128:$src1, VR128:$src2)>, Requires<[HasSSE2]>;
3860
3861 def : Pat<(v2i64 (and (xor VR128:$src1, (bc_v2i64 (v4i32 immAllOnesV))),
3862                   (memop addr:$src2))),
3863           (PANDNrm VR128:$src1, addr:$src2)>, Requires<[HasSSE2]>;
3864 def : Pat<(v2i64 (and (xor VR128:$src1, (bc_v2i64 (v8i16 immAllOnesV))),
3865                   (memop addr:$src2))),
3866           (PANDNrm VR128:$src1, addr:$src2)>, Requires<[HasSSE2]>;
3867 def : Pat<(v2i64 (and (xor VR128:$src1, (bc_v2i64 (v16i8 immAllOnesV))),
3868                   (memop addr:$src2))),
3869           (PANDNrm VR128:$src1, addr:$src2)>, Requires<[HasSSE2]>;
3870
3871 // vector -> vector casts
3872 def : Pat<(v4f32 (sint_to_fp (v4i32 VR128:$src))),
3873           (Int_CVTDQ2PSrr VR128:$src)>, Requires<[HasSSE2]>;
3874 def : Pat<(v4i32 (fp_to_sint (v4f32 VR128:$src))),
3875           (CVTTPS2DQrr VR128:$src)>, Requires<[HasSSE2]>;
3876
3877 // Use movaps / movups for SSE integer load / store (one byte shorter).
3878 let Predicates = [HasSSE1] in {
3879   def : Pat<(alignedloadv4i32 addr:$src),
3880             (MOVAPSrm addr:$src)>;
3881   def : Pat<(loadv4i32 addr:$src),
3882             (MOVUPSrm addr:$src)>;
3883   def : Pat<(alignedloadv2i64 addr:$src),
3884             (MOVAPSrm addr:$src)>;
3885   def : Pat<(loadv2i64 addr:$src),
3886             (MOVUPSrm addr:$src)>;
3887
3888   def : Pat<(alignedstore (v2i64 VR128:$src), addr:$dst),
3889             (MOVAPSmr addr:$dst, VR128:$src)>;
3890   def : Pat<(alignedstore (v4i32 VR128:$src), addr:$dst),
3891             (MOVAPSmr addr:$dst, VR128:$src)>;
3892   def : Pat<(alignedstore (v8i16 VR128:$src), addr:$dst),
3893             (MOVAPSmr addr:$dst, VR128:$src)>;
3894   def : Pat<(alignedstore (v16i8 VR128:$src), addr:$dst),
3895             (MOVAPSmr addr:$dst, VR128:$src)>;
3896   def : Pat<(store (v2i64 VR128:$src), addr:$dst),
3897             (MOVUPSmr addr:$dst, VR128:$src)>;
3898   def : Pat<(store (v4i32 VR128:$src), addr:$dst),
3899             (MOVUPSmr addr:$dst, VR128:$src)>;
3900   def : Pat<(store (v8i16 VR128:$src), addr:$dst),
3901             (MOVUPSmr addr:$dst, VR128:$src)>;
3902   def : Pat<(store (v16i8 VR128:$src), addr:$dst),
3903             (MOVUPSmr addr:$dst, VR128:$src)>;
3904 }
3905
3906 // Use vmovaps/vmovups for AVX 128-bit integer load/store (one byte shorter).
3907 let Predicates = [HasAVX] in {
3908   def : Pat<(alignedloadv4i32 addr:$src),
3909             (VMOVAPSrm addr:$src)>;
3910   def : Pat<(loadv4i32 addr:$src),
3911             (VMOVUPSrm addr:$src)>;
3912   def : Pat<(alignedloadv2i64 addr:$src),
3913             (VMOVAPSrm addr:$src)>;
3914   def : Pat<(loadv2i64 addr:$src),
3915             (VMOVUPSrm addr:$src)>;
3916
3917   def : Pat<(alignedstore (v2i64 VR128:$src), addr:$dst),
3918             (VMOVAPSmr addr:$dst, VR128:$src)>;
3919   def : Pat<(alignedstore (v4i32 VR128:$src), addr:$dst),
3920             (VMOVAPSmr addr:$dst, VR128:$src)>;
3921   def : Pat<(alignedstore (v8i16 VR128:$src), addr:$dst),
3922             (VMOVAPSmr addr:$dst, VR128:$src)>;
3923   def : Pat<(alignedstore (v16i8 VR128:$src), addr:$dst),
3924             (VMOVAPSmr addr:$dst, VR128:$src)>;
3925   def : Pat<(store (v2i64 VR128:$src), addr:$dst),
3926             (VMOVUPSmr addr:$dst, VR128:$src)>;
3927   def : Pat<(store (v4i32 VR128:$src), addr:$dst),
3928             (VMOVUPSmr addr:$dst, VR128:$src)>;
3929   def : Pat<(store (v8i16 VR128:$src), addr:$dst),
3930             (VMOVUPSmr addr:$dst, VR128:$src)>;
3931   def : Pat<(store (v16i8 VR128:$src), addr:$dst),
3932             (VMOVUPSmr addr:$dst, VR128:$src)>;
3933 }
3934
3935 //===----------------------------------------------------------------------===//
3936 // SSE4.1 - Packed Move with Sign/Zero Extend
3937 //===----------------------------------------------------------------------===//
3938
3939 multiclass SS41I_binop_rm_int8<bits<8> opc, string OpcodeStr, Intrinsic IntId> {
3940   def rr : SS48I<opc, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
3941                  !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"),
3942                  [(set VR128:$dst, (IntId VR128:$src))]>, OpSize;
3943
3944   def rm : SS48I<opc, MRMSrcMem, (outs VR128:$dst), (ins i64mem:$src),
3945                  !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"),
3946        [(set VR128:$dst,
3947          (IntId (bitconvert (v2i64 (scalar_to_vector (loadi64 addr:$src))))))]>,
3948        OpSize;
3949 }
3950
3951 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
3952 defm VPMOVSXBW : SS41I_binop_rm_int8<0x20, "vpmovsxbw", int_x86_sse41_pmovsxbw>,
3953                                      VEX;
3954 defm VPMOVSXWD : SS41I_binop_rm_int8<0x23, "vpmovsxwd", int_x86_sse41_pmovsxwd>,
3955                                      VEX;
3956 defm VPMOVSXDQ : SS41I_binop_rm_int8<0x25, "vpmovsxdq", int_x86_sse41_pmovsxdq>,
3957                                      VEX;
3958 defm VPMOVZXBW : SS41I_binop_rm_int8<0x30, "vpmovzxbw", int_x86_sse41_pmovzxbw>,
3959                                      VEX;
3960 defm VPMOVZXWD : SS41I_binop_rm_int8<0x33, "vpmovzxwd", int_x86_sse41_pmovzxwd>,
3961                                      VEX;
3962 defm VPMOVZXDQ : SS41I_binop_rm_int8<0x35, "vpmovzxdq", int_x86_sse41_pmovzxdq>,
3963                                      VEX;
3964 }
3965
3966 defm PMOVSXBW   : SS41I_binop_rm_int8<0x20, "pmovsxbw", int_x86_sse41_pmovsxbw>;
3967 defm PMOVSXWD   : SS41I_binop_rm_int8<0x23, "pmovsxwd", int_x86_sse41_pmovsxwd>;
3968 defm PMOVSXDQ   : SS41I_binop_rm_int8<0x25, "pmovsxdq", int_x86_sse41_pmovsxdq>;
3969 defm PMOVZXBW   : SS41I_binop_rm_int8<0x30, "pmovzxbw", int_x86_sse41_pmovzxbw>;
3970 defm PMOVZXWD   : SS41I_binop_rm_int8<0x33, "pmovzxwd", int_x86_sse41_pmovzxwd>;
3971 defm PMOVZXDQ   : SS41I_binop_rm_int8<0x35, "pmovzxdq", int_x86_sse41_pmovzxdq>;
3972
3973 // Common patterns involving scalar load.
3974 def : Pat<(int_x86_sse41_pmovsxbw (vzmovl_v2i64 addr:$src)),
3975           (PMOVSXBWrm addr:$src)>, Requires<[HasSSE41]>;
3976 def : Pat<(int_x86_sse41_pmovsxbw (vzload_v2i64 addr:$src)),
3977           (PMOVSXBWrm addr:$src)>, Requires<[HasSSE41]>;
3978
3979 def : Pat<(int_x86_sse41_pmovsxwd (vzmovl_v2i64 addr:$src)),
3980           (PMOVSXWDrm addr:$src)>, Requires<[HasSSE41]>;
3981 def : Pat<(int_x86_sse41_pmovsxwd (vzload_v2i64 addr:$src)),
3982           (PMOVSXWDrm addr:$src)>, Requires<[HasSSE41]>;
3983
3984 def : Pat<(int_x86_sse41_pmovsxdq (vzmovl_v2i64 addr:$src)),
3985           (PMOVSXDQrm addr:$src)>, Requires<[HasSSE41]>;
3986 def : Pat<(int_x86_sse41_pmovsxdq (vzload_v2i64 addr:$src)),
3987           (PMOVSXDQrm addr:$src)>, Requires<[HasSSE41]>;
3988
3989 def : Pat<(int_x86_sse41_pmovzxbw (vzmovl_v2i64 addr:$src)),
3990           (PMOVZXBWrm addr:$src)>, Requires<[HasSSE41]>;
3991 def : Pat<(int_x86_sse41_pmovzxbw (vzload_v2i64 addr:$src)),
3992           (PMOVZXBWrm addr:$src)>, Requires<[HasSSE41]>;
3993
3994 def : Pat<(int_x86_sse41_pmovzxwd (vzmovl_v2i64 addr:$src)),
3995           (PMOVZXWDrm addr:$src)>, Requires<[HasSSE41]>;
3996 def : Pat<(int_x86_sse41_pmovzxwd (vzload_v2i64 addr:$src)),
3997           (PMOVZXWDrm addr:$src)>, Requires<[HasSSE41]>;
3998
3999 def : Pat<(int_x86_sse41_pmovzxdq (vzmovl_v2i64 addr:$src)),
4000           (PMOVZXDQrm addr:$src)>, Requires<[HasSSE41]>;
4001 def : Pat<(int_x86_sse41_pmovzxdq (vzload_v2i64 addr:$src)),
4002           (PMOVZXDQrm addr:$src)>, Requires<[HasSSE41]>;
4003
4004
4005 multiclass SS41I_binop_rm_int4<bits<8> opc, string OpcodeStr, Intrinsic IntId> {
4006   def rr : SS48I<opc, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
4007                  !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"),
4008                  [(set VR128:$dst, (IntId VR128:$src))]>, OpSize;
4009
4010   def rm : SS48I<opc, MRMSrcMem, (outs VR128:$dst), (ins i32mem:$src),
4011                  !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"),
4012        [(set VR128:$dst,
4013          (IntId (bitconvert (v4i32 (scalar_to_vector (loadi32 addr:$src))))))]>,
4014           OpSize;
4015 }
4016
4017 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
4018 defm VPMOVSXBD : SS41I_binop_rm_int4<0x21, "vpmovsxbd", int_x86_sse41_pmovsxbd>,
4019                                      VEX;
4020 defm VPMOVSXWQ : SS41I_binop_rm_int4<0x24, "vpmovsxwq", int_x86_sse41_pmovsxwq>,
4021                                      VEX;
4022 defm VPMOVZXBD : SS41I_binop_rm_int4<0x31, "vpmovzxbd", int_x86_sse41_pmovzxbd>,
4023                                      VEX;
4024 defm VPMOVZXWQ : SS41I_binop_rm_int4<0x34, "vpmovzxwq", int_x86_sse41_pmovzxwq>,
4025                                      VEX;
4026 }
4027
4028 defm PMOVSXBD   : SS41I_binop_rm_int4<0x21, "pmovsxbd", int_x86_sse41_pmovsxbd>;
4029 defm PMOVSXWQ   : SS41I_binop_rm_int4<0x24, "pmovsxwq", int_x86_sse41_pmovsxwq>;
4030 defm PMOVZXBD   : SS41I_binop_rm_int4<0x31, "pmovzxbd", int_x86_sse41_pmovzxbd>;
4031 defm PMOVZXWQ   : SS41I_binop_rm_int4<0x34, "pmovzxwq", int_x86_sse41_pmovzxwq>;
4032
4033 // Common patterns involving scalar load
4034 def : Pat<(int_x86_sse41_pmovsxbd (vzmovl_v4i32 addr:$src)),
4035           (PMOVSXBDrm addr:$src)>, Requires<[HasSSE41]>;
4036 def : Pat<(int_x86_sse41_pmovsxwq (vzmovl_v4i32 addr:$src)),
4037           (PMOVSXWQrm addr:$src)>, Requires<[HasSSE41]>;
4038
4039 def : Pat<(int_x86_sse41_pmovzxbd (vzmovl_v4i32 addr:$src)),
4040           (PMOVZXBDrm addr:$src)>, Requires<[HasSSE41]>;
4041 def : Pat<(int_x86_sse41_pmovzxwq (vzmovl_v4i32 addr:$src)),
4042           (PMOVZXWQrm addr:$src)>, Requires<[HasSSE41]>;
4043
4044
4045 multiclass SS41I_binop_rm_int2<bits<8> opc, string OpcodeStr, Intrinsic IntId> {
4046   def rr : SS48I<opc, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
4047                  !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"),
4048                  [(set VR128:$dst, (IntId VR128:$src))]>, OpSize;
4049
4050   // Expecting a i16 load any extended to i32 value.
4051   def rm : SS48I<opc, MRMSrcMem, (outs VR128:$dst), (ins i16mem:$src),
4052                  !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"),
4053                  [(set VR128:$dst, (IntId (bitconvert
4054                      (v4i32 (scalar_to_vector (loadi16_anyext addr:$src))))))]>,
4055                  OpSize;
4056 }
4057
4058 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
4059 defm VPMOVSXBQ : SS41I_binop_rm_int2<0x22, "vpmovsxbq", int_x86_sse41_pmovsxbq>,
4060                                      VEX;
4061 defm VPMOVZXBQ : SS41I_binop_rm_int2<0x32, "vpmovzxbq", int_x86_sse41_pmovzxbq>,
4062                                      VEX;
4063 }
4064 defm PMOVSXBQ   : SS41I_binop_rm_int2<0x22, "pmovsxbq", int_x86_sse41_pmovsxbq>;
4065 defm PMOVZXBQ   : SS41I_binop_rm_int2<0x32, "pmovzxbq", int_x86_sse41_pmovzxbq>;
4066
4067 // Common patterns involving scalar load
4068 def : Pat<(int_x86_sse41_pmovsxbq
4069             (bitconvert (v4i32 (X86vzmovl
4070                              (v4i32 (scalar_to_vector (loadi32 addr:$src))))))),
4071           (PMOVSXBQrm addr:$src)>, Requires<[HasSSE41]>;
4072
4073 def : Pat<(int_x86_sse41_pmovzxbq
4074             (bitconvert (v4i32 (X86vzmovl
4075                              (v4i32 (scalar_to_vector (loadi32 addr:$src))))))),
4076           (PMOVZXBQrm addr:$src)>, Requires<[HasSSE41]>;
4077
4078 //===----------------------------------------------------------------------===//
4079 // SSE4.1 - Extract Instructions
4080 //===----------------------------------------------------------------------===//
4081
4082 /// SS41I_binop_ext8 - SSE 4.1 extract 8 bits to 32 bit reg or 8 bit mem
4083 multiclass SS41I_extract8<bits<8> opc, string OpcodeStr> {
4084   def rr : SS4AIi8<opc, MRMDestReg, (outs GR32:$dst),
4085                  (ins VR128:$src1, i32i8imm:$src2),
4086                  !strconcat(OpcodeStr,
4087                   "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
4088                  [(set GR32:$dst, (X86pextrb (v16i8 VR128:$src1), imm:$src2))]>,
4089                  OpSize;
4090   def mr : SS4AIi8<opc, MRMDestMem, (outs),
4091                  (ins i8mem:$dst, VR128:$src1, i32i8imm:$src2),
4092                  !strconcat(OpcodeStr,
4093                   "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
4094                  []>, OpSize;
4095 // FIXME:
4096 // There's an AssertZext in the way of writing the store pattern
4097 // (store (i8 (trunc (X86pextrb (v16i8 VR128:$src1), imm:$src2))), addr:$dst)
4098 }
4099
4100 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
4101   defm VPEXTRB : SS41I_extract8<0x14, "vpextrb">, VEX;
4102   def  VPEXTRBrr64 : SS4AIi8<0x14, MRMDestReg, (outs GR64:$dst),
4103          (ins VR128:$src1, i32i8imm:$src2),
4104          "vpextrb\t{$src2, $src1, $dst|$dst, $src1, $src2}", []>, OpSize, VEX;
4105 }
4106
4107 defm PEXTRB      : SS41I_extract8<0x14, "pextrb">;
4108
4109
4110 /// SS41I_extract16 - SSE 4.1 extract 16 bits to memory destination
4111 multiclass SS41I_extract16<bits<8> opc, string OpcodeStr> {
4112   def mr : SS4AIi8<opc, MRMDestMem, (outs),
4113                  (ins i16mem:$dst, VR128:$src1, i32i8imm:$src2),
4114                  !strconcat(OpcodeStr,
4115                   "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
4116                  []>, OpSize;
4117 // FIXME:
4118 // There's an AssertZext in the way of writing the store pattern
4119 // (store (i16 (trunc (X86pextrw (v16i8 VR128:$src1), imm:$src2))), addr:$dst)
4120 }
4121
4122 let isAsmParserOnly = 1, Predicates = [HasAVX] in
4123   defm VPEXTRW : SS41I_extract16<0x15, "vpextrw">, VEX;
4124
4125 defm PEXTRW      : SS41I_extract16<0x15, "pextrw">;
4126
4127
4128 /// SS41I_extract32 - SSE 4.1 extract 32 bits to int reg or memory destination
4129 multiclass SS41I_extract32<bits<8> opc, string OpcodeStr> {
4130   def rr : SS4AIi8<opc, MRMDestReg, (outs GR32:$dst),
4131                  (ins VR128:$src1, i32i8imm:$src2),
4132                  !strconcat(OpcodeStr,
4133                   "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
4134                  [(set GR32:$dst,
4135                   (extractelt (v4i32 VR128:$src1), imm:$src2))]>, OpSize;
4136   def mr : SS4AIi8<opc, MRMDestMem, (outs),
4137                  (ins i32mem:$dst, VR128:$src1, i32i8imm:$src2),
4138                  !strconcat(OpcodeStr,
4139                   "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
4140                  [(store (extractelt (v4i32 VR128:$src1), imm:$src2),
4141                           addr:$dst)]>, OpSize;
4142 }
4143
4144 let isAsmParserOnly = 1, Predicates = [HasAVX] in
4145   defm VPEXTRD : SS41I_extract32<0x16, "vpextrd">, VEX;
4146
4147 defm PEXTRD      : SS41I_extract32<0x16, "pextrd">;
4148
4149 /// SS41I_extract32 - SSE 4.1 extract 32 bits to int reg or memory destination
4150 multiclass SS41I_extract64<bits<8> opc, string OpcodeStr> {
4151   def rr : SS4AIi8<opc, MRMDestReg, (outs GR64:$dst),
4152                  (ins VR128:$src1, i32i8imm:$src2),
4153                  !strconcat(OpcodeStr,
4154                   "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
4155                  [(set GR64:$dst,
4156                   (extractelt (v2i64 VR128:$src1), imm:$src2))]>, OpSize, REX_W;
4157   def mr : SS4AIi8<opc, MRMDestMem, (outs),
4158                  (ins i64mem:$dst, VR128:$src1, i32i8imm:$src2),
4159                  !strconcat(OpcodeStr,
4160                   "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
4161                  [(store (extractelt (v2i64 VR128:$src1), imm:$src2),
4162                           addr:$dst)]>, OpSize, REX_W;
4163 }
4164
4165 let isAsmParserOnly = 1, Predicates = [HasAVX] in
4166   defm VPEXTRQ : SS41I_extract64<0x16, "vpextrq">, VEX, VEX_W;
4167
4168 defm PEXTRQ      : SS41I_extract64<0x16, "pextrq">;
4169
4170 /// SS41I_extractf32 - SSE 4.1 extract 32 bits fp value to int reg or memory
4171 /// destination
4172 multiclass SS41I_extractf32<bits<8> opc, string OpcodeStr> {
4173   def rr : SS4AIi8<opc, MRMDestReg, (outs GR32:$dst),
4174                  (ins VR128:$src1, i32i8imm:$src2),
4175                  !strconcat(OpcodeStr,
4176                   "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
4177                  [(set GR32:$dst,
4178                     (extractelt (bc_v4i32 (v4f32 VR128:$src1)), imm:$src2))]>,
4179            OpSize;
4180   def mr : SS4AIi8<opc, MRMDestMem, (outs),
4181                  (ins f32mem:$dst, VR128:$src1, i32i8imm:$src2),
4182                  !strconcat(OpcodeStr,
4183                   "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
4184                  [(store (extractelt (bc_v4i32 (v4f32 VR128:$src1)), imm:$src2),
4185                           addr:$dst)]>, OpSize;
4186 }
4187
4188 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
4189   defm VEXTRACTPS : SS41I_extractf32<0x17, "vextractps">, VEX;
4190   def VEXTRACTPSrr64 : SS4AIi8<0x17, MRMDestReg, (outs GR64:$dst),
4191                   (ins VR128:$src1, i32i8imm:$src2),
4192                   "vextractps \t{$src2, $src1, $dst|$dst, $src1, $src2}",
4193                   []>, OpSize, VEX;
4194 }
4195 defm EXTRACTPS   : SS41I_extractf32<0x17, "extractps">;
4196
4197 // Also match an EXTRACTPS store when the store is done as f32 instead of i32.
4198 def : Pat<(store (f32 (bitconvert (extractelt (bc_v4i32 (v4f32 VR128:$src1)),
4199                                               imm:$src2))),
4200                  addr:$dst),
4201           (EXTRACTPSmr addr:$dst, VR128:$src1, imm:$src2)>,
4202          Requires<[HasSSE41]>;
4203
4204 //===----------------------------------------------------------------------===//
4205 // SSE4.1 - Insert Instructions
4206 //===----------------------------------------------------------------------===//
4207
4208 multiclass SS41I_insert8<bits<8> opc, string asm, bit Is2Addr = 1> {
4209   def rr : SS4AIi8<opc, MRMSrcReg, (outs VR128:$dst),
4210       (ins VR128:$src1, GR32:$src2, i32i8imm:$src3),
4211       !if(Is2Addr,
4212         !strconcat(asm, "\t{$src3, $src2, $dst|$dst, $src2, $src3}"),
4213         !strconcat(asm,
4214                    "\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}")),
4215       [(set VR128:$dst,
4216         (X86pinsrb VR128:$src1, GR32:$src2, imm:$src3))]>, OpSize;
4217   def rm : SS4AIi8<opc, MRMSrcMem, (outs VR128:$dst),
4218       (ins VR128:$src1, i8mem:$src2, i32i8imm:$src3),
4219       !if(Is2Addr,
4220         !strconcat(asm, "\t{$src3, $src2, $dst|$dst, $src2, $src3}"),
4221         !strconcat(asm,
4222                    "\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}")),
4223       [(set VR128:$dst,
4224         (X86pinsrb VR128:$src1, (extloadi8 addr:$src2),
4225                    imm:$src3))]>, OpSize;
4226 }
4227
4228 let isAsmParserOnly = 1, Predicates = [HasAVX] in
4229   defm VPINSRB : SS41I_insert8<0x20, "vpinsrb", 0>, VEX_4V;
4230 let Constraints = "$src1 = $dst" in
4231   defm PINSRB  : SS41I_insert8<0x20, "pinsrb">;
4232
4233 multiclass SS41I_insert32<bits<8> opc, string asm, bit Is2Addr = 1> {
4234   def rr : SS4AIi8<opc, MRMSrcReg, (outs VR128:$dst),
4235       (ins VR128:$src1, GR32:$src2, i32i8imm:$src3),
4236       !if(Is2Addr,
4237         !strconcat(asm, "\t{$src3, $src2, $dst|$dst, $src2, $src3}"),
4238         !strconcat(asm,
4239                    "\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}")),
4240       [(set VR128:$dst,
4241         (v4i32 (insertelt VR128:$src1, GR32:$src2, imm:$src3)))]>,
4242       OpSize;
4243   def rm : SS4AIi8<opc, MRMSrcMem, (outs VR128:$dst),
4244       (ins VR128:$src1, i32mem:$src2, i32i8imm:$src3),
4245       !if(Is2Addr,
4246         !strconcat(asm, "\t{$src3, $src2, $dst|$dst, $src2, $src3}"),
4247         !strconcat(asm,
4248                    "\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}")),
4249       [(set VR128:$dst,
4250         (v4i32 (insertelt VR128:$src1, (loadi32 addr:$src2),
4251                           imm:$src3)))]>, OpSize;
4252 }
4253
4254 let isAsmParserOnly = 1, Predicates = [HasAVX] in
4255   defm VPINSRD : SS41I_insert32<0x22, "vpinsrd", 0>, VEX_4V;
4256 let Constraints = "$src1 = $dst" in
4257   defm PINSRD : SS41I_insert32<0x22, "pinsrd">;
4258
4259 multiclass SS41I_insert64<bits<8> opc, string asm, bit Is2Addr = 1> {
4260   def rr : SS4AIi8<opc, MRMSrcReg, (outs VR128:$dst),
4261       (ins VR128:$src1, GR64:$src2, i32i8imm:$src3),
4262       !if(Is2Addr,
4263         !strconcat(asm, "\t{$src3, $src2, $dst|$dst, $src2, $src3}"),
4264         !strconcat(asm,
4265                    "\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}")),
4266       [(set VR128:$dst,
4267         (v2i64 (insertelt VR128:$src1, GR64:$src2, imm:$src3)))]>,
4268       OpSize;
4269   def rm : SS4AIi8<opc, MRMSrcMem, (outs VR128:$dst),
4270       (ins VR128:$src1, i64mem:$src2, i32i8imm:$src3),
4271       !if(Is2Addr,
4272         !strconcat(asm, "\t{$src3, $src2, $dst|$dst, $src2, $src3}"),
4273         !strconcat(asm,
4274                    "\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}")),
4275       [(set VR128:$dst,
4276         (v2i64 (insertelt VR128:$src1, (loadi64 addr:$src2),
4277                           imm:$src3)))]>, OpSize;
4278 }
4279
4280 let isAsmParserOnly = 1, Predicates = [HasAVX] in
4281   defm VPINSRQ : SS41I_insert64<0x22, "vpinsrq", 0>, VEX_4V, VEX_W;
4282 let Constraints = "$src1 = $dst" in
4283   defm PINSRQ : SS41I_insert64<0x22, "pinsrq">, REX_W;
4284
4285 // insertps has a few different modes, there's the first two here below which
4286 // are optimized inserts that won't zero arbitrary elements in the destination
4287 // vector. The next one matches the intrinsic and could zero arbitrary elements
4288 // in the target vector.
4289 multiclass SS41I_insertf32<bits<8> opc, string asm, bit Is2Addr = 1> {
4290   def rr : SS4AIi8<opc, MRMSrcReg, (outs VR128:$dst),
4291       (ins VR128:$src1, VR128:$src2, i32i8imm:$src3),
4292       !if(Is2Addr,
4293         !strconcat(asm, "\t{$src3, $src2, $dst|$dst, $src2, $src3}"),
4294         !strconcat(asm,
4295                    "\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}")),
4296       [(set VR128:$dst,
4297         (X86insrtps VR128:$src1, VR128:$src2, imm:$src3))]>,
4298       OpSize;
4299   def rm : SS4AIi8<opc, MRMSrcMem, (outs VR128:$dst),
4300       (ins VR128:$src1, f32mem:$src2, i32i8imm:$src3),
4301       !if(Is2Addr,
4302         !strconcat(asm, "\t{$src3, $src2, $dst|$dst, $src2, $src3}"),
4303         !strconcat(asm,
4304                    "\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}")),
4305       [(set VR128:$dst,
4306         (X86insrtps VR128:$src1,
4307                    (v4f32 (scalar_to_vector (loadf32 addr:$src2))),
4308                     imm:$src3))]>, OpSize;
4309 }
4310
4311 let Constraints = "$src1 = $dst" in
4312   defm INSERTPS : SS41I_insertf32<0x21, "insertps">;
4313 let isAsmParserOnly = 1, Predicates = [HasAVX] in
4314   defm VINSERTPS : SS41I_insertf32<0x21, "vinsertps", 0>, VEX_4V;
4315
4316 def : Pat<(int_x86_sse41_insertps VR128:$src1, VR128:$src2, imm:$src3),
4317           (VINSERTPSrr VR128:$src1, VR128:$src2, imm:$src3)>,
4318           Requires<[HasAVX]>;
4319 def : Pat<(int_x86_sse41_insertps VR128:$src1, VR128:$src2, imm:$src3),
4320           (INSERTPSrr VR128:$src1, VR128:$src2, imm:$src3)>,
4321           Requires<[HasSSE41]>;
4322
4323 //===----------------------------------------------------------------------===//
4324 // SSE4.1 - Round Instructions
4325 //===----------------------------------------------------------------------===//
4326
4327 multiclass sse41_fp_unop_rm<bits<8> opcps, bits<8> opcpd, string OpcodeStr,
4328                             X86MemOperand x86memop, RegisterClass RC,
4329                             PatFrag mem_frag32, PatFrag mem_frag64,
4330                             Intrinsic V4F32Int, Intrinsic V2F64Int> {
4331   // Intrinsic operation, reg.
4332   // Vector intrinsic operation, reg
4333   def PSr : SS4AIi8<opcps, MRMSrcReg,
4334                     (outs RC:$dst), (ins RC:$src1, i32i8imm:$src2),
4335                     !strconcat(OpcodeStr,
4336                     "ps\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
4337                     [(set RC:$dst, (V4F32Int RC:$src1, imm:$src2))]>,
4338                     OpSize;
4339
4340   // Vector intrinsic operation, mem
4341   def PSm : Ii8<opcps, MRMSrcMem,
4342                     (outs RC:$dst), (ins f256mem:$src1, i32i8imm:$src2),
4343                     !strconcat(OpcodeStr,
4344                     "ps\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
4345                     [(set RC:$dst,
4346                           (V4F32Int (mem_frag32 addr:$src1),imm:$src2))]>,
4347                     TA, OpSize,
4348                 Requires<[HasSSE41]>;
4349
4350   // Vector intrinsic operation, reg
4351   def PDr : SS4AIi8<opcpd, MRMSrcReg,
4352                     (outs RC:$dst), (ins RC:$src1, i32i8imm:$src2),
4353                     !strconcat(OpcodeStr,
4354                     "pd\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
4355                     [(set RC:$dst, (V2F64Int RC:$src1, imm:$src2))]>,
4356                     OpSize;
4357
4358   // Vector intrinsic operation, mem
4359   def PDm : SS4AIi8<opcpd, MRMSrcMem,
4360                     (outs RC:$dst), (ins f256mem:$src1, i32i8imm:$src2),
4361                     !strconcat(OpcodeStr,
4362                     "pd\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
4363                     [(set RC:$dst,
4364                           (V2F64Int (mem_frag64 addr:$src1),imm:$src2))]>,
4365                     OpSize;
4366 }
4367
4368 multiclass sse41_fp_unop_rm_avx_p<bits<8> opcps, bits<8> opcpd,
4369                    RegisterClass RC, X86MemOperand x86memop, string OpcodeStr> {
4370   // Intrinsic operation, reg.
4371   // Vector intrinsic operation, reg
4372   def PSr_AVX : SS4AIi8<opcps, MRMSrcReg,
4373                     (outs RC:$dst), (ins RC:$src1, i32i8imm:$src2),
4374                     !strconcat(OpcodeStr,
4375                     "ps\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
4376                     []>, OpSize;
4377
4378   // Vector intrinsic operation, mem
4379   def PSm_AVX : Ii8<opcps, MRMSrcMem,
4380                     (outs RC:$dst), (ins x86memop:$src1, i32i8imm:$src2),
4381                     !strconcat(OpcodeStr,
4382                     "ps\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
4383                     []>, TA, OpSize, Requires<[HasSSE41]>;
4384
4385   // Vector intrinsic operation, reg
4386   def PDr_AVX : SS4AIi8<opcpd, MRMSrcReg,
4387                     (outs RC:$dst), (ins RC:$src1, i32i8imm:$src2),
4388                     !strconcat(OpcodeStr,
4389                     "pd\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
4390                     []>, OpSize;
4391
4392   // Vector intrinsic operation, mem
4393   def PDm_AVX : SS4AIi8<opcpd, MRMSrcMem,
4394                     (outs RC:$dst), (ins x86memop:$src1, i32i8imm:$src2),
4395                     !strconcat(OpcodeStr,
4396                     "pd\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
4397                     []>, OpSize;
4398 }
4399
4400 multiclass sse41_fp_binop_rm<bits<8> opcss, bits<8> opcsd,
4401                             string OpcodeStr,
4402                             Intrinsic F32Int,
4403                             Intrinsic F64Int, bit Is2Addr = 1> {
4404   // Intrinsic operation, reg.
4405   def SSr : SS4AIi8<opcss, MRMSrcReg,
4406         (outs VR128:$dst), (ins VR128:$src1, VR128:$src2, i32i8imm:$src3),
4407         !if(Is2Addr,
4408             !strconcat(OpcodeStr,
4409                 "ss\t{$src3, $src2, $dst|$dst, $src2, $src3}"),
4410             !strconcat(OpcodeStr,
4411                 "ss\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}")),
4412         [(set VR128:$dst, (F32Int VR128:$src1, VR128:$src2, imm:$src3))]>,
4413         OpSize;
4414
4415   // Intrinsic operation, mem.
4416   def SSm : SS4AIi8<opcss, MRMSrcMem,
4417         (outs VR128:$dst), (ins VR128:$src1, ssmem:$src2, i32i8imm:$src3),
4418         !if(Is2Addr,
4419             !strconcat(OpcodeStr,
4420                 "ss\t{$src3, $src2, $dst|$dst, $src2, $src3}"),
4421             !strconcat(OpcodeStr,
4422                 "ss\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}")),
4423         [(set VR128:$dst,
4424              (F32Int VR128:$src1, sse_load_f32:$src2, imm:$src3))]>,
4425         OpSize;
4426
4427   // Intrinsic operation, reg.
4428   def SDr : SS4AIi8<opcsd, MRMSrcReg,
4429         (outs VR128:$dst), (ins VR128:$src1, VR128:$src2, i32i8imm:$src3),
4430         !if(Is2Addr,
4431             !strconcat(OpcodeStr,
4432                 "sd\t{$src3, $src2, $dst|$dst, $src2, $src3}"),
4433             !strconcat(OpcodeStr,
4434                 "sd\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}")),
4435         [(set VR128:$dst, (F64Int VR128:$src1, VR128:$src2, imm:$src3))]>,
4436         OpSize;
4437
4438   // Intrinsic operation, mem.
4439   def SDm : SS4AIi8<opcsd, MRMSrcMem,
4440         (outs VR128:$dst), (ins VR128:$src1, sdmem:$src2, i32i8imm:$src3),
4441         !if(Is2Addr,
4442             !strconcat(OpcodeStr,
4443                 "sd\t{$src3, $src2, $dst|$dst, $src2, $src3}"),
4444             !strconcat(OpcodeStr,
4445                 "sd\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}")),
4446         [(set VR128:$dst,
4447               (F64Int VR128:$src1, sse_load_f64:$src2, imm:$src3))]>,
4448         OpSize;
4449 }
4450
4451 multiclass sse41_fp_binop_rm_avx_s<bits<8> opcss, bits<8> opcsd,
4452                                    string OpcodeStr> {
4453   // Intrinsic operation, reg.
4454   def SSr_AVX : SS4AIi8<opcss, MRMSrcReg,
4455         (outs VR128:$dst), (ins VR128:$src1, VR128:$src2, i32i8imm:$src3),
4456         !strconcat(OpcodeStr,
4457                 "ss\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}"),
4458         []>, OpSize;
4459
4460   // Intrinsic operation, mem.
4461   def SSm_AVX : SS4AIi8<opcss, MRMSrcMem,
4462         (outs VR128:$dst), (ins VR128:$src1, ssmem:$src2, i32i8imm:$src3),
4463         !strconcat(OpcodeStr,
4464                 "ss\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}"),
4465         []>, OpSize;
4466
4467   // Intrinsic operation, reg.
4468   def SDr_AVX : SS4AIi8<opcsd, MRMSrcReg,
4469         (outs VR128:$dst), (ins VR128:$src1, VR128:$src2, i32i8imm:$src3),
4470             !strconcat(OpcodeStr,
4471                 "sd\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}"),
4472         []>, OpSize;
4473
4474   // Intrinsic operation, mem.
4475   def SDm_AVX : SS4AIi8<opcsd, MRMSrcMem,
4476         (outs VR128:$dst), (ins VR128:$src1, sdmem:$src2, i32i8imm:$src3),
4477             !strconcat(OpcodeStr,
4478                 "sd\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}"),
4479         []>, OpSize;
4480 }
4481
4482 // FP round - roundss, roundps, roundsd, roundpd
4483 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
4484   // Intrinsic form
4485   defm VROUND  : sse41_fp_unop_rm<0x08, 0x09, "vround", f128mem, VR128,
4486                                   memopv4f32, memopv2f64,
4487                                   int_x86_sse41_round_ps,
4488                                   int_x86_sse41_round_pd>, VEX;
4489   defm VROUNDY : sse41_fp_unop_rm<0x08, 0x09, "vround", f256mem, VR256,
4490                                   memopv8f32, memopv4f64,
4491                                   int_x86_avx_round_ps_256,
4492                                   int_x86_avx_round_pd_256>, VEX;
4493   defm VROUND  : sse41_fp_binop_rm<0x0A, 0x0B, "vround",
4494                                   int_x86_sse41_round_ss,
4495                                   int_x86_sse41_round_sd, 0>, VEX_4V;
4496
4497   // Instructions for the assembler
4498   defm VROUND  : sse41_fp_unop_rm_avx_p<0x08, 0x09, VR128, f128mem, "vround">,
4499                                         VEX;
4500   defm VROUNDY : sse41_fp_unop_rm_avx_p<0x08, 0x09, VR256, f256mem, "vround">,
4501                                         VEX;
4502   defm VROUND  : sse41_fp_binop_rm_avx_s<0x0A, 0x0B, "vround">, VEX_4V;
4503 }
4504
4505 defm ROUND  : sse41_fp_unop_rm<0x08, 0x09, "round", f128mem, VR128,
4506                                memopv4f32, memopv2f64,
4507                                int_x86_sse41_round_ps, int_x86_sse41_round_pd>;
4508 let Constraints = "$src1 = $dst" in
4509 defm ROUND  : sse41_fp_binop_rm<0x0A, 0x0B, "round",
4510                                int_x86_sse41_round_ss, int_x86_sse41_round_sd>;
4511
4512 //===----------------------------------------------------------------------===//
4513 // SSE4.1 - Packed Bit Test
4514 //===----------------------------------------------------------------------===//
4515
4516 // ptest instruction we'll lower to this in X86ISelLowering primarily from
4517 // the intel intrinsic that corresponds to this.
4518 let Defs = [EFLAGS], isAsmParserOnly = 1, Predicates = [HasAVX] in {
4519 def VPTESTrr  : SS48I<0x17, MRMSrcReg, (outs), (ins VR128:$src1, VR128:$src2),
4520                 "vptest\t{$src2, $src1|$src1, $src2}",
4521                 [(set EFLAGS, (X86ptest VR128:$src1, (v4f32 VR128:$src2)))]>,
4522                 OpSize, VEX;
4523 def VPTESTrm  : SS48I<0x17, MRMSrcMem, (outs), (ins VR128:$src1, f128mem:$src2),
4524                 "vptest\t{$src2, $src1|$src1, $src2}",
4525                 [(set EFLAGS,(X86ptest VR128:$src1, (memopv4f32 addr:$src2)))]>,
4526                 OpSize, VEX;
4527
4528 def VPTESTYrr : SS48I<0x17, MRMSrcReg, (outs), (ins VR256:$src1, VR256:$src2),
4529                 "vptest\t{$src2, $src1|$src1, $src2}",
4530                 [(set EFLAGS, (X86ptest VR256:$src1, (v4i64 VR256:$src2)))]>,
4531                 OpSize, VEX;
4532 def VPTESTYrm : SS48I<0x17, MRMSrcMem, (outs), (ins VR256:$src1, i256mem:$src2),
4533                 "vptest\t{$src2, $src1|$src1, $src2}",
4534                 [(set EFLAGS,(X86ptest VR256:$src1, (memopv4i64 addr:$src2)))]>,
4535                 OpSize, VEX;
4536 }
4537
4538 let Defs = [EFLAGS] in {
4539 def PTESTrr : SS48I<0x17, MRMSrcReg, (outs), (ins VR128:$src1, VR128:$src2),
4540               "ptest \t{$src2, $src1|$src1, $src2}",
4541               [(set EFLAGS, (X86ptest VR128:$src1, (v4f32 VR128:$src2)))]>,
4542               OpSize;
4543 def PTESTrm : SS48I<0x17, MRMSrcMem, (outs), (ins VR128:$src1, f128mem:$src2),
4544               "ptest \t{$src2, $src1|$src1, $src2}",
4545               [(set EFLAGS, (X86ptest VR128:$src1, (memopv4f32 addr:$src2)))]>,
4546               OpSize;
4547 }
4548
4549 // The bit test instructions below are AVX only
4550 multiclass avx_bittest<bits<8> opc, string OpcodeStr, RegisterClass RC,
4551                        X86MemOperand x86memop, PatFrag mem_frag, ValueType vt> {
4552   def rr : SS48I<opc, MRMSrcReg, (outs), (ins RC:$src1, RC:$src2),
4553             !strconcat(OpcodeStr, "\t{$src2, $src1|$src1, $src2}"),
4554             [(set EFLAGS, (X86testp RC:$src1, (vt RC:$src2)))]>, OpSize, VEX;
4555   def rm : SS48I<opc, MRMSrcMem, (outs), (ins RC:$src1, x86memop:$src2),
4556             !strconcat(OpcodeStr, "\t{$src2, $src1|$src1, $src2}"),
4557             [(set EFLAGS, (X86testp RC:$src1, (mem_frag addr:$src2)))]>,
4558             OpSize, VEX;
4559 }
4560
4561 let Defs = [EFLAGS], isAsmParserOnly = 1, Predicates = [HasAVX] in {
4562 defm VTESTPS  : avx_bittest<0x0E, "vtestps", VR128, f128mem, memopv4f32, v4f32>;
4563 defm VTESTPSY : avx_bittest<0x0E, "vtestps", VR256, f256mem, memopv8f32, v8f32>;
4564 defm VTESTPD  : avx_bittest<0x0F, "vtestpd", VR128, f128mem, memopv2f64, v2f64>;
4565 defm VTESTPDY : avx_bittest<0x0F, "vtestpd", VR256, f256mem, memopv4f64, v4f64>;
4566 }
4567
4568 //===----------------------------------------------------------------------===//
4569 // SSE4.1 - Misc Instructions
4570 //===----------------------------------------------------------------------===//
4571
4572 def POPCNT16rr : I<0xB8, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src),
4573                    "popcnt{w}\t{$src, $dst|$dst, $src}", []>, OpSize, XS;
4574 let mayLoad = 1 in
4575 def POPCNT16rm : I<0xB8, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
4576                    "popcnt{w}\t{$src, $dst|$dst, $src}", []>, OpSize, XS;
4577
4578 def POPCNT32rr : I<0xB8, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
4579                    "popcnt{l}\t{$src, $dst|$dst, $src}", []>, XS;
4580 let mayLoad = 1 in
4581 def POPCNT32rm : I<0xB8, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
4582                    "popcnt{l}\t{$src, $dst|$dst, $src}", []>, XS;
4583
4584 def POPCNT64rr : RI<0xB8, MRMSrcReg, (outs GR64:$dst), (ins GR64:$src),
4585                     "popcnt{q}\t{$src, $dst|$dst, $src}", []>, XS;
4586 let mayLoad = 1 in
4587 def POPCNT64rm : RI<0xB8, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
4588                     "popcnt{q}\t{$src, $dst|$dst, $src}", []>, XS;
4589
4590
4591
4592 // SS41I_unop_rm_int_v16 - SSE 4.1 unary operator whose type is v8i16.
4593 multiclass SS41I_unop_rm_int_v16<bits<8> opc, string OpcodeStr,
4594                                  Intrinsic IntId128> {
4595   def rr128 : SS48I<opc, MRMSrcReg, (outs VR128:$dst),
4596                     (ins VR128:$src),
4597                     !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"),
4598                     [(set VR128:$dst, (IntId128 VR128:$src))]>, OpSize;
4599   def rm128 : SS48I<opc, MRMSrcMem, (outs VR128:$dst),
4600                      (ins i128mem:$src),
4601                      !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"),
4602                      [(set VR128:$dst,
4603                        (IntId128
4604                        (bitconvert (memopv8i16 addr:$src))))]>, OpSize;
4605 }
4606
4607 let isAsmParserOnly = 1, Predicates = [HasAVX] in
4608 defm VPHMINPOSUW : SS41I_unop_rm_int_v16 <0x41, "vphminposuw",
4609                                          int_x86_sse41_phminposuw>, VEX;
4610 defm PHMINPOSUW : SS41I_unop_rm_int_v16 <0x41, "phminposuw",
4611                                          int_x86_sse41_phminposuw>;
4612
4613 /// SS41I_binop_rm_int - Simple SSE 4.1 binary operator
4614 multiclass SS41I_binop_rm_int<bits<8> opc, string OpcodeStr,
4615                               Intrinsic IntId128, bit Is2Addr = 1> {
4616   let isCommutable = 1 in
4617   def rr : SS48I<opc, MRMSrcReg, (outs VR128:$dst),
4618        (ins VR128:$src1, VR128:$src2),
4619        !if(Is2Addr,
4620            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
4621            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
4622        [(set VR128:$dst, (IntId128 VR128:$src1, VR128:$src2))]>, OpSize;
4623   def rm : SS48I<opc, MRMSrcMem, (outs VR128:$dst),
4624        (ins VR128:$src1, i128mem:$src2),
4625        !if(Is2Addr,
4626            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
4627            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
4628        [(set VR128:$dst,
4629          (IntId128 VR128:$src1,
4630           (bitconvert (memopv16i8 addr:$src2))))]>, OpSize;
4631 }
4632
4633 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
4634   let isCommutable = 0 in
4635   defm VPACKUSDW : SS41I_binop_rm_int<0x2B, "vpackusdw", int_x86_sse41_packusdw,
4636                                                          0>, VEX_4V;
4637   defm VPCMPEQQ  : SS41I_binop_rm_int<0x29, "vpcmpeqq",  int_x86_sse41_pcmpeqq,
4638                                                          0>, VEX_4V;
4639   defm VPMINSB   : SS41I_binop_rm_int<0x38, "vpminsb",   int_x86_sse41_pminsb,
4640                                                          0>, VEX_4V;
4641   defm VPMINSD   : SS41I_binop_rm_int<0x39, "vpminsd",   int_x86_sse41_pminsd,
4642                                                          0>, VEX_4V;
4643   defm VPMINUD   : SS41I_binop_rm_int<0x3B, "vpminud",   int_x86_sse41_pminud,
4644                                                          0>, VEX_4V;
4645   defm VPMINUW   : SS41I_binop_rm_int<0x3A, "vpminuw",   int_x86_sse41_pminuw,
4646                                                          0>, VEX_4V;
4647   defm VPMAXSB   : SS41I_binop_rm_int<0x3C, "vpmaxsb",   int_x86_sse41_pmaxsb,
4648                                                          0>, VEX_4V;
4649   defm VPMAXSD   : SS41I_binop_rm_int<0x3D, "vpmaxsd",   int_x86_sse41_pmaxsd,
4650                                                          0>, VEX_4V;
4651   defm VPMAXUD   : SS41I_binop_rm_int<0x3F, "vpmaxud",   int_x86_sse41_pmaxud,
4652                                                          0>, VEX_4V;
4653   defm VPMAXUW   : SS41I_binop_rm_int<0x3E, "vpmaxuw",   int_x86_sse41_pmaxuw,
4654                                                          0>, VEX_4V;
4655   defm VPMULDQ   : SS41I_binop_rm_int<0x28, "vpmuldq",   int_x86_sse41_pmuldq,
4656                                                          0>, VEX_4V;
4657 }
4658
4659 let Constraints = "$src1 = $dst" in {
4660   let isCommutable = 0 in
4661   defm PACKUSDW : SS41I_binop_rm_int<0x2B, "packusdw", int_x86_sse41_packusdw>;
4662   defm PCMPEQQ  : SS41I_binop_rm_int<0x29, "pcmpeqq",  int_x86_sse41_pcmpeqq>;
4663   defm PMINSB   : SS41I_binop_rm_int<0x38, "pminsb",   int_x86_sse41_pminsb>;
4664   defm PMINSD   : SS41I_binop_rm_int<0x39, "pminsd",   int_x86_sse41_pminsd>;
4665   defm PMINUD   : SS41I_binop_rm_int<0x3B, "pminud",   int_x86_sse41_pminud>;
4666   defm PMINUW   : SS41I_binop_rm_int<0x3A, "pminuw",   int_x86_sse41_pminuw>;
4667   defm PMAXSB   : SS41I_binop_rm_int<0x3C, "pmaxsb",   int_x86_sse41_pmaxsb>;
4668   defm PMAXSD   : SS41I_binop_rm_int<0x3D, "pmaxsd",   int_x86_sse41_pmaxsd>;
4669   defm PMAXUD   : SS41I_binop_rm_int<0x3F, "pmaxud",   int_x86_sse41_pmaxud>;
4670   defm PMAXUW   : SS41I_binop_rm_int<0x3E, "pmaxuw",   int_x86_sse41_pmaxuw>;
4671   defm PMULDQ   : SS41I_binop_rm_int<0x28, "pmuldq",   int_x86_sse41_pmuldq>;
4672 }
4673
4674 def : Pat<(v2i64 (X86pcmpeqq VR128:$src1, VR128:$src2)),
4675           (PCMPEQQrr VR128:$src1, VR128:$src2)>;
4676 def : Pat<(v2i64 (X86pcmpeqq VR128:$src1, (memop addr:$src2))),
4677           (PCMPEQQrm VR128:$src1, addr:$src2)>;
4678
4679 /// SS48I_binop_rm - Simple SSE41 binary operator.
4680 multiclass SS48I_binop_rm<bits<8> opc, string OpcodeStr, SDNode OpNode,
4681                         ValueType OpVT, bit Is2Addr = 1> {
4682   let isCommutable = 1 in
4683   def rr : SS48I<opc, MRMSrcReg, (outs VR128:$dst),
4684        (ins VR128:$src1, VR128:$src2),
4685        !if(Is2Addr,
4686            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
4687            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
4688        [(set VR128:$dst, (OpVT (OpNode VR128:$src1, VR128:$src2)))]>,
4689        OpSize;
4690   def rm : SS48I<opc, MRMSrcMem, (outs VR128:$dst),
4691        (ins VR128:$src1, i128mem:$src2),
4692        !if(Is2Addr,
4693            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
4694            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
4695        [(set VR128:$dst, (OpNode VR128:$src1,
4696                                   (bc_v4i32 (memopv2i64 addr:$src2))))]>,
4697        OpSize;
4698 }
4699
4700 let isAsmParserOnly = 1, Predicates = [HasAVX] in
4701   defm VPMULLD : SS48I_binop_rm<0x40, "vpmulld", mul, v4i32, 0>, VEX_4V;
4702 let Constraints = "$src1 = $dst" in
4703   defm PMULLD : SS48I_binop_rm<0x40, "pmulld", mul, v4i32>;
4704
4705 /// SS41I_binop_rmi_int - SSE 4.1 binary operator with 8-bit immediate
4706 multiclass SS41I_binop_rmi_int<bits<8> opc, string OpcodeStr,
4707                  Intrinsic IntId, RegisterClass RC, PatFrag memop_frag,
4708                  X86MemOperand x86memop, bit Is2Addr = 1> {
4709   let isCommutable = 1 in
4710   def rri : SS4AIi8<opc, MRMSrcReg, (outs RC:$dst),
4711         (ins RC:$src1, RC:$src2, i32i8imm:$src3),
4712         !if(Is2Addr,
4713             !strconcat(OpcodeStr,
4714                 "\t{$src3, $src2, $dst|$dst, $src2, $src3}"),
4715             !strconcat(OpcodeStr,
4716                 "\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}")),
4717         [(set RC:$dst, (IntId RC:$src1, RC:$src2, imm:$src3))]>,
4718         OpSize;
4719   def rmi : SS4AIi8<opc, MRMSrcMem, (outs RC:$dst),
4720         (ins RC:$src1, x86memop:$src2, i32i8imm:$src3),
4721         !if(Is2Addr,
4722             !strconcat(OpcodeStr,
4723                 "\t{$src3, $src2, $dst|$dst, $src2, $src3}"),
4724             !strconcat(OpcodeStr,
4725                 "\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}")),
4726         [(set RC:$dst,
4727           (IntId RC:$src1,
4728            (bitconvert (memop_frag addr:$src2)), imm:$src3))]>,
4729         OpSize;
4730 }
4731
4732 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
4733   let isCommutable = 0 in {
4734   defm VBLENDPS : SS41I_binop_rmi_int<0x0C, "vblendps", int_x86_sse41_blendps,
4735                                       VR128, memopv16i8, i128mem, 0>, VEX_4V;
4736   defm VBLENDPD : SS41I_binop_rmi_int<0x0D, "vblendpd", int_x86_sse41_blendpd,
4737                                       VR128, memopv16i8, i128mem, 0>, VEX_4V;
4738   defm VBLENDPSY : SS41I_binop_rmi_int<0x0C, "vblendps",
4739             int_x86_avx_blend_ps_256, VR256, memopv32i8, i256mem, 0>, VEX_4V;
4740   defm VBLENDPDY : SS41I_binop_rmi_int<0x0D, "vblendpd",
4741             int_x86_avx_blend_pd_256, VR256, memopv32i8, i256mem, 0>, VEX_4V;
4742   defm VPBLENDW : SS41I_binop_rmi_int<0x0E, "vpblendw", int_x86_sse41_pblendw,
4743                                       VR128, memopv16i8, i128mem, 0>, VEX_4V;
4744   defm VMPSADBW : SS41I_binop_rmi_int<0x42, "vmpsadbw", int_x86_sse41_mpsadbw,
4745                                       VR128, memopv16i8, i128mem, 0>, VEX_4V;
4746   }
4747   defm VDPPS : SS41I_binop_rmi_int<0x40, "vdpps", int_x86_sse41_dpps,
4748                                    VR128, memopv16i8, i128mem, 0>, VEX_4V;
4749   defm VDPPD : SS41I_binop_rmi_int<0x41, "vdppd", int_x86_sse41_dppd,
4750                                    VR128, memopv16i8, i128mem, 0>, VEX_4V;
4751   defm VDPPSY : SS41I_binop_rmi_int<0x40, "vdpps", int_x86_avx_dp_ps_256,
4752                                    VR256, memopv32i8, i256mem, 0>, VEX_4V;
4753 }
4754
4755 let Constraints = "$src1 = $dst" in {
4756   let isCommutable = 0 in {
4757   defm BLENDPS : SS41I_binop_rmi_int<0x0C, "blendps", int_x86_sse41_blendps,
4758                                      VR128, memopv16i8, i128mem>;
4759   defm BLENDPD : SS41I_binop_rmi_int<0x0D, "blendpd", int_x86_sse41_blendpd,
4760                                      VR128, memopv16i8, i128mem>;
4761   defm PBLENDW : SS41I_binop_rmi_int<0x0E, "pblendw", int_x86_sse41_pblendw,
4762                                      VR128, memopv16i8, i128mem>;
4763   defm MPSADBW : SS41I_binop_rmi_int<0x42, "mpsadbw", int_x86_sse41_mpsadbw,
4764                                      VR128, memopv16i8, i128mem>;
4765   }
4766   defm DPPS : SS41I_binop_rmi_int<0x40, "dpps", int_x86_sse41_dpps,
4767                                   VR128, memopv16i8, i128mem>;
4768   defm DPPD : SS41I_binop_rmi_int<0x41, "dppd", int_x86_sse41_dppd,
4769                                   VR128, memopv16i8, i128mem>;
4770 }
4771
4772 /// SS41I_quaternary_int_avx - AVX SSE 4.1 with 4 operators
4773 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
4774 multiclass SS41I_quaternary_int_avx<bits<8> opc, string OpcodeStr,
4775                                     RegisterClass RC, X86MemOperand x86memop,
4776                                     PatFrag mem_frag, Intrinsic IntId> {
4777   def rr : I<opc, MRMSrcReg, (outs RC:$dst),
4778                   (ins RC:$src1, RC:$src2, RC:$src3),
4779                   !strconcat(OpcodeStr,
4780                     "\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}"),
4781                   [(set RC:$dst, (IntId RC:$src1, RC:$src2, RC:$src3))],
4782                   SSEPackedInt>, OpSize, TA, VEX_4V, VEX_I8IMM;
4783
4784   def rm : I<opc, MRMSrcMem, (outs RC:$dst),
4785                   (ins RC:$src1, x86memop:$src2, RC:$src3),
4786                   !strconcat(OpcodeStr,
4787                     "\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}"),
4788                   [(set RC:$dst,
4789                         (IntId RC:$src1, (bitconvert (mem_frag addr:$src2)),
4790                                RC:$src3))],
4791                   SSEPackedInt>, OpSize, TA, VEX_4V, VEX_I8IMM;
4792 }
4793 }
4794
4795 defm VBLENDVPD  : SS41I_quaternary_int_avx<0x4B, "vblendvpd", VR128, i128mem,
4796                                            memopv16i8, int_x86_sse41_blendvpd>;
4797 defm VBLENDVPS  : SS41I_quaternary_int_avx<0x4A, "vblendvps", VR128, i128mem,
4798                                            memopv16i8, int_x86_sse41_blendvps>;
4799 defm VPBLENDVB  : SS41I_quaternary_int_avx<0x4C, "vpblendvb", VR128, i128mem,
4800                                            memopv16i8, int_x86_sse41_pblendvb>;
4801 defm VBLENDVPDY : SS41I_quaternary_int_avx<0x4B, "vblendvpd", VR256, i256mem,
4802                                          memopv32i8, int_x86_avx_blendv_pd_256>;
4803 defm VBLENDVPSY : SS41I_quaternary_int_avx<0x4A, "vblendvps", VR256, i256mem,
4804                                          memopv32i8, int_x86_avx_blendv_ps_256>;
4805
4806 /// SS41I_ternary_int - SSE 4.1 ternary operator
4807 let Uses = [XMM0], Constraints = "$src1 = $dst" in {
4808   multiclass SS41I_ternary_int<bits<8> opc, string OpcodeStr, Intrinsic IntId> {
4809     def rr0 : SS48I<opc, MRMSrcReg, (outs VR128:$dst),
4810                     (ins VR128:$src1, VR128:$src2),
4811                     !strconcat(OpcodeStr,
4812                      "\t{%xmm0, $src2, $dst|$dst, $src2, %xmm0}"),
4813                     [(set VR128:$dst, (IntId VR128:$src1, VR128:$src2, XMM0))]>,
4814                     OpSize;
4815
4816     def rm0 : SS48I<opc, MRMSrcMem, (outs VR128:$dst),
4817                     (ins VR128:$src1, i128mem:$src2),
4818                     !strconcat(OpcodeStr,
4819                      "\t{%xmm0, $src2, $dst|$dst, $src2, %xmm0}"),
4820                     [(set VR128:$dst,
4821                       (IntId VR128:$src1,
4822                        (bitconvert (memopv16i8 addr:$src2)), XMM0))]>, OpSize;
4823   }
4824 }
4825
4826 defm BLENDVPD     : SS41I_ternary_int<0x15, "blendvpd", int_x86_sse41_blendvpd>;
4827 defm BLENDVPS     : SS41I_ternary_int<0x14, "blendvps", int_x86_sse41_blendvps>;
4828 defm PBLENDVB     : SS41I_ternary_int<0x10, "pblendvb", int_x86_sse41_pblendvb>;
4829
4830 let isAsmParserOnly = 1, Predicates = [HasAVX] in
4831 def VMOVNTDQArm : SS48I<0x2A, MRMSrcMem, (outs VR128:$dst), (ins i128mem:$src),
4832                        "vmovntdqa\t{$src, $dst|$dst, $src}",
4833                        [(set VR128:$dst, (int_x86_sse41_movntdqa addr:$src))]>,
4834                        OpSize, VEX;
4835 def MOVNTDQArm : SS48I<0x2A, MRMSrcMem, (outs VR128:$dst), (ins i128mem:$src),
4836                        "movntdqa\t{$src, $dst|$dst, $src}",
4837                        [(set VR128:$dst, (int_x86_sse41_movntdqa addr:$src))]>,
4838                        OpSize;
4839
4840 //===----------------------------------------------------------------------===//
4841 // SSE4.2 - Compare Instructions
4842 //===----------------------------------------------------------------------===//
4843
4844 /// SS42I_binop_rm_int - Simple SSE 4.2 binary operator
4845 multiclass SS42I_binop_rm_int<bits<8> opc, string OpcodeStr,
4846                               Intrinsic IntId128, bit Is2Addr = 1> {
4847   def rr : SS428I<opc, MRMSrcReg, (outs VR128:$dst),
4848        (ins VR128:$src1, VR128:$src2),
4849        !if(Is2Addr,
4850            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
4851            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
4852        [(set VR128:$dst, (IntId128 VR128:$src1, VR128:$src2))]>,
4853        OpSize;
4854   def rm : SS428I<opc, MRMSrcMem, (outs VR128:$dst),
4855        (ins VR128:$src1, i128mem:$src2),
4856        !if(Is2Addr,
4857            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
4858            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
4859        [(set VR128:$dst,
4860          (IntId128 VR128:$src1,
4861           (bitconvert (memopv16i8 addr:$src2))))]>, OpSize;
4862 }
4863
4864 let isAsmParserOnly = 1, Predicates = [HasAVX] in
4865   defm VPCMPGTQ : SS42I_binop_rm_int<0x37, "vpcmpgtq", int_x86_sse42_pcmpgtq,
4866                                      0>, VEX_4V;
4867 let Constraints = "$src1 = $dst" in
4868   defm PCMPGTQ : SS42I_binop_rm_int<0x37, "pcmpgtq", int_x86_sse42_pcmpgtq>;
4869
4870 def : Pat<(v2i64 (X86pcmpgtq VR128:$src1, VR128:$src2)),
4871           (PCMPGTQrr VR128:$src1, VR128:$src2)>;
4872 def : Pat<(v2i64 (X86pcmpgtq VR128:$src1, (memop addr:$src2))),
4873           (PCMPGTQrm VR128:$src1, addr:$src2)>;
4874
4875 //===----------------------------------------------------------------------===//
4876 // SSE4.2 - String/text Processing Instructions
4877 //===----------------------------------------------------------------------===//
4878
4879 // Packed Compare Implicit Length Strings, Return Mask
4880 multiclass pseudo_pcmpistrm<string asm> {
4881   def REG : Ii8<0, Pseudo, (outs VR128:$dst),
4882     (ins VR128:$src1, VR128:$src2, i8imm:$src3), !strconcat(asm, "rr PSEUDO"),
4883     [(set VR128:$dst, (int_x86_sse42_pcmpistrm128 VR128:$src1, VR128:$src2,
4884                                                   imm:$src3))]>;
4885   def MEM : Ii8<0, Pseudo, (outs VR128:$dst),
4886     (ins VR128:$src1, i128mem:$src2, i8imm:$src3), !strconcat(asm, "rm PSEUDO"),
4887     [(set VR128:$dst, (int_x86_sse42_pcmpistrm128
4888                        VR128:$src1, (load addr:$src2), imm:$src3))]>;
4889 }
4890
4891 let Defs = [EFLAGS], usesCustomInserter = 1 in {
4892   defm PCMPISTRM128 : pseudo_pcmpistrm<"#PCMPISTRM128">, Requires<[HasSSE42]>;
4893   defm VPCMPISTRM128 : pseudo_pcmpistrm<"#VPCMPISTRM128">, Requires<[HasAVX]>;
4894 }
4895
4896 let Defs = [XMM0, EFLAGS], isAsmParserOnly = 1,
4897     Predicates = [HasAVX] in {
4898   def VPCMPISTRM128rr : SS42AI<0x62, MRMSrcReg, (outs),
4899       (ins VR128:$src1, VR128:$src2, i8imm:$src3),
4900       "vpcmpistrm\t{$src3, $src2, $src1|$src1, $src2, $src3}", []>, OpSize, VEX;
4901   def VPCMPISTRM128rm : SS42AI<0x62, MRMSrcMem, (outs),
4902       (ins VR128:$src1, i128mem:$src2, i8imm:$src3),
4903       "vpcmpistrm\t{$src3, $src2, $src1|$src1, $src2, $src3}", []>, OpSize, VEX;
4904 }
4905
4906 let Defs = [XMM0, EFLAGS] in {
4907   def PCMPISTRM128rr : SS42AI<0x62, MRMSrcReg, (outs),
4908       (ins VR128:$src1, VR128:$src2, i8imm:$src3),
4909       "pcmpistrm\t{$src3, $src2, $src1|$src1, $src2, $src3}", []>, OpSize;
4910   def PCMPISTRM128rm : SS42AI<0x62, MRMSrcMem, (outs),
4911       (ins VR128:$src1, i128mem:$src2, i8imm:$src3),
4912       "pcmpistrm\t{$src3, $src2, $src1|$src1, $src2, $src3}", []>, OpSize;
4913 }
4914
4915 // Packed Compare Explicit Length Strings, Return Mask
4916 multiclass pseudo_pcmpestrm<string asm> {
4917   def REG : Ii8<0, Pseudo, (outs VR128:$dst),
4918     (ins VR128:$src1, VR128:$src3, i8imm:$src5), !strconcat(asm, "rr PSEUDO"),
4919     [(set VR128:$dst, (int_x86_sse42_pcmpestrm128
4920                        VR128:$src1, EAX, VR128:$src3, EDX, imm:$src5))]>;
4921   def MEM : Ii8<0, Pseudo, (outs VR128:$dst),
4922     (ins VR128:$src1, i128mem:$src3, i8imm:$src5), !strconcat(asm, "rm PSEUDO"),
4923     [(set VR128:$dst, (int_x86_sse42_pcmpestrm128
4924                        VR128:$src1, EAX, (load addr:$src3), EDX, imm:$src5))]>;
4925 }
4926
4927 let Defs = [EFLAGS], Uses = [EAX, EDX], usesCustomInserter = 1 in {
4928   defm PCMPESTRM128 : pseudo_pcmpestrm<"#PCMPESTRM128">, Requires<[HasSSE42]>;
4929   defm VPCMPESTRM128 : pseudo_pcmpestrm<"#VPCMPESTRM128">, Requires<[HasAVX]>;
4930 }
4931
4932 let isAsmParserOnly = 1, Predicates = [HasAVX],
4933     Defs = [XMM0, EFLAGS], Uses = [EAX, EDX] in {
4934   def VPCMPESTRM128rr : SS42AI<0x60, MRMSrcReg, (outs),
4935       (ins VR128:$src1, VR128:$src3, i8imm:$src5),
4936       "vpcmpestrm\t{$src5, $src3, $src1|$src1, $src3, $src5}", []>, OpSize, VEX;
4937   def VPCMPESTRM128rm : SS42AI<0x60, MRMSrcMem, (outs),
4938       (ins VR128:$src1, i128mem:$src3, i8imm:$src5),
4939       "vpcmpestrm\t{$src5, $src3, $src1|$src1, $src3, $src5}", []>, OpSize, VEX;
4940 }
4941
4942 let Defs = [XMM0, EFLAGS], Uses = [EAX, EDX] in {
4943   def PCMPESTRM128rr : SS42AI<0x60, MRMSrcReg, (outs),
4944       (ins VR128:$src1, VR128:$src3, i8imm:$src5),
4945       "pcmpestrm\t{$src5, $src3, $src1|$src1, $src3, $src5}", []>, OpSize;
4946   def PCMPESTRM128rm : SS42AI<0x60, MRMSrcMem, (outs),
4947       (ins VR128:$src1, i128mem:$src3, i8imm:$src5),
4948       "pcmpestrm\t{$src5, $src3, $src1|$src1, $src3, $src5}", []>, OpSize;
4949 }
4950
4951 // Packed Compare Implicit Length Strings, Return Index
4952 let Defs = [ECX, EFLAGS] in {
4953   multiclass SS42AI_pcmpistri<Intrinsic IntId128, string asm = "pcmpistri"> {
4954     def rr : SS42AI<0x63, MRMSrcReg, (outs),
4955       (ins VR128:$src1, VR128:$src2, i8imm:$src3),
4956       !strconcat(asm, "\t{$src3, $src2, $src1|$src1, $src2, $src3}"),
4957       [(set ECX, (IntId128 VR128:$src1, VR128:$src2, imm:$src3)),
4958        (implicit EFLAGS)]>, OpSize;
4959     def rm : SS42AI<0x63, MRMSrcMem, (outs),
4960       (ins VR128:$src1, i128mem:$src2, i8imm:$src3),
4961       !strconcat(asm, "\t{$src3, $src2, $src1|$src1, $src2, $src3}"),
4962       [(set ECX, (IntId128 VR128:$src1, (load addr:$src2), imm:$src3)),
4963        (implicit EFLAGS)]>, OpSize;
4964   }
4965 }
4966
4967 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
4968 defm VPCMPISTRI  : SS42AI_pcmpistri<int_x86_sse42_pcmpistri128, "vpcmpistri">,
4969                                     VEX;
4970 defm VPCMPISTRIA : SS42AI_pcmpistri<int_x86_sse42_pcmpistria128, "vpcmpistri">,
4971                                     VEX;
4972 defm VPCMPISTRIC : SS42AI_pcmpistri<int_x86_sse42_pcmpistric128, "vpcmpistri">,
4973                                     VEX;
4974 defm VPCMPISTRIO : SS42AI_pcmpistri<int_x86_sse42_pcmpistrio128, "vpcmpistri">,
4975                                     VEX;
4976 defm VPCMPISTRIS : SS42AI_pcmpistri<int_x86_sse42_pcmpistris128, "vpcmpistri">,
4977                                     VEX;
4978 defm VPCMPISTRIZ : SS42AI_pcmpistri<int_x86_sse42_pcmpistriz128, "vpcmpistri">,
4979                                     VEX;
4980 }
4981
4982 defm PCMPISTRI  : SS42AI_pcmpistri<int_x86_sse42_pcmpistri128>;
4983 defm PCMPISTRIA : SS42AI_pcmpistri<int_x86_sse42_pcmpistria128>;
4984 defm PCMPISTRIC : SS42AI_pcmpistri<int_x86_sse42_pcmpistric128>;
4985 defm PCMPISTRIO : SS42AI_pcmpistri<int_x86_sse42_pcmpistrio128>;
4986 defm PCMPISTRIS : SS42AI_pcmpistri<int_x86_sse42_pcmpistris128>;
4987 defm PCMPISTRIZ : SS42AI_pcmpistri<int_x86_sse42_pcmpistriz128>;
4988
4989 // Packed Compare Explicit Length Strings, Return Index
4990 let Defs = [ECX, EFLAGS], Uses = [EAX, EDX] in {
4991   multiclass SS42AI_pcmpestri<Intrinsic IntId128, string asm = "pcmpestri"> {
4992     def rr : SS42AI<0x61, MRMSrcReg, (outs),
4993       (ins VR128:$src1, VR128:$src3, i8imm:$src5),
4994       !strconcat(asm, "\t{$src5, $src3, $src1|$src1, $src3, $src5}"),
4995       [(set ECX, (IntId128 VR128:$src1, EAX, VR128:$src3, EDX, imm:$src5)),
4996        (implicit EFLAGS)]>, OpSize;
4997     def rm : SS42AI<0x61, MRMSrcMem, (outs),
4998       (ins VR128:$src1, i128mem:$src3, i8imm:$src5),
4999       !strconcat(asm, "\t{$src5, $src3, $src1|$src1, $src3, $src5}"),
5000        [(set ECX,
5001              (IntId128 VR128:$src1, EAX, (load addr:$src3), EDX, imm:$src5)),
5002         (implicit EFLAGS)]>, OpSize;
5003   }
5004 }
5005
5006 let isAsmParserOnly = 1, Predicates = [HasAVX] in {
5007 defm VPCMPESTRI  : SS42AI_pcmpestri<int_x86_sse42_pcmpestri128, "vpcmpestri">,
5008                                     VEX;
5009 defm VPCMPESTRIA : SS42AI_pcmpestri<int_x86_sse42_pcmpestria128, "vpcmpestri">,
5010                                     VEX;
5011 defm VPCMPESTRIC : SS42AI_pcmpestri<int_x86_sse42_pcmpestric128, "vpcmpestri">,
5012                                     VEX;
5013 defm VPCMPESTRIO : SS42AI_pcmpestri<int_x86_sse42_pcmpestrio128, "vpcmpestri">,
5014                                     VEX;
5015 defm VPCMPESTRIS : SS42AI_pcmpestri<int_x86_sse42_pcmpestris128, "vpcmpestri">,
5016                                     VEX;
5017 defm VPCMPESTRIZ : SS42AI_pcmpestri<int_x86_sse42_pcmpestriz128, "vpcmpestri">,
5018                                     VEX;
5019 }
5020
5021 defm PCMPESTRI  : SS42AI_pcmpestri<int_x86_sse42_pcmpestri128>;
5022 defm PCMPESTRIA : SS42AI_pcmpestri<int_x86_sse42_pcmpestria128>;
5023 defm PCMPESTRIC : SS42AI_pcmpestri<int_x86_sse42_pcmpestric128>;
5024 defm PCMPESTRIO : SS42AI_pcmpestri<int_x86_sse42_pcmpestrio128>;
5025 defm PCMPESTRIS : SS42AI_pcmpestri<int_x86_sse42_pcmpestris128>;
5026 defm PCMPESTRIZ : SS42AI_pcmpestri<int_x86_sse42_pcmpestriz128>;
5027
5028 //===----------------------------------------------------------------------===//
5029 // SSE4.2 - CRC Instructions
5030 //===----------------------------------------------------------------------===//
5031
5032 // No CRC instructions have AVX equivalents
5033
5034 // crc intrinsic instruction
5035 // This set of instructions are only rm, the only difference is the size
5036 // of r and m.
5037 let Constraints = "$src1 = $dst" in {
5038   def CRC32m8  : SS42FI<0xF0, MRMSrcMem, (outs GR32:$dst),
5039                       (ins GR32:$src1, i8mem:$src2),
5040                       "crc32{b} \t{$src2, $src1|$src1, $src2}",
5041                        [(set GR32:$dst,
5042                          (int_x86_sse42_crc32_8 GR32:$src1,
5043                          (load addr:$src2)))]>;
5044   def CRC32r8  : SS42FI<0xF0, MRMSrcReg, (outs GR32:$dst),
5045                       (ins GR32:$src1, GR8:$src2),
5046                       "crc32{b} \t{$src2, $src1|$src1, $src2}",
5047                        [(set GR32:$dst,
5048                          (int_x86_sse42_crc32_8 GR32:$src1, GR8:$src2))]>;
5049   def CRC32m16  : SS42FI<0xF1, MRMSrcMem, (outs GR32:$dst),
5050                       (ins GR32:$src1, i16mem:$src2),
5051                       "crc32{w} \t{$src2, $src1|$src1, $src2}",
5052                        [(set GR32:$dst,
5053                          (int_x86_sse42_crc32_16 GR32:$src1,
5054                          (load addr:$src2)))]>,
5055                          OpSize;
5056   def CRC32r16  : SS42FI<0xF1, MRMSrcReg, (outs GR32:$dst),
5057                       (ins GR32:$src1, GR16:$src2),
5058                       "crc32{w} \t{$src2, $src1|$src1, $src2}",
5059                        [(set GR32:$dst,
5060                          (int_x86_sse42_crc32_16 GR32:$src1, GR16:$src2))]>,
5061                          OpSize;
5062   def CRC32m32  : SS42FI<0xF1, MRMSrcMem, (outs GR32:$dst),
5063                       (ins GR32:$src1, i32mem:$src2),
5064                       "crc32{l} \t{$src2, $src1|$src1, $src2}",
5065                        [(set GR32:$dst,
5066                          (int_x86_sse42_crc32_32 GR32:$src1,
5067                          (load addr:$src2)))]>;
5068   def CRC32r32  : SS42FI<0xF1, MRMSrcReg, (outs GR32:$dst),
5069                       (ins GR32:$src1, GR32:$src2),
5070                       "crc32{l} \t{$src2, $src1|$src1, $src2}",
5071                        [(set GR32:$dst,
5072                          (int_x86_sse42_crc32_32 GR32:$src1, GR32:$src2))]>;
5073   def CRC64m8  : SS42FI<0xF0, MRMSrcMem, (outs GR64:$dst),
5074                       (ins GR64:$src1, i8mem:$src2),
5075                       "crc32{b} \t{$src2, $src1|$src1, $src2}",
5076                        [(set GR64:$dst,
5077                          (int_x86_sse42_crc64_8 GR64:$src1,
5078                          (load addr:$src2)))]>,
5079                          REX_W;
5080   def CRC64r8  : SS42FI<0xF0, MRMSrcReg, (outs GR64:$dst),
5081                       (ins GR64:$src1, GR8:$src2),
5082                       "crc32{b} \t{$src2, $src1|$src1, $src2}",
5083                        [(set GR64:$dst,
5084                          (int_x86_sse42_crc64_8 GR64:$src1, GR8:$src2))]>,
5085                          REX_W;
5086   def CRC64m64  : SS42FI<0xF1, MRMSrcMem, (outs GR64:$dst),
5087                       (ins GR64:$src1, i64mem:$src2),
5088                       "crc32{q} \t{$src2, $src1|$src1, $src2}",
5089                        [(set GR64:$dst,
5090                          (int_x86_sse42_crc64_64 GR64:$src1,
5091                          (load addr:$src2)))]>,
5092                          REX_W;
5093   def CRC64r64  : SS42FI<0xF1, MRMSrcReg, (outs GR64:$dst),
5094                       (ins GR64:$src1, GR64:$src2),
5095                       "crc32{q} \t{$src2, $src1|$src1, $src2}",
5096                        [(set GR64:$dst,
5097                          (int_x86_sse42_crc64_64 GR64:$src1, GR64:$src2))]>,
5098                          REX_W;
5099 }
5100
5101 //===----------------------------------------------------------------------===//
5102 // AES-NI Instructions
5103 //===----------------------------------------------------------------------===//
5104
5105 multiclass AESI_binop_rm_int<bits<8> opc, string OpcodeStr,
5106                               Intrinsic IntId128, bit Is2Addr = 1> {
5107   def rr : AES8I<opc, MRMSrcReg, (outs VR128:$dst),
5108        (ins VR128:$src1, VR128:$src2),
5109        !if(Is2Addr,
5110            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
5111            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
5112        [(set VR128:$dst, (IntId128 VR128:$src1, VR128:$src2))]>,
5113        OpSize;
5114   def rm : AES8I<opc, MRMSrcMem, (outs VR128:$dst),
5115        (ins VR128:$src1, i128mem:$src2),
5116        !if(Is2Addr,
5117            !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
5118            !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
5119        [(set VR128:$dst,
5120          (IntId128 VR128:$src1,
5121           (bitconvert (memopv16i8 addr:$src2))))]>, OpSize;
5122 }
5123
5124 // Perform One Round of an AES Encryption/Decryption Flow
5125 let isAsmParserOnly = 1, Predicates = [HasAVX, HasAES] in {
5126   defm VAESENC          : AESI_binop_rm_int<0xDC, "vaesenc",
5127                          int_x86_aesni_aesenc, 0>, VEX_4V;
5128   defm VAESENCLAST      : AESI_binop_rm_int<0xDD, "vaesenclast",
5129                          int_x86_aesni_aesenclast, 0>, VEX_4V;
5130   defm VAESDEC          : AESI_binop_rm_int<0xDE, "vaesdec",
5131                          int_x86_aesni_aesdec, 0>, VEX_4V;
5132   defm VAESDECLAST      : AESI_binop_rm_int<0xDF, "vaesdeclast",
5133                          int_x86_aesni_aesdeclast, 0>, VEX_4V;
5134 }
5135
5136 let Constraints = "$src1 = $dst" in {
5137   defm AESENC          : AESI_binop_rm_int<0xDC, "aesenc",
5138                          int_x86_aesni_aesenc>;
5139   defm AESENCLAST      : AESI_binop_rm_int<0xDD, "aesenclast",
5140                          int_x86_aesni_aesenclast>;
5141   defm AESDEC          : AESI_binop_rm_int<0xDE, "aesdec",
5142                          int_x86_aesni_aesdec>;
5143   defm AESDECLAST      : AESI_binop_rm_int<0xDF, "aesdeclast",
5144                          int_x86_aesni_aesdeclast>;
5145 }
5146
5147 def : Pat<(v2i64 (int_x86_aesni_aesenc VR128:$src1, VR128:$src2)),
5148           (AESENCrr VR128:$src1, VR128:$src2)>;
5149 def : Pat<(v2i64 (int_x86_aesni_aesenc VR128:$src1, (memop addr:$src2))),
5150           (AESENCrm VR128:$src1, addr:$src2)>;
5151 def : Pat<(v2i64 (int_x86_aesni_aesenclast VR128:$src1, VR128:$src2)),
5152           (AESENCLASTrr VR128:$src1, VR128:$src2)>;
5153 def : Pat<(v2i64 (int_x86_aesni_aesenclast VR128:$src1, (memop addr:$src2))),
5154           (AESENCLASTrm VR128:$src1, addr:$src2)>;
5155 def : Pat<(v2i64 (int_x86_aesni_aesdec VR128:$src1, VR128:$src2)),
5156           (AESDECrr VR128:$src1, VR128:$src2)>;
5157 def : Pat<(v2i64 (int_x86_aesni_aesdec VR128:$src1, (memop addr:$src2))),
5158           (AESDECrm VR128:$src1, addr:$src2)>;
5159 def : Pat<(v2i64 (int_x86_aesni_aesdeclast VR128:$src1, VR128:$src2)),
5160           (AESDECLASTrr VR128:$src1, VR128:$src2)>;
5161 def : Pat<(v2i64 (int_x86_aesni_aesdeclast VR128:$src1, (memop addr:$src2))),
5162           (AESDECLASTrm VR128:$src1, addr:$src2)>;
5163
5164 // Perform the AES InvMixColumn Transformation
5165 let isAsmParserOnly = 1, Predicates = [HasAVX, HasAES] in {
5166   def VAESIMCrr : AES8I<0xDB, MRMSrcReg, (outs VR128:$dst),
5167       (ins VR128:$src1),
5168       "vaesimc\t{$src1, $dst|$dst, $src1}",
5169       [(set VR128:$dst,
5170         (int_x86_aesni_aesimc VR128:$src1))]>,
5171       OpSize, VEX;
5172   def VAESIMCrm : AES8I<0xDB, MRMSrcMem, (outs VR128:$dst),
5173       (ins i128mem:$src1),
5174       "vaesimc\t{$src1, $dst|$dst, $src1}",
5175       [(set VR128:$dst,
5176         (int_x86_aesni_aesimc (bitconvert (memopv2i64 addr:$src1))))]>,
5177       OpSize, VEX;
5178 }
5179 def AESIMCrr : AES8I<0xDB, MRMSrcReg, (outs VR128:$dst),
5180   (ins VR128:$src1),
5181   "aesimc\t{$src1, $dst|$dst, $src1}",
5182   [(set VR128:$dst,
5183     (int_x86_aesni_aesimc VR128:$src1))]>,
5184   OpSize;
5185 def AESIMCrm : AES8I<0xDB, MRMSrcMem, (outs VR128:$dst),
5186   (ins i128mem:$src1),
5187   "aesimc\t{$src1, $dst|$dst, $src1}",
5188   [(set VR128:$dst,
5189     (int_x86_aesni_aesimc (bitconvert (memopv2i64 addr:$src1))))]>,
5190   OpSize;
5191
5192 // AES Round Key Generation Assist
5193 let isAsmParserOnly = 1, Predicates = [HasAVX, HasAES] in {
5194   def VAESKEYGENASSIST128rr : AESAI<0xDF, MRMSrcReg, (outs VR128:$dst),
5195       (ins VR128:$src1, i8imm:$src2),
5196       "vaeskeygenassist\t{$src2, $src1, $dst|$dst, $src1, $src2}",
5197       [(set VR128:$dst,
5198         (int_x86_aesni_aeskeygenassist VR128:$src1, imm:$src2))]>,
5199       OpSize, VEX;
5200   def VAESKEYGENASSIST128rm : AESAI<0xDF, MRMSrcMem, (outs VR128:$dst),
5201       (ins i128mem:$src1, i8imm:$src2),
5202       "vaeskeygenassist\t{$src2, $src1, $dst|$dst, $src1, $src2}",
5203       [(set VR128:$dst,
5204         (int_x86_aesni_aeskeygenassist (bitconvert (memopv2i64 addr:$src1)),
5205                                         imm:$src2))]>,
5206       OpSize, VEX;
5207 }
5208 def AESKEYGENASSIST128rr : AESAI<0xDF, MRMSrcReg, (outs VR128:$dst),
5209   (ins VR128:$src1, i8imm:$src2),
5210   "aeskeygenassist\t{$src2, $src1, $dst|$dst, $src1, $src2}",
5211   [(set VR128:$dst,
5212     (int_x86_aesni_aeskeygenassist VR128:$src1, imm:$src2))]>,
5213   OpSize;
5214 def AESKEYGENASSIST128rm : AESAI<0xDF, MRMSrcMem, (outs VR128:$dst),
5215   (ins i128mem:$src1, i8imm:$src2),
5216   "aeskeygenassist\t{$src2, $src1, $dst|$dst, $src1, $src2}",
5217   [(set VR128:$dst,
5218     (int_x86_aesni_aeskeygenassist (bitconvert (memopv2i64 addr:$src1)),
5219                                     imm:$src2))]>,
5220   OpSize;
5221
5222 //===----------------------------------------------------------------------===//
5223 // CLMUL Instructions
5224 //===----------------------------------------------------------------------===//
5225
5226 // Only the AVX version of CLMUL instructions are described here.
5227
5228 // Carry-less Multiplication instructions
5229 let isAsmParserOnly = 1 in {
5230 def VPCLMULQDQrr : CLMULIi8<0x44, MRMSrcReg, (outs VR128:$dst),
5231            (ins VR128:$src1, VR128:$src2, i8imm:$src3),
5232            "vpclmulqdq\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}",
5233            []>;
5234
5235 def VPCLMULQDQrm : CLMULIi8<0x44, MRMSrcMem, (outs VR128:$dst),
5236            (ins VR128:$src1, i128mem:$src2, i8imm:$src3),
5237            "vpclmulqdq\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}",
5238            []>;
5239
5240 // Assembler Only
5241 multiclass avx_vpclmul<string asm> {
5242   def rr : I<0, Pseudo, (outs VR128:$dst), (ins VR128:$src1, VR128:$src2),
5243              !strconcat(asm, "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
5244              []>;
5245
5246   def rm : I<0, Pseudo, (outs VR128:$dst), (ins VR128:$src1, i128mem:$src2),
5247              !strconcat(asm, "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
5248              []>;
5249 }
5250 defm VPCLMULHQHQDQ : avx_vpclmul<"vpclmulhqhqdq">;
5251 defm VPCLMULHQLQDQ : avx_vpclmul<"vpclmulhqlqdq">;
5252 defm VPCLMULLQHQDQ : avx_vpclmul<"vpclmullqhqdq">;
5253 defm VPCLMULLQLQDQ : avx_vpclmul<"vpclmullqlqdq">;
5254
5255 } // isAsmParserOnly
5256
5257 //===----------------------------------------------------------------------===//
5258 // AVX Instructions
5259 //===----------------------------------------------------------------------===//
5260
5261 let isAsmParserOnly = 1 in {
5262
5263 // Load from memory and broadcast to all elements of the destination operand
5264 class avx_broadcast<bits<8> opc, string OpcodeStr, RegisterClass RC,
5265                     X86MemOperand x86memop, Intrinsic Int> :
5266   AVX8I<opc, MRMSrcMem, (outs RC:$dst), (ins x86memop:$src),
5267         !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"),
5268         [(set RC:$dst, (Int addr:$src))]>, VEX;
5269
5270 def VBROADCASTSS   : avx_broadcast<0x18, "vbroadcastss", VR128, f32mem,
5271                                    int_x86_avx_vbroadcastss>;
5272 def VBROADCASTSSY  : avx_broadcast<0x18, "vbroadcastss", VR256, f32mem,
5273                                    int_x86_avx_vbroadcastss_256>;
5274 def VBROADCASTSD   : avx_broadcast<0x19, "vbroadcastsd", VR256, f64mem,
5275                                    int_x86_avx_vbroadcast_sd_256>;
5276 def VBROADCASTF128 : avx_broadcast<0x1A, "vbroadcastf128", VR256, f128mem,
5277                                    int_x86_avx_vbroadcastf128_pd_256>;
5278
5279 // Insert packed floating-point values
5280 def VINSERTF128rr : AVXAIi8<0x18, MRMSrcReg, (outs VR256:$dst),
5281           (ins VR256:$src1, VR128:$src2, i8imm:$src3),
5282           "vinsertf128\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}",
5283           []>, VEX_4V;
5284 def VINSERTF128rm : AVXAIi8<0x18, MRMSrcMem, (outs VR256:$dst),
5285           (ins VR256:$src1, f128mem:$src2, i8imm:$src3),
5286           "vinsertf128\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}",
5287           []>, VEX_4V;
5288
5289 // Extract packed floating-point values
5290 def VEXTRACTF128rr : AVXAIi8<0x19, MRMDestReg, (outs VR128:$dst),
5291           (ins VR256:$src1, i8imm:$src2),
5292           "vextractf128\t{$src2, $src1, $dst|$dst, $src1, $src2}",
5293           []>, VEX;
5294 def VEXTRACTF128mr : AVXAIi8<0x19, MRMDestMem, (outs),
5295           (ins f128mem:$dst, VR256:$src1, i8imm:$src2),
5296           "vextractf128\t{$src2, $src1, $dst|$dst, $src1, $src2}",
5297           []>, VEX;
5298
5299 // Conditional SIMD Packed Loads and Stores
5300 multiclass avx_movmask_rm<bits<8> opc_rm, bits<8> opc_mr, string OpcodeStr,
5301                           Intrinsic IntLd, Intrinsic IntLd256,
5302                           Intrinsic IntSt, Intrinsic IntSt256,
5303                           PatFrag pf128, PatFrag pf256> {
5304   def rm  : AVX8I<opc_rm, MRMSrcMem, (outs VR128:$dst),
5305              (ins VR128:$src1, f128mem:$src2),
5306              !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
5307              [(set VR128:$dst, (IntLd addr:$src2, VR128:$src1))]>,
5308              VEX_4V;
5309   def Yrm : AVX8I<opc_rm, MRMSrcMem, (outs VR256:$dst),
5310              (ins VR256:$src1, f256mem:$src2),
5311              !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
5312              [(set VR256:$dst, (IntLd256 addr:$src2, VR256:$src1))]>,
5313              VEX_4V;
5314   def mr  : AVX8I<opc_mr, MRMDestMem, (outs),
5315              (ins f128mem:$dst, VR128:$src1, VR128:$src2),
5316              !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
5317              [(IntSt addr:$dst, VR128:$src1, VR128:$src2)]>, VEX_4V;
5318   def Ymr : AVX8I<opc_mr, MRMDestMem, (outs),
5319              (ins f256mem:$dst, VR256:$src1, VR256:$src2),
5320              !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
5321              [(IntSt256 addr:$dst, VR256:$src1, VR256:$src2)]>, VEX_4V;
5322 }
5323
5324 defm VMASKMOVPS : avx_movmask_rm<0x2C, 0x2E, "vmaskmovps",
5325                                  int_x86_avx_maskload_ps,
5326                                  int_x86_avx_maskload_ps_256,
5327                                  int_x86_avx_maskstore_ps,
5328                                  int_x86_avx_maskstore_ps_256,
5329                                  memopv4f32, memopv8f32>;
5330 defm VMASKMOVPD : avx_movmask_rm<0x2D, 0x2F, "vmaskmovpd",
5331                                  int_x86_avx_maskload_pd,
5332                                  int_x86_avx_maskload_pd_256,
5333                                  int_x86_avx_maskstore_pd,
5334                                  int_x86_avx_maskstore_pd_256,
5335                                  memopv2f64, memopv4f64>;
5336
5337 // Permute Floating-Point Values
5338 multiclass avx_permil<bits<8> opc_rm, bits<8> opc_rmi, string OpcodeStr,
5339                       RegisterClass RC, X86MemOperand x86memop_f,
5340                       X86MemOperand x86memop_i, PatFrag f_frag, PatFrag i_frag,
5341                       Intrinsic IntVar, Intrinsic IntImm> {
5342   def rr  : AVX8I<opc_rm, MRMSrcReg, (outs RC:$dst),
5343              (ins RC:$src1, RC:$src2),
5344              !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
5345              [(set RC:$dst, (IntVar RC:$src1, RC:$src2))]>, VEX_4V;
5346   def rm  : AVX8I<opc_rm, MRMSrcMem, (outs RC:$dst),
5347              (ins RC:$src1, x86memop_i:$src2),
5348              !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
5349              [(set RC:$dst, (IntVar RC:$src1, (i_frag addr:$src2)))]>, VEX_4V;
5350
5351   def ri  : AVXAIi8<opc_rmi, MRMSrcReg, (outs RC:$dst),
5352              (ins RC:$src1, i8imm:$src2),
5353              !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
5354              [(set RC:$dst, (IntImm RC:$src1, imm:$src2))]>, VEX;
5355   def mi  : AVXAIi8<opc_rmi, MRMSrcMem, (outs RC:$dst),
5356              (ins x86memop_f:$src1, i8imm:$src2),
5357              !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
5358              [(set RC:$dst, (IntImm (f_frag addr:$src1), imm:$src2))]>, VEX;
5359 }
5360
5361 defm VPERMILPS  : avx_permil<0x0C, 0x04, "vpermilps", VR128, f128mem, i128mem,
5362                              memopv4f32, memopv4i32,
5363                              int_x86_avx_vpermilvar_ps,
5364                              int_x86_avx_vpermil_ps>;
5365 defm VPERMILPSY : avx_permil<0x0C, 0x04, "vpermilps", VR256, f256mem, i256mem,
5366                              memopv8f32, memopv8i32,
5367                              int_x86_avx_vpermilvar_ps_256,
5368                              int_x86_avx_vpermil_ps_256>;
5369 defm VPERMILPD  : avx_permil<0x0D, 0x05, "vpermilpd", VR128, f128mem, i128mem,
5370                              memopv2f64, memopv2i64,
5371                              int_x86_avx_vpermilvar_pd,
5372                              int_x86_avx_vpermil_pd>;
5373 defm VPERMILPDY : avx_permil<0x0D, 0x05, "vpermilpd", VR256, f256mem, i256mem,
5374                              memopv4f64, memopv4i64,
5375                              int_x86_avx_vpermilvar_pd_256,
5376                              int_x86_avx_vpermil_pd_256>;
5377
5378 def VPERM2F128rr : AVXAIi8<0x06, MRMSrcReg, (outs VR256:$dst),
5379           (ins VR256:$src1, VR256:$src2, i8imm:$src3),
5380           "vperm2f128\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}",
5381           []>, VEX_4V;
5382 def VPERM2F128rm : AVXAIi8<0x06, MRMSrcMem, (outs VR256:$dst),
5383           (ins VR256:$src1, f256mem:$src2, i8imm:$src3),
5384           "vperm2f128\t{$src3, $src2, $src1, $dst|$dst, $src1, $src2, $src3}",
5385           []>, VEX_4V;
5386
5387 // Zero All YMM registers
5388 def VZEROALL : I<0x77, RawFrm, (outs), (ins), "vzeroall",
5389                  [(int_x86_avx_vzeroall)]>, VEX, VEX_L, Requires<[HasAVX]>;
5390
5391 // Zero Upper bits of YMM registers
5392 def VZEROUPPER : I<0x77, RawFrm, (outs), (ins), "vzeroupper",
5393                    [(int_x86_avx_vzeroupper)]>, VEX, Requires<[HasAVX]>;
5394
5395 } // isAsmParserOnly
5396
5397 def : Pat<(int_x86_avx_vinsertf128_pd_256 VR256:$src1, VR128:$src2, imm:$src3),
5398           (VINSERTF128rr VR256:$src1, VR128:$src2, imm:$src3)>;
5399 def : Pat<(int_x86_avx_vinsertf128_ps_256 VR256:$src1, VR128:$src2, imm:$src3),
5400           (VINSERTF128rr VR256:$src1, VR128:$src2, imm:$src3)>;
5401 def : Pat<(int_x86_avx_vinsertf128_si_256 VR256:$src1, VR128:$src2, imm:$src3),
5402           (VINSERTF128rr VR256:$src1, VR128:$src2, imm:$src3)>;
5403
5404 def : Pat<(int_x86_avx_vextractf128_pd_256 VR256:$src1, imm:$src2),
5405           (VEXTRACTF128rr VR256:$src1, imm:$src2)>;
5406 def : Pat<(int_x86_avx_vextractf128_ps_256 VR256:$src1, imm:$src2),
5407           (VEXTRACTF128rr VR256:$src1, imm:$src2)>;
5408 def : Pat<(int_x86_avx_vextractf128_si_256 VR256:$src1, imm:$src2),
5409           (VEXTRACTF128rr VR256:$src1, imm:$src2)>;
5410
5411 def : Pat<(int_x86_avx_vbroadcastf128_ps_256 addr:$src),
5412           (VBROADCASTF128 addr:$src)>;
5413
5414 def : Pat<(int_x86_avx_vperm2f128_ps_256 VR256:$src1, VR256:$src2, imm:$src3),
5415           (VPERM2F128rr VR256:$src1, VR256:$src2, imm:$src3)>;
5416 def : Pat<(int_x86_avx_vperm2f128_pd_256 VR256:$src1, VR256:$src2, imm:$src3),
5417           (VPERM2F128rr VR256:$src1, VR256:$src2, imm:$src3)>;
5418 def : Pat<(int_x86_avx_vperm2f128_si_256 VR256:$src1, VR256:$src2, imm:$src3),
5419           (VPERM2F128rr VR256:$src1, VR256:$src2, imm:$src3)>;
5420
5421 def : Pat<(int_x86_avx_vperm2f128_ps_256
5422                   VR256:$src1, (memopv8f32 addr:$src2), imm:$src3),
5423           (VPERM2F128rm VR256:$src1, addr:$src2, imm:$src3)>;
5424 def : Pat<(int_x86_avx_vperm2f128_pd_256
5425                   VR256:$src1, (memopv4f64 addr:$src2), imm:$src3),
5426           (VPERM2F128rm VR256:$src1, addr:$src2, imm:$src3)>;
5427 def : Pat<(int_x86_avx_vperm2f128_si_256
5428                   VR256:$src1, (memopv8i32 addr:$src2), imm:$src3),
5429           (VPERM2F128rm VR256:$src1, addr:$src2, imm:$src3)>;
5430
5431 //===----------------------------------------------------------------------===//
5432 // SSE Shuffle pattern fragments
5433 //===----------------------------------------------------------------------===//
5434
5435 // This is part of a "work in progress" refactoring. The idea is that all
5436 // vector shuffles are going to be translated into target specific nodes and
5437 // directly matched by the patterns below (which can be changed along the way)
5438 // The AVX version of some but not all of them are described here, and more
5439 // should come in a near future.
5440
5441 // Shuffle with PSHUFD instruction folding loads. The first two patterns match
5442 // SSE2 loads, which are always promoted to v2i64. The last one should match
5443 // the SSE1 case, where the only legal load is v4f32, but there is no PSHUFD
5444 // in SSE2, how does it ever worked? Anyway, the pattern will remain here until
5445 // we investigate further.
5446 def : Pat<(v4i32 (X86PShufd (bc_v4i32 (memopv2i64 addr:$src1)),
5447                                  (i8 imm:$imm))),
5448           (VPSHUFDmi addr:$src1, imm:$imm)>, Requires<[HasAVX]>;
5449 def : Pat<(v4i32 (X86PShufd (bc_v4i32 (memopv2i64 addr:$src1)),
5450                                  (i8 imm:$imm))),
5451           (PSHUFDmi addr:$src1, imm:$imm)>;
5452 def : Pat<(v4i32 (X86PShufd (bc_v4i32 (memopv4f32 addr:$src1)),
5453                                  (i8 imm:$imm))),
5454           (PSHUFDmi addr:$src1, imm:$imm)>; // FIXME: has this ever worked?
5455
5456 // Shuffle with PSHUFD instruction.
5457 def : Pat<(v4f32 (X86PShufd VR128:$src1, (i8 imm:$imm))),
5458           (VPSHUFDri VR128:$src1, imm:$imm)>, Requires<[HasAVX]>;
5459 def : Pat<(v4f32 (X86PShufd VR128:$src1, (i8 imm:$imm))),
5460           (PSHUFDri VR128:$src1, imm:$imm)>;
5461
5462 def : Pat<(v4i32 (X86PShufd VR128:$src1, (i8 imm:$imm))),
5463           (VPSHUFDri VR128:$src1, imm:$imm)>, Requires<[HasAVX]>;
5464 def : Pat<(v4i32 (X86PShufd VR128:$src1, (i8 imm:$imm))),
5465           (PSHUFDri VR128:$src1, imm:$imm)>;
5466
5467 // Shuffle with SHUFPD instruction.
5468 def : Pat<(v2f64 (X86Shufps VR128:$src1,
5469                      (memopv2f64 addr:$src2), (i8 imm:$imm))),
5470           (VSHUFPDrmi VR128:$src1, addr:$src2, imm:$imm)>, Requires<[HasAVX]>;
5471 def : Pat<(v2f64 (X86Shufps VR128:$src1,
5472                      (memopv2f64 addr:$src2), (i8 imm:$imm))),
5473           (SHUFPDrmi VR128:$src1, addr:$src2, imm:$imm)>;
5474
5475 def : Pat<(v2i64 (X86Shufpd VR128:$src1, VR128:$src2, (i8 imm:$imm))),
5476           (VSHUFPDrri VR128:$src1, VR128:$src2, imm:$imm)>, Requires<[HasAVX]>;
5477 def : Pat<(v2i64 (X86Shufpd VR128:$src1, VR128:$src2, (i8 imm:$imm))),
5478           (SHUFPDrri VR128:$src1, VR128:$src2, imm:$imm)>;
5479
5480 def : Pat<(v2f64 (X86Shufpd VR128:$src1, VR128:$src2, (i8 imm:$imm))),
5481           (VSHUFPDrri VR128:$src1, VR128:$src2, imm:$imm)>, Requires<[HasAVX]>;
5482 def : Pat<(v2f64 (X86Shufpd VR128:$src1, VR128:$src2, (i8 imm:$imm))),
5483           (SHUFPDrri VR128:$src1, VR128:$src2, imm:$imm)>;
5484
5485 // Shuffle with SHUFPS instruction.
5486 def : Pat<(v4f32 (X86Shufps VR128:$src1,
5487                      (memopv4f32 addr:$src2), (i8 imm:$imm))),
5488           (VSHUFPSrmi VR128:$src1, addr:$src2, imm:$imm)>, Requires<[HasAVX]>;
5489 def : Pat<(v4f32 (X86Shufps VR128:$src1,
5490                      (memopv4f32 addr:$src2), (i8 imm:$imm))),
5491           (SHUFPSrmi VR128:$src1, addr:$src2, imm:$imm)>;
5492
5493 def : Pat<(v4f32 (X86Shufps VR128:$src1, VR128:$src2, (i8 imm:$imm))),
5494           (VSHUFPSrri VR128:$src1, VR128:$src2, imm:$imm)>, Requires<[HasAVX]>;
5495 def : Pat<(v4f32 (X86Shufps VR128:$src1, VR128:$src2, (i8 imm:$imm))),
5496           (SHUFPSrri VR128:$src1, VR128:$src2, imm:$imm)>;
5497
5498 def : Pat<(v4i32 (X86Shufps VR128:$src1,
5499                      (bc_v4i32 (memopv2i64 addr:$src2)), (i8 imm:$imm))),
5500           (VSHUFPSrmi VR128:$src1, addr:$src2, imm:$imm)>, Requires<[HasAVX]>;
5501 def : Pat<(v4i32 (X86Shufps VR128:$src1,
5502                      (bc_v4i32 (memopv2i64 addr:$src2)), (i8 imm:$imm))),
5503           (SHUFPSrmi VR128:$src1, addr:$src2, imm:$imm)>;
5504
5505 def : Pat<(v4i32 (X86Shufps VR128:$src1, VR128:$src2, (i8 imm:$imm))),
5506           (VSHUFPSrri VR128:$src1, VR128:$src2, imm:$imm)>, Requires<[HasAVX]>;
5507 def : Pat<(v4i32 (X86Shufps VR128:$src1, VR128:$src2, (i8 imm:$imm))),
5508           (SHUFPSrri VR128:$src1, VR128:$src2, imm:$imm)>;
5509
5510 // Shuffle with MOVHLPS instruction
5511 def : Pat<(v4f32 (X86Movhlps VR128:$src1, VR128:$src2)),
5512           (MOVHLPSrr VR128:$src1, VR128:$src2)>;
5513 def : Pat<(v4i32 (X86Movhlps VR128:$src1, VR128:$src2)),
5514           (MOVHLPSrr VR128:$src1, VR128:$src2)>;
5515
5516 // Shuffle with MOVDDUP instruction
5517 def : Pat<(X86Movddup (memopv2f64 addr:$src)),
5518           (VMOVDDUPrm addr:$src)>, Requires<[HasAVX]>;
5519 def : Pat<(X86Movddup (memopv2f64 addr:$src)),
5520           (MOVDDUPrm addr:$src)>;
5521
5522 def : Pat<(X86Movddup (bc_v4f32 (memopv2f64 addr:$src))),
5523           (VMOVDDUPrm addr:$src)>, Requires<[HasAVX]>;
5524 def : Pat<(X86Movddup (bc_v4f32 (memopv2f64 addr:$src))),
5525           (MOVDDUPrm addr:$src)>;
5526
5527 def : Pat<(X86Movddup (memopv2i64 addr:$src)),
5528           (VMOVDDUPrm addr:$src)>, Requires<[HasAVX]>;
5529 def : Pat<(X86Movddup (memopv2i64 addr:$src)),
5530           (MOVDDUPrm addr:$src)>;
5531
5532 def : Pat<(X86Movddup (bc_v4i32 (memopv2i64 addr:$src))),
5533           (VMOVDDUPrm addr:$src)>, Requires<[HasAVX]>;
5534 def : Pat<(X86Movddup (bc_v4i32 (memopv2i64 addr:$src))),
5535           (MOVDDUPrm addr:$src)>;
5536
5537 def : Pat<(X86Movddup (v2f64 (scalar_to_vector (loadf64 addr:$src)))),
5538           (VMOVDDUPrm addr:$src)>, Requires<[HasAVX]>;
5539 def : Pat<(X86Movddup (v2f64 (scalar_to_vector (loadf64 addr:$src)))),
5540           (MOVDDUPrm addr:$src)>;
5541
5542 def : Pat<(X86Movddup (bc_v2f64
5543                            (v2i64 (scalar_to_vector (loadi64 addr:$src))))),
5544           (VMOVDDUPrm addr:$src)>, Requires<[HasAVX]>;
5545 def : Pat<(X86Movddup (bc_v2f64
5546                            (v2i64 (scalar_to_vector (loadi64 addr:$src))))),
5547           (MOVDDUPrm addr:$src)>;
5548
5549 // Shuffle with UNPCKLPS
5550 def : Pat<(v4f32 (X86Unpcklps VR128:$src1, (memopv4f32 addr:$src2))),
5551           (VUNPCKLPSrm VR128:$src1, addr:$src2)>, Requires<[HasAVX]>;
5552 def : Pat<(v4f32 (X86Unpcklps VR128:$src1, (memopv4f32 addr:$src2))),
5553           (UNPCKLPSrm VR128:$src1, addr:$src2)>;
5554
5555 def : Pat<(v4f32 (X86Unpcklps VR128:$src1, VR128:$src2)),
5556           (VUNPCKLPSrr VR128:$src1, VR128:$src2)>, Requires<[HasAVX]>;
5557 def : Pat<(v4f32 (X86Unpcklps VR128:$src1, VR128:$src2)),
5558           (UNPCKLPSrr VR128:$src1, VR128:$src2)>;
5559
5560 // Shuffle with UNPCKHPS
5561 def : Pat<(v4f32 (X86Unpckhps VR128:$src1, (memopv4f32 addr:$src2))),
5562           (VUNPCKHPSrm VR128:$src1, addr:$src2)>, Requires<[HasAVX]>;
5563 def : Pat<(v4f32 (X86Unpckhps VR128:$src1, (memopv4f32 addr:$src2))),
5564           (UNPCKHPSrm VR128:$src1, addr:$src2)>;
5565
5566 def : Pat<(v4f32 (X86Unpckhps VR128:$src1, VR128:$src2)),
5567           (VUNPCKHPSrr VR128:$src1, VR128:$src2)>, Requires<[HasAVX]>;
5568 def : Pat<(v4f32 (X86Unpckhps VR128:$src1, VR128:$src2)),
5569           (UNPCKHPSrr VR128:$src1, VR128:$src2)>;
5570
5571 // Shuffle with UNPCKLPD
5572 def : Pat<(v2f64 (X86Unpcklpd VR128:$src1, (memopv2f64 addr:$src2))),
5573           (VUNPCKLPSrm VR128:$src1, addr:$src2)>, Requires<[HasAVX]>;
5574 def : Pat<(v2f64 (X86Unpcklpd VR128:$src1, (memopv2f64 addr:$src2))),
5575           (UNPCKLPSrm VR128:$src1, addr:$src2)>;
5576
5577 def : Pat<(v2f64 (X86Unpcklpd VR128:$src1, VR128:$src2)),
5578           (VUNPCKLPDrr VR128:$src1, VR128:$src2)>, Requires<[HasAVX]>;
5579 def : Pat<(v2f64 (X86Unpcklpd VR128:$src1, VR128:$src2)),
5580           (UNPCKLPDrr VR128:$src1, VR128:$src2)>;
5581
5582 // Shuffle with UNPCKHPD
5583 def : Pat<(v2f64 (X86Unpckhpd VR128:$src1, (memopv2f64 addr:$src2))),
5584           (VUNPCKLPSrm VR128:$src1, addr:$src2)>, Requires<[HasAVX]>;
5585 def : Pat<(v2f64 (X86Unpckhpd VR128:$src1, (memopv2f64 addr:$src2))),
5586           (UNPCKLPSrm VR128:$src1, addr:$src2)>;
5587
5588 def : Pat<(v2f64 (X86Unpckhpd VR128:$src1, VR128:$src2)),
5589           (VUNPCKHPDrr VR128:$src1, VR128:$src2)>, Requires<[HasAVX]>;
5590 def : Pat<(v2f64 (X86Unpckhpd VR128:$src1, VR128:$src2)),
5591           (UNPCKHPDrr VR128:$src1, VR128:$src2)>;
5592
5593 // Shuffle with PUNPCKLBW
5594 def : Pat<(v16i8 (X86Punpcklbw VR128:$src1,
5595                                    (bc_v16i8 (memopv2i64 addr:$src2)))),
5596           (PUNPCKLBWrm VR128:$src1, addr:$src2)>;
5597 def : Pat<(v16i8 (X86Punpcklbw VR128:$src1, VR128:$src2)),
5598           (PUNPCKLBWrr VR128:$src1, VR128:$src2)>;
5599
5600 // Shuffle with PUNPCKLWD
5601 def : Pat<(v8i16 (X86Punpcklwd VR128:$src1,
5602                                    (bc_v8i16 (memopv2i64 addr:$src2)))),
5603           (PUNPCKLWDrm VR128:$src1, addr:$src2)>;
5604 def : Pat<(v8i16 (X86Punpcklwd VR128:$src1, VR128:$src2)),
5605           (PUNPCKLWDrr VR128:$src1, VR128:$src2)>;
5606
5607 // Shuffle with PUNPCKLDQ
5608 def : Pat<(v4i32 (X86Punpckldq VR128:$src1,
5609                                    (bc_v4i32 (memopv2i64 addr:$src2)))),
5610           (PUNPCKLDQrm VR128:$src1, addr:$src2)>;
5611 def : Pat<(v4i32 (X86Punpckldq VR128:$src1, VR128:$src2)),
5612           (PUNPCKLDQrr VR128:$src1, VR128:$src2)>;
5613
5614 // Shuffle with PUNPCKLQDQ
5615 def : Pat<(v2i64 (X86Punpcklqdq VR128:$src1, (memopv2i64 addr:$src2))),
5616           (PUNPCKLQDQrm VR128:$src1, addr:$src2)>;
5617 def : Pat<(v2i64 (X86Punpcklqdq VR128:$src1, VR128:$src2)),
5618           (PUNPCKLQDQrr VR128:$src1, VR128:$src2)>;
5619
5620 // Shuffle with PUNPCKHBW
5621 def : Pat<(v16i8 (X86Punpckhbw VR128:$src1,
5622                                    (bc_v16i8 (memopv2i64 addr:$src2)))),
5623           (PUNPCKHBWrm VR128:$src1, addr:$src2)>;
5624 def : Pat<(v16i8 (X86Punpckhbw VR128:$src1, VR128:$src2)),
5625           (PUNPCKHBWrr VR128:$src1, VR128:$src2)>;
5626
5627 // Shuffle with PUNPCKHWD
5628 def : Pat<(v8i16 (X86Punpckhwd VR128:$src1,
5629                                    (bc_v8i16 (memopv2i64 addr:$src2)))),
5630           (PUNPCKHWDrm VR128:$src1, addr:$src2)>;
5631 def : Pat<(v8i16 (X86Punpckhwd VR128:$src1, VR128:$src2)),
5632           (PUNPCKHWDrr VR128:$src1, VR128:$src2)>;
5633
5634 // Shuffle with PUNPCKHDQ
5635 def : Pat<(v4i32 (X86Punpckhdq VR128:$src1,
5636                                    (bc_v4i32 (memopv2i64 addr:$src2)))),
5637           (PUNPCKHDQrm VR128:$src1, addr:$src2)>;
5638 def : Pat<(v4i32 (X86Punpckhdq VR128:$src1, VR128:$src2)),
5639           (PUNPCKHDQrr VR128:$src1, VR128:$src2)>;
5640
5641 // Shuffle with PUNPCKHQDQ
5642 def : Pat<(v2i64 (X86Punpckhqdq VR128:$src1, (memopv2i64 addr:$src2))),
5643           (PUNPCKHQDQrm VR128:$src1, addr:$src2)>;
5644 def : Pat<(v2i64 (X86Punpckhqdq VR128:$src1, VR128:$src2)),
5645           (PUNPCKHQDQrr VR128:$src1, VR128:$src2)>;
5646
5647 // Shuffle with MOVLHPS
5648 def : Pat<(X86Movlhps VR128:$src1,
5649                     (bc_v4f32 (v2f64 (scalar_to_vector (loadf64 addr:$src2))))),
5650           (MOVHPSrm VR128:$src1, addr:$src2)>;
5651 def : Pat<(X86Movlhps VR128:$src1,
5652                     (bc_v4i32 (v2i64 (X86vzload addr:$src2)))),
5653           (MOVHPSrm VR128:$src1, addr:$src2)>;
5654 def : Pat<(v4f32 (X86Movlhps VR128:$src1, VR128:$src2)),
5655           (MOVLHPSrr VR128:$src1, VR128:$src2)>;
5656 def : Pat<(v4i32 (X86Movlhps VR128:$src1, VR128:$src2)),
5657           (MOVLHPSrr VR128:$src1, VR128:$src2)>;
5658 def : Pat<(v2i64 (X86Movlhps VR128:$src1, VR128:$src2)),
5659           (MOVLHPSrr (v2i64 VR128:$src1), VR128:$src2)>;
5660 // FIXME: Instead of X86Movddup, there should be a X86Movlhps here, the problem
5661 // is during lowering, where it's not possible to recognize the load fold cause
5662 // it has two uses through a bitcast. One use disappears at isel time and the
5663 // fold opportunity reappears.
5664 def : Pat<(v2i64 (X86Movddup VR128:$src)),
5665           (MOVLHPSrr VR128:$src, VR128:$src)>;
5666 def : Pat<(v4f32 (X86Movddup VR128:$src)),
5667           (MOVLHPSrr VR128:$src, VR128:$src)>;
5668 def : Pat<(v2f64 (X86Movddup VR128:$src)),
5669           (UNPCKLPDrr VR128:$src, VR128:$src)>;
5670
5671 // Shuffle with MOVLHPD
5672 def : Pat<(v2f64 (X86Movlhpd VR128:$src1,
5673                     (scalar_to_vector (loadf64 addr:$src2)))),
5674           (MOVHPDrm VR128:$src1, addr:$src2)>;
5675 // FIXME: Instead of X86Unpcklpd, there should be a X86Movlhpd here, the problem
5676 // is during lowering, where it's not possible to recognize the load fold cause
5677 // it has two uses through a bitcast. One use disappears at isel time and the
5678 // fold opportunity reappears.
5679 def : Pat<(v2f64 (X86Unpcklpd VR128:$src1,
5680                     (scalar_to_vector (loadf64 addr:$src2)))),
5681           (MOVHPDrm VR128:$src1, addr:$src2)>;
5682
5683 // Shuffle with MOVSS
5684 def : Pat<(v4f32 (X86Movss VR128:$src1, (scalar_to_vector FR32:$src2))),
5685           (MOVSSrr VR128:$src1, FR32:$src2)>;
5686 def : Pat<(v4i32 (X86Movss VR128:$src1, VR128:$src2)),
5687           (MOVSSrr (v4i32 VR128:$src1),
5688                    (EXTRACT_SUBREG (v4i32 VR128:$src2), sub_ss))>;
5689 def : Pat<(v4f32 (X86Movss VR128:$src1, VR128:$src2)),
5690           (MOVSSrr (v4f32 VR128:$src1),
5691                    (EXTRACT_SUBREG (v4f32 VR128:$src2), sub_ss))>;
5692 // FIXME: Instead of a X86Movss there should be a X86Movlps here, the problem
5693 // is during lowering, where it's not possible to recognize the load fold cause
5694 // it has two uses through a bitcast. One use disappears at isel time and the
5695 // fold opportunity reappears.
5696 def : Pat<(X86Movss VR128:$src1,
5697                     (bc_v4i32 (v2i64 (load addr:$src2)))),
5698           (MOVLPSrm VR128:$src1, addr:$src2)>;
5699
5700 // Shuffle with MOVSD
5701 def : Pat<(v2f64 (X86Movsd VR128:$src1, (scalar_to_vector FR64:$src2))),
5702           (MOVSDrr VR128:$src1, FR64:$src2)>;
5703 def : Pat<(v2i64 (X86Movsd VR128:$src1, VR128:$src2)),
5704           (MOVSDrr (v2i64 VR128:$src1),
5705                    (EXTRACT_SUBREG (v2i64 VR128:$src2), sub_sd))>;
5706 def : Pat<(v2f64 (X86Movsd VR128:$src1, VR128:$src2)),
5707           (MOVSDrr (v2f64 VR128:$src1),
5708                    (EXTRACT_SUBREG (v2f64 VR128:$src2), sub_sd))>;
5709 def : Pat<(v4f32 (X86Movsd VR128:$src1, VR128:$src2)),
5710           (MOVSDrr VR128:$src1, (EXTRACT_SUBREG (v4f32 VR128:$src2), sub_sd))>;
5711 def : Pat<(v4i32 (X86Movsd VR128:$src1, VR128:$src2)),
5712           (MOVSDrr VR128:$src1, (EXTRACT_SUBREG (v4i32 VR128:$src2), sub_sd))>;
5713
5714 // Shuffle with MOVSHDUP
5715 def : Pat<(v4i32 (X86Movshdup VR128:$src)),
5716           (MOVSHDUPrr VR128:$src)>;
5717 def : Pat<(X86Movshdup (bc_v4i32 (memopv2i64 addr:$src))),
5718           (MOVSHDUPrm addr:$src)>;
5719
5720 def : Pat<(v4f32 (X86Movshdup VR128:$src)),
5721           (MOVSHDUPrr VR128:$src)>;
5722 def : Pat<(X86Movshdup (memopv4f32 addr:$src)),
5723           (MOVSHDUPrm addr:$src)>;
5724
5725 // Shuffle with MOVSLDUP
5726 def : Pat<(v4i32 (X86Movsldup VR128:$src)),
5727           (MOVSLDUPrr VR128:$src)>;
5728 def : Pat<(X86Movsldup (bc_v4i32 (memopv2i64 addr:$src))),
5729           (MOVSLDUPrm addr:$src)>;
5730
5731 def : Pat<(v4f32 (X86Movsldup VR128:$src)),
5732           (MOVSLDUPrr VR128:$src)>;
5733 def : Pat<(X86Movsldup (memopv4f32 addr:$src)),
5734           (MOVSLDUPrm addr:$src)>;
5735
5736 // Shuffle with PSHUFHW
5737 def : Pat<(v8i16 (X86PShufhw VR128:$src, (i8 imm:$imm))),
5738           (PSHUFHWri VR128:$src, imm:$imm)>;
5739 def : Pat<(v8i16 (X86PShufhw (bc_v8i16 (memopv2i64 addr:$src)), (i8 imm:$imm))),
5740           (PSHUFHWmi addr:$src, imm:$imm)>;
5741
5742 // Shuffle with PSHUFLW
5743 def : Pat<(v8i16 (X86PShuflw VR128:$src, (i8 imm:$imm))),
5744           (PSHUFLWri VR128:$src, imm:$imm)>;
5745 def : Pat<(v8i16 (X86PShuflw (bc_v8i16 (memopv2i64 addr:$src)), (i8 imm:$imm))),
5746           (PSHUFLWmi addr:$src, imm:$imm)>;
5747
5748 // Shuffle with PALIGN
5749 def : Pat<(v4i32 (X86PAlign VR128:$src1, VR128:$src2, (i8 imm:$imm))),
5750           (PALIGNR128rr VR128:$src2, VR128:$src1, imm:$imm)>;
5751 def : Pat<(v4f32 (X86PAlign VR128:$src1, VR128:$src2, (i8 imm:$imm))),
5752           (PALIGNR128rr VR128:$src2, VR128:$src1, imm:$imm)>;
5753 def : Pat<(v8i16 (X86PAlign VR128:$src1, VR128:$src2, (i8 imm:$imm))),
5754           (PALIGNR128rr VR128:$src2, VR128:$src1, imm:$imm)>;
5755 def : Pat<(v16i8 (X86PAlign VR128:$src1, VR128:$src2, (i8 imm:$imm))),
5756           (PALIGNR128rr VR128:$src2, VR128:$src1, imm:$imm)>;
5757
5758 // Shuffle with MOVLPS
5759 def : Pat<(v4f32 (X86Movlps VR128:$src1, (load addr:$src2))),
5760           (MOVLPSrm VR128:$src1, addr:$src2)>;
5761 def : Pat<(v4i32 (X86Movlps VR128:$src1, (load addr:$src2))),
5762           (MOVLPSrm VR128:$src1, addr:$src2)>;
5763 def : Pat<(X86Movlps VR128:$src1,
5764                     (bc_v4f32 (v2f64 (scalar_to_vector (loadf64 addr:$src2))))),
5765           (MOVLPSrm VR128:$src1, addr:$src2)>;
5766
5767 // Shuffle with MOVLPD
5768 def : Pat<(v2f64 (X86Movlpd VR128:$src1, (load addr:$src2))),
5769           (MOVLPDrm VR128:$src1, addr:$src2)>;
5770 def : Pat<(v2i64 (X86Movlpd VR128:$src1, (load addr:$src2))),
5771           (MOVLPDrm VR128:$src1, addr:$src2)>;
5772 def : Pat<(v2f64 (X86Movlpd VR128:$src1,
5773                             (scalar_to_vector (loadf64 addr:$src2)))),
5774           (MOVLPDrm VR128:$src1, addr:$src2)>;
5775
5776 // Extra patterns to match stores with MOVHPS/PD and MOVLPS/PD
5777 def : Pat<(store (f64 (vector_extract
5778           (v2f64 (X86Unpckhps VR128:$src, (undef))), (iPTR 0))),addr:$dst),
5779           (MOVHPSmr addr:$dst, VR128:$src)>;
5780 def : Pat<(store (f64 (vector_extract
5781           (v2f64 (X86Unpckhpd VR128:$src, (undef))), (iPTR 0))),addr:$dst),
5782           (MOVHPDmr addr:$dst, VR128:$src)>;
5783
5784 def : Pat<(store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)),addr:$src1),
5785           (MOVLPSmr addr:$src1, VR128:$src2)>;
5786 def : Pat<(store (v4i32 (X86Movlps
5787                  (bc_v4i32 (loadv2i64 addr:$src1)), VR128:$src2)), addr:$src1),
5788           (MOVLPSmr addr:$src1, VR128:$src2)>;
5789
5790 def : Pat<(store (v2f64 (X86Movlpd (load addr:$src1), VR128:$src2)),addr:$src1),
5791           (MOVLPDmr addr:$src1, VR128:$src2)>;
5792 def : Pat<(store (v2i64 (X86Movlpd (load addr:$src1), VR128:$src2)),addr:$src1),
5793           (MOVLPDmr addr:$src1, VR128:$src2)>;