Remove mode specific disassembler classes and just call X86GenericDisassembler constr...
[oota-llvm.git] / lib / Target / X86 / X86InstrInfo.td
1 //===- X86InstrInfo.td - Main X86 Instruction Definition ---*- 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 instruction set, defining the instructions, and
11 // properties of the instructions which are needed for code generation, machine
12 // code emission, and analysis.
13 //
14 //===----------------------------------------------------------------------===//
15
16 //===----------------------------------------------------------------------===//
17 // X86 specific DAG Nodes.
18 //
19
20 def SDTIntShiftDOp: SDTypeProfile<1, 3,
21                                   [SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>,
22                                    SDTCisInt<0>, SDTCisInt<3>]>;
23
24 def SDTX86CmpTest : SDTypeProfile<1, 2, [SDTCisVT<0, i32>, SDTCisSameAs<1, 2>]>;
25
26 def SDTX86Cmpsd : SDTypeProfile<1, 3, [SDTCisVT<0, f64>, SDTCisSameAs<1, 2>, SDTCisVT<3, i8>]>;
27 def SDTX86Cmpss : SDTypeProfile<1, 3, [SDTCisVT<0, f32>, SDTCisSameAs<1, 2>, SDTCisVT<3, i8>]>;
28
29 def SDTX86Cmov    : SDTypeProfile<1, 4,
30                                   [SDTCisSameAs<0, 1>, SDTCisSameAs<1, 2>,
31                                    SDTCisVT<3, i8>, SDTCisVT<4, i32>]>;
32
33 // Unary and binary operator instructions that set EFLAGS as a side-effect.
34 def SDTUnaryArithWithFlags : SDTypeProfile<2, 1,
35                                            [SDTCisInt<0>, SDTCisVT<1, i32>]>;
36
37 def SDTBinaryArithWithFlags : SDTypeProfile<2, 2,
38                                             [SDTCisSameAs<0, 2>,
39                                              SDTCisSameAs<0, 3>,
40                                              SDTCisInt<0>, SDTCisVT<1, i32>]>;
41
42 // SDTBinaryArithWithFlagsInOut - RES1, EFLAGS = op LHS, RHS, EFLAGS
43 def SDTBinaryArithWithFlagsInOut : SDTypeProfile<2, 3,
44                                             [SDTCisSameAs<0, 2>,
45                                              SDTCisSameAs<0, 3>,
46                                              SDTCisInt<0>,
47                                              SDTCisVT<1, i32>,
48                                              SDTCisVT<4, i32>]>;
49 // RES1, RES2, FLAGS = op LHS, RHS
50 def SDT2ResultBinaryArithWithFlags : SDTypeProfile<3, 2,
51                                             [SDTCisSameAs<0, 1>,
52                                              SDTCisSameAs<0, 2>,
53                                              SDTCisSameAs<0, 3>,
54                                              SDTCisInt<0>, SDTCisVT<1, i32>]>;
55 def SDTX86BrCond  : SDTypeProfile<0, 3,
56                                   [SDTCisVT<0, OtherVT>,
57                                    SDTCisVT<1, i8>, SDTCisVT<2, i32>]>;
58
59 def SDTX86SetCC   : SDTypeProfile<1, 2,
60                                   [SDTCisVT<0, i8>,
61                                    SDTCisVT<1, i8>, SDTCisVT<2, i32>]>;
62 def SDTX86SetCC_C : SDTypeProfile<1, 2,
63                                   [SDTCisInt<0>,
64                                    SDTCisVT<1, i8>, SDTCisVT<2, i32>]>;
65
66 def SDTX86cas : SDTypeProfile<0, 3, [SDTCisPtrTy<0>, SDTCisInt<1>,
67                                      SDTCisVT<2, i8>]>;
68 def SDTX86caspair : SDTypeProfile<0, 1, [SDTCisPtrTy<0>]>;
69
70 def SDTX86atomicBinary : SDTypeProfile<2, 3, [SDTCisInt<0>, SDTCisInt<1>,
71                                 SDTCisPtrTy<2>, SDTCisInt<3>,SDTCisInt<4>]>;
72 def SDTX86Ret     : SDTypeProfile<0, -1, [SDTCisVT<0, i16>]>;
73
74 def SDT_X86CallSeqStart : SDCallSeqStart<[SDTCisVT<0, i32>]>;
75 def SDT_X86CallSeqEnd   : SDCallSeqEnd<[SDTCisVT<0, i32>,
76                                         SDTCisVT<1, i32>]>;
77
78 def SDT_X86Call   : SDTypeProfile<0, -1, [SDTCisVT<0, iPTR>]>;
79
80 def SDT_X86VASTART_SAVE_XMM_REGS : SDTypeProfile<0, -1, [SDTCisVT<0, i8>,
81                                                          SDTCisVT<1, iPTR>,
82                                                          SDTCisVT<2, iPTR>]>;
83
84 def SDT_X86VAARG_64 : SDTypeProfile<1, -1, [SDTCisPtrTy<0>,
85                                             SDTCisPtrTy<1>,
86                                             SDTCisVT<2, i32>,
87                                             SDTCisVT<3, i8>,
88                                             SDTCisVT<4, i32>]>;
89
90 def SDTX86RepStr  : SDTypeProfile<0, 1, [SDTCisVT<0, OtherVT>]>;
91
92 def SDTX86Void    : SDTypeProfile<0, 0, []>;
93
94 def SDTX86Wrapper : SDTypeProfile<1, 1, [SDTCisSameAs<0, 1>, SDTCisPtrTy<0>]>;
95
96 def SDT_X86TLSADDR : SDTypeProfile<0, 1, [SDTCisInt<0>]>;
97
98 def SDT_X86TLSCALL : SDTypeProfile<0, 1, [SDTCisInt<0>]>;
99
100 def SDT_X86SEG_ALLOCA : SDTypeProfile<1, 1, [SDTCisVT<0, iPTR>, SDTCisVT<1, iPTR>]>;
101
102 def SDT_X86EHRET : SDTypeProfile<0, 1, [SDTCisInt<0>]>;
103
104 def SDT_X86TCRET : SDTypeProfile<0, 2, [SDTCisPtrTy<0>, SDTCisVT<1, i32>]>;
105
106 def SDT_X86MEMBARRIER : SDTypeProfile<0, 0, []>;
107 def SDT_X86MEMBARRIERNoSSE : SDTypeProfile<0, 1, [SDTCisInt<0>]>;
108
109 def X86MemBarrier : SDNode<"X86ISD::MEMBARRIER", SDT_X86MEMBARRIER,
110                             [SDNPHasChain]>;
111 def X86MemBarrierNoSSE : SDNode<"X86ISD::MEMBARRIER", SDT_X86MEMBARRIERNoSSE,
112                                 [SDNPHasChain]>;
113 def X86MFence : SDNode<"X86ISD::MFENCE", SDT_X86MEMBARRIER,
114                         [SDNPHasChain]>;
115 def X86SFence : SDNode<"X86ISD::SFENCE", SDT_X86MEMBARRIER,
116                         [SDNPHasChain]>;
117 def X86LFence : SDNode<"X86ISD::LFENCE", SDT_X86MEMBARRIER,
118                         [SDNPHasChain]>;
119
120
121 def X86bsf     : SDNode<"X86ISD::BSF",      SDTUnaryArithWithFlags>;
122 def X86bsr     : SDNode<"X86ISD::BSR",      SDTUnaryArithWithFlags>;
123 def X86shld    : SDNode<"X86ISD::SHLD",     SDTIntShiftDOp>;
124 def X86shrd    : SDNode<"X86ISD::SHRD",     SDTIntShiftDOp>;
125
126 def X86cmp     : SDNode<"X86ISD::CMP" ,     SDTX86CmpTest>;
127 def X86bt      : SDNode<"X86ISD::BT",       SDTX86CmpTest>;
128
129 def X86cmov    : SDNode<"X86ISD::CMOV",     SDTX86Cmov>;
130 def X86brcond  : SDNode<"X86ISD::BRCOND",   SDTX86BrCond,
131                         [SDNPHasChain]>;
132 def X86setcc   : SDNode<"X86ISD::SETCC",    SDTX86SetCC>;
133 def X86setcc_c : SDNode<"X86ISD::SETCC_CARRY", SDTX86SetCC_C>;
134
135 def X86cas : SDNode<"X86ISD::LCMPXCHG_DAG", SDTX86cas,
136                         [SDNPHasChain, SDNPInGlue, SDNPOutGlue, SDNPMayStore,
137                          SDNPMayLoad, SDNPMemOperand]>;
138 def X86cas8 : SDNode<"X86ISD::LCMPXCHG8_DAG", SDTX86caspair,
139                         [SDNPHasChain, SDNPInGlue, SDNPOutGlue, SDNPMayStore,
140                          SDNPMayLoad, SDNPMemOperand]>;
141 def X86cas16 : SDNode<"X86ISD::LCMPXCHG16_DAG", SDTX86caspair,
142                         [SDNPHasChain, SDNPInGlue, SDNPOutGlue, SDNPMayStore,
143                          SDNPMayLoad, SDNPMemOperand]>;
144
145 def X86AtomAdd64 : SDNode<"X86ISD::ATOMADD64_DAG", SDTX86atomicBinary,
146                         [SDNPHasChain, SDNPMayStore,
147                          SDNPMayLoad, SDNPMemOperand]>;
148 def X86AtomSub64 : SDNode<"X86ISD::ATOMSUB64_DAG", SDTX86atomicBinary,
149                         [SDNPHasChain, SDNPMayStore,
150                          SDNPMayLoad, SDNPMemOperand]>;
151 def X86AtomOr64 : SDNode<"X86ISD::ATOMOR64_DAG", SDTX86atomicBinary,
152                         [SDNPHasChain, SDNPMayStore,
153                          SDNPMayLoad, SDNPMemOperand]>;
154 def X86AtomXor64 : SDNode<"X86ISD::ATOMXOR64_DAG", SDTX86atomicBinary,
155                         [SDNPHasChain, SDNPMayStore,
156                          SDNPMayLoad, SDNPMemOperand]>;
157 def X86AtomAnd64 : SDNode<"X86ISD::ATOMAND64_DAG", SDTX86atomicBinary,
158                         [SDNPHasChain, SDNPMayStore,
159                          SDNPMayLoad, SDNPMemOperand]>;
160 def X86AtomNand64 : SDNode<"X86ISD::ATOMNAND64_DAG", SDTX86atomicBinary,
161                         [SDNPHasChain, SDNPMayStore,
162                          SDNPMayLoad, SDNPMemOperand]>;
163 def X86AtomSwap64 : SDNode<"X86ISD::ATOMSWAP64_DAG", SDTX86atomicBinary,
164                         [SDNPHasChain, SDNPMayStore,
165                          SDNPMayLoad, SDNPMemOperand]>;
166 def X86retflag : SDNode<"X86ISD::RET_FLAG", SDTX86Ret,
167                         [SDNPHasChain, SDNPOptInGlue, SDNPVariadic]>;
168
169 def X86vastart_save_xmm_regs :
170                  SDNode<"X86ISD::VASTART_SAVE_XMM_REGS",
171                         SDT_X86VASTART_SAVE_XMM_REGS,
172                         [SDNPHasChain, SDNPVariadic]>;
173 def X86vaarg64 :
174                  SDNode<"X86ISD::VAARG_64", SDT_X86VAARG_64,
175                         [SDNPHasChain, SDNPMayLoad, SDNPMayStore,
176                          SDNPMemOperand]>;
177 def X86callseq_start :
178                  SDNode<"ISD::CALLSEQ_START", SDT_X86CallSeqStart,
179                         [SDNPHasChain, SDNPOutGlue]>;
180 def X86callseq_end :
181                  SDNode<"ISD::CALLSEQ_END",   SDT_X86CallSeqEnd,
182                         [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>;
183
184 def X86call    : SDNode<"X86ISD::CALL",     SDT_X86Call,
185                         [SDNPHasChain, SDNPOutGlue, SDNPOptInGlue,
186                          SDNPVariadic]>;
187
188 def X86rep_stos: SDNode<"X86ISD::REP_STOS", SDTX86RepStr,
189                         [SDNPHasChain, SDNPInGlue, SDNPOutGlue, SDNPMayStore]>;
190 def X86rep_movs: SDNode<"X86ISD::REP_MOVS", SDTX86RepStr,
191                         [SDNPHasChain, SDNPInGlue, SDNPOutGlue, SDNPMayStore,
192                          SDNPMayLoad]>;
193
194 def X86rdtsc   : SDNode<"X86ISD::RDTSC_DAG", SDTX86Void,
195                         [SDNPHasChain, SDNPOutGlue, SDNPSideEffect]>;
196
197 def X86Wrapper    : SDNode<"X86ISD::Wrapper",     SDTX86Wrapper>;
198 def X86WrapperRIP : SDNode<"X86ISD::WrapperRIP",  SDTX86Wrapper>;
199
200 def X86tlsaddr : SDNode<"X86ISD::TLSADDR", SDT_X86TLSADDR,
201                         [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>;
202
203 def X86ehret : SDNode<"X86ISD::EH_RETURN", SDT_X86EHRET,
204                         [SDNPHasChain]>;
205
206 def X86tcret : SDNode<"X86ISD::TC_RETURN", SDT_X86TCRET,
207                         [SDNPHasChain,  SDNPOptInGlue, SDNPVariadic]>;
208
209 def X86add_flag  : SDNode<"X86ISD::ADD",  SDTBinaryArithWithFlags,
210                           [SDNPCommutative]>;
211 def X86sub_flag  : SDNode<"X86ISD::SUB",  SDTBinaryArithWithFlags>;
212 def X86smul_flag : SDNode<"X86ISD::SMUL", SDTBinaryArithWithFlags,
213                           [SDNPCommutative]>;
214 def X86umul_flag : SDNode<"X86ISD::UMUL", SDT2ResultBinaryArithWithFlags,
215                           [SDNPCommutative]>;
216 def X86adc_flag  : SDNode<"X86ISD::ADC",  SDTBinaryArithWithFlagsInOut>;
217 def X86sbb_flag  : SDNode<"X86ISD::SBB",  SDTBinaryArithWithFlagsInOut>;
218
219 def X86inc_flag  : SDNode<"X86ISD::INC",  SDTUnaryArithWithFlags>;
220 def X86dec_flag  : SDNode<"X86ISD::DEC",  SDTUnaryArithWithFlags>;
221 def X86or_flag   : SDNode<"X86ISD::OR",   SDTBinaryArithWithFlags,
222                           [SDNPCommutative]>;
223 def X86xor_flag  : SDNode<"X86ISD::XOR",  SDTBinaryArithWithFlags,
224                           [SDNPCommutative]>;
225 def X86and_flag  : SDNode<"X86ISD::AND",  SDTBinaryArithWithFlags,
226                           [SDNPCommutative]>;
227 def X86andn_flag : SDNode<"X86ISD::ANDN", SDTBinaryArithWithFlags>;
228
229 def X86blsi_flag : SDNode<"X86ISD::BLSI",  SDTUnaryArithWithFlags>;
230 def X86blsmsk_flag : SDNode<"X86ISD::BLSMSK",  SDTUnaryArithWithFlags>;
231 def X86blsr_flag : SDNode<"X86ISD::BLSR",  SDTUnaryArithWithFlags>;
232
233 def X86mul_imm : SDNode<"X86ISD::MUL_IMM", SDTIntBinOp>;
234
235 def X86WinAlloca : SDNode<"X86ISD::WIN_ALLOCA", SDTX86Void,
236                           [SDNPHasChain, SDNPInGlue, SDNPOutGlue]>;
237
238 def X86SegAlloca : SDNode<"X86ISD::SEG_ALLOCA", SDT_X86SEG_ALLOCA,
239                           [SDNPHasChain]>;
240
241 def X86TLSCall : SDNode<"X86ISD::TLSCALL", SDT_X86TLSCALL,
242                         [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>;
243
244 //===----------------------------------------------------------------------===//
245 // X86 Operand Definitions.
246 //
247
248 // A version of ptr_rc which excludes SP, ESP, and RSP. This is used for
249 // the index operand of an address, to conform to x86 encoding restrictions.
250 def ptr_rc_nosp : PointerLikeRegClass<1>;
251
252 // *mem - Operand definitions for the funky X86 addressing mode operands.
253 //
254 def X86MemAsmOperand : AsmOperandClass {
255   let Name = "Mem";
256   let SuperClasses = [];
257 }
258 def X86AbsMemAsmOperand : AsmOperandClass {
259   let Name = "AbsMem";
260   let SuperClasses = [X86MemAsmOperand];
261 }
262 class X86MemOperand<string printMethod> : Operand<iPTR> {
263   let PrintMethod = printMethod;
264   let MIOperandInfo = (ops ptr_rc, i8imm, ptr_rc_nosp, i32imm, i8imm);
265   let ParserMatchClass = X86MemAsmOperand;
266 }
267
268 let OperandType = "OPERAND_MEMORY" in {
269 def opaque32mem : X86MemOperand<"printopaquemem">;
270 def opaque48mem : X86MemOperand<"printopaquemem">;
271 def opaque80mem : X86MemOperand<"printopaquemem">;
272 def opaque512mem : X86MemOperand<"printopaquemem">;
273
274 def i8mem   : X86MemOperand<"printi8mem">;
275 def i16mem  : X86MemOperand<"printi16mem">;
276 def i32mem  : X86MemOperand<"printi32mem">;
277 def i64mem  : X86MemOperand<"printi64mem">;
278 def i128mem : X86MemOperand<"printi128mem">;
279 def i256mem : X86MemOperand<"printi256mem">;
280 def f32mem  : X86MemOperand<"printf32mem">;
281 def f64mem  : X86MemOperand<"printf64mem">;
282 def f80mem  : X86MemOperand<"printf80mem">;
283 def f128mem : X86MemOperand<"printf128mem">;
284 def f256mem : X86MemOperand<"printf256mem">;
285 }
286
287 // A version of i8mem for use on x86-64 that uses GR64_NOREX instead of
288 // plain GR64, so that it doesn't potentially require a REX prefix.
289 def i8mem_NOREX : Operand<i64> {
290   let PrintMethod = "printi8mem";
291   let MIOperandInfo = (ops GR64_NOREX, i8imm, GR64_NOREX_NOSP, i32imm, i8imm);
292   let ParserMatchClass = X86MemAsmOperand;
293   let OperandType = "OPERAND_MEMORY";
294 }
295
296 // GPRs available for tailcall.
297 // It represents GR64_TC or GR64_TCW64.
298 def ptr_rc_tailcall : PointerLikeRegClass<2>;
299
300 // Special i32mem for addresses of load folding tail calls. These are not
301 // allowed to use callee-saved registers since they must be scheduled
302 // after callee-saved register are popped.
303 def i32mem_TC : Operand<i32> {
304   let PrintMethod = "printi32mem";
305   let MIOperandInfo = (ops GR32_TC, i8imm, GR32_TC, i32imm, i8imm);
306   let ParserMatchClass = X86MemAsmOperand;
307   let OperandType = "OPERAND_MEMORY";
308 }
309
310 // Special i64mem for addresses of load folding tail calls. These are not
311 // allowed to use callee-saved registers since they must be scheduled
312 // after callee-saved register are popped.
313 def i64mem_TC : Operand<i64> {
314   let PrintMethod = "printi64mem";
315   let MIOperandInfo = (ops ptr_rc_tailcall, i8imm,
316                        ptr_rc_tailcall, i32imm, i8imm);
317   let ParserMatchClass = X86MemAsmOperand;
318   let OperandType = "OPERAND_MEMORY";
319 }
320
321 let OperandType = "OPERAND_PCREL",
322     ParserMatchClass = X86AbsMemAsmOperand,
323     PrintMethod = "print_pcrel_imm" in {
324 def i32imm_pcrel : Operand<i32>;
325 def i16imm_pcrel : Operand<i16>;
326
327 def offset8 : Operand<i64>;
328 def offset16 : Operand<i64>;
329 def offset32 : Operand<i64>;
330 def offset64 : Operand<i64>;
331
332 // Branch targets have OtherVT type and print as pc-relative values.
333 def brtarget : Operand<OtherVT>;
334 def brtarget8 : Operand<OtherVT>;
335
336 }
337
338 def SSECC : Operand<i8> {
339   let PrintMethod = "printSSECC";
340   let OperandType = "OPERAND_IMMEDIATE";
341 }
342
343 class ImmSExtAsmOperandClass : AsmOperandClass {
344   let SuperClasses = [ImmAsmOperand];
345   let RenderMethod = "addImmOperands";
346 }
347
348 class ImmZExtAsmOperandClass : AsmOperandClass {
349   let SuperClasses = [ImmAsmOperand];
350   let RenderMethod = "addImmOperands";
351 }
352
353 // Sign-extended immediate classes. We don't need to define the full lattice
354 // here because there is no instruction with an ambiguity between ImmSExti64i32
355 // and ImmSExti32i8.
356 //
357 // The strange ranges come from the fact that the assembler always works with
358 // 64-bit immediates, but for a 16-bit target value we want to accept both "-1"
359 // (which will be a -1ULL), and "0xFF" (-1 in 16-bits).
360
361 // [0, 0x7FFFFFFF]                                            |
362 //   [0xFFFFFFFF80000000, 0xFFFFFFFFFFFFFFFF]
363 def ImmSExti64i32AsmOperand : ImmSExtAsmOperandClass {
364   let Name = "ImmSExti64i32";
365 }
366
367 // [0, 0x0000007F] | [0x000000000000FF80, 0x000000000000FFFF] |
368 //   [0xFFFFFFFFFFFFFF80, 0xFFFFFFFFFFFFFFFF]
369 def ImmSExti16i8AsmOperand : ImmSExtAsmOperandClass {
370   let Name = "ImmSExti16i8";
371   let SuperClasses = [ImmSExti64i32AsmOperand];
372 }
373
374 // [0, 0x0000007F] | [0x00000000FFFFFF80, 0x00000000FFFFFFFF] |
375 //   [0xFFFFFFFFFFFFFF80, 0xFFFFFFFFFFFFFFFF]
376 def ImmSExti32i8AsmOperand : ImmSExtAsmOperandClass {
377   let Name = "ImmSExti32i8";
378 }
379
380 // [0, 0x000000FF]
381 def ImmZExtu32u8AsmOperand : ImmZExtAsmOperandClass {
382   let Name = "ImmZExtu32u8";
383 }
384
385
386 // [0, 0x0000007F]                                            |
387 //   [0xFFFFFFFFFFFFFF80, 0xFFFFFFFFFFFFFFFF]
388 def ImmSExti64i8AsmOperand : ImmSExtAsmOperandClass {
389   let Name = "ImmSExti64i8";
390   let SuperClasses = [ImmSExti16i8AsmOperand, ImmSExti32i8AsmOperand,
391                       ImmSExti64i32AsmOperand];
392 }
393
394 // A couple of more descriptive operand definitions.
395 // 16-bits but only 8 bits are significant.
396 def i16i8imm  : Operand<i16> {
397   let ParserMatchClass = ImmSExti16i8AsmOperand;
398   let OperandType = "OPERAND_IMMEDIATE";
399 }
400 // 32-bits but only 8 bits are significant.
401 def i32i8imm  : Operand<i32> {
402   let ParserMatchClass = ImmSExti32i8AsmOperand;
403   let OperandType = "OPERAND_IMMEDIATE";
404 }
405 // 32-bits but only 8 bits are significant, and those 8 bits are unsigned.
406 def u32u8imm  : Operand<i32> {
407   let ParserMatchClass = ImmZExtu32u8AsmOperand;
408   let OperandType = "OPERAND_IMMEDIATE";
409 }
410
411 // 64-bits but only 32 bits are significant.
412 def i64i32imm  : Operand<i64> {
413   let ParserMatchClass = ImmSExti64i32AsmOperand;
414   let OperandType = "OPERAND_IMMEDIATE";
415 }
416
417 // 64-bits but only 32 bits are significant, and those bits are treated as being
418 // pc relative.
419 def i64i32imm_pcrel : Operand<i64> {
420   let PrintMethod = "print_pcrel_imm";
421   let ParserMatchClass = X86AbsMemAsmOperand;
422   let OperandType = "OPERAND_PCREL";
423 }
424
425 // 64-bits but only 8 bits are significant.
426 def i64i8imm   : Operand<i64> {
427   let ParserMatchClass = ImmSExti64i8AsmOperand;
428   let OperandType = "OPERAND_IMMEDIATE";
429 }
430
431 def lea64_32mem : Operand<i32> {
432   let PrintMethod = "printi32mem";
433   let AsmOperandLowerMethod = "lower_lea64_32mem";
434   let MIOperandInfo = (ops GR32, i8imm, GR32_NOSP, i32imm, i8imm);
435   let ParserMatchClass = X86MemAsmOperand;
436 }
437
438
439 //===----------------------------------------------------------------------===//
440 // X86 Complex Pattern Definitions.
441 //
442
443 // Define X86 specific addressing mode.
444 def addr      : ComplexPattern<iPTR, 5, "SelectAddr", [], [SDNPWantParent]>;
445 def lea32addr : ComplexPattern<i32, 5, "SelectLEAAddr",
446                                [add, sub, mul, X86mul_imm, shl, or, frameindex],
447                                []>;
448 def tls32addr : ComplexPattern<i32, 5, "SelectTLSADDRAddr",
449                                [tglobaltlsaddr], []>;
450
451 def lea64addr : ComplexPattern<i64, 5, "SelectLEAAddr",
452                         [add, sub, mul, X86mul_imm, shl, or, frameindex,
453                          X86WrapperRIP], []>;
454
455 def tls64addr : ComplexPattern<i64, 5, "SelectTLSADDRAddr",
456                                [tglobaltlsaddr], []>;
457
458 //===----------------------------------------------------------------------===//
459 // X86 Instruction Predicate Definitions.
460 def HasCMov      : Predicate<"Subtarget->hasCMov()">;
461 def NoCMov       : Predicate<"!Subtarget->hasCMov()">;
462
463 def HasMMX       : Predicate<"Subtarget->hasMMX()">;
464 def Has3DNow     : Predicate<"Subtarget->has3DNow()">;
465 def Has3DNowA    : Predicate<"Subtarget->has3DNowA()">;
466 def HasSSE1      : Predicate<"Subtarget->hasSSE1()">;
467 def HasSSE2      : Predicate<"Subtarget->hasSSE2()">;
468 def HasSSE3      : Predicate<"Subtarget->hasSSE3()">;
469 def HasSSSE3     : Predicate<"Subtarget->hasSSSE3()">;
470 def HasSSE41     : Predicate<"Subtarget->hasSSE41()">;
471 def HasSSE42     : Predicate<"Subtarget->hasSSE42()">;
472 def HasSSE4A     : Predicate<"Subtarget->hasSSE4A()">;
473
474 def HasAVX       : Predicate<"Subtarget->hasAVX()">;
475 def HasAVX2      : Predicate<"Subtarget->hasAVX2()">;
476 def HasXMM       : Predicate<"Subtarget->hasXMM()">;
477 def HasXMMInt    : Predicate<"Subtarget->hasXMMInt()">;
478
479 def HasPOPCNT    : Predicate<"Subtarget->hasPOPCNT()">;
480 def HasAES       : Predicate<"Subtarget->hasAES()">;
481 def HasCLMUL     : Predicate<"Subtarget->hasCLMUL()">;
482 def HasFMA3      : Predicate<"Subtarget->hasFMA3()">;
483 def HasFMA4      : Predicate<"Subtarget->hasFMA4()">;
484 def HasXOP       : Predicate<"Subtarget->hasXOP()">;
485 def HasMOVBE     : Predicate<"Subtarget->hasMOVBE()">;
486 def HasRDRAND    : Predicate<"Subtarget->hasRDRAND()">;
487 def HasF16C      : Predicate<"Subtarget->hasF16C()">;
488 def HasFSGSBase  : Predicate<"Subtarget->hasFSGSBase()">;
489 def HasLZCNT     : Predicate<"Subtarget->hasLZCNT()">;
490 def HasBMI       : Predicate<"Subtarget->hasBMI()">;
491 def HasBMI2      : Predicate<"Subtarget->hasBMI2()">;
492 def FPStackf32   : Predicate<"!Subtarget->hasXMM()">;
493 def FPStackf64   : Predicate<"!Subtarget->hasXMMInt()">;
494 def HasCmpxchg16b: Predicate<"Subtarget->hasCmpxchg16b()">;
495 def In32BitMode  : Predicate<"!Subtarget->is64Bit()">,
496                              AssemblerPredicate<"!Mode64Bit">;
497 def In64BitMode  : Predicate<"Subtarget->is64Bit()">,
498                              AssemblerPredicate<"Mode64Bit">;
499 def IsWin64      : Predicate<"Subtarget->isTargetWin64()">;
500 def NotWin64     : Predicate<"!Subtarget->isTargetWin64()">;
501 def IsNaCl       : Predicate<"Subtarget->isTargetNaCl()">;
502 def NotNaCl      : Predicate<"!Subtarget->isTargetNaCl()">;
503 def SmallCode    : Predicate<"TM.getCodeModel() == CodeModel::Small">;
504 def KernelCode   : Predicate<"TM.getCodeModel() == CodeModel::Kernel">;
505 def FarData      : Predicate<"TM.getCodeModel() != CodeModel::Small &&"
506                              "TM.getCodeModel() != CodeModel::Kernel">;
507 def NearData     : Predicate<"TM.getCodeModel() == CodeModel::Small ||"
508                              "TM.getCodeModel() == CodeModel::Kernel">;
509 def IsStatic     : Predicate<"TM.getRelocationModel() == Reloc::Static">;
510 def IsNotPIC     : Predicate<"TM.getRelocationModel() != Reloc::PIC_">;
511 def OptForSize   : Predicate<"OptForSize">;
512 def OptForSpeed  : Predicate<"!OptForSize">;
513 def FastBTMem    : Predicate<"!Subtarget->isBTMemSlow()">;
514 def CallImmAddr  : Predicate<"Subtarget->IsLegalToCallImmediateAddr(TM)">;
515
516 //===----------------------------------------------------------------------===//
517 // X86 Instruction Format Definitions.
518 //
519
520 include "X86InstrFormats.td"
521
522 //===----------------------------------------------------------------------===//
523 // Pattern fragments.
524 //
525
526 // X86 specific condition code. These correspond to CondCode in
527 // X86InstrInfo.h. They must be kept in synch.
528 def X86_COND_A   : PatLeaf<(i8 0)>;  // alt. COND_NBE
529 def X86_COND_AE  : PatLeaf<(i8 1)>;  // alt. COND_NC
530 def X86_COND_B   : PatLeaf<(i8 2)>;  // alt. COND_C
531 def X86_COND_BE  : PatLeaf<(i8 3)>;  // alt. COND_NA
532 def X86_COND_E   : PatLeaf<(i8 4)>;  // alt. COND_Z
533 def X86_COND_G   : PatLeaf<(i8 5)>;  // alt. COND_NLE
534 def X86_COND_GE  : PatLeaf<(i8 6)>;  // alt. COND_NL
535 def X86_COND_L   : PatLeaf<(i8 7)>;  // alt. COND_NGE
536 def X86_COND_LE  : PatLeaf<(i8 8)>;  // alt. COND_NG
537 def X86_COND_NE  : PatLeaf<(i8 9)>;  // alt. COND_NZ
538 def X86_COND_NO  : PatLeaf<(i8 10)>;
539 def X86_COND_NP  : PatLeaf<(i8 11)>; // alt. COND_PO
540 def X86_COND_NS  : PatLeaf<(i8 12)>;
541 def X86_COND_O   : PatLeaf<(i8 13)>;
542 def X86_COND_P   : PatLeaf<(i8 14)>; // alt. COND_PE
543 def X86_COND_S   : PatLeaf<(i8 15)>;
544
545 let FastIselShouldIgnore = 1 in { // FastIsel should ignore all simm8 instrs.
546   def i16immSExt8  : ImmLeaf<i16, [{ return Imm == (int8_t)Imm; }]>;
547   def i32immSExt8  : ImmLeaf<i32, [{ return Imm == (int8_t)Imm; }]>;
548   def i64immSExt8  : ImmLeaf<i64, [{ return Imm == (int8_t)Imm; }]>;
549 }
550
551 def i64immSExt32 : ImmLeaf<i64, [{ return Imm == (int32_t)Imm; }]>;
552
553
554 // i64immZExt32 predicate - True if the 64-bit immediate fits in a 32-bit
555 // unsigned field.
556 def i64immZExt32 : ImmLeaf<i64, [{ return (uint64_t)Imm == (uint32_t)Imm; }]>;
557
558 def i64immZExt32SExt8 : ImmLeaf<i64, [{
559   return (uint64_t)Imm == (uint32_t)Imm && (int32_t)Imm == (int8_t)Imm;
560 }]>;
561
562 // Helper fragments for loads.
563 // It's always safe to treat a anyext i16 load as a i32 load if the i16 is
564 // known to be 32-bit aligned or better. Ditto for i8 to i16.
565 def loadi16 : PatFrag<(ops node:$ptr), (i16 (unindexedload node:$ptr)), [{
566   LoadSDNode *LD = cast<LoadSDNode>(N);
567   ISD::LoadExtType ExtType = LD->getExtensionType();
568   if (ExtType == ISD::NON_EXTLOAD)
569     return true;
570   if (ExtType == ISD::EXTLOAD)
571     return LD->getAlignment() >= 2 && !LD->isVolatile();
572   return false;
573 }]>;
574
575 def loadi16_anyext : PatFrag<(ops node:$ptr), (i32 (unindexedload node:$ptr)),[{
576   LoadSDNode *LD = cast<LoadSDNode>(N);
577   ISD::LoadExtType ExtType = LD->getExtensionType();
578   if (ExtType == ISD::EXTLOAD)
579     return LD->getAlignment() >= 2 && !LD->isVolatile();
580   return false;
581 }]>;
582
583 def loadi32 : PatFrag<(ops node:$ptr), (i32 (unindexedload node:$ptr)), [{
584   LoadSDNode *LD = cast<LoadSDNode>(N);
585   ISD::LoadExtType ExtType = LD->getExtensionType();
586   if (ExtType == ISD::NON_EXTLOAD)
587     return true;
588   if (ExtType == ISD::EXTLOAD)
589     return LD->getAlignment() >= 4 && !LD->isVolatile();
590   return false;
591 }]>;
592
593 def loadi8  : PatFrag<(ops node:$ptr), (i8  (load node:$ptr))>;
594 def loadi64 : PatFrag<(ops node:$ptr), (i64 (load node:$ptr))>;
595 def loadf32 : PatFrag<(ops node:$ptr), (f32 (load node:$ptr))>;
596 def loadf64 : PatFrag<(ops node:$ptr), (f64 (load node:$ptr))>;
597 def loadf80 : PatFrag<(ops node:$ptr), (f80 (load node:$ptr))>;
598
599 def sextloadi16i8  : PatFrag<(ops node:$ptr), (i16 (sextloadi8 node:$ptr))>;
600 def sextloadi32i8  : PatFrag<(ops node:$ptr), (i32 (sextloadi8 node:$ptr))>;
601 def sextloadi32i16 : PatFrag<(ops node:$ptr), (i32 (sextloadi16 node:$ptr))>;
602 def sextloadi64i8  : PatFrag<(ops node:$ptr), (i64 (sextloadi8 node:$ptr))>;
603 def sextloadi64i16 : PatFrag<(ops node:$ptr), (i64 (sextloadi16 node:$ptr))>;
604 def sextloadi64i32 : PatFrag<(ops node:$ptr), (i64 (sextloadi32 node:$ptr))>;
605
606 def zextloadi8i1   : PatFrag<(ops node:$ptr), (i8  (zextloadi1 node:$ptr))>;
607 def zextloadi16i1  : PatFrag<(ops node:$ptr), (i16 (zextloadi1 node:$ptr))>;
608 def zextloadi32i1  : PatFrag<(ops node:$ptr), (i32 (zextloadi1 node:$ptr))>;
609 def zextloadi16i8  : PatFrag<(ops node:$ptr), (i16 (zextloadi8 node:$ptr))>;
610 def zextloadi32i8  : PatFrag<(ops node:$ptr), (i32 (zextloadi8 node:$ptr))>;
611 def zextloadi32i16 : PatFrag<(ops node:$ptr), (i32 (zextloadi16 node:$ptr))>;
612 def zextloadi64i1  : PatFrag<(ops node:$ptr), (i64 (zextloadi1 node:$ptr))>;
613 def zextloadi64i8  : PatFrag<(ops node:$ptr), (i64 (zextloadi8 node:$ptr))>;
614 def zextloadi64i16 : PatFrag<(ops node:$ptr), (i64 (zextloadi16 node:$ptr))>;
615 def zextloadi64i32 : PatFrag<(ops node:$ptr), (i64 (zextloadi32 node:$ptr))>;
616
617 def extloadi8i1    : PatFrag<(ops node:$ptr), (i8  (extloadi1 node:$ptr))>;
618 def extloadi16i1   : PatFrag<(ops node:$ptr), (i16 (extloadi1 node:$ptr))>;
619 def extloadi32i1   : PatFrag<(ops node:$ptr), (i32 (extloadi1 node:$ptr))>;
620 def extloadi16i8   : PatFrag<(ops node:$ptr), (i16 (extloadi8 node:$ptr))>;
621 def extloadi32i8   : PatFrag<(ops node:$ptr), (i32 (extloadi8 node:$ptr))>;
622 def extloadi32i16  : PatFrag<(ops node:$ptr), (i32 (extloadi16 node:$ptr))>;
623 def extloadi64i1   : PatFrag<(ops node:$ptr), (i64 (extloadi1 node:$ptr))>;
624 def extloadi64i8   : PatFrag<(ops node:$ptr), (i64 (extloadi8 node:$ptr))>;
625 def extloadi64i16  : PatFrag<(ops node:$ptr), (i64 (extloadi16 node:$ptr))>;
626 def extloadi64i32  : PatFrag<(ops node:$ptr), (i64 (extloadi32 node:$ptr))>;
627
628
629 // An 'and' node with a single use.
630 def and_su : PatFrag<(ops node:$lhs, node:$rhs), (and node:$lhs, node:$rhs), [{
631   return N->hasOneUse();
632 }]>;
633 // An 'srl' node with a single use.
634 def srl_su : PatFrag<(ops node:$lhs, node:$rhs), (srl node:$lhs, node:$rhs), [{
635   return N->hasOneUse();
636 }]>;
637 // An 'trunc' node with a single use.
638 def trunc_su : PatFrag<(ops node:$src), (trunc node:$src), [{
639   return N->hasOneUse();
640 }]>;
641
642 //===----------------------------------------------------------------------===//
643 // Instruction list.
644 //
645
646 // Nop
647 let neverHasSideEffects = 1 in {
648   def NOOP : I<0x90, RawFrm, (outs), (ins), "nop", []>;
649   def NOOPW : I<0x1f, MRM0m, (outs), (ins i16mem:$zero),
650                 "nop{w}\t$zero", []>, TB, OpSize;
651   def NOOPL : I<0x1f, MRM0m, (outs), (ins i32mem:$zero),
652                 "nop{l}\t$zero", []>, TB;
653 }
654
655
656 // Constructing a stack frame.
657 def ENTER : Ii16<0xC8, RawFrmImm8, (outs), (ins i16imm:$len, i8imm:$lvl),
658                  "enter\t$len, $lvl", []>;
659
660 let Defs = [EBP, ESP], Uses = [EBP, ESP], mayLoad = 1, neverHasSideEffects=1 in
661 def LEAVE    : I<0xC9, RawFrm,
662                  (outs), (ins), "leave", []>, Requires<[In32BitMode]>;
663
664 let Defs = [RBP,RSP], Uses = [RBP,RSP], mayLoad = 1, neverHasSideEffects = 1 in
665 def LEAVE64  : I<0xC9, RawFrm,
666                  (outs), (ins), "leave", []>, Requires<[In64BitMode]>;
667
668 //===----------------------------------------------------------------------===//
669 //  Miscellaneous Instructions.
670 //
671
672 let Defs = [ESP], Uses = [ESP], neverHasSideEffects=1 in {
673 let mayLoad = 1 in {
674 def POP16r  : I<0x58, AddRegFrm, (outs GR16:$reg), (ins), "pop{w}\t$reg", []>,
675   OpSize;
676 def POP32r  : I<0x58, AddRegFrm, (outs GR32:$reg), (ins), "pop{l}\t$reg", []>;
677 def POP16rmr: I<0x8F, MRM0r, (outs GR16:$reg), (ins), "pop{w}\t$reg", []>,
678   OpSize;
679 def POP16rmm: I<0x8F, MRM0m, (outs i16mem:$dst), (ins), "pop{w}\t$dst", []>,
680   OpSize;
681 def POP32rmr: I<0x8F, MRM0r, (outs GR32:$reg), (ins), "pop{l}\t$reg", []>;
682 def POP32rmm: I<0x8F, MRM0m, (outs i32mem:$dst), (ins), "pop{l}\t$dst", []>;
683
684 def POPF16   : I<0x9D, RawFrm, (outs), (ins), "popf{w}", []>, OpSize;
685 def POPF32   : I<0x9D, RawFrm, (outs), (ins), "popf{l|d}", []>,
686                Requires<[In32BitMode]>;
687 }
688
689 let mayStore = 1 in {
690 def PUSH16r  : I<0x50, AddRegFrm, (outs), (ins GR16:$reg), "push{w}\t$reg",[]>,
691   OpSize;
692 def PUSH32r  : I<0x50, AddRegFrm, (outs), (ins GR32:$reg), "push{l}\t$reg",[]>;
693 def PUSH16rmr: I<0xFF, MRM6r, (outs), (ins GR16:$reg), "push{w}\t$reg",[]>,
694   OpSize;
695 def PUSH16rmm: I<0xFF, MRM6m, (outs), (ins i16mem:$src), "push{w}\t$src",[]>,
696   OpSize;
697 def PUSH32rmr: I<0xFF, MRM6r, (outs), (ins GR32:$reg), "push{l}\t$reg",[]>;
698 def PUSH32rmm: I<0xFF, MRM6m, (outs), (ins i32mem:$src), "push{l}\t$src",[]>;
699
700 def PUSHi8   : Ii8<0x6a, RawFrm, (outs), (ins i32i8imm:$imm),
701                       "push{l}\t$imm", []>;
702 def PUSHi16  : Ii16<0x68, RawFrm, (outs), (ins i16imm:$imm),
703                       "push{w}\t$imm", []>, OpSize;
704 def PUSHi32  : Ii32<0x68, RawFrm, (outs), (ins i32imm:$imm),
705                       "push{l}\t$imm", []>;
706
707 def PUSHF16  : I<0x9C, RawFrm, (outs), (ins), "pushf{w}", []>, OpSize;
708 def PUSHF32  : I<0x9C, RawFrm, (outs), (ins), "pushf{l|d}", []>,
709                Requires<[In32BitMode]>;
710
711 }
712 }
713
714 let Defs = [RSP], Uses = [RSP], neverHasSideEffects=1 in {
715 let mayLoad = 1 in {
716 def POP64r   : I<0x58, AddRegFrm,
717                  (outs GR64:$reg), (ins), "pop{q}\t$reg", []>;
718 def POP64rmr: I<0x8F, MRM0r, (outs GR64:$reg), (ins), "pop{q}\t$reg", []>;
719 def POP64rmm: I<0x8F, MRM0m, (outs i64mem:$dst), (ins), "pop{q}\t$dst", []>;
720 }
721 let mayStore = 1 in {
722 def PUSH64r  : I<0x50, AddRegFrm,
723                  (outs), (ins GR64:$reg), "push{q}\t$reg", []>;
724 def PUSH64rmr: I<0xFF, MRM6r, (outs), (ins GR64:$reg), "push{q}\t$reg", []>;
725 def PUSH64rmm: I<0xFF, MRM6m, (outs), (ins i64mem:$src), "push{q}\t$src", []>;
726 }
727 }
728
729 let Defs = [RSP], Uses = [RSP], neverHasSideEffects = 1, mayStore = 1 in {
730 def PUSH64i8   : Ii8<0x6a, RawFrm, (outs), (ins i64i8imm:$imm),
731                      "push{q}\t$imm", []>;
732 def PUSH64i16  : Ii16<0x68, RawFrm, (outs), (ins i16imm:$imm),
733                       "push{q}\t$imm", []>;
734 def PUSH64i32  : Ii32<0x68, RawFrm, (outs), (ins i64i32imm:$imm),
735                       "push{q}\t$imm", []>;
736 }
737
738 let Defs = [RSP, EFLAGS], Uses = [RSP], mayLoad = 1, neverHasSideEffects=1 in
739 def POPF64   : I<0x9D, RawFrm, (outs), (ins), "popfq", []>,
740                Requires<[In64BitMode]>;
741 let Defs = [RSP], Uses = [RSP, EFLAGS], mayStore = 1, neverHasSideEffects=1 in
742 def PUSHF64    : I<0x9C, RawFrm, (outs), (ins), "pushfq", []>,
743                  Requires<[In64BitMode]>;
744
745
746
747 let Defs = [EDI, ESI, EBP, EBX, EDX, ECX, EAX, ESP], Uses = [ESP],
748     mayLoad=1, neverHasSideEffects=1 in {
749 def POPA32   : I<0x61, RawFrm, (outs), (ins), "popa{l}", []>,
750                Requires<[In32BitMode]>;
751 }
752 let Defs = [ESP], Uses = [EDI, ESI, EBP, EBX, EDX, ECX, EAX, ESP],
753     mayStore=1, neverHasSideEffects=1 in {
754 def PUSHA32  : I<0x60, RawFrm, (outs), (ins), "pusha{l}", []>,
755                Requires<[In32BitMode]>;
756 }
757
758 let Constraints = "$src = $dst" in {    // GR32 = bswap GR32
759 def BSWAP32r : I<0xC8, AddRegFrm,
760                  (outs GR32:$dst), (ins GR32:$src),
761                  "bswap{l}\t$dst",
762                  [(set GR32:$dst, (bswap GR32:$src))]>, TB;
763
764 def BSWAP64r : RI<0xC8, AddRegFrm, (outs GR64:$dst), (ins GR64:$src),
765                   "bswap{q}\t$dst",
766                   [(set GR64:$dst, (bswap GR64:$src))]>, TB;
767 } // Constraints = "$src = $dst"
768
769 // Bit scan instructions.
770 let Defs = [EFLAGS] in {
771 def BSF16rr  : I<0xBC, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src),
772                  "bsf{w}\t{$src, $dst|$dst, $src}",
773                  [(set GR16:$dst, EFLAGS, (X86bsf GR16:$src))]>, TB, OpSize;
774 def BSF16rm  : I<0xBC, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
775                  "bsf{w}\t{$src, $dst|$dst, $src}",
776                  [(set GR16:$dst, EFLAGS, (X86bsf (loadi16 addr:$src)))]>, TB,
777                  OpSize;
778 def BSF32rr  : I<0xBC, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
779                  "bsf{l}\t{$src, $dst|$dst, $src}",
780                  [(set GR32:$dst, EFLAGS, (X86bsf GR32:$src))]>, TB;
781 def BSF32rm  : I<0xBC, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
782                  "bsf{l}\t{$src, $dst|$dst, $src}",
783                  [(set GR32:$dst, EFLAGS, (X86bsf (loadi32 addr:$src)))]>, TB;
784 def BSF64rr  : RI<0xBC, MRMSrcReg, (outs GR64:$dst), (ins GR64:$src),
785                   "bsf{q}\t{$src, $dst|$dst, $src}",
786                   [(set GR64:$dst, EFLAGS, (X86bsf GR64:$src))]>, TB;
787 def BSF64rm  : RI<0xBC, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
788                   "bsf{q}\t{$src, $dst|$dst, $src}",
789                   [(set GR64:$dst, EFLAGS, (X86bsf (loadi64 addr:$src)))]>, TB;
790
791 def BSR16rr  : I<0xBD, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src),
792                  "bsr{w}\t{$src, $dst|$dst, $src}",
793                  [(set GR16:$dst, EFLAGS, (X86bsr GR16:$src))]>, TB, OpSize;
794 def BSR16rm  : I<0xBD, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
795                  "bsr{w}\t{$src, $dst|$dst, $src}",
796                  [(set GR16:$dst, EFLAGS, (X86bsr (loadi16 addr:$src)))]>, TB,
797                  OpSize;
798 def BSR32rr  : I<0xBD, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
799                  "bsr{l}\t{$src, $dst|$dst, $src}",
800                  [(set GR32:$dst, EFLAGS, (X86bsr GR32:$src))]>, TB;
801 def BSR32rm  : I<0xBD, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
802                  "bsr{l}\t{$src, $dst|$dst, $src}",
803                  [(set GR32:$dst, EFLAGS, (X86bsr (loadi32 addr:$src)))]>, TB;
804 def BSR64rr  : RI<0xBD, MRMSrcReg, (outs GR64:$dst), (ins GR64:$src),
805                   "bsr{q}\t{$src, $dst|$dst, $src}",
806                   [(set GR64:$dst, EFLAGS, (X86bsr GR64:$src))]>, TB;
807 def BSR64rm  : RI<0xBD, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
808                   "bsr{q}\t{$src, $dst|$dst, $src}",
809                   [(set GR64:$dst, EFLAGS, (X86bsr (loadi64 addr:$src)))]>, TB;
810 } // Defs = [EFLAGS]
811
812
813 // These uses the DF flag in the EFLAGS register to inc or dec EDI and ESI
814 let Defs = [EDI,ESI], Uses = [EDI,ESI,EFLAGS] in {
815 def MOVSB : I<0xA4, RawFrm, (outs), (ins), "movsb", []>;
816 def MOVSW : I<0xA5, RawFrm, (outs), (ins), "movsw", []>, OpSize;
817 def MOVSD : I<0xA5, RawFrm, (outs), (ins), "movs{l|d}", []>;
818 def MOVSQ : RI<0xA5, RawFrm, (outs), (ins), "movsq", []>;
819 }
820
821 // These uses the DF flag in the EFLAGS register to inc or dec EDI and ESI
822 let Defs = [EDI], Uses = [AL,EDI,EFLAGS] in
823 def STOSB : I<0xAA, RawFrm, (outs), (ins), "stosb", []>;
824 let Defs = [EDI], Uses = [AX,EDI,EFLAGS] in
825 def STOSW : I<0xAB, RawFrm, (outs), (ins), "stosw", []>, OpSize;
826 let Defs = [EDI], Uses = [EAX,EDI,EFLAGS] in
827 def STOSD : I<0xAB, RawFrm, (outs), (ins), "stos{l|d}", []>;
828 let Defs = [RCX,RDI], Uses = [RAX,RCX,RDI,EFLAGS] in
829 def STOSQ : RI<0xAB, RawFrm, (outs), (ins), "stosq", []>;
830
831 def SCAS8 : I<0xAE, RawFrm, (outs), (ins), "scasb", []>;
832 def SCAS16 : I<0xAF, RawFrm, (outs), (ins), "scasw", []>, OpSize;
833 def SCAS32 : I<0xAF, RawFrm, (outs), (ins), "scas{l|d}", []>;
834 def SCAS64 : RI<0xAF, RawFrm, (outs), (ins), "scasq", []>;
835
836 def CMPS8 : I<0xA6, RawFrm, (outs), (ins), "cmpsb", []>;
837 def CMPS16 : I<0xA7, RawFrm, (outs), (ins), "cmpsw", []>, OpSize;
838 def CMPS32 : I<0xA7, RawFrm, (outs), (ins), "cmps{l|d}", []>;
839 def CMPS64 : RI<0xA7, RawFrm, (outs), (ins), "cmpsq", []>;
840
841
842 //===----------------------------------------------------------------------===//
843 //  Move Instructions.
844 //
845
846 let neverHasSideEffects = 1 in {
847 def MOV8rr  : I<0x88, MRMDestReg, (outs GR8 :$dst), (ins GR8 :$src),
848                 "mov{b}\t{$src, $dst|$dst, $src}", []>;
849 def MOV16rr : I<0x89, MRMDestReg, (outs GR16:$dst), (ins GR16:$src),
850                 "mov{w}\t{$src, $dst|$dst, $src}", []>, OpSize;
851 def MOV32rr : I<0x89, MRMDestReg, (outs GR32:$dst), (ins GR32:$src),
852                 "mov{l}\t{$src, $dst|$dst, $src}", []>;
853 def MOV64rr : RI<0x89, MRMDestReg, (outs GR64:$dst), (ins GR64:$src),
854                  "mov{q}\t{$src, $dst|$dst, $src}", []>;
855 }
856 let isReMaterializable = 1, isAsCheapAsAMove = 1 in {
857 def MOV8ri  : Ii8 <0xB0, AddRegFrm, (outs GR8 :$dst), (ins i8imm :$src),
858                    "mov{b}\t{$src, $dst|$dst, $src}",
859                    [(set GR8:$dst, imm:$src)]>;
860 def MOV16ri : Ii16<0xB8, AddRegFrm, (outs GR16:$dst), (ins i16imm:$src),
861                    "mov{w}\t{$src, $dst|$dst, $src}",
862                    [(set GR16:$dst, imm:$src)]>, OpSize;
863 def MOV32ri : Ii32<0xB8, AddRegFrm, (outs GR32:$dst), (ins i32imm:$src),
864                    "mov{l}\t{$src, $dst|$dst, $src}",
865                    [(set GR32:$dst, imm:$src)]>;
866 def MOV64ri : RIi64<0xB8, AddRegFrm, (outs GR64:$dst), (ins i64imm:$src),
867                     "movabs{q}\t{$src, $dst|$dst, $src}",
868                     [(set GR64:$dst, imm:$src)]>;
869 def MOV64ri32 : RIi32<0xC7, MRM0r, (outs GR64:$dst), (ins i64i32imm:$src),
870                       "mov{q}\t{$src, $dst|$dst, $src}",
871                       [(set GR64:$dst, i64immSExt32:$src)]>;
872 }
873
874 def MOV8mi  : Ii8 <0xC6, MRM0m, (outs), (ins i8mem :$dst, i8imm :$src),
875                    "mov{b}\t{$src, $dst|$dst, $src}",
876                    [(store (i8 imm:$src), addr:$dst)]>;
877 def MOV16mi : Ii16<0xC7, MRM0m, (outs), (ins i16mem:$dst, i16imm:$src),
878                    "mov{w}\t{$src, $dst|$dst, $src}",
879                    [(store (i16 imm:$src), addr:$dst)]>, OpSize;
880 def MOV32mi : Ii32<0xC7, MRM0m, (outs), (ins i32mem:$dst, i32imm:$src),
881                    "mov{l}\t{$src, $dst|$dst, $src}",
882                    [(store (i32 imm:$src), addr:$dst)]>;
883 def MOV64mi32 : RIi32<0xC7, MRM0m, (outs), (ins i64mem:$dst, i64i32imm:$src),
884                       "mov{q}\t{$src, $dst|$dst, $src}",
885                       [(store i64immSExt32:$src, addr:$dst)]>;
886
887 /// moffs8, moffs16 and moffs32 versions of moves.  The immediate is a
888 /// 32-bit offset from the PC.  These are only valid in x86-32 mode.
889 def MOV8o8a : Ii32 <0xA0, RawFrm, (outs), (ins offset8:$src),
890                    "mov{b}\t{$src, %al|AL, $src}", []>,
891                    Requires<[In32BitMode]>;
892 def MOV16o16a : Ii32 <0xA1, RawFrm, (outs), (ins offset16:$src),
893                       "mov{w}\t{$src, %ax|AL, $src}", []>, OpSize,
894                      Requires<[In32BitMode]>;
895 def MOV32o32a : Ii32 <0xA1, RawFrm, (outs), (ins offset32:$src),
896                       "mov{l}\t{$src, %eax|EAX, $src}", []>,
897                      Requires<[In32BitMode]>;
898 def MOV8ao8 : Ii32 <0xA2, RawFrm, (outs offset8:$dst), (ins),
899                    "mov{b}\t{%al, $dst|$dst, AL}", []>,
900                   Requires<[In32BitMode]>;
901 def MOV16ao16 : Ii32 <0xA3, RawFrm, (outs offset16:$dst), (ins),
902                       "mov{w}\t{%ax, $dst|$dst, AL}", []>, OpSize,
903                      Requires<[In32BitMode]>;
904 def MOV32ao32 : Ii32 <0xA3, RawFrm, (outs offset32:$dst), (ins),
905                       "mov{l}\t{%eax, $dst|$dst, EAX}", []>,
906                      Requires<[In32BitMode]>;
907
908 // FIXME: These definitions are utterly broken
909 // Just leave them commented out for now because they're useless outside
910 // of the large code model, and most compilers won't generate the instructions
911 // in question.
912 /*
913 def MOV64o8a : RIi8<0xA0, RawFrm, (outs), (ins offset8:$src),
914                       "mov{q}\t{$src, %rax|RAX, $src}", []>;
915 def MOV64o64a : RIi32<0xA1, RawFrm, (outs), (ins offset64:$src),
916                        "mov{q}\t{$src, %rax|RAX, $src}", []>;
917 def MOV64ao8 : RIi8<0xA2, RawFrm, (outs offset8:$dst), (ins),
918                        "mov{q}\t{%rax, $dst|$dst, RAX}", []>;
919 def MOV64ao64 : RIi32<0xA3, RawFrm, (outs offset64:$dst), (ins),
920                        "mov{q}\t{%rax, $dst|$dst, RAX}", []>;
921 */
922
923
924 let isCodeGenOnly = 1 in {
925 def MOV8rr_REV : I<0x8A, MRMSrcReg, (outs GR8:$dst), (ins GR8:$src),
926                    "mov{b}\t{$src, $dst|$dst, $src}", []>;
927 def MOV16rr_REV : I<0x8B, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src),
928                     "mov{w}\t{$src, $dst|$dst, $src}", []>, OpSize;
929 def MOV32rr_REV : I<0x8B, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
930                     "mov{l}\t{$src, $dst|$dst, $src}", []>;
931 def MOV64rr_REV : RI<0x8B, MRMSrcReg, (outs GR64:$dst), (ins GR64:$src),
932                      "mov{q}\t{$src, $dst|$dst, $src}", []>;
933 }
934
935 let canFoldAsLoad = 1, isReMaterializable = 1 in {
936 def MOV8rm  : I<0x8A, MRMSrcMem, (outs GR8 :$dst), (ins i8mem :$src),
937                 "mov{b}\t{$src, $dst|$dst, $src}",
938                 [(set GR8:$dst, (loadi8 addr:$src))]>;
939 def MOV16rm : I<0x8B, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
940                 "mov{w}\t{$src, $dst|$dst, $src}",
941                 [(set GR16:$dst, (loadi16 addr:$src))]>, OpSize;
942 def MOV32rm : I<0x8B, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
943                 "mov{l}\t{$src, $dst|$dst, $src}",
944                 [(set GR32:$dst, (loadi32 addr:$src))]>;
945 def MOV64rm : RI<0x8B, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
946                  "mov{q}\t{$src, $dst|$dst, $src}",
947                  [(set GR64:$dst, (load addr:$src))]>;
948 }
949
950 def MOV8mr  : I<0x88, MRMDestMem, (outs), (ins i8mem :$dst, GR8 :$src),
951                 "mov{b}\t{$src, $dst|$dst, $src}",
952                 [(store GR8:$src, addr:$dst)]>;
953 def MOV16mr : I<0x89, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src),
954                 "mov{w}\t{$src, $dst|$dst, $src}",
955                 [(store GR16:$src, addr:$dst)]>, OpSize;
956 def MOV32mr : I<0x89, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
957                 "mov{l}\t{$src, $dst|$dst, $src}",
958                 [(store GR32:$src, addr:$dst)]>;
959 def MOV64mr : RI<0x89, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src),
960                  "mov{q}\t{$src, $dst|$dst, $src}",
961                  [(store GR64:$src, addr:$dst)]>;
962
963 // Versions of MOV8rr, MOV8mr, and MOV8rm that use i8mem_NOREX and GR8_NOREX so
964 // that they can be used for copying and storing h registers, which can't be
965 // encoded when a REX prefix is present.
966 let isCodeGenOnly = 1 in {
967 let neverHasSideEffects = 1 in
968 def MOV8rr_NOREX : I<0x88, MRMDestReg,
969                      (outs GR8_NOREX:$dst), (ins GR8_NOREX:$src),
970                      "mov{b}\t{$src, $dst|$dst, $src}  # NOREX", []>;
971 let mayStore = 1 in
972 def MOV8mr_NOREX : I<0x88, MRMDestMem,
973                      (outs), (ins i8mem_NOREX:$dst, GR8_NOREX:$src),
974                      "mov{b}\t{$src, $dst|$dst, $src}  # NOREX", []>;
975 let mayLoad = 1, neverHasSideEffects = 1,
976     canFoldAsLoad = 1, isReMaterializable = 1 in
977 def MOV8rm_NOREX : I<0x8A, MRMSrcMem,
978                      (outs GR8_NOREX:$dst), (ins i8mem_NOREX:$src),
979                      "mov{b}\t{$src, $dst|$dst, $src}  # NOREX", []>;
980 }
981
982
983 // Condition code ops, incl. set if equal/not equal/...
984 let Defs = [EFLAGS], Uses = [AH], neverHasSideEffects = 1 in
985 def SAHF     : I<0x9E, RawFrm, (outs),  (ins), "sahf", []>;  // flags = AH
986 let Defs = [AH], Uses = [EFLAGS], neverHasSideEffects = 1 in
987 def LAHF     : I<0x9F, RawFrm, (outs),  (ins), "lahf", []>;  // AH = flags
988
989
990 //===----------------------------------------------------------------------===//
991 // Bit tests instructions: BT, BTS, BTR, BTC.
992
993 let Defs = [EFLAGS] in {
994 def BT16rr : I<0xA3, MRMDestReg, (outs), (ins GR16:$src1, GR16:$src2),
995                "bt{w}\t{$src2, $src1|$src1, $src2}",
996                [(set EFLAGS, (X86bt GR16:$src1, GR16:$src2))]>, OpSize, TB;
997 def BT32rr : I<0xA3, MRMDestReg, (outs), (ins GR32:$src1, GR32:$src2),
998                "bt{l}\t{$src2, $src1|$src1, $src2}",
999                [(set EFLAGS, (X86bt GR32:$src1, GR32:$src2))]>, TB;
1000 def BT64rr : RI<0xA3, MRMDestReg, (outs), (ins GR64:$src1, GR64:$src2),
1001                "bt{q}\t{$src2, $src1|$src1, $src2}",
1002                [(set EFLAGS, (X86bt GR64:$src1, GR64:$src2))]>, TB;
1003
1004 // Unlike with the register+register form, the memory+register form of the
1005 // bt instruction does not ignore the high bits of the index. From ISel's
1006 // perspective, this is pretty bizarre. Make these instructions disassembly
1007 // only for now.
1008
1009 def BT16mr : I<0xA3, MRMDestMem, (outs), (ins i16mem:$src1, GR16:$src2),
1010                "bt{w}\t{$src2, $src1|$src1, $src2}",
1011 //               [(X86bt (loadi16 addr:$src1), GR16:$src2),
1012 //                (implicit EFLAGS)]
1013                []
1014                >, OpSize, TB, Requires<[FastBTMem]>;
1015 def BT32mr : I<0xA3, MRMDestMem, (outs), (ins i32mem:$src1, GR32:$src2),
1016                "bt{l}\t{$src2, $src1|$src1, $src2}",
1017 //               [(X86bt (loadi32 addr:$src1), GR32:$src2),
1018 //                (implicit EFLAGS)]
1019                []
1020                >, TB, Requires<[FastBTMem]>;
1021 def BT64mr : RI<0xA3, MRMDestMem, (outs), (ins i64mem:$src1, GR64:$src2),
1022                "bt{q}\t{$src2, $src1|$src1, $src2}",
1023 //               [(X86bt (loadi64 addr:$src1), GR64:$src2),
1024 //                (implicit EFLAGS)]
1025                 []
1026                 >, TB;
1027
1028 def BT16ri8 : Ii8<0xBA, MRM4r, (outs), (ins GR16:$src1, i16i8imm:$src2),
1029                 "bt{w}\t{$src2, $src1|$src1, $src2}",
1030                 [(set EFLAGS, (X86bt GR16:$src1, i16immSExt8:$src2))]>,
1031                 OpSize, TB;
1032 def BT32ri8 : Ii8<0xBA, MRM4r, (outs), (ins GR32:$src1, i32i8imm:$src2),
1033                 "bt{l}\t{$src2, $src1|$src1, $src2}",
1034                 [(set EFLAGS, (X86bt GR32:$src1, i32immSExt8:$src2))]>, TB;
1035 def BT64ri8 : RIi8<0xBA, MRM4r, (outs), (ins GR64:$src1, i64i8imm:$src2),
1036                 "bt{q}\t{$src2, $src1|$src1, $src2}",
1037                 [(set EFLAGS, (X86bt GR64:$src1, i64immSExt8:$src2))]>, TB;
1038
1039 // Note that these instructions don't need FastBTMem because that
1040 // only applies when the other operand is in a register. When it's
1041 // an immediate, bt is still fast.
1042 def BT16mi8 : Ii8<0xBA, MRM4m, (outs), (ins i16mem:$src1, i16i8imm:$src2),
1043                 "bt{w}\t{$src2, $src1|$src1, $src2}",
1044                 [(set EFLAGS, (X86bt (loadi16 addr:$src1), i16immSExt8:$src2))
1045                  ]>, OpSize, TB;
1046 def BT32mi8 : Ii8<0xBA, MRM4m, (outs), (ins i32mem:$src1, i32i8imm:$src2),
1047                 "bt{l}\t{$src2, $src1|$src1, $src2}",
1048                 [(set EFLAGS, (X86bt (loadi32 addr:$src1), i32immSExt8:$src2))
1049                  ]>, TB;
1050 def BT64mi8 : RIi8<0xBA, MRM4m, (outs), (ins i64mem:$src1, i64i8imm:$src2),
1051                 "bt{q}\t{$src2, $src1|$src1, $src2}",
1052                 [(set EFLAGS, (X86bt (loadi64 addr:$src1),
1053                                      i64immSExt8:$src2))]>, TB;
1054
1055
1056 def BTC16rr : I<0xBB, MRMDestReg, (outs), (ins GR16:$src1, GR16:$src2),
1057                 "btc{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1058 def BTC32rr : I<0xBB, MRMDestReg, (outs), (ins GR32:$src1, GR32:$src2),
1059                 "btc{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
1060 def BTC64rr : RI<0xBB, MRMDestReg, (outs), (ins GR64:$src1, GR64:$src2),
1061                  "btc{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
1062 def BTC16mr : I<0xBB, MRMDestMem, (outs), (ins i16mem:$src1, GR16:$src2),
1063                 "btc{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1064 def BTC32mr : I<0xBB, MRMDestMem, (outs), (ins i32mem:$src1, GR32:$src2),
1065                 "btc{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
1066 def BTC64mr : RI<0xBB, MRMDestMem, (outs), (ins i64mem:$src1, GR64:$src2),
1067                  "btc{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
1068 def BTC16ri8 : Ii8<0xBA, MRM7r, (outs), (ins GR16:$src1, i16i8imm:$src2),
1069                     "btc{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1070 def BTC32ri8 : Ii8<0xBA, MRM7r, (outs), (ins GR32:$src1, i32i8imm:$src2),
1071                     "btc{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
1072 def BTC64ri8 : RIi8<0xBA, MRM7r, (outs), (ins GR64:$src1, i64i8imm:$src2),
1073                     "btc{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
1074 def BTC16mi8 : Ii8<0xBA, MRM7m, (outs), (ins i16mem:$src1, i16i8imm:$src2),
1075                     "btc{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1076 def BTC32mi8 : Ii8<0xBA, MRM7m, (outs), (ins i32mem:$src1, i32i8imm:$src2),
1077                     "btc{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
1078 def BTC64mi8 : RIi8<0xBA, MRM7m, (outs), (ins i64mem:$src1, i64i8imm:$src2),
1079                     "btc{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
1080
1081 def BTR16rr : I<0xB3, MRMDestReg, (outs), (ins GR16:$src1, GR16:$src2),
1082                 "btr{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1083 def BTR32rr : I<0xB3, MRMDestReg, (outs), (ins GR32:$src1, GR32:$src2),
1084                 "btr{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
1085 def BTR64rr : RI<0xB3, MRMDestReg, (outs), (ins GR64:$src1, GR64:$src2),
1086                  "btr{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
1087 def BTR16mr : I<0xB3, MRMDestMem, (outs), (ins i16mem:$src1, GR16:$src2),
1088                 "btr{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1089 def BTR32mr : I<0xB3, MRMDestMem, (outs), (ins i32mem:$src1, GR32:$src2),
1090                 "btr{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
1091 def BTR64mr : RI<0xB3, MRMDestMem, (outs), (ins i64mem:$src1, GR64:$src2),
1092                  "btr{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
1093 def BTR16ri8 : Ii8<0xBA, MRM6r, (outs), (ins GR16:$src1, i16i8imm:$src2),
1094                     "btr{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1095 def BTR32ri8 : Ii8<0xBA, MRM6r, (outs), (ins GR32:$src1, i32i8imm:$src2),
1096                     "btr{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
1097 def BTR64ri8 : RIi8<0xBA, MRM6r, (outs), (ins GR64:$src1, i64i8imm:$src2),
1098                     "btr{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
1099 def BTR16mi8 : Ii8<0xBA, MRM6m, (outs), (ins i16mem:$src1, i16i8imm:$src2),
1100                     "btr{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1101 def BTR32mi8 : Ii8<0xBA, MRM6m, (outs), (ins i32mem:$src1, i32i8imm:$src2),
1102                     "btr{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
1103 def BTR64mi8 : RIi8<0xBA, MRM6m, (outs), (ins i64mem:$src1, i64i8imm:$src2),
1104                     "btr{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
1105
1106 def BTS16rr : I<0xAB, MRMDestReg, (outs), (ins GR16:$src1, GR16:$src2),
1107                 "bts{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1108 def BTS32rr : I<0xAB, MRMDestReg, (outs), (ins GR32:$src1, GR32:$src2),
1109                 "bts{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
1110 def BTS64rr : RI<0xAB, MRMDestReg, (outs), (ins GR64:$src1, GR64:$src2),
1111                  "bts{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
1112 def BTS16mr : I<0xAB, MRMDestMem, (outs), (ins i16mem:$src1, GR16:$src2),
1113                 "bts{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1114 def BTS32mr : I<0xAB, MRMDestMem, (outs), (ins i32mem:$src1, GR32:$src2),
1115                 "bts{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
1116 def BTS64mr : RI<0xAB, MRMDestMem, (outs), (ins i64mem:$src1, GR64:$src2),
1117                  "bts{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
1118 def BTS16ri8 : Ii8<0xBA, MRM5r, (outs), (ins GR16:$src1, i16i8imm:$src2),
1119                     "bts{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1120 def BTS32ri8 : Ii8<0xBA, MRM5r, (outs), (ins GR32:$src1, i32i8imm:$src2),
1121                     "bts{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
1122 def BTS64ri8 : RIi8<0xBA, MRM5r, (outs), (ins GR64:$src1, i64i8imm:$src2),
1123                     "bts{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
1124 def BTS16mi8 : Ii8<0xBA, MRM5m, (outs), (ins i16mem:$src1, i16i8imm:$src2),
1125                     "bts{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1126 def BTS32mi8 : Ii8<0xBA, MRM5m, (outs), (ins i32mem:$src1, i32i8imm:$src2),
1127                     "bts{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
1128 def BTS64mi8 : RIi8<0xBA, MRM5m, (outs), (ins i64mem:$src1, i64i8imm:$src2),
1129                     "bts{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
1130 } // Defs = [EFLAGS]
1131
1132
1133 //===----------------------------------------------------------------------===//
1134 // Atomic support
1135 //
1136
1137
1138 // Atomic swap. These are just normal xchg instructions. But since a memory
1139 // operand is referenced, the atomicity is ensured.
1140 let Constraints = "$val = $dst" in {
1141 def XCHG8rm  : I<0x86, MRMSrcMem, (outs GR8:$dst), (ins GR8:$val, i8mem:$ptr),
1142                "xchg{b}\t{$val, $ptr|$ptr, $val}",
1143                [(set GR8:$dst, (atomic_swap_8 addr:$ptr, GR8:$val))]>;
1144 def XCHG16rm : I<0x87, MRMSrcMem, (outs GR16:$dst),(ins GR16:$val, i16mem:$ptr),
1145                "xchg{w}\t{$val, $ptr|$ptr, $val}",
1146                [(set GR16:$dst, (atomic_swap_16 addr:$ptr, GR16:$val))]>,
1147                 OpSize;
1148 def XCHG32rm : I<0x87, MRMSrcMem, (outs GR32:$dst),(ins GR32:$val, i32mem:$ptr),
1149                "xchg{l}\t{$val, $ptr|$ptr, $val}",
1150                [(set GR32:$dst, (atomic_swap_32 addr:$ptr, GR32:$val))]>;
1151 def XCHG64rm : RI<0x87, MRMSrcMem, (outs GR64:$dst),(ins GR64:$val,i64mem:$ptr),
1152                   "xchg{q}\t{$val, $ptr|$ptr, $val}",
1153                   [(set GR64:$dst, (atomic_swap_64 addr:$ptr, GR64:$val))]>;
1154
1155 def XCHG8rr : I<0x86, MRMSrcReg, (outs GR8:$dst), (ins GR8:$val, GR8:$src),
1156                 "xchg{b}\t{$val, $src|$src, $val}", []>;
1157 def XCHG16rr : I<0x87, MRMSrcReg, (outs GR16:$dst), (ins GR16:$val, GR16:$src),
1158                  "xchg{w}\t{$val, $src|$src, $val}", []>, OpSize;
1159 def XCHG32rr : I<0x87, MRMSrcReg, (outs GR32:$dst), (ins GR32:$val, GR32:$src),
1160                  "xchg{l}\t{$val, $src|$src, $val}", []>;
1161 def XCHG64rr : RI<0x87, MRMSrcReg, (outs GR64:$dst), (ins GR64:$val,GR64:$src),
1162                   "xchg{q}\t{$val, $src|$src, $val}", []>;
1163 }
1164
1165 def XCHG16ar : I<0x90, AddRegFrm, (outs), (ins GR16:$src),
1166                   "xchg{w}\t{$src, %ax|AX, $src}", []>, OpSize;
1167 def XCHG32ar : I<0x90, AddRegFrm, (outs), (ins GR32:$src),
1168                   "xchg{l}\t{$src, %eax|EAX, $src}", []>, Requires<[In32BitMode]>;
1169 // Uses GR32_NOAX in 64-bit mode to prevent encoding using the 0x90 NOP encoding.
1170 // xchg %eax, %eax needs to clear upper 32-bits of RAX so is not a NOP.
1171 def XCHG32ar64 : I<0x90, AddRegFrm, (outs), (ins GR32_NOAX:$src),
1172                    "xchg{l}\t{$src, %eax|EAX, $src}", []>, Requires<[In64BitMode]>;
1173 def XCHG64ar : RI<0x90, AddRegFrm, (outs), (ins GR64:$src),
1174                   "xchg{q}\t{$src, %rax|RAX, $src}", []>;
1175
1176
1177
1178 def XADD8rr : I<0xC0, MRMDestReg, (outs GR8:$dst), (ins GR8:$src),
1179                 "xadd{b}\t{$src, $dst|$dst, $src}", []>, TB;
1180 def XADD16rr : I<0xC1, MRMDestReg, (outs GR16:$dst), (ins GR16:$src),
1181                  "xadd{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
1182 def XADD32rr  : I<0xC1, MRMDestReg, (outs GR32:$dst), (ins GR32:$src),
1183                  "xadd{l}\t{$src, $dst|$dst, $src}", []>, TB;
1184 def XADD64rr  : RI<0xC1, MRMDestReg, (outs GR64:$dst), (ins GR64:$src),
1185                    "xadd{q}\t{$src, $dst|$dst, $src}", []>, TB;
1186
1187 let mayLoad = 1, mayStore = 1 in {
1188 def XADD8rm   : I<0xC0, MRMDestMem, (outs), (ins i8mem:$dst, GR8:$src),
1189                  "xadd{b}\t{$src, $dst|$dst, $src}", []>, TB;
1190 def XADD16rm  : I<0xC1, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src),
1191                  "xadd{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
1192 def XADD32rm  : I<0xC1, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
1193                  "xadd{l}\t{$src, $dst|$dst, $src}", []>, TB;
1194 def XADD64rm  : RI<0xC1, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src),
1195                    "xadd{q}\t{$src, $dst|$dst, $src}", []>, TB;
1196
1197 }
1198
1199 def CMPXCHG8rr : I<0xB0, MRMDestReg, (outs GR8:$dst), (ins GR8:$src),
1200                    "cmpxchg{b}\t{$src, $dst|$dst, $src}", []>, TB;
1201 def CMPXCHG16rr : I<0xB1, MRMDestReg, (outs GR16:$dst), (ins GR16:$src),
1202                     "cmpxchg{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
1203 def CMPXCHG32rr  : I<0xB1, MRMDestReg, (outs GR32:$dst), (ins GR32:$src),
1204                      "cmpxchg{l}\t{$src, $dst|$dst, $src}", []>, TB;
1205 def CMPXCHG64rr  : RI<0xB1, MRMDestReg, (outs GR64:$dst), (ins GR64:$src),
1206                       "cmpxchg{q}\t{$src, $dst|$dst, $src}", []>, TB;
1207
1208 let mayLoad = 1, mayStore = 1 in {
1209 def CMPXCHG8rm   : I<0xB0, MRMDestMem, (outs), (ins i8mem:$dst, GR8:$src),
1210                      "cmpxchg{b}\t{$src, $dst|$dst, $src}", []>, TB;
1211 def CMPXCHG16rm  : I<0xB1, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src),
1212                      "cmpxchg{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
1213 def CMPXCHG32rm  : I<0xB1, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
1214                      "cmpxchg{l}\t{$src, $dst|$dst, $src}", []>, TB;
1215 def CMPXCHG64rm  : RI<0xB1, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src),
1216                       "cmpxchg{q}\t{$src, $dst|$dst, $src}", []>, TB;
1217 }
1218
1219 let Defs = [EAX, EDX, EFLAGS], Uses = [EAX, EBX, ECX, EDX] in
1220 def CMPXCHG8B : I<0xC7, MRM1m, (outs), (ins i64mem:$dst),
1221                   "cmpxchg8b\t$dst", []>, TB;
1222
1223 let Defs = [RAX, RDX, EFLAGS], Uses = [RAX, RBX, RCX, RDX] in
1224 def CMPXCHG16B : RI<0xC7, MRM1m, (outs), (ins i128mem:$dst),
1225                     "cmpxchg16b\t$dst", []>, TB, Requires<[HasCmpxchg16b]>;
1226
1227
1228
1229 // Lock instruction prefix
1230 def LOCK_PREFIX : I<0xF0, RawFrm, (outs),  (ins), "lock", []>;
1231
1232 // Rex64 instruction prefix
1233 def REX64_PREFIX : I<0x48, RawFrm, (outs),  (ins), "rex64", []>;
1234
1235 // Data16 instruction prefix
1236 def DATA16_PREFIX : I<0x66, RawFrm, (outs),  (ins), "data16", []>;
1237
1238 // Repeat string operation instruction prefixes
1239 // These uses the DF flag in the EFLAGS register to inc or dec ECX
1240 let Defs = [ECX], Uses = [ECX,EFLAGS] in {
1241 // Repeat (used with INS, OUTS, MOVS, LODS and STOS)
1242 def REP_PREFIX : I<0xF3, RawFrm, (outs),  (ins), "rep", []>;
1243 // Repeat while not equal (used with CMPS and SCAS)
1244 def REPNE_PREFIX : I<0xF2, RawFrm, (outs),  (ins), "repne", []>;
1245 }
1246
1247
1248 // String manipulation instructions
1249 def LODSB : I<0xAC, RawFrm, (outs), (ins), "lodsb", []>;
1250 def LODSW : I<0xAD, RawFrm, (outs), (ins), "lodsw", []>, OpSize;
1251 def LODSD : I<0xAD, RawFrm, (outs), (ins), "lods{l|d}", []>;
1252 def LODSQ : RI<0xAD, RawFrm, (outs), (ins), "lodsq", []>;
1253
1254 def OUTSB : I<0x6E, RawFrm, (outs), (ins), "outsb", []>;
1255 def OUTSW : I<0x6F, RawFrm, (outs), (ins), "outsw", []>, OpSize;
1256 def OUTSD : I<0x6F, RawFrm, (outs), (ins), "outs{l|d}", []>;
1257
1258
1259 // Flag instructions
1260 def CLC : I<0xF8, RawFrm, (outs), (ins), "clc", []>;
1261 def STC : I<0xF9, RawFrm, (outs), (ins), "stc", []>;
1262 def CLI : I<0xFA, RawFrm, (outs), (ins), "cli", []>;
1263 def STI : I<0xFB, RawFrm, (outs), (ins), "sti", []>;
1264 def CLD : I<0xFC, RawFrm, (outs), (ins), "cld", []>;
1265 def STD : I<0xFD, RawFrm, (outs), (ins), "std", []>;
1266 def CMC : I<0xF5, RawFrm, (outs), (ins), "cmc", []>;
1267
1268 def CLTS : I<0x06, RawFrm, (outs), (ins), "clts", []>, TB;
1269
1270 // Table lookup instructions
1271 def XLAT : I<0xD7, RawFrm, (outs), (ins), "xlatb", []>;
1272
1273 // ASCII Adjust After Addition
1274 // sets AL, AH and CF and AF of EFLAGS and uses AL and AF of EFLAGS
1275 def AAA : I<0x37, RawFrm, (outs), (ins), "aaa", []>, Requires<[In32BitMode]>;
1276
1277 // ASCII Adjust AX Before Division
1278 // sets AL, AH and EFLAGS and uses AL and AH
1279 def AAD8i8 : Ii8<0xD5, RawFrm, (outs), (ins i8imm:$src),
1280                  "aad\t$src", []>, Requires<[In32BitMode]>;
1281
1282 // ASCII Adjust AX After Multiply
1283 // sets AL, AH and EFLAGS and uses AL
1284 def AAM8i8 : Ii8<0xD4, RawFrm, (outs), (ins i8imm:$src),
1285                  "aam\t$src", []>, Requires<[In32BitMode]>;
1286
1287 // ASCII Adjust AL After Subtraction - sets
1288 // sets AL, AH and CF and AF of EFLAGS and uses AL and AF of EFLAGS
1289 def AAS : I<0x3F, RawFrm, (outs), (ins), "aas", []>, Requires<[In32BitMode]>;
1290
1291 // Decimal Adjust AL after Addition
1292 // sets AL, CF and AF of EFLAGS and uses AL, CF and AF of EFLAGS
1293 def DAA : I<0x27, RawFrm, (outs), (ins), "daa", []>, Requires<[In32BitMode]>;
1294
1295 // Decimal Adjust AL after Subtraction
1296 // sets AL, CF and AF of EFLAGS and uses AL, CF and AF of EFLAGS
1297 def DAS : I<0x2F, RawFrm, (outs), (ins), "das", []>, Requires<[In32BitMode]>;
1298
1299 // Check Array Index Against Bounds
1300 def BOUNDS16rm : I<0x62, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
1301                    "bound\t{$src, $dst|$dst, $src}", []>, OpSize,
1302                    Requires<[In32BitMode]>;
1303 def BOUNDS32rm : I<0x62, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
1304                    "bound\t{$src, $dst|$dst, $src}", []>,
1305                    Requires<[In32BitMode]>;
1306
1307 // Adjust RPL Field of Segment Selector
1308 def ARPL16rr : I<0x63, MRMDestReg, (outs GR16:$src), (ins GR16:$dst),
1309                  "arpl\t{$src, $dst|$dst, $src}", []>, Requires<[In32BitMode]>;
1310 def ARPL16mr : I<0x63, MRMSrcMem, (outs GR16:$src), (ins i16mem:$dst),
1311                  "arpl\t{$src, $dst|$dst, $src}", []>, Requires<[In32BitMode]>;
1312
1313 //===----------------------------------------------------------------------===//
1314 // MOVBE Instructions
1315 //
1316 let Predicates = [HasMOVBE] in {
1317   def MOVBE16rm : I<0xF0, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
1318                     "movbe{w}\t{$src, $dst|$dst, $src}",
1319                     [(set GR16:$dst, (bswap (loadi16 addr:$src)))]>, OpSize, T8;
1320   def MOVBE32rm : I<0xF0, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
1321                     "movbe{l}\t{$src, $dst|$dst, $src}",
1322                     [(set GR32:$dst, (bswap (loadi32 addr:$src)))]>, T8;
1323   def MOVBE64rm : RI<0xF0, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
1324                      "movbe{q}\t{$src, $dst|$dst, $src}",
1325                      [(set GR64:$dst, (bswap (loadi64 addr:$src)))]>, T8;
1326   def MOVBE16mr : I<0xF1, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src),
1327                     "movbe{w}\t{$src, $dst|$dst, $src}",
1328                     [(store (bswap GR16:$src), addr:$dst)]>, OpSize, T8;
1329   def MOVBE32mr : I<0xF1, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
1330                     "movbe{l}\t{$src, $dst|$dst, $src}",
1331                     [(store (bswap GR32:$src), addr:$dst)]>, T8;
1332   def MOVBE64mr : RI<0xF1, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src),
1333                      "movbe{q}\t{$src, $dst|$dst, $src}",
1334                      [(store (bswap GR64:$src), addr:$dst)]>, T8;
1335 }
1336
1337 //===----------------------------------------------------------------------===//
1338 // RDRAND Instruction
1339 //
1340 let Predicates = [HasRDRAND], Defs = [EFLAGS] in {
1341   def RDRAND16r : I<0xC7, MRM6r, (outs GR16:$dst), (ins),
1342                     "rdrand{w}\t$dst", []>, OpSize, TB;
1343   def RDRAND32r : I<0xC7, MRM6r, (outs GR32:$dst), (ins),
1344                     "rdrand{l}\t$dst", []>, TB;
1345   def RDRAND64r : RI<0xC7, MRM6r, (outs GR64:$dst), (ins),
1346                      "rdrand{q}\t$dst", []>, TB;
1347 }
1348
1349 //===----------------------------------------------------------------------===//
1350 // LZCNT Instruction
1351 //
1352 let Predicates = [HasLZCNT], Defs = [EFLAGS] in {
1353   def LZCNT16rr : I<0xBD, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src),
1354                     "lzcnt{w}\t{$src, $dst|$dst, $src}",
1355                     [(set GR16:$dst, (ctlz GR16:$src)), (implicit EFLAGS)]>, XS,
1356                     OpSize;
1357   def LZCNT16rm : I<0xBD, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
1358                     "lzcnt{w}\t{$src, $dst|$dst, $src}",
1359                     [(set GR16:$dst, (ctlz (loadi16 addr:$src))),
1360                      (implicit EFLAGS)]>, XS, OpSize;
1361
1362   def LZCNT32rr : I<0xBD, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
1363                     "lzcnt{l}\t{$src, $dst|$dst, $src}",
1364                     [(set GR32:$dst, (ctlz GR32:$src)), (implicit EFLAGS)]>, XS;
1365   def LZCNT32rm : I<0xBD, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
1366                     "lzcnt{l}\t{$src, $dst|$dst, $src}",
1367                     [(set GR32:$dst, (ctlz (loadi32 addr:$src))),
1368                      (implicit EFLAGS)]>, XS;
1369
1370   def LZCNT64rr : RI<0xBD, MRMSrcReg, (outs GR64:$dst), (ins GR64:$src),
1371                      "lzcnt{q}\t{$src, $dst|$dst, $src}",
1372                      [(set GR64:$dst, (ctlz GR64:$src)), (implicit EFLAGS)]>,
1373                      XS;
1374   def LZCNT64rm : RI<0xBD, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
1375                      "lzcnt{q}\t{$src, $dst|$dst, $src}",
1376                      [(set GR64:$dst, (ctlz (loadi64 addr:$src))),
1377                       (implicit EFLAGS)]>, XS;
1378 }
1379
1380 //===----------------------------------------------------------------------===//
1381 // BMI Instructions
1382 //
1383 let Predicates = [HasBMI], Defs = [EFLAGS] in {
1384   def TZCNT16rr : I<0xBC, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src),
1385                     "tzcnt{w}\t{$src, $dst|$dst, $src}",
1386                     [(set GR16:$dst, (cttz GR16:$src)), (implicit EFLAGS)]>, XS,
1387                     OpSize;
1388   def TZCNT16rm : I<0xBC, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
1389                     "tzcnt{w}\t{$src, $dst|$dst, $src}",
1390                     [(set GR16:$dst, (cttz (loadi16 addr:$src))),
1391                      (implicit EFLAGS)]>, XS, OpSize;
1392
1393   def TZCNT32rr : I<0xBC, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
1394                     "tzcnt{l}\t{$src, $dst|$dst, $src}",
1395                     [(set GR32:$dst, (cttz GR32:$src)), (implicit EFLAGS)]>, XS;
1396   def TZCNT32rm : I<0xBC, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
1397                     "tzcnt{l}\t{$src, $dst|$dst, $src}",
1398                     [(set GR32:$dst, (cttz (loadi32 addr:$src))),
1399                      (implicit EFLAGS)]>, XS;
1400
1401   def TZCNT64rr : RI<0xBC, MRMSrcReg, (outs GR64:$dst), (ins GR64:$src),
1402                      "tzcnt{q}\t{$src, $dst|$dst, $src}",
1403                      [(set GR64:$dst, (cttz GR64:$src)), (implicit EFLAGS)]>,
1404                      XS;
1405   def TZCNT64rm : RI<0xBC, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
1406                      "tzcnt{q}\t{$src, $dst|$dst, $src}",
1407                      [(set GR64:$dst, (cttz (loadi64 addr:$src))),
1408                       (implicit EFLAGS)]>, XS;
1409 }
1410
1411 multiclass bmi_bls<string mnemonic, Format RegMRM, Format MemMRM,
1412                   RegisterClass RC, X86MemOperand x86memop, SDNode OpNode,
1413                   PatFrag ld_frag> {
1414   def rr : I<0xF3, RegMRM, (outs RC:$dst), (ins RC:$src),
1415              !strconcat(mnemonic, "\t{$src, $dst|$dst, $src}"),
1416              [(set RC:$dst, EFLAGS, (OpNode RC:$src))]>, T8, VEX_4V;
1417   def rm : I<0xF3, MemMRM, (outs RC:$dst), (ins x86memop:$src),
1418              !strconcat(mnemonic, "\t{$src, $dst|$dst, $src}"),
1419              [(set RC:$dst, EFLAGS, (OpNode (ld_frag addr:$src)))]>,
1420              T8, VEX_4V;
1421 }
1422
1423 let Predicates = [HasBMI], Defs = [EFLAGS] in {
1424   defm BLSR32 : bmi_bls<"blsr{l}", MRM1r, MRM1m, GR32, i32mem,
1425                         X86blsr_flag, loadi32>;
1426   defm BLSR64 : bmi_bls<"blsr{q}", MRM1r, MRM1m, GR64, i64mem,
1427                         X86blsr_flag, loadi64>, VEX_W;
1428   defm BLSMSK32 : bmi_bls<"blsmsk{l}", MRM2r, MRM2m, GR32, i32mem,
1429                           X86blsmsk_flag, loadi32>;
1430   defm BLSMSK64 : bmi_bls<"blsmsk{q}", MRM2r, MRM2m, GR64, i64mem,
1431                           X86blsmsk_flag, loadi64>, VEX_W;
1432   defm BLSI32 : bmi_bls<"blsi{l}", MRM3r, MRM3m, GR32, i32mem,
1433                         X86blsi_flag, loadi32>;
1434   defm BLSI64 : bmi_bls<"blsi{q}", MRM3r, MRM3m, GR64, i64mem,
1435                         X86blsi_flag, loadi64>, VEX_W;
1436 }
1437
1438 multiclass bmi_bextr_bzhi<bits<8> opc, string mnemonic, RegisterClass RC,
1439                           X86MemOperand x86memop, Intrinsic Int,
1440                           PatFrag ld_frag> {
1441   def rr : I<opc, MRMSrcReg, (outs RC:$dst), (ins RC:$src1, RC:$src2),
1442              !strconcat(mnemonic, "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
1443              [(set RC:$dst, (Int RC:$src1, RC:$src2)), (implicit EFLAGS)]>,
1444              T8, VEX_4VOp3;
1445   def rm : I<opc, MRMSrcMem, (outs RC:$dst), (ins x86memop:$src1, RC:$src2),
1446              !strconcat(mnemonic, "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
1447              [(set RC:$dst, (Int (ld_frag addr:$src1), RC:$src2)),
1448               (implicit EFLAGS)]>, T8, VEX_4VOp3;
1449 }
1450
1451 let Predicates = [HasBMI], Defs = [EFLAGS] in {
1452   defm BEXTR32 : bmi_bextr_bzhi<0xF7, "bextr{l}", GR32, i32mem,
1453                                 int_x86_bmi_bextr_32, loadi32>;
1454   defm BEXTR64 : bmi_bextr_bzhi<0xF7, "bextr{q}", GR64, i64mem,
1455                                 int_x86_bmi_bextr_64, loadi64>, VEX_W;
1456 }
1457
1458 let Predicates = [HasBMI2], Defs = [EFLAGS] in {
1459   defm BZHI32 : bmi_bextr_bzhi<0xF5, "bzhi{l}", GR32, i32mem,
1460                                int_x86_bmi_bzhi_32, loadi32>;
1461   defm BZHI64 : bmi_bextr_bzhi<0xF5, "bzhi{q}", GR64, i64mem,
1462                                int_x86_bmi_bzhi_64, loadi64>, VEX_W;
1463 }
1464
1465 multiclass bmi_pdep_pext<string mnemonic, RegisterClass RC,
1466                          X86MemOperand x86memop, Intrinsic Int,
1467                          PatFrag ld_frag> {
1468   def rr : I<0xF5, MRMSrcReg, (outs RC:$dst), (ins RC:$src1, RC:$src2),
1469              !strconcat(mnemonic, "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
1470              [(set RC:$dst, (Int RC:$src1, RC:$src2))]>,
1471              VEX_4V;
1472   def rm : I<0xF5, MRMSrcMem, (outs RC:$dst), (ins RC:$src1, x86memop:$src2),
1473              !strconcat(mnemonic, "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
1474              [(set RC:$dst, (Int RC:$src1, (ld_frag addr:$src2)))]>, VEX_4V;
1475 }
1476
1477 let Predicates = [HasBMI2] in {
1478   defm PDEP32 : bmi_pdep_pext<"pdep{l}", GR32, i32mem,
1479                                int_x86_bmi_pdep_32, loadi32>, T8XD;
1480   defm PDEP64 : bmi_pdep_pext<"pdep{q}", GR64, i64mem,
1481                                int_x86_bmi_pdep_64, loadi64>, T8XD, VEX_W;
1482   defm PEXT32 : bmi_pdep_pext<"pext{l}", GR32, i32mem,
1483                                int_x86_bmi_pext_32, loadi32>, T8XS;
1484   defm PEXT64 : bmi_pdep_pext<"pext{q}", GR64, i64mem,
1485                                int_x86_bmi_pext_64, loadi64>, T8XS, VEX_W;
1486 }
1487
1488 //===----------------------------------------------------------------------===//
1489 // Subsystems.
1490 //===----------------------------------------------------------------------===//
1491
1492 include "X86InstrArithmetic.td"
1493 include "X86InstrCMovSetCC.td"
1494 include "X86InstrExtension.td"
1495 include "X86InstrControl.td"
1496 include "X86InstrShiftRotate.td"
1497
1498 // X87 Floating Point Stack.
1499 include "X86InstrFPStack.td"
1500
1501 // SIMD support (SSE, MMX and AVX)
1502 include "X86InstrFragmentsSIMD.td"
1503
1504 // FMA - Fused Multiply-Add support (requires FMA)
1505 include "X86InstrFMA.td"
1506
1507 // XOP
1508 include "X86InstrXOP.td"
1509
1510 // SSE, MMX and 3DNow! vector support.
1511 include "X86InstrSSE.td"
1512 include "X86InstrMMX.td"
1513 include "X86Instr3DNow.td"
1514
1515 include "X86InstrVMX.td"
1516
1517 // System instructions.
1518 include "X86InstrSystem.td"
1519
1520 // Compiler Pseudo Instructions and Pat Patterns
1521 include "X86InstrCompiler.td"
1522
1523 //===----------------------------------------------------------------------===//
1524 // Assembler Mnemonic Aliases
1525 //===----------------------------------------------------------------------===//
1526
1527 def : MnemonicAlias<"call", "calll">, Requires<[In32BitMode]>;
1528 def : MnemonicAlias<"call", "callq">, Requires<[In64BitMode]>;
1529
1530 def : MnemonicAlias<"cbw",  "cbtw">;
1531 def : MnemonicAlias<"cwde", "cwtl">;
1532 def : MnemonicAlias<"cwd",  "cwtd">;
1533 def : MnemonicAlias<"cdq", "cltd">;
1534 def : MnemonicAlias<"cdqe", "cltq">;
1535 def : MnemonicAlias<"cqo", "cqto">;
1536
1537 // lret maps to lretl, it is not ambiguous with lretq.
1538 def : MnemonicAlias<"lret", "lretl">;
1539
1540 def : MnemonicAlias<"leavel", "leave">, Requires<[In32BitMode]>;
1541 def : MnemonicAlias<"leaveq", "leave">, Requires<[In64BitMode]>;
1542
1543 def : MnemonicAlias<"loopz", "loope">;
1544 def : MnemonicAlias<"loopnz", "loopne">;
1545
1546 def : MnemonicAlias<"pop", "popl">, Requires<[In32BitMode]>;
1547 def : MnemonicAlias<"pop", "popq">, Requires<[In64BitMode]>;
1548 def : MnemonicAlias<"popf", "popfl">, Requires<[In32BitMode]>;
1549 def : MnemonicAlias<"popf", "popfq">, Requires<[In64BitMode]>;
1550 def : MnemonicAlias<"popfd",  "popfl">;
1551
1552 // FIXME: This is wrong for "push reg".  "push %bx" should turn into pushw in
1553 // all modes.  However: "push (addr)" and "push $42" should default to
1554 // pushl/pushq depending on the current mode.  Similar for "pop %bx"
1555 def : MnemonicAlias<"push", "pushl">, Requires<[In32BitMode]>;
1556 def : MnemonicAlias<"push", "pushq">, Requires<[In64BitMode]>;
1557 def : MnemonicAlias<"pushf", "pushfl">, Requires<[In32BitMode]>;
1558 def : MnemonicAlias<"pushf", "pushfq">, Requires<[In64BitMode]>;
1559 def : MnemonicAlias<"pushfd", "pushfl">;
1560
1561 def : MnemonicAlias<"repe", "rep">;
1562 def : MnemonicAlias<"repz", "rep">;
1563 def : MnemonicAlias<"repnz", "repne">;
1564
1565 def : MnemonicAlias<"retl", "ret">, Requires<[In32BitMode]>;
1566 def : MnemonicAlias<"retq", "ret">, Requires<[In64BitMode]>;
1567
1568 def : MnemonicAlias<"salb", "shlb">;
1569 def : MnemonicAlias<"salw", "shlw">;
1570 def : MnemonicAlias<"sall", "shll">;
1571 def : MnemonicAlias<"salq", "shlq">;
1572
1573 def : MnemonicAlias<"smovb", "movsb">;
1574 def : MnemonicAlias<"smovw", "movsw">;
1575 def : MnemonicAlias<"smovl", "movsl">;
1576 def : MnemonicAlias<"smovq", "movsq">;
1577
1578 def : MnemonicAlias<"ud2a", "ud2">;
1579 def : MnemonicAlias<"verrw", "verr">;
1580
1581 // System instruction aliases.
1582 def : MnemonicAlias<"iret", "iretl">;
1583 def : MnemonicAlias<"sysret", "sysretl">;
1584 def : MnemonicAlias<"sysexit", "sysexitl">;
1585
1586 def : MnemonicAlias<"lgdtl", "lgdt">, Requires<[In32BitMode]>;
1587 def : MnemonicAlias<"lgdtq", "lgdt">, Requires<[In64BitMode]>;
1588 def : MnemonicAlias<"lidtl", "lidt">, Requires<[In32BitMode]>;
1589 def : MnemonicAlias<"lidtq", "lidt">, Requires<[In64BitMode]>;
1590 def : MnemonicAlias<"sgdtl", "sgdt">, Requires<[In32BitMode]>;
1591 def : MnemonicAlias<"sgdtq", "sgdt">, Requires<[In64BitMode]>;
1592 def : MnemonicAlias<"sidtl", "sidt">, Requires<[In32BitMode]>;
1593 def : MnemonicAlias<"sidtq", "sidt">, Requires<[In64BitMode]>;
1594
1595
1596 // Floating point stack aliases.
1597 def : MnemonicAlias<"fcmovz",   "fcmove">;
1598 def : MnemonicAlias<"fcmova",   "fcmovnbe">;
1599 def : MnemonicAlias<"fcmovnae", "fcmovb">;
1600 def : MnemonicAlias<"fcmovna",  "fcmovbe">;
1601 def : MnemonicAlias<"fcmovae",  "fcmovnb">;
1602 def : MnemonicAlias<"fcomip",   "fcompi">;
1603 def : MnemonicAlias<"fildq",    "fildll">;
1604 def : MnemonicAlias<"fldcww",   "fldcw">;
1605 def : MnemonicAlias<"fnstcww", "fnstcw">;
1606 def : MnemonicAlias<"fnstsww", "fnstsw">;
1607 def : MnemonicAlias<"fucomip",  "fucompi">;
1608 def : MnemonicAlias<"fwait",    "wait">;
1609
1610
1611 class CondCodeAlias<string Prefix,string Suffix, string OldCond, string NewCond>
1612   : MnemonicAlias<!strconcat(Prefix, OldCond, Suffix),
1613                   !strconcat(Prefix, NewCond, Suffix)>;
1614
1615 /// IntegerCondCodeMnemonicAlias - This multiclass defines a bunch of
1616 /// MnemonicAlias's that canonicalize the condition code in a mnemonic, for
1617 /// example "setz" -> "sete".
1618 multiclass IntegerCondCodeMnemonicAlias<string Prefix, string Suffix> {
1619   def C   : CondCodeAlias<Prefix, Suffix, "c",   "b">;   // setc   -> setb
1620   def Z   : CondCodeAlias<Prefix, Suffix, "z" ,  "e">;   // setz   -> sete
1621   def NA  : CondCodeAlias<Prefix, Suffix, "na",  "be">;  // setna  -> setbe
1622   def NB  : CondCodeAlias<Prefix, Suffix, "nb",  "ae">;  // setnb  -> setae
1623   def NC  : CondCodeAlias<Prefix, Suffix, "nc",  "ae">;  // setnc  -> setae
1624   def NG  : CondCodeAlias<Prefix, Suffix, "ng",  "le">;  // setng  -> setle
1625   def NL  : CondCodeAlias<Prefix, Suffix, "nl",  "ge">;  // setnl  -> setge
1626   def NZ  : CondCodeAlias<Prefix, Suffix, "nz",  "ne">;  // setnz  -> setne
1627   def PE  : CondCodeAlias<Prefix, Suffix, "pe",  "p">;   // setpe  -> setp
1628   def PO  : CondCodeAlias<Prefix, Suffix, "po",  "np">;  // setpo  -> setnp
1629
1630   def NAE : CondCodeAlias<Prefix, Suffix, "nae", "b">;   // setnae -> setb
1631   def NBE : CondCodeAlias<Prefix, Suffix, "nbe", "a">;   // setnbe -> seta
1632   def NGE : CondCodeAlias<Prefix, Suffix, "nge", "l">;   // setnge -> setl
1633   def NLE : CondCodeAlias<Prefix, Suffix, "nle", "g">;   // setnle -> setg
1634 }
1635
1636 // Aliases for set<CC>
1637 defm : IntegerCondCodeMnemonicAlias<"set", "">;
1638 // Aliases for j<CC>
1639 defm : IntegerCondCodeMnemonicAlias<"j", "">;
1640 // Aliases for cmov<CC>{w,l,q}
1641 defm : IntegerCondCodeMnemonicAlias<"cmov", "w">;
1642 defm : IntegerCondCodeMnemonicAlias<"cmov", "l">;
1643 defm : IntegerCondCodeMnemonicAlias<"cmov", "q">;
1644
1645
1646 //===----------------------------------------------------------------------===//
1647 // Assembler Instruction Aliases
1648 //===----------------------------------------------------------------------===//
1649
1650 // aad/aam default to base 10 if no operand is specified.
1651 def : InstAlias<"aad", (AAD8i8 10)>;
1652 def : InstAlias<"aam", (AAM8i8 10)>;
1653
1654 // Disambiguate the mem/imm form of bt-without-a-suffix as btl.
1655 def : InstAlias<"bt $imm, $mem", (BT32mi8 i32mem:$mem, i32i8imm:$imm)>;
1656
1657 // clr aliases.
1658 def : InstAlias<"clrb $reg", (XOR8rr  GR8 :$reg, GR8 :$reg)>;
1659 def : InstAlias<"clrw $reg", (XOR16rr GR16:$reg, GR16:$reg)>;
1660 def : InstAlias<"clrl $reg", (XOR32rr GR32:$reg, GR32:$reg)>;
1661 def : InstAlias<"clrq $reg", (XOR64rr GR64:$reg, GR64:$reg)>;
1662
1663 // div and idiv aliases for explicit A register.
1664 def : InstAlias<"divb $src, %al",  (DIV8r  GR8 :$src)>;
1665 def : InstAlias<"divw $src, %ax",  (DIV16r GR16:$src)>;
1666 def : InstAlias<"divl $src, %eax", (DIV32r GR32:$src)>;
1667 def : InstAlias<"divq $src, %rax", (DIV64r GR64:$src)>;
1668 def : InstAlias<"divb $src, %al",  (DIV8m  i8mem :$src)>;
1669 def : InstAlias<"divw $src, %ax",  (DIV16m i16mem:$src)>;
1670 def : InstAlias<"divl $src, %eax", (DIV32m i32mem:$src)>;
1671 def : InstAlias<"divq $src, %rax", (DIV64m i64mem:$src)>;
1672 def : InstAlias<"idivb $src, %al",  (IDIV8r  GR8 :$src)>;
1673 def : InstAlias<"idivw $src, %ax",  (IDIV16r GR16:$src)>;
1674 def : InstAlias<"idivl $src, %eax", (IDIV32r GR32:$src)>;
1675 def : InstAlias<"idivq $src, %rax", (IDIV64r GR64:$src)>;
1676 def : InstAlias<"idivb $src, %al",  (IDIV8m  i8mem :$src)>;
1677 def : InstAlias<"idivw $src, %ax",  (IDIV16m i16mem:$src)>;
1678 def : InstAlias<"idivl $src, %eax", (IDIV32m i32mem:$src)>;
1679 def : InstAlias<"idivq $src, %rax", (IDIV64m i64mem:$src)>;
1680
1681
1682
1683 // Various unary fpstack operations default to operating on on ST1.
1684 // For example, "fxch" -> "fxch %st(1)"
1685 def : InstAlias<"faddp",        (ADD_FPrST0  ST1), 0>;
1686 def : InstAlias<"fsubp",        (SUBR_FPrST0 ST1)>;
1687 def : InstAlias<"fsubrp",       (SUB_FPrST0  ST1)>;
1688 def : InstAlias<"fmulp",        (MUL_FPrST0  ST1)>;
1689 def : InstAlias<"fdivp",        (DIVR_FPrST0 ST1)>;
1690 def : InstAlias<"fdivrp",       (DIV_FPrST0  ST1)>;
1691 def : InstAlias<"fxch",         (XCH_F       ST1)>;
1692 def : InstAlias<"fcomi",        (COM_FIr     ST1)>;
1693 def : InstAlias<"fcompi",       (COM_FIPr    ST1)>;
1694 def : InstAlias<"fucom",        (UCOM_Fr     ST1)>;
1695 def : InstAlias<"fucomp",       (UCOM_FPr    ST1)>;
1696 def : InstAlias<"fucomi",       (UCOM_FIr    ST1)>;
1697 def : InstAlias<"fucompi",      (UCOM_FIPr   ST1)>;
1698
1699 // Handle fmul/fadd/fsub/fdiv instructions with explicitly written st(0) op.
1700 // For example, "fadd %st(4), %st(0)" -> "fadd %st(4)".  We also disambiguate
1701 // instructions like "fadd %st(0), %st(0)" as "fadd %st(0)" for consistency with
1702 // gas.
1703 multiclass FpUnaryAlias<string Mnemonic, Instruction Inst, bit EmitAlias = 1> {
1704  def : InstAlias<!strconcat(Mnemonic, " $op, %st(0)"),
1705                  (Inst RST:$op), EmitAlias>;
1706  def : InstAlias<!strconcat(Mnemonic, " %st(0), %st(0)"),
1707                  (Inst ST0), EmitAlias>;
1708 }
1709
1710 defm : FpUnaryAlias<"fadd",   ADD_FST0r>;
1711 defm : FpUnaryAlias<"faddp",  ADD_FPrST0, 0>;
1712 defm : FpUnaryAlias<"fsub",   SUB_FST0r>;
1713 defm : FpUnaryAlias<"fsubp",  SUBR_FPrST0>;
1714 defm : FpUnaryAlias<"fsubr",  SUBR_FST0r>;
1715 defm : FpUnaryAlias<"fsubrp", SUB_FPrST0>;
1716 defm : FpUnaryAlias<"fmul",   MUL_FST0r>;
1717 defm : FpUnaryAlias<"fmulp",  MUL_FPrST0>;
1718 defm : FpUnaryAlias<"fdiv",   DIV_FST0r>;
1719 defm : FpUnaryAlias<"fdivp",  DIVR_FPrST0>;
1720 defm : FpUnaryAlias<"fdivr",  DIVR_FST0r>;
1721 defm : FpUnaryAlias<"fdivrp", DIV_FPrST0>;
1722 defm : FpUnaryAlias<"fcomi",   COM_FIr, 0>;
1723 defm : FpUnaryAlias<"fucomi",  UCOM_FIr, 0>;
1724 defm : FpUnaryAlias<"fcompi",   COM_FIPr>;
1725 defm : FpUnaryAlias<"fucompi",  UCOM_FIPr>;
1726
1727
1728 // Handle "f{mulp,addp} st(0), $op" the same as "f{mulp,addp} $op", since they
1729 // commute.  We also allow fdiv[r]p/fsubrp even though they don't commute,
1730 // solely because gas supports it.
1731 def : InstAlias<"faddp %st(0), $op", (ADD_FPrST0 RST:$op), 0>;
1732 def : InstAlias<"fmulp %st(0), $op", (MUL_FPrST0 RST:$op)>;
1733 def : InstAlias<"fsubp %st(0), $op", (SUBR_FPrST0 RST:$op)>;
1734 def : InstAlias<"fsubrp %st(0), $op", (SUB_FPrST0 RST:$op)>;
1735 def : InstAlias<"fdivp %st(0), $op", (DIVR_FPrST0 RST:$op)>;
1736 def : InstAlias<"fdivrp %st(0), $op", (DIV_FPrST0 RST:$op)>;
1737
1738 // We accept "fnstsw %eax" even though it only writes %ax.
1739 def : InstAlias<"fnstsw %eax", (FNSTSW8r)>;
1740 def : InstAlias<"fnstsw %al" , (FNSTSW8r)>;
1741 def : InstAlias<"fnstsw"     , (FNSTSW8r)>;
1742
1743 // lcall and ljmp aliases.  This seems to be an odd mapping in 64-bit mode, but
1744 // this is compatible with what GAS does.
1745 def : InstAlias<"lcall $seg, $off", (FARCALL32i i32imm:$off, i16imm:$seg)>;
1746 def : InstAlias<"ljmp $seg, $off",  (FARJMP32i  i32imm:$off, i16imm:$seg)>;
1747 def : InstAlias<"lcall *$dst",      (FARCALL32m opaque48mem:$dst)>;
1748 def : InstAlias<"ljmp *$dst",       (FARJMP32m  opaque48mem:$dst)>;
1749
1750 // "imul <imm>, B" is an alias for "imul <imm>, B, B".
1751 def : InstAlias<"imulw $imm, $r", (IMUL16rri  GR16:$r, GR16:$r, i16imm:$imm)>;
1752 def : InstAlias<"imulw $imm, $r", (IMUL16rri8 GR16:$r, GR16:$r, i16i8imm:$imm)>;
1753 def : InstAlias<"imull $imm, $r", (IMUL32rri  GR32:$r, GR32:$r, i32imm:$imm)>;
1754 def : InstAlias<"imull $imm, $r", (IMUL32rri8 GR32:$r, GR32:$r, i32i8imm:$imm)>;
1755 def : InstAlias<"imulq $imm, $r",(IMUL64rri32 GR64:$r, GR64:$r,i64i32imm:$imm)>;
1756 def : InstAlias<"imulq $imm, $r", (IMUL64rri8 GR64:$r, GR64:$r, i64i8imm:$imm)>;
1757
1758 // inb %dx -> inb %al, %dx
1759 def : InstAlias<"inb %dx", (IN8rr)>;
1760 def : InstAlias<"inw %dx", (IN16rr)>;
1761 def : InstAlias<"inl %dx", (IN32rr)>;
1762 def : InstAlias<"inb $port", (IN8ri i8imm:$port)>;
1763 def : InstAlias<"inw $port", (IN16ri i8imm:$port)>;
1764 def : InstAlias<"inl $port", (IN32ri i8imm:$port)>;
1765
1766
1767 // jmp and call aliases for lcall and ljmp.  jmp $42,$5 -> ljmp
1768 def : InstAlias<"call $seg, $off",  (FARCALL32i i32imm:$off, i16imm:$seg)>;
1769 def : InstAlias<"jmp $seg, $off",   (FARJMP32i  i32imm:$off, i16imm:$seg)>;
1770 def : InstAlias<"callw $seg, $off", (FARCALL16i i16imm:$off, i16imm:$seg)>;
1771 def : InstAlias<"jmpw $seg, $off",  (FARJMP16i  i16imm:$off, i16imm:$seg)>;
1772 def : InstAlias<"calll $seg, $off", (FARCALL32i i32imm:$off, i16imm:$seg)>;
1773 def : InstAlias<"jmpl $seg, $off",  (FARJMP32i  i32imm:$off, i16imm:$seg)>;
1774
1775 // Force mov without a suffix with a segment and mem to prefer the 'l' form of
1776 // the move.  All segment/mem forms are equivalent, this has the shortest
1777 // encoding.
1778 def : InstAlias<"mov $mem, $seg", (MOV32sm SEGMENT_REG:$seg, i32mem:$mem)>;
1779 def : InstAlias<"mov $seg, $mem", (MOV32ms i32mem:$mem, SEGMENT_REG:$seg)>;
1780
1781 // Match 'movq <largeimm>, <reg>' as an alias for movabsq.
1782 def : InstAlias<"movq $imm, $reg", (MOV64ri GR64:$reg, i64imm:$imm)>;
1783
1784 // Match 'movq GR64, MMX' as an alias for movd.
1785 def : InstAlias<"movq $src, $dst",
1786                 (MMX_MOVD64to64rr VR64:$dst, GR64:$src), 0>;
1787 def : InstAlias<"movq $src, $dst",
1788                 (MMX_MOVD64from64rr GR64:$dst, VR64:$src), 0>;
1789
1790 // movsd with no operands (as opposed to the SSE scalar move of a double) is an
1791 // alias for movsl. (as in rep; movsd)
1792 def : InstAlias<"movsd", (MOVSD)>;
1793
1794 // movsx aliases
1795 def : InstAlias<"movsx $src, $dst", (MOVSX16rr8 GR16:$dst, GR8:$src), 0>;
1796 def : InstAlias<"movsx $src, $dst", (MOVSX16rm8 GR16:$dst, i8mem:$src), 0>;
1797 def : InstAlias<"movsx $src, $dst", (MOVSX32rr8 GR32:$dst, GR8:$src), 0>;
1798 def : InstAlias<"movsx $src, $dst", (MOVSX32rr16 GR32:$dst, GR16:$src), 0>;
1799 def : InstAlias<"movsx $src, $dst", (MOVSX64rr8 GR64:$dst, GR8:$src), 0>;
1800 def : InstAlias<"movsx $src, $dst", (MOVSX64rr16 GR64:$dst, GR16:$src), 0>;
1801 def : InstAlias<"movsx $src, $dst", (MOVSX64rr32 GR64:$dst, GR32:$src), 0>;
1802
1803 // movzx aliases
1804 def : InstAlias<"movzx $src, $dst", (MOVZX16rr8 GR16:$dst, GR8:$src), 0>;
1805 def : InstAlias<"movzx $src, $dst", (MOVZX16rm8 GR16:$dst, i8mem:$src), 0>;
1806 def : InstAlias<"movzx $src, $dst", (MOVZX32rr8 GR32:$dst, GR8:$src), 0>;
1807 def : InstAlias<"movzx $src, $dst", (MOVZX32rr16 GR32:$dst, GR16:$src), 0>;
1808 def : InstAlias<"movzx $src, $dst", (MOVZX64rr8_Q GR64:$dst, GR8:$src), 0>;
1809 def : InstAlias<"movzx $src, $dst", (MOVZX64rr16_Q GR64:$dst, GR16:$src), 0>;
1810 // Note: No GR32->GR64 movzx form.
1811
1812 // outb %dx -> outb %al, %dx
1813 def : InstAlias<"outb %dx", (OUT8rr)>;
1814 def : InstAlias<"outw %dx", (OUT16rr)>;
1815 def : InstAlias<"outl %dx", (OUT32rr)>;
1816 def : InstAlias<"outb $port", (OUT8ir i8imm:$port)>;
1817 def : InstAlias<"outw $port", (OUT16ir i8imm:$port)>;
1818 def : InstAlias<"outl $port", (OUT32ir i8imm:$port)>;
1819
1820 // 'sldt <mem>' can be encoded with either sldtw or sldtq with the same
1821 // effect (both store to a 16-bit mem).  Force to sldtw to avoid ambiguity
1822 // errors, since its encoding is the most compact.
1823 def : InstAlias<"sldt $mem", (SLDT16m i16mem:$mem)>;
1824
1825 // shld/shrd op,op -> shld op, op, 1
1826 def : InstAlias<"shldw $r1, $r2", (SHLD16rri8 GR16:$r1, GR16:$r2, 1)>;
1827 def : InstAlias<"shldl $r1, $r2", (SHLD32rri8 GR32:$r1, GR32:$r2, 1)>;
1828 def : InstAlias<"shldq $r1, $r2", (SHLD64rri8 GR64:$r1, GR64:$r2, 1)>;
1829 def : InstAlias<"shrdw $r1, $r2", (SHRD16rri8 GR16:$r1, GR16:$r2, 1)>;
1830 def : InstAlias<"shrdl $r1, $r2", (SHRD32rri8 GR32:$r1, GR32:$r2, 1)>;
1831 def : InstAlias<"shrdq $r1, $r2", (SHRD64rri8 GR64:$r1, GR64:$r2, 1)>;
1832
1833 def : InstAlias<"shldw $mem, $reg", (SHLD16mri8 i16mem:$mem, GR16:$reg, 1)>;
1834 def : InstAlias<"shldl $mem, $reg", (SHLD32mri8 i32mem:$mem, GR32:$reg, 1)>;
1835 def : InstAlias<"shldq $mem, $reg", (SHLD64mri8 i64mem:$mem, GR64:$reg, 1)>;
1836 def : InstAlias<"shrdw $mem, $reg", (SHRD16mri8 i16mem:$mem, GR16:$reg, 1)>;
1837 def : InstAlias<"shrdl $mem, $reg", (SHRD32mri8 i32mem:$mem, GR32:$reg, 1)>;
1838 def : InstAlias<"shrdq $mem, $reg", (SHRD64mri8 i64mem:$mem, GR64:$reg, 1)>;
1839
1840 /*  FIXME: This is disabled because the asm matcher is currently incapable of
1841  *  matching a fixed immediate like $1.
1842 // "shl X, $1" is an alias for "shl X".
1843 multiclass ShiftRotateByOneAlias<string Mnemonic, string Opc> {
1844  def : InstAlias<!strconcat(Mnemonic, "b $op, $$1"),
1845                  (!cast<Instruction>(!strconcat(Opc, "8r1")) GR8:$op)>;
1846  def : InstAlias<!strconcat(Mnemonic, "w $op, $$1"),
1847                  (!cast<Instruction>(!strconcat(Opc, "16r1")) GR16:$op)>;
1848  def : InstAlias<!strconcat(Mnemonic, "l $op, $$1"),
1849                  (!cast<Instruction>(!strconcat(Opc, "32r1")) GR32:$op)>;
1850  def : InstAlias<!strconcat(Mnemonic, "q $op, $$1"),
1851                  (!cast<Instruction>(!strconcat(Opc, "64r1")) GR64:$op)>;
1852  def : InstAlias<!strconcat(Mnemonic, "b $op, $$1"),
1853                  (!cast<Instruction>(!strconcat(Opc, "8m1")) i8mem:$op)>;
1854  def : InstAlias<!strconcat(Mnemonic, "w $op, $$1"),
1855                  (!cast<Instruction>(!strconcat(Opc, "16m1")) i16mem:$op)>;
1856  def : InstAlias<!strconcat(Mnemonic, "l $op, $$1"),
1857                  (!cast<Instruction>(!strconcat(Opc, "32m1")) i32mem:$op)>;
1858  def : InstAlias<!strconcat(Mnemonic, "q $op, $$1"),
1859                  (!cast<Instruction>(!strconcat(Opc, "64m1")) i64mem:$op)>;
1860 }
1861
1862 defm : ShiftRotateByOneAlias<"rcl", "RCL">;
1863 defm : ShiftRotateByOneAlias<"rcr", "RCR">;
1864 defm : ShiftRotateByOneAlias<"rol", "ROL">;
1865 defm : ShiftRotateByOneAlias<"ror", "ROR">;
1866 FIXME */
1867
1868 // test: We accept "testX <reg>, <mem>" and "testX <mem>, <reg>" as synonyms.
1869 def : InstAlias<"testb $val, $mem", (TEST8rm  GR8 :$val, i8mem :$mem)>;
1870 def : InstAlias<"testw $val, $mem", (TEST16rm GR16:$val, i16mem:$mem)>;
1871 def : InstAlias<"testl $val, $mem", (TEST32rm GR32:$val, i32mem:$mem)>;
1872 def : InstAlias<"testq $val, $mem", (TEST64rm GR64:$val, i64mem:$mem)>;
1873
1874 // xchg: We accept "xchgX <reg>, <mem>" and "xchgX <mem>, <reg>" as synonyms.
1875 def : InstAlias<"xchgb $mem, $val", (XCHG8rm  GR8 :$val, i8mem :$mem)>;
1876 def : InstAlias<"xchgw $mem, $val", (XCHG16rm GR16:$val, i16mem:$mem)>;
1877 def : InstAlias<"xchgl $mem, $val", (XCHG32rm GR32:$val, i32mem:$mem)>;
1878 def : InstAlias<"xchgq $mem, $val", (XCHG64rm GR64:$val, i64mem:$mem)>;
1879
1880 // xchg: We accept "xchgX <reg>, %eax" and "xchgX %eax, <reg>" as synonyms.
1881 def : InstAlias<"xchgw %ax, $src", (XCHG16ar GR16:$src)>;
1882 def : InstAlias<"xchgl %eax, $src", (XCHG32ar GR32:$src)>, Requires<[In32BitMode]>;
1883 def : InstAlias<"xchgl %eax, $src", (XCHG32ar64 GR32_NOAX:$src)>, Requires<[In64BitMode]>;
1884 def : InstAlias<"xchgq %rax, $src", (XCHG64ar GR64:$src)>;