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