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