]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/Target/X86/X86InstrInfo.td
Update LLVM to r98164.
[FreeBSD/FreeBSD.git] / lib / Target / X86 / X86InstrInfo.td
1
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file describes the X86 instruction set, defining the instructions, and
11 // properties of the instructions which are needed for code generation, machine
12 // code emission, and analysis.
13 //
14 //===----------------------------------------------------------------------===//
15
16 //===----------------------------------------------------------------------===//
17 // X86 specific DAG Nodes.
18 //
19
20 def SDTIntShiftDOp: SDTypeProfile<1, 3,
21                                   [SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>,
22                                    SDTCisInt<0>, SDTCisInt<3>]>;
23
24 def SDTX86CmpTest : SDTypeProfile<0, 2, [SDTCisSameAs<0, 1>]>;
25
26 def SDTX86Cmov    : SDTypeProfile<1, 4,
27                                   [SDTCisSameAs<0, 1>, SDTCisSameAs<1, 2>,
28                                    SDTCisVT<3, i8>, SDTCisVT<4, i32>]>;
29
30 // Unary and binary operator instructions that set EFLAGS as a side-effect.
31 def SDTUnaryArithWithFlags  : SDTypeProfile<1, 1,
32                                             [SDTCisInt<0>]>;
33 def SDTBinaryArithWithFlags : SDTypeProfile<1, 2,
34                                             [SDTCisSameAs<0, 1>,
35                                              SDTCisSameAs<0, 2>,
36                                              SDTCisInt<0>]>;
37 def SDTX86BrCond  : SDTypeProfile<0, 3,
38                                   [SDTCisVT<0, OtherVT>,
39                                    SDTCisVT<1, i8>, SDTCisVT<2, i32>]>;
40
41 def SDTX86SetCC   : SDTypeProfile<1, 2,
42                                   [SDTCisVT<0, i8>,
43                                    SDTCisVT<1, i8>, SDTCisVT<2, i32>]>;
44 def SDTX86SetCC_C : SDTypeProfile<1, 2,
45                                   [SDTCisInt<0>,
46                                    SDTCisVT<1, i8>, SDTCisVT<2, i32>]>;
47
48 def SDTX86cas : SDTypeProfile<0, 3, [SDTCisPtrTy<0>, SDTCisInt<1>, 
49                                      SDTCisVT<2, i8>]>;
50 def SDTX86cas8 : SDTypeProfile<0, 1, [SDTCisPtrTy<0>]>;
51
52 def SDTX86atomicBinary : SDTypeProfile<2, 3, [SDTCisInt<0>, SDTCisInt<1>,
53                                 SDTCisPtrTy<2>, SDTCisInt<3>,SDTCisInt<4>]>;
54 def SDTX86Ret     : SDTypeProfile<0, -1, [SDTCisVT<0, i16>]>;
55
56 def SDT_X86CallSeqStart : SDCallSeqStart<[SDTCisVT<0, i32>]>;
57 def SDT_X86CallSeqEnd   : SDCallSeqEnd<[SDTCisVT<0, i32>,
58                                         SDTCisVT<1, i32>]>;
59
60 def SDT_X86Call   : SDTypeProfile<0, -1, [SDTCisVT<0, iPTR>]>;
61
62 def SDT_X86VASTART_SAVE_XMM_REGS : SDTypeProfile<0, -1, [SDTCisVT<0, i8>,
63                                                          SDTCisVT<1, iPTR>,
64                                                          SDTCisVT<2, iPTR>]>;
65
66 def SDTX86RepStr  : SDTypeProfile<0, 1, [SDTCisVT<0, OtherVT>]>;
67
68 def SDTX86Void    : SDTypeProfile<0, 0, []>;
69
70 def SDTX86Wrapper : SDTypeProfile<1, 1, [SDTCisSameAs<0, 1>, SDTCisPtrTy<0>]>;
71
72 def SDT_X86TLSADDR : SDTypeProfile<0, 1, [SDTCisInt<0>]>;
73
74 def SDT_X86SegmentBaseAddress : SDTypeProfile<1, 1, [SDTCisPtrTy<0>]>;
75
76 def SDT_X86EHRET : SDTypeProfile<0, 1, [SDTCisInt<0>]>;
77
78 def SDT_X86TCRET : SDTypeProfile<0, 2, [SDTCisPtrTy<0>, SDTCisVT<1, i32>]>;
79
80 def X86bsf     : SDNode<"X86ISD::BSF",      SDTIntUnaryOp>;
81 def X86bsr     : SDNode<"X86ISD::BSR",      SDTIntUnaryOp>;
82 def X86shld    : SDNode<"X86ISD::SHLD",     SDTIntShiftDOp>;
83 def X86shrd    : SDNode<"X86ISD::SHRD",     SDTIntShiftDOp>;
84
85 def X86cmp     : SDNode<"X86ISD::CMP" ,     SDTX86CmpTest>;
86
87 def X86bt      : SDNode<"X86ISD::BT",       SDTX86CmpTest>;
88
89 def X86cmov    : SDNode<"X86ISD::CMOV",     SDTX86Cmov>;
90 def X86brcond  : SDNode<"X86ISD::BRCOND",   SDTX86BrCond,
91                         [SDNPHasChain]>;
92 def X86setcc   : SDNode<"X86ISD::SETCC",    SDTX86SetCC>;
93 def X86setcc_c : SDNode<"X86ISD::SETCC_CARRY", SDTX86SetCC_C>;
94
95 def X86cas : SDNode<"X86ISD::LCMPXCHG_DAG", SDTX86cas,
96                         [SDNPHasChain, SDNPInFlag, SDNPOutFlag, SDNPMayStore,
97                          SDNPMayLoad]>;
98 def X86cas8 : SDNode<"X86ISD::LCMPXCHG8_DAG", SDTX86cas8,
99                         [SDNPHasChain, SDNPInFlag, SDNPOutFlag, SDNPMayStore,
100                          SDNPMayLoad]>;
101 def X86AtomAdd64 : SDNode<"X86ISD::ATOMADD64_DAG", SDTX86atomicBinary,
102                         [SDNPHasChain, SDNPMayStore, 
103                          SDNPMayLoad, SDNPMemOperand]>;
104 def X86AtomSub64 : SDNode<"X86ISD::ATOMSUB64_DAG", SDTX86atomicBinary,
105                         [SDNPHasChain, SDNPMayStore, 
106                          SDNPMayLoad, SDNPMemOperand]>;
107 def X86AtomOr64 : SDNode<"X86ISD::ATOMOR64_DAG", SDTX86atomicBinary,
108                         [SDNPHasChain, SDNPMayStore, 
109                          SDNPMayLoad, SDNPMemOperand]>;
110 def X86AtomXor64 : SDNode<"X86ISD::ATOMXOR64_DAG", SDTX86atomicBinary,
111                         [SDNPHasChain, SDNPMayStore, 
112                          SDNPMayLoad, SDNPMemOperand]>;
113 def X86AtomAnd64 : SDNode<"X86ISD::ATOMAND64_DAG", SDTX86atomicBinary,
114                         [SDNPHasChain, SDNPMayStore, 
115                          SDNPMayLoad, SDNPMemOperand]>;
116 def X86AtomNand64 : SDNode<"X86ISD::ATOMNAND64_DAG", SDTX86atomicBinary,
117                         [SDNPHasChain, SDNPMayStore, 
118                          SDNPMayLoad, SDNPMemOperand]>;
119 def X86AtomSwap64 : SDNode<"X86ISD::ATOMSWAP64_DAG", SDTX86atomicBinary,
120                         [SDNPHasChain, SDNPMayStore, 
121                          SDNPMayLoad, SDNPMemOperand]>;
122 def X86retflag : SDNode<"X86ISD::RET_FLAG", SDTX86Ret,
123                         [SDNPHasChain, SDNPOptInFlag]>;
124
125 def X86vastart_save_xmm_regs :
126                  SDNode<"X86ISD::VASTART_SAVE_XMM_REGS",
127                         SDT_X86VASTART_SAVE_XMM_REGS,
128                         [SDNPHasChain]>;
129
130 def X86callseq_start :
131                  SDNode<"ISD::CALLSEQ_START", SDT_X86CallSeqStart,
132                         [SDNPHasChain, SDNPOutFlag]>;
133 def X86callseq_end :
134                  SDNode<"ISD::CALLSEQ_END",   SDT_X86CallSeqEnd,
135                         [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;       
136
137 def X86call    : SDNode<"X86ISD::CALL",     SDT_X86Call,
138                         [SDNPHasChain, SDNPOutFlag, SDNPOptInFlag]>;
139
140 def X86rep_stos: SDNode<"X86ISD::REP_STOS", SDTX86RepStr,
141                         [SDNPHasChain, SDNPInFlag, SDNPOutFlag, SDNPMayStore]>;
142 def X86rep_movs: SDNode<"X86ISD::REP_MOVS", SDTX86RepStr,
143                         [SDNPHasChain, SDNPInFlag, SDNPOutFlag, SDNPMayStore,
144                          SDNPMayLoad]>;
145
146 def X86rdtsc   : SDNode<"X86ISD::RDTSC_DAG", SDTX86Void,
147                         [SDNPHasChain, SDNPOutFlag, SDNPSideEffect]>;
148
149 def X86Wrapper    : SDNode<"X86ISD::Wrapper",     SDTX86Wrapper>;
150 def X86WrapperRIP : SDNode<"X86ISD::WrapperRIP",  SDTX86Wrapper>;
151
152 def X86tlsaddr : SDNode<"X86ISD::TLSADDR", SDT_X86TLSADDR,
153                         [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
154 def X86SegmentBaseAddress : SDNode<"X86ISD::SegmentBaseAddress",
155                                  SDT_X86SegmentBaseAddress, []>;
156
157 def X86ehret : SDNode<"X86ISD::EH_RETURN", SDT_X86EHRET,
158                         [SDNPHasChain]>;
159
160 def X86tcret : SDNode<"X86ISD::TC_RETURN", SDT_X86TCRET, 
161                         [SDNPHasChain,  SDNPOptInFlag]>;
162
163 def X86add_flag  : SDNode<"X86ISD::ADD",  SDTBinaryArithWithFlags,
164                           [SDNPCommutative]>;
165 def X86sub_flag  : SDNode<"X86ISD::SUB",  SDTBinaryArithWithFlags>;
166 def X86smul_flag : SDNode<"X86ISD::SMUL", SDTBinaryArithWithFlags,
167                           [SDNPCommutative]>;
168 def X86umul_flag : SDNode<"X86ISD::UMUL", SDTUnaryArithWithFlags,
169                           [SDNPCommutative]>;
170 def X86inc_flag  : SDNode<"X86ISD::INC",  SDTUnaryArithWithFlags>;
171 def X86dec_flag  : SDNode<"X86ISD::DEC",  SDTUnaryArithWithFlags>;
172 def X86or_flag   : SDNode<"X86ISD::OR",   SDTBinaryArithWithFlags,
173                           [SDNPCommutative]>;
174 def X86xor_flag  : SDNode<"X86ISD::XOR",  SDTBinaryArithWithFlags,
175                           [SDNPCommutative]>;
176 def X86and_flag  : SDNode<"X86ISD::AND",  SDTBinaryArithWithFlags,
177                           [SDNPCommutative]>;
178
179 def X86mul_imm : SDNode<"X86ISD::MUL_IMM", SDTIntBinOp>;
180
181 def X86MingwAlloca : SDNode<"X86ISD::MINGW_ALLOCA", SDTX86Void,
182                             [SDNPHasChain, SDNPInFlag, SDNPOutFlag]>;
183
184 //===----------------------------------------------------------------------===//
185 // X86 Operand Definitions.
186 //
187
188 // A version of ptr_rc which excludes SP, ESP, and RSP. This is used for
189 // the index operand of an address, to conform to x86 encoding restrictions.
190 def ptr_rc_nosp : PointerLikeRegClass<1>;
191
192 // *mem - Operand definitions for the funky X86 addressing mode operands.
193 //
194 def X86MemAsmOperand : AsmOperandClass {
195   let Name = "Mem";
196   let SuperClass = ?;
197 }
198 def X86AbsMemAsmOperand : AsmOperandClass {
199   let Name = "AbsMem";
200   let SuperClass = X86MemAsmOperand;
201 }
202 def X86NoSegMemAsmOperand : AsmOperandClass {
203   let Name = "NoSegMem";
204   let SuperClass = X86MemAsmOperand;
205 }
206 class X86MemOperand<string printMethod> : Operand<iPTR> {
207   let PrintMethod = printMethod;
208   let MIOperandInfo = (ops ptr_rc, i8imm, ptr_rc_nosp, i32imm, i8imm);
209   let ParserMatchClass = X86MemAsmOperand;
210 }
211
212 def opaque32mem : X86MemOperand<"printopaquemem">;
213 def opaque48mem : X86MemOperand<"printopaquemem">;
214 def opaque80mem : X86MemOperand<"printopaquemem">;
215 def opaque512mem : X86MemOperand<"printopaquemem">;
216
217 def i8mem   : X86MemOperand<"printi8mem">;
218 def i16mem  : X86MemOperand<"printi16mem">;
219 def i32mem  : X86MemOperand<"printi32mem">;
220 def i64mem  : X86MemOperand<"printi64mem">;
221 def i128mem : X86MemOperand<"printi128mem">;
222 //def i256mem : X86MemOperand<"printi256mem">;
223 def f32mem  : X86MemOperand<"printf32mem">;
224 def f64mem  : X86MemOperand<"printf64mem">;
225 def f80mem  : X86MemOperand<"printf80mem">;
226 def f128mem : X86MemOperand<"printf128mem">;
227 //def f256mem : X86MemOperand<"printf256mem">;
228
229 // A version of i8mem for use on x86-64 that uses GR64_NOREX instead of
230 // plain GR64, so that it doesn't potentially require a REX prefix.
231 def i8mem_NOREX : Operand<i64> {
232   let PrintMethod = "printi8mem";
233   let MIOperandInfo = (ops GR64_NOREX, i8imm, GR64_NOREX_NOSP, i32imm, i8imm);
234   let ParserMatchClass = X86MemAsmOperand;
235 }
236
237 def lea32mem : Operand<i32> {
238   let PrintMethod = "printlea32mem";
239   let MIOperandInfo = (ops GR32, i8imm, GR32_NOSP, i32imm);
240   let ParserMatchClass = X86NoSegMemAsmOperand;
241 }
242
243 let ParserMatchClass = X86AbsMemAsmOperand,
244     PrintMethod = "print_pcrel_imm" in {
245 def i32imm_pcrel : Operand<i32>;
246
247 def offset8 : Operand<i64>;
248 def offset16 : Operand<i64>;
249 def offset32 : Operand<i64>;
250 def offset64 : Operand<i64>;
251
252 // Branch targets have OtherVT type and print as pc-relative values.
253 def brtarget : Operand<OtherVT>;
254 def brtarget8 : Operand<OtherVT>;
255
256 }
257
258 def SSECC : Operand<i8> {
259   let PrintMethod = "printSSECC";
260 }
261
262 def ImmSExt8AsmOperand : AsmOperandClass {
263   let Name = "ImmSExt8";
264   let SuperClass = ImmAsmOperand;
265 }
266
267 // A couple of more descriptive operand definitions.
268 // 16-bits but only 8 bits are significant.
269 def i16i8imm  : Operand<i16> {
270   let ParserMatchClass = ImmSExt8AsmOperand;
271 }
272 // 32-bits but only 8 bits are significant.
273 def i32i8imm  : Operand<i32> {
274   let ParserMatchClass = ImmSExt8AsmOperand;
275 }
276
277 //===----------------------------------------------------------------------===//
278 // X86 Complex Pattern Definitions.
279 //
280
281 // Define X86 specific addressing mode.
282 def addr      : ComplexPattern<iPTR, 5, "SelectAddr", [], []>;
283 def lea32addr : ComplexPattern<i32, 4, "SelectLEAAddr",
284                                [add, sub, mul, X86mul_imm, shl, or, frameindex],
285                                []>;
286 def tls32addr : ComplexPattern<i32, 4, "SelectTLSADDRAddr",
287                                [tglobaltlsaddr], []>;
288
289 //===----------------------------------------------------------------------===//
290 // X86 Instruction Predicate Definitions.
291 def HasMMX       : Predicate<"Subtarget->hasMMX()">;
292 def HasSSE1      : Predicate<"Subtarget->hasSSE1()">;
293 def HasSSE2      : Predicate<"Subtarget->hasSSE2()">;
294 def HasSSE3      : Predicate<"Subtarget->hasSSE3()">;
295 def HasSSSE3     : Predicate<"Subtarget->hasSSSE3()">;
296 def HasSSE41     : Predicate<"Subtarget->hasSSE41()">;
297 def HasSSE42     : Predicate<"Subtarget->hasSSE42()">;
298 def HasSSE4A     : Predicate<"Subtarget->hasSSE4A()">;
299 def HasAVX       : Predicate<"Subtarget->hasAVX()">;
300 def HasFMA3      : Predicate<"Subtarget->hasFMA3()">;
301 def HasFMA4      : Predicate<"Subtarget->hasFMA4()">;
302 def FPStackf32   : Predicate<"!Subtarget->hasSSE1()">;
303 def FPStackf64   : Predicate<"!Subtarget->hasSSE2()">;
304 def In32BitMode  : Predicate<"!Subtarget->is64Bit()">;
305 def In64BitMode  : Predicate<"Subtarget->is64Bit()">;
306 def IsWin64      : Predicate<"Subtarget->isTargetWin64()">;
307 def NotWin64     : Predicate<"!Subtarget->isTargetWin64()">;
308 def SmallCode    : Predicate<"TM.getCodeModel() == CodeModel::Small">;
309 def KernelCode   : Predicate<"TM.getCodeModel() == CodeModel::Kernel">;
310 def FarData      : Predicate<"TM.getCodeModel() != CodeModel::Small &&"
311                              "TM.getCodeModel() != CodeModel::Kernel">;
312 def NearData     : Predicate<"TM.getCodeModel() == CodeModel::Small ||"
313                              "TM.getCodeModel() == CodeModel::Kernel">;
314 def IsStatic     : Predicate<"TM.getRelocationModel() == Reloc::Static">;
315 def OptForSize   : Predicate<"OptForSize">;
316 def OptForSpeed  : Predicate<"!OptForSize">;
317 def FastBTMem    : Predicate<"!Subtarget->isBTMemSlow()">;
318 def CallImmAddr  : Predicate<"Subtarget->IsLegalToCallImmediateAddr(TM)">;
319
320 //===----------------------------------------------------------------------===//
321 // X86 Instruction Format Definitions.
322 //
323
324 include "X86InstrFormats.td"
325
326 //===----------------------------------------------------------------------===//
327 // Pattern fragments...
328 //
329
330 // X86 specific condition code. These correspond to CondCode in
331 // X86InstrInfo.h. They must be kept in synch.
332 def X86_COND_A   : PatLeaf<(i8 0)>;  // alt. COND_NBE
333 def X86_COND_AE  : PatLeaf<(i8 1)>;  // alt. COND_NC
334 def X86_COND_B   : PatLeaf<(i8 2)>;  // alt. COND_C
335 def X86_COND_BE  : PatLeaf<(i8 3)>;  // alt. COND_NA
336 def X86_COND_E   : PatLeaf<(i8 4)>;  // alt. COND_Z
337 def X86_COND_G   : PatLeaf<(i8 5)>;  // alt. COND_NLE
338 def X86_COND_GE  : PatLeaf<(i8 6)>;  // alt. COND_NL
339 def X86_COND_L   : PatLeaf<(i8 7)>;  // alt. COND_NGE
340 def X86_COND_LE  : PatLeaf<(i8 8)>;  // alt. COND_NG
341 def X86_COND_NE  : PatLeaf<(i8 9)>;  // alt. COND_NZ
342 def X86_COND_NO  : PatLeaf<(i8 10)>;
343 def X86_COND_NP  : PatLeaf<(i8 11)>; // alt. COND_PO
344 def X86_COND_NS  : PatLeaf<(i8 12)>;
345 def X86_COND_O   : PatLeaf<(i8 13)>;
346 def X86_COND_P   : PatLeaf<(i8 14)>; // alt. COND_PE
347 def X86_COND_S   : PatLeaf<(i8 15)>;
348
349 def immSext8 : PatLeaf<(imm), [{
350   return N->getSExtValue() == (int8_t)N->getSExtValue();
351 }]>;
352
353 def i16immSExt8  : PatLeaf<(i16 immSext8)>;
354 def i32immSExt8  : PatLeaf<(i32 immSext8)>;
355
356 /// Load patterns: these constraint the match to the right address space.
357 def dsload : PatFrag<(ops node:$ptr), (load node:$ptr), [{
358   if (const Value *Src = cast<LoadSDNode>(N)->getSrcValue())
359     if (const PointerType *PT = dyn_cast<PointerType>(Src->getType()))
360       if (PT->getAddressSpace() > 255)
361         return false;
362   return true;
363 }]>;
364
365 def gsload : PatFrag<(ops node:$ptr), (load node:$ptr), [{
366   if (const Value *Src = cast<LoadSDNode>(N)->getSrcValue())
367     if (const PointerType *PT = dyn_cast<PointerType>(Src->getType()))
368       return PT->getAddressSpace() == 256;
369   return false;
370 }]>;
371
372 def fsload : PatFrag<(ops node:$ptr), (load node:$ptr), [{
373   if (const Value *Src = cast<LoadSDNode>(N)->getSrcValue())
374     if (const PointerType *PT = dyn_cast<PointerType>(Src->getType()))
375       return PT->getAddressSpace() == 257;
376   return false;
377 }]>;
378
379
380 // Helper fragments for loads.
381 // It's always safe to treat a anyext i16 load as a i32 load if the i16 is
382 // known to be 32-bit aligned or better. Ditto for i8 to i16.
383 def loadi16 : PatFrag<(ops node:$ptr), (i16 (unindexedload node:$ptr)), [{
384   LoadSDNode *LD = cast<LoadSDNode>(N);
385   if (const Value *Src = LD->getSrcValue())
386     if (const PointerType *PT = dyn_cast<PointerType>(Src->getType()))
387       if (PT->getAddressSpace() > 255)
388         return false;
389   ISD::LoadExtType ExtType = LD->getExtensionType();
390   if (ExtType == ISD::NON_EXTLOAD)
391     return true;
392   if (ExtType == ISD::EXTLOAD)
393     return LD->getAlignment() >= 2 && !LD->isVolatile();
394   return false;
395 }]>;
396
397 def loadi16_anyext : PatFrag<(ops node:$ptr), (i32 (unindexedload node:$ptr)),[{
398   LoadSDNode *LD = cast<LoadSDNode>(N);
399   if (const Value *Src = LD->getSrcValue())
400     if (const PointerType *PT = dyn_cast<PointerType>(Src->getType()))
401       if (PT->getAddressSpace() > 255)
402         return false;
403   ISD::LoadExtType ExtType = LD->getExtensionType();
404   if (ExtType == ISD::EXTLOAD)
405     return LD->getAlignment() >= 2 && !LD->isVolatile();
406   return false;
407 }]>;
408
409 def loadi32 : PatFrag<(ops node:$ptr), (i32 (unindexedload node:$ptr)), [{
410   LoadSDNode *LD = cast<LoadSDNode>(N);
411   if (const Value *Src = LD->getSrcValue())
412     if (const PointerType *PT = dyn_cast<PointerType>(Src->getType()))
413       if (PT->getAddressSpace() > 255)
414         return false;
415   ISD::LoadExtType ExtType = LD->getExtensionType();
416   if (ExtType == ISD::NON_EXTLOAD)
417     return true;
418   if (ExtType == ISD::EXTLOAD)
419     return LD->getAlignment() >= 4 && !LD->isVolatile();
420   return false;
421 }]>;
422
423 def loadi8  : PatFrag<(ops node:$ptr), (i8  (dsload node:$ptr))>;
424 def loadi64 : PatFrag<(ops node:$ptr), (i64 (dsload node:$ptr))>;
425 def loadf32 : PatFrag<(ops node:$ptr), (f32 (dsload node:$ptr))>;
426 def loadf64 : PatFrag<(ops node:$ptr), (f64 (dsload node:$ptr))>;
427 def loadf80 : PatFrag<(ops node:$ptr), (f80 (dsload node:$ptr))>;
428
429 def sextloadi16i8  : PatFrag<(ops node:$ptr), (i16 (sextloadi8 node:$ptr))>;
430 def sextloadi32i8  : PatFrag<(ops node:$ptr), (i32 (sextloadi8 node:$ptr))>;
431 def sextloadi32i16 : PatFrag<(ops node:$ptr), (i32 (sextloadi16 node:$ptr))>;
432
433 def zextloadi8i1   : PatFrag<(ops node:$ptr), (i8  (zextloadi1 node:$ptr))>;
434 def zextloadi16i1  : PatFrag<(ops node:$ptr), (i16 (zextloadi1 node:$ptr))>;
435 def zextloadi32i1  : PatFrag<(ops node:$ptr), (i32 (zextloadi1 node:$ptr))>;
436 def zextloadi16i8  : PatFrag<(ops node:$ptr), (i16 (zextloadi8 node:$ptr))>;
437 def zextloadi32i8  : PatFrag<(ops node:$ptr), (i32 (zextloadi8 node:$ptr))>;
438 def zextloadi32i16 : PatFrag<(ops node:$ptr), (i32 (zextloadi16 node:$ptr))>;
439
440 def extloadi8i1    : PatFrag<(ops node:$ptr), (i8  (extloadi1 node:$ptr))>;
441 def extloadi16i1   : PatFrag<(ops node:$ptr), (i16 (extloadi1 node:$ptr))>;
442 def extloadi32i1   : PatFrag<(ops node:$ptr), (i32 (extloadi1 node:$ptr))>;
443 def extloadi16i8   : PatFrag<(ops node:$ptr), (i16 (extloadi8 node:$ptr))>;
444 def extloadi32i8   : PatFrag<(ops node:$ptr), (i32 (extloadi8 node:$ptr))>;
445 def extloadi32i16  : PatFrag<(ops node:$ptr), (i32 (extloadi16 node:$ptr))>;
446
447
448 // An 'and' node with a single use.
449 def and_su : PatFrag<(ops node:$lhs, node:$rhs), (and node:$lhs, node:$rhs), [{
450   return N->hasOneUse();
451 }]>;
452 // An 'srl' node with a single use.
453 def srl_su : PatFrag<(ops node:$lhs, node:$rhs), (srl node:$lhs, node:$rhs), [{
454   return N->hasOneUse();
455 }]>;
456 // An 'trunc' node with a single use.
457 def trunc_su : PatFrag<(ops node:$src), (trunc node:$src), [{
458   return N->hasOneUse();
459 }]>;
460
461 // Treat an 'or' node is as an 'add' if the or'ed bits are known to be zero.
462 def or_is_add : PatFrag<(ops node:$lhs, node:$rhs), (or node:$lhs, node:$rhs),[{
463   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N->getOperand(1)))
464     return CurDAG->MaskedValueIsZero(N->getOperand(0), CN->getAPIntValue());
465   else {
466     unsigned BitWidth = N->getValueType(0).getScalarType().getSizeInBits();
467     APInt Mask = APInt::getAllOnesValue(BitWidth);
468     APInt KnownZero0, KnownOne0;
469     CurDAG->ComputeMaskedBits(N->getOperand(0), Mask, KnownZero0, KnownOne0, 0);
470     APInt KnownZero1, KnownOne1;
471     CurDAG->ComputeMaskedBits(N->getOperand(1), Mask, KnownZero1, KnownOne1, 0);
472     return (~KnownZero0 & ~KnownZero1) == 0;
473   }
474 }]>;
475
476 // 'shld' and 'shrd' instruction patterns. Note that even though these have
477 // the srl and shl in their patterns, the C++ code must still check for them,
478 // because predicates are tested before children nodes are explored.
479
480 def shrd : PatFrag<(ops node:$src1, node:$amt1, node:$src2, node:$amt2),
481                    (or (srl node:$src1, node:$amt1),
482                        (shl node:$src2, node:$amt2)), [{
483   assert(N->getOpcode() == ISD::OR);
484   return N->getOperand(0).getOpcode() == ISD::SRL &&
485          N->getOperand(1).getOpcode() == ISD::SHL &&
486          isa<ConstantSDNode>(N->getOperand(0).getOperand(1)) &&
487          isa<ConstantSDNode>(N->getOperand(1).getOperand(1)) &&
488          N->getOperand(0).getConstantOperandVal(1) ==
489          N->getValueSizeInBits(0) - N->getOperand(1).getConstantOperandVal(1);
490 }]>;
491
492 def shld : PatFrag<(ops node:$src1, node:$amt1, node:$src2, node:$amt2),
493                    (or (shl node:$src1, node:$amt1),
494                        (srl node:$src2, node:$amt2)), [{
495   assert(N->getOpcode() == ISD::OR);
496   return N->getOperand(0).getOpcode() == ISD::SHL &&
497          N->getOperand(1).getOpcode() == ISD::SRL &&
498          isa<ConstantSDNode>(N->getOperand(0).getOperand(1)) &&
499          isa<ConstantSDNode>(N->getOperand(1).getOperand(1)) &&
500          N->getOperand(0).getConstantOperandVal(1) ==
501          N->getValueSizeInBits(0) - N->getOperand(1).getConstantOperandVal(1);
502 }]>;
503
504 //===----------------------------------------------------------------------===//
505 // Instruction list...
506 //
507
508 // ADJCALLSTACKDOWN/UP implicitly use/def ESP because they may be expanded into
509 // a stack adjustment and the codegen must know that they may modify the stack
510 // pointer before prolog-epilog rewriting occurs.
511 // Pessimistically assume ADJCALLSTACKDOWN / ADJCALLSTACKUP will become
512 // sub / add which can clobber EFLAGS.
513 let Defs = [ESP, EFLAGS], Uses = [ESP] in {
514 def ADJCALLSTACKDOWN32 : I<0, Pseudo, (outs), (ins i32imm:$amt),
515                            "#ADJCALLSTACKDOWN",
516                            [(X86callseq_start timm:$amt)]>,
517                           Requires<[In32BitMode]>;
518 def ADJCALLSTACKUP32   : I<0, Pseudo, (outs), (ins i32imm:$amt1, i32imm:$amt2),
519                            "#ADJCALLSTACKUP",
520                            [(X86callseq_end timm:$amt1, timm:$amt2)]>,
521                           Requires<[In32BitMode]>;
522 }
523
524 // x86-64 va_start lowering magic.
525 let usesCustomInserter = 1 in {
526 def VASTART_SAVE_XMM_REGS : I<0, Pseudo,
527                               (outs),
528                               (ins GR8:$al,
529                                    i64imm:$regsavefi, i64imm:$offset,
530                                    variable_ops),
531                               "#VASTART_SAVE_XMM_REGS $al, $regsavefi, $offset",
532                               [(X86vastart_save_xmm_regs GR8:$al,
533                                                          imm:$regsavefi,
534                                                          imm:$offset)]>;
535
536 // Dynamic stack allocation yields _alloca call for Cygwin/Mingw targets.  Calls
537 // to _alloca is needed to probe the stack when allocating more than 4k bytes in
538 // one go. Touching the stack at 4K increments is necessary to ensure that the
539 // guard pages used by the OS virtual memory manager are allocated in correct
540 // sequence.
541 // The main point of having separate instruction are extra unmodelled effects
542 // (compared to ordinary calls) like stack pointer change.
543
544 def MINGW_ALLOCA : I<0, Pseudo, (outs), (ins),
545                      "# dynamic stack allocation",
546                      [(X86MingwAlloca)]>;
547 }
548
549 // Nop
550 let neverHasSideEffects = 1 in {
551   def NOOP : I<0x90, RawFrm, (outs), (ins), "nop", []>;
552   def NOOPW : I<0x1f, MRM0m, (outs), (ins i16mem:$zero),
553                 "nop{w}\t$zero", []>, TB, OpSize;
554   def NOOPL : I<0x1f, MRM0m, (outs), (ins i32mem:$zero),
555                 "nop{l}\t$zero", []>, TB;
556 }
557
558 // Trap
559 def INT3 : I<0xcc, RawFrm, (outs), (ins), "int\t3", []>;
560 def INT : I<0xcd, RawFrm, (outs), (ins i8imm:$trap), "int\t$trap", []>;
561 def IRET16 : I<0xcf, RawFrm, (outs), (ins), "iret{w}", []>, OpSize;
562 def IRET32 : I<0xcf, RawFrm, (outs), (ins), "iret{l}", []>;
563
564 // PIC base construction.  This expands to code that looks like this:
565 //     call  $next_inst
566 //     popl %destreg"
567 let neverHasSideEffects = 1, isNotDuplicable = 1, Uses = [ESP] in
568   def MOVPC32r : Ii32<0xE8, Pseudo, (outs GR32:$reg), (ins i32imm:$label),
569                       "", []>;
570
571 //===----------------------------------------------------------------------===//
572 //  Control Flow Instructions.
573 //
574
575 // Return instructions.
576 let isTerminator = 1, isReturn = 1, isBarrier = 1,
577     hasCtrlDep = 1, FPForm = SpecialFP, FPFormBits = SpecialFP.Value in {
578   def RET    : I   <0xC3, RawFrm, (outs), (ins variable_ops),
579                     "ret",
580                     [(X86retflag 0)]>;
581   def RETI   : Ii16<0xC2, RawFrm, (outs), (ins i16imm:$amt, variable_ops),
582                     "ret\t$amt",
583                     [(X86retflag timm:$amt)]>;
584   def LRET   : I   <0xCB, RawFrm, (outs), (ins),
585                     "lret", []>;
586   def LRETI  : Ii16<0xCA, RawFrm, (outs), (ins i16imm:$amt),
587                     "lret\t$amt", []>;
588 }
589
590 // Unconditional branches.
591 let isBarrier = 1, isBranch = 1, isTerminator = 1 in {
592   def JMP_4 : Ii32PCRel<0xE9, RawFrm, (outs), (ins brtarget:$dst),
593                         "jmp\t$dst", [(br bb:$dst)]>;
594   def JMP_1 : Ii8PCRel<0xEB, RawFrm, (outs), (ins brtarget8:$dst),
595                        "jmp\t$dst", []>;
596 }
597
598 // Conditional Branches.
599 let isBranch = 1, isTerminator = 1, Uses = [EFLAGS] in {
600   multiclass ICBr<bits<8> opc1, bits<8> opc4, string asm, PatFrag Cond> {
601     def _1 : Ii8PCRel <opc1, RawFrm, (outs), (ins brtarget8:$dst), asm, []>;
602     def _4 : Ii32PCRel<opc4, RawFrm, (outs), (ins brtarget:$dst), asm,
603                        [(X86brcond bb:$dst, Cond, EFLAGS)]>, TB;
604   }
605 }
606
607 defm JO  : ICBr<0x70, 0x80, "jo\t$dst" , X86_COND_O>;
608 defm JNO : ICBr<0x71, 0x81, "jno\t$dst" , X86_COND_NO>;
609 defm JB  : ICBr<0x72, 0x82, "jb\t$dst" , X86_COND_B>;
610 defm JAE : ICBr<0x73, 0x83, "jae\t$dst", X86_COND_AE>;
611 defm JE  : ICBr<0x74, 0x84, "je\t$dst" , X86_COND_E>;
612 defm JNE : ICBr<0x75, 0x85, "jne\t$dst", X86_COND_NE>;
613 defm JBE : ICBr<0x76, 0x86, "jbe\t$dst", X86_COND_BE>;
614 defm JA  : ICBr<0x77, 0x87, "ja\t$dst" , X86_COND_A>;
615 defm JS  : ICBr<0x78, 0x88, "js\t$dst" , X86_COND_S>;
616 defm JNS : ICBr<0x79, 0x89, "jns\t$dst", X86_COND_NS>;
617 defm JP  : ICBr<0x7A, 0x8A, "jp\t$dst" , X86_COND_P>;
618 defm JNP : ICBr<0x7B, 0x8B, "jnp\t$dst", X86_COND_NP>;
619 defm JL  : ICBr<0x7C, 0x8C, "jl\t$dst" , X86_COND_L>;
620 defm JGE : ICBr<0x7D, 0x8D, "jge\t$dst", X86_COND_GE>;
621 defm JLE : ICBr<0x7E, 0x8E, "jle\t$dst", X86_COND_LE>;
622 defm JG  : ICBr<0x7F, 0x8F, "jg\t$dst" , X86_COND_G>;
623
624 // FIXME: What about the CX/RCX versions of this instruction?
625 let Uses = [ECX], isBranch = 1, isTerminator = 1 in
626   def JCXZ8 : Ii8PCRel<0xE3, RawFrm, (outs), (ins brtarget8:$dst),
627                        "jcxz\t$dst", []>;
628
629
630 // Indirect branches
631 let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
632   def JMP32r     : I<0xFF, MRM4r, (outs), (ins GR32:$dst), "jmp{l}\t{*}$dst",
633                      [(brind GR32:$dst)]>;
634   def JMP32m     : I<0xFF, MRM4m, (outs), (ins i32mem:$dst), "jmp{l}\t{*}$dst",
635                      [(brind (loadi32 addr:$dst))]>;
636                      
637   def FARJMP16i  : Iseg16<0xEA, RawFrm, (outs), 
638                           (ins i16imm:$seg, i16imm:$off),
639                           "ljmp{w}\t$seg, $off", []>, OpSize;
640   def FARJMP32i  : Iseg32<0xEA, RawFrm, (outs),
641                           (ins i16imm:$seg, i32imm:$off),
642                           "ljmp{l}\t$seg, $off", []>;                     
643
644   def FARJMP16m  : I<0xFF, MRM5m, (outs), (ins opaque32mem:$dst), 
645                      "ljmp{w}\t{*}$dst", []>, OpSize;
646   def FARJMP32m  : I<0xFF, MRM5m, (outs), (ins opaque48mem:$dst),
647                      "ljmp{l}\t{*}$dst", []>;
648 }
649
650
651 // Loop instructions
652
653 def LOOP   : I<0xE2, RawFrm, (ins brtarget8:$dst), (outs), "loop\t$dst", []>;
654 def LOOPE  : I<0xE1, RawFrm, (ins brtarget8:$dst), (outs), "loope\t$dst", []>;
655 def LOOPNE : I<0xE0, RawFrm, (ins brtarget8:$dst), (outs), "loopne\t$dst", []>;
656
657 //===----------------------------------------------------------------------===//
658 //  Call Instructions...
659 //
660 let isCall = 1 in
661   // All calls clobber the non-callee saved registers. ESP is marked as
662   // a use to prevent stack-pointer assignments that appear immediately
663   // before calls from potentially appearing dead. Uses for argument
664   // registers are added manually.
665   let Defs = [EAX, ECX, EDX, FP0, FP1, FP2, FP3, FP4, FP5, FP6, ST0,
666               MM0, MM1, MM2, MM3, MM4, MM5, MM6, MM7,
667               XMM0, XMM1, XMM2, XMM3, XMM4, XMM5, XMM6, XMM7,
668               XMM8, XMM9, XMM10, XMM11, XMM12, XMM13, XMM14, XMM15, EFLAGS],
669       Uses = [ESP] in {
670     def CALLpcrel32 : Ii32PCRel<0xE8, RawFrm,
671                            (outs), (ins i32imm_pcrel:$dst,variable_ops),
672                            "call\t$dst", []>;
673     def CALL32r     : I<0xFF, MRM2r, (outs), (ins GR32:$dst, variable_ops),
674                         "call\t{*}$dst", [(X86call GR32:$dst)]>;
675     def CALL32m     : I<0xFF, MRM2m, (outs), (ins i32mem:$dst, variable_ops),
676                         "call\t{*}$dst", [(X86call (loadi32 addr:$dst))]>;
677   
678     def FARCALL16i  : Iseg16<0x9A, RawFrm, (outs), 
679                              (ins i16imm:$seg, i16imm:$off),
680                              "lcall{w}\t$seg, $off", []>, OpSize;
681     def FARCALL32i  : Iseg32<0x9A, RawFrm, (outs),
682                              (ins i16imm:$seg, i32imm:$off),
683                              "lcall{l}\t$seg, $off", []>;
684                              
685     def FARCALL16m  : I<0xFF, MRM3m, (outs), (ins opaque32mem:$dst),
686                         "lcall{w}\t{*}$dst", []>, OpSize;
687     def FARCALL32m  : I<0xFF, MRM3m, (outs), (ins opaque48mem:$dst),
688                         "lcall{l}\t{*}$dst", []>;
689   }
690
691 // Constructing a stack frame.
692
693 def ENTER : I<0xC8, RawFrm, (outs), (ins i16imm:$len, i8imm:$lvl),
694               "enter\t$len, $lvl", []>;
695
696 // Tail call stuff.
697
698 let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in
699 def TCRETURNdi : I<0, Pseudo, (outs), 
700                    (ins i32imm:$dst, i32imm:$offset, variable_ops),
701                  "#TC_RETURN $dst $offset",
702                  []>;
703
704 let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in
705 def TCRETURNri : I<0, Pseudo, (outs), 
706                    (ins GR32:$dst, i32imm:$offset, variable_ops),
707                  "#TC_RETURN $dst $offset",
708                  []>;
709
710 // FIXME: The should be pseudo instructions that are lowered when going to
711 // mcinst.
712 let isCall = 1, isBranch = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in
713   def TAILJMPd : Ii32<0xE9, RawFrm, (outs),(ins i32imm_pcrel:$dst,variable_ops),
714                  "jmp\t$dst  # TAILCALL",
715                  []>;
716 let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in
717   def TAILJMPr : I<0xFF, MRM4r, (outs), (ins GR32:$dst, variable_ops), 
718                    "jmp{l}\t{*}$dst  # TAILCALL",
719                  []>;     
720 let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in
721   def TAILJMPm : I<0xFF, MRM4m, (outs), (ins i32mem:$dst, variable_ops),
722                    "jmp\t{*}$dst  # TAILCALL", []>;
723
724 //===----------------------------------------------------------------------===//
725 //  Miscellaneous Instructions...
726 //
727 let Defs = [EBP, ESP], Uses = [EBP, ESP], mayLoad = 1, neverHasSideEffects=1 in
728 def LEAVE    : I<0xC9, RawFrm,
729                  (outs), (ins), "leave", []>;
730
731 def POPCNT16rr : I<0xB8, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src),
732                    "popcnt{w}\t{$src, $dst|$dst, $src}", []>, OpSize, XS;
733 def POPCNT16rm : I<0xB8, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
734                    "popcnt{w}\t{$src, $dst|$dst, $src}", []>, OpSize, XS;
735 def POPCNT32rr : I<0xB8, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
736                    "popcnt{l}\t{$src, $dst|$dst, $src}", []>, XS;
737 def POPCNT32rm : I<0xB8, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
738                    "popcnt{l}\t{$src, $dst|$dst, $src}", []>, XS;
739
740 let Defs = [ESP], Uses = [ESP], neverHasSideEffects=1 in {
741 let mayLoad = 1 in {
742 def POP16r  : I<0x58, AddRegFrm, (outs GR16:$reg), (ins), "pop{w}\t$reg", []>,
743   OpSize;
744 def POP32r  : I<0x58, AddRegFrm, (outs GR32:$reg), (ins), "pop{l}\t$reg", []>;
745 def POP16rmr: I<0x8F, MRM0r, (outs GR16:$reg), (ins), "pop{w}\t$reg", []>,
746   OpSize;
747 def POP16rmm: I<0x8F, MRM0m, (outs i16mem:$dst), (ins), "pop{w}\t$dst", []>,
748   OpSize;
749 def POP32rmr: I<0x8F, MRM0r, (outs GR32:$reg), (ins), "pop{l}\t$reg", []>;
750 def POP32rmm: I<0x8F, MRM0m, (outs i32mem:$dst), (ins), "pop{l}\t$dst", []>;
751 }
752
753 let mayStore = 1 in {
754 def PUSH16r  : I<0x50, AddRegFrm, (outs), (ins GR16:$reg), "push{w}\t$reg",[]>,
755   OpSize;
756 def PUSH32r  : I<0x50, AddRegFrm, (outs), (ins GR32:$reg), "push{l}\t$reg",[]>;
757 def PUSH16rmr: I<0xFF, MRM6r, (outs), (ins GR16:$reg), "push{w}\t$reg",[]>,
758   OpSize;
759 def PUSH16rmm: I<0xFF, MRM6m, (outs), (ins i16mem:$src), "push{w}\t$src",[]>,
760   OpSize;
761 def PUSH32rmr: I<0xFF, MRM6r, (outs), (ins GR32:$reg), "push{l}\t$reg",[]>;
762 def PUSH32rmm: I<0xFF, MRM6m, (outs), (ins i32mem:$src), "push{l}\t$src",[]>;
763 }
764 }
765
766 let Defs = [ESP], Uses = [ESP], neverHasSideEffects = 1, mayStore = 1 in {
767 def PUSH32i8   : Ii8<0x6a, RawFrm, (outs), (ins i8imm:$imm), 
768                      "push{l}\t$imm", []>;
769 def PUSH32i16  : Ii16<0x68, RawFrm, (outs), (ins i16imm:$imm), 
770                       "push{l}\t$imm", []>;
771 def PUSH32i32  : Ii32<0x68, RawFrm, (outs), (ins i32imm:$imm), 
772                       "push{l}\t$imm", []>;
773 }
774
775 let Defs = [ESP, EFLAGS], Uses = [ESP], mayLoad = 1, neverHasSideEffects=1 in {
776 def POPF     : I<0x9D, RawFrm, (outs), (ins), "popf{w}", []>, OpSize;
777 def POPFD    : I<0x9D, RawFrm, (outs), (ins), "popf{l}", []>;
778 }
779 let Defs = [ESP], Uses = [ESP, EFLAGS], mayStore = 1, neverHasSideEffects=1 in {
780 def PUSHF    : I<0x9C, RawFrm, (outs), (ins), "pushf{w}", []>, OpSize;
781 def PUSHFD   : I<0x9C, RawFrm, (outs), (ins), "pushf{l}", []>;
782 }
783
784 let isTwoAddress = 1 in                               // GR32 = bswap GR32
785   def BSWAP32r : I<0xC8, AddRegFrm,
786                    (outs GR32:$dst), (ins GR32:$src),
787                    "bswap{l}\t$dst", 
788                    [(set GR32:$dst, (bswap GR32:$src))]>, TB;
789
790
791 // Bit scan instructions.
792 let Defs = [EFLAGS] in {
793 def BSF16rr  : I<0xBC, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src),
794                  "bsf{w}\t{$src, $dst|$dst, $src}",
795                  [(set GR16:$dst, (X86bsf GR16:$src)), (implicit EFLAGS)]>, TB;
796 def BSF16rm  : I<0xBC, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
797                  "bsf{w}\t{$src, $dst|$dst, $src}",
798                  [(set GR16:$dst, (X86bsf (loadi16 addr:$src))),
799                   (implicit EFLAGS)]>, TB;
800 def BSF32rr  : I<0xBC, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
801                  "bsf{l}\t{$src, $dst|$dst, $src}",
802                  [(set GR32:$dst, (X86bsf GR32:$src)), (implicit EFLAGS)]>, TB;
803 def BSF32rm  : I<0xBC, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
804                  "bsf{l}\t{$src, $dst|$dst, $src}",
805                  [(set GR32:$dst, (X86bsf (loadi32 addr:$src))),
806                   (implicit EFLAGS)]>, TB;
807
808 def BSR16rr  : I<0xBD, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src),
809                  "bsr{w}\t{$src, $dst|$dst, $src}",
810                  [(set GR16:$dst, (X86bsr GR16:$src)), (implicit EFLAGS)]>, TB;
811 def BSR16rm  : I<0xBD, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
812                  "bsr{w}\t{$src, $dst|$dst, $src}",
813                  [(set GR16:$dst, (X86bsr (loadi16 addr:$src))),
814                   (implicit EFLAGS)]>, TB;
815 def BSR32rr  : I<0xBD, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
816                  "bsr{l}\t{$src, $dst|$dst, $src}",
817                  [(set GR32:$dst, (X86bsr GR32:$src)), (implicit EFLAGS)]>, TB;
818 def BSR32rm  : I<0xBD, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
819                  "bsr{l}\t{$src, $dst|$dst, $src}",
820                  [(set GR32:$dst, (X86bsr (loadi32 addr:$src))),
821                   (implicit EFLAGS)]>, TB;
822 } // Defs = [EFLAGS]
823
824 let neverHasSideEffects = 1 in
825 def LEA16r   : I<0x8D, MRMSrcMem,
826                  (outs GR16:$dst), (ins lea32mem:$src),
827                  "lea{w}\t{$src|$dst}, {$dst|$src}", []>, OpSize;
828 let isReMaterializable = 1 in
829 def LEA32r   : I<0x8D, MRMSrcMem,
830                  (outs GR32:$dst), (ins lea32mem:$src),
831                  "lea{l}\t{$src|$dst}, {$dst|$src}",
832                  [(set GR32:$dst, lea32addr:$src)]>, Requires<[In32BitMode]>;
833
834 let Defs = [ECX,EDI,ESI], Uses = [ECX,EDI,ESI], isCodeGenOnly = 1 in {
835 def REP_MOVSB : I<0xA4, RawFrm, (outs), (ins), "{rep;movsb|rep movsb}",
836                   [(X86rep_movs i8)]>, REP;
837 def REP_MOVSW : I<0xA5, RawFrm, (outs), (ins), "{rep;movsw|rep movsw}",
838                   [(X86rep_movs i16)]>, REP, OpSize;
839 def REP_MOVSD : I<0xA5, RawFrm, (outs), (ins), "{rep;movsl|rep movsd}",
840                   [(X86rep_movs i32)]>, REP;
841 }
842
843 // These uses the DF flag in the EFLAGS register to inc or dec EDI and ESI
844 let Defs = [EDI,ESI], Uses = [EDI,ESI,EFLAGS] in {
845 def MOVSB : I<0xA4, RawFrm, (outs), (ins), "{movsb}", []>;
846 def MOVSW : I<0xA5, RawFrm, (outs), (ins), "{movsw}", []>, OpSize;
847 def MOVSD : I<0xA5, RawFrm, (outs), (ins), "{movsl|movsd}", []>;
848 }
849
850 let Defs = [ECX,EDI], Uses = [AL,ECX,EDI], isCodeGenOnly = 1 in
851 def REP_STOSB : I<0xAA, RawFrm, (outs), (ins), "{rep;stosb|rep stosb}",
852                   [(X86rep_stos i8)]>, REP;
853 let Defs = [ECX,EDI], Uses = [AX,ECX,EDI], isCodeGenOnly = 1 in
854 def REP_STOSW : I<0xAB, RawFrm, (outs), (ins), "{rep;stosw|rep stosw}",
855                   [(X86rep_stos i16)]>, REP, OpSize;
856 let Defs = [ECX,EDI], Uses = [EAX,ECX,EDI], isCodeGenOnly = 1 in
857 def REP_STOSD : I<0xAB, RawFrm, (outs), (ins), "{rep;stosl|rep stosd}",
858                   [(X86rep_stos i32)]>, REP;
859
860 // These uses the DF flag in the EFLAGS register to inc or dec EDI and ESI
861 let Defs = [EDI], Uses = [AL,EDI,EFLAGS] in
862 def STOSB : I<0xAA, RawFrm, (outs), (ins), "{stosb}", []>;
863 let Defs = [EDI], Uses = [AX,EDI,EFLAGS] in
864 def STOSW : I<0xAB, RawFrm, (outs), (ins), "{stosw}", []>, OpSize;
865 let Defs = [EDI], Uses = [EAX,EDI,EFLAGS] in
866 def STOSD : I<0xAB, RawFrm, (outs), (ins), "{stosl|stosd}", []>;
867
868 def SCAS8 : I<0xAE, RawFrm, (outs), (ins), "scas{b}", []>;
869 def SCAS16 : I<0xAF, RawFrm, (outs), (ins), "scas{w}", []>, OpSize;
870 def SCAS32 : I<0xAF, RawFrm, (outs), (ins), "scas{l}", []>;
871
872 def CMPS8 : I<0xA6, RawFrm, (outs), (ins), "cmps{b}", []>;
873 def CMPS16 : I<0xA7, RawFrm, (outs), (ins), "cmps{w}", []>, OpSize;
874 def CMPS32 : I<0xA7, RawFrm, (outs), (ins), "cmps{l}", []>;
875
876 let Defs = [RAX, RDX] in
877 def RDTSC : I<0x31, RawFrm, (outs), (ins), "rdtsc", [(X86rdtsc)]>,
878             TB;
879
880 let Defs = [RAX, RCX, RDX] in
881 def RDTSCP : I<0x01, MRM_F9, (outs), (ins), "rdtscp", []>, TB;
882
883 let isBarrier = 1, hasCtrlDep = 1 in {
884 def TRAP    : I<0x0B, RawFrm, (outs), (ins), "ud2", [(trap)]>, TB;
885 }
886
887 def SYSCALL  : I<0x05, RawFrm,
888                  (outs), (ins), "syscall", []>, TB;
889 def SYSRET   : I<0x07, RawFrm,
890                  (outs), (ins), "sysret", []>, TB;
891 def SYSENTER : I<0x34, RawFrm,
892                  (outs), (ins), "sysenter", []>, TB;
893 def SYSEXIT  : I<0x35, RawFrm,
894                  (outs), (ins), "sysexit", []>, TB;
895
896 def WAIT : I<0x9B, RawFrm, (outs), (ins), "wait", []>;
897
898
899 //===----------------------------------------------------------------------===//
900 //  Input/Output Instructions...
901 //
902 let Defs = [AL], Uses = [DX] in
903 def IN8rr  : I<0xEC, RawFrm, (outs), (ins),
904                "in{b}\t{%dx, %al|%AL, %DX}", []>;
905 let Defs = [AX], Uses = [DX] in
906 def IN16rr : I<0xED, RawFrm, (outs), (ins),
907                "in{w}\t{%dx, %ax|%AX, %DX}", []>,  OpSize;
908 let Defs = [EAX], Uses = [DX] in
909 def IN32rr : I<0xED, RawFrm, (outs), (ins),
910                "in{l}\t{%dx, %eax|%EAX, %DX}", []>;
911
912 let Defs = [AL] in
913 def IN8ri  : Ii8<0xE4, RawFrm, (outs), (ins i16i8imm:$port),
914                   "in{b}\t{$port, %al|%AL, $port}", []>;
915 let Defs = [AX] in
916 def IN16ri : Ii8<0xE5, RawFrm, (outs), (ins i16i8imm:$port),
917                   "in{w}\t{$port, %ax|%AX, $port}", []>, OpSize;
918 let Defs = [EAX] in
919 def IN32ri : Ii8<0xE5, RawFrm, (outs), (ins i16i8imm:$port),
920                   "in{l}\t{$port, %eax|%EAX, $port}", []>;
921
922 let Uses = [DX, AL] in
923 def OUT8rr  : I<0xEE, RawFrm, (outs), (ins),
924                 "out{b}\t{%al, %dx|%DX, %AL}", []>;
925 let Uses = [DX, AX] in
926 def OUT16rr : I<0xEF, RawFrm, (outs), (ins),
927                 "out{w}\t{%ax, %dx|%DX, %AX}", []>, OpSize;
928 let Uses = [DX, EAX] in
929 def OUT32rr : I<0xEF, RawFrm, (outs), (ins),
930                 "out{l}\t{%eax, %dx|%DX, %EAX}", []>;
931
932 let Uses = [AL] in
933 def OUT8ir  : Ii8<0xE6, RawFrm, (outs), (ins i16i8imm:$port),
934                    "out{b}\t{%al, $port|$port, %AL}", []>;
935 let Uses = [AX] in
936 def OUT16ir : Ii8<0xE7, RawFrm, (outs), (ins i16i8imm:$port),
937                    "out{w}\t{%ax, $port|$port, %AX}", []>, OpSize;
938 let Uses = [EAX] in
939 def OUT32ir : Ii8<0xE7, RawFrm, (outs), (ins i16i8imm:$port),
940                    "out{l}\t{%eax, $port|$port, %EAX}", []>;
941
942 def IN8  : I<0x6C, RawFrm, (outs), (ins),
943              "ins{b}", []>;
944 def IN16 : I<0x6D, RawFrm, (outs), (ins),
945              "ins{w}", []>,  OpSize;
946 def IN32 : I<0x6D, RawFrm, (outs), (ins),
947              "ins{l}", []>;
948
949 //===----------------------------------------------------------------------===//
950 //  Move Instructions...
951 //
952 let neverHasSideEffects = 1 in {
953 def MOV8rr  : I<0x88, MRMDestReg, (outs GR8 :$dst), (ins GR8 :$src),
954                 "mov{b}\t{$src, $dst|$dst, $src}", []>;
955 def MOV16rr : I<0x89, MRMDestReg, (outs GR16:$dst), (ins GR16:$src),
956                 "mov{w}\t{$src, $dst|$dst, $src}", []>, OpSize;
957 def MOV32rr : I<0x89, MRMDestReg, (outs GR32:$dst), (ins GR32:$src),
958                 "mov{l}\t{$src, $dst|$dst, $src}", []>;
959 }
960 let isReMaterializable = 1, isAsCheapAsAMove = 1 in {
961 def MOV8ri  : Ii8 <0xB0, AddRegFrm, (outs GR8 :$dst), (ins i8imm :$src),
962                    "mov{b}\t{$src, $dst|$dst, $src}",
963                    [(set GR8:$dst, imm:$src)]>;
964 def MOV16ri : Ii16<0xB8, AddRegFrm, (outs GR16:$dst), (ins i16imm:$src),
965                    "mov{w}\t{$src, $dst|$dst, $src}",
966                    [(set GR16:$dst, imm:$src)]>, OpSize;
967 def MOV32ri : Ii32<0xB8, AddRegFrm, (outs GR32:$dst), (ins i32imm:$src),
968                    "mov{l}\t{$src, $dst|$dst, $src}",
969                    [(set GR32:$dst, imm:$src)]>;
970 }
971
972 def MOV8mi  : Ii8 <0xC6, MRM0m, (outs), (ins i8mem :$dst, i8imm :$src),
973                    "mov{b}\t{$src, $dst|$dst, $src}",
974                    [(store (i8 imm:$src), addr:$dst)]>;
975 def MOV16mi : Ii16<0xC7, MRM0m, (outs), (ins i16mem:$dst, i16imm:$src),
976                    "mov{w}\t{$src, $dst|$dst, $src}",
977                    [(store (i16 imm:$src), addr:$dst)]>, OpSize;
978 def MOV32mi : Ii32<0xC7, MRM0m, (outs), (ins i32mem:$dst, i32imm:$src),
979                    "mov{l}\t{$src, $dst|$dst, $src}",
980                    [(store (i32 imm:$src), addr:$dst)]>;
981
982 def MOV8o8a : Ii8 <0xA0, RawFrm, (outs), (ins offset8:$src),
983                    "mov{b}\t{$src, %al|%al, $src}", []>;
984 def MOV16o16a : Ii16 <0xA1, RawFrm, (outs), (ins offset16:$src),
985                       "mov{w}\t{$src, %ax|%ax, $src}", []>, OpSize;
986 def MOV32o32a : Ii32 <0xA1, RawFrm, (outs), (ins offset32:$src),
987                       "mov{l}\t{$src, %eax|%eax, $src}", []>;
988
989 def MOV8ao8 : Ii8 <0xA2, RawFrm, (outs offset8:$dst), (ins),
990                    "mov{b}\t{%al, $dst|$dst, %al}", []>;
991 def MOV16ao16 : Ii16 <0xA3, RawFrm, (outs offset16:$dst), (ins),
992                       "mov{w}\t{%ax, $dst|$dst, %ax}", []>, OpSize;
993 def MOV32ao32 : Ii32 <0xA3, RawFrm, (outs offset32:$dst), (ins),
994                       "mov{l}\t{%eax, $dst|$dst, %eax}", []>;
995
996 // Moves to and from segment registers
997 def MOV16rs : I<0x8C, MRMDestReg, (outs GR16:$dst), (ins SEGMENT_REG:$src),
998                 "mov{w}\t{$src, $dst|$dst, $src}", []>;
999 def MOV16ms : I<0x8C, MRMDestMem, (outs i16mem:$dst), (ins SEGMENT_REG:$src),
1000                 "mov{w}\t{$src, $dst|$dst, $src}", []>;
1001 def MOV16sr : I<0x8E, MRMSrcReg, (outs SEGMENT_REG:$dst), (ins GR16:$src),
1002                 "mov{w}\t{$src, $dst|$dst, $src}", []>;
1003 def MOV16sm : I<0x8E, MRMSrcMem, (outs SEGMENT_REG:$dst), (ins i16mem:$src),
1004                 "mov{w}\t{$src, $dst|$dst, $src}", []>;
1005
1006 def MOV8rr_REV : I<0x8A, MRMSrcReg, (outs GR8:$dst), (ins GR8:$src),
1007                    "mov{b}\t{$src, $dst|$dst, $src}", []>;
1008 def MOV16rr_REV : I<0x8B, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src),
1009                     "mov{w}\t{$src, $dst|$dst, $src}", []>, OpSize;
1010 def MOV32rr_REV : I<0x8B, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
1011                     "mov{l}\t{$src, $dst|$dst, $src}", []>;
1012
1013 let canFoldAsLoad = 1, isReMaterializable = 1 in {
1014 def MOV8rm  : I<0x8A, MRMSrcMem, (outs GR8 :$dst), (ins i8mem :$src),
1015                 "mov{b}\t{$src, $dst|$dst, $src}",
1016                 [(set GR8:$dst, (loadi8 addr:$src))]>;
1017 def MOV16rm : I<0x8B, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
1018                 "mov{w}\t{$src, $dst|$dst, $src}",
1019                 [(set GR16:$dst, (loadi16 addr:$src))]>, OpSize;
1020 def MOV32rm : I<0x8B, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
1021                 "mov{l}\t{$src, $dst|$dst, $src}",
1022                 [(set GR32:$dst, (loadi32 addr:$src))]>;
1023 }
1024
1025 def MOV8mr  : I<0x88, MRMDestMem, (outs), (ins i8mem :$dst, GR8 :$src),
1026                 "mov{b}\t{$src, $dst|$dst, $src}",
1027                 [(store GR8:$src, addr:$dst)]>;
1028 def MOV16mr : I<0x89, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src),
1029                 "mov{w}\t{$src, $dst|$dst, $src}",
1030                 [(store GR16:$src, addr:$dst)]>, OpSize;
1031 def MOV32mr : I<0x89, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
1032                 "mov{l}\t{$src, $dst|$dst, $src}",
1033                 [(store GR32:$src, addr:$dst)]>;
1034
1035 // Versions of MOV8rr, MOV8mr, and MOV8rm that use i8mem_NOREX and GR8_NOREX so
1036 // that they can be used for copying and storing h registers, which can't be
1037 // encoded when a REX prefix is present.
1038 let neverHasSideEffects = 1 in
1039 def MOV8rr_NOREX : I<0x88, MRMDestReg,
1040                      (outs GR8_NOREX:$dst), (ins GR8_NOREX:$src),
1041                      "mov{b}\t{$src, $dst|$dst, $src}  # NOREX", []>;
1042 let mayStore = 1 in
1043 def MOV8mr_NOREX : I<0x88, MRMDestMem,
1044                      (outs), (ins i8mem_NOREX:$dst, GR8_NOREX:$src),
1045                      "mov{b}\t{$src, $dst|$dst, $src}  # NOREX", []>;
1046 let mayLoad = 1,
1047     canFoldAsLoad = 1, isReMaterializable = 1 in
1048 def MOV8rm_NOREX : I<0x8A, MRMSrcMem,
1049                      (outs GR8_NOREX:$dst), (ins i8mem_NOREX:$src),
1050                      "mov{b}\t{$src, $dst|$dst, $src}  # NOREX", []>;
1051
1052 // Moves to and from debug registers
1053 def MOV32rd : I<0x21, MRMDestReg, (outs GR32:$dst), (ins DEBUG_REG:$src),
1054                 "mov{l}\t{$src, $dst|$dst, $src}", []>, TB;
1055 def MOV32dr : I<0x23, MRMSrcReg, (outs DEBUG_REG:$dst), (ins GR32:$src),
1056                 "mov{l}\t{$src, $dst|$dst, $src}", []>, TB;
1057                 
1058 // Moves to and from control registers
1059 def MOV32rc : I<0x20, MRMDestReg, (outs GR32:$dst), (ins CONTROL_REG_32:$src),
1060                 "mov{q}\t{$src, $dst|$dst, $src}", []>, TB;
1061 def MOV32cr : I<0x22, MRMSrcReg, (outs CONTROL_REG_32:$dst), (ins GR32:$src),
1062                 "mov{q}\t{$src, $dst|$dst, $src}", []>, TB;
1063
1064 //===----------------------------------------------------------------------===//
1065 //  Fixed-Register Multiplication and Division Instructions...
1066 //
1067
1068 // Extra precision multiplication
1069
1070 // AL is really implied by AX, by the registers in Defs must match the
1071 // SDNode results (i8, i32).
1072 let Defs = [AL,EFLAGS,AX], Uses = [AL] in
1073 def MUL8r  : I<0xF6, MRM4r, (outs),  (ins GR8:$src), "mul{b}\t$src",
1074                // FIXME: Used for 8-bit mul, ignore result upper 8 bits.
1075                // This probably ought to be moved to a def : Pat<> if the
1076                // syntax can be accepted.
1077                [(set AL, (mul AL, GR8:$src)),
1078                 (implicit EFLAGS)]>;     // AL,AH = AL*GR8
1079
1080 let Defs = [AX,DX,EFLAGS], Uses = [AX], neverHasSideEffects = 1 in
1081 def MUL16r : I<0xF7, MRM4r, (outs),  (ins GR16:$src),
1082                "mul{w}\t$src", 
1083                []>, OpSize;    // AX,DX = AX*GR16
1084
1085 let Defs = [EAX,EDX,EFLAGS], Uses = [EAX], neverHasSideEffects = 1 in
1086 def MUL32r : I<0xF7, MRM4r, (outs),  (ins GR32:$src),
1087                "mul{l}\t$src",
1088                []>; // EAX,EDX = EAX*GR32
1089
1090 let Defs = [AL,EFLAGS,AX], Uses = [AL] in
1091 def MUL8m  : I<0xF6, MRM4m, (outs), (ins i8mem :$src),
1092                "mul{b}\t$src",
1093                // FIXME: Used for 8-bit mul, ignore result upper 8 bits.
1094                // This probably ought to be moved to a def : Pat<> if the
1095                // syntax can be accepted.
1096                [(set AL, (mul AL, (loadi8 addr:$src))),
1097                 (implicit EFLAGS)]>;   // AL,AH = AL*[mem8]
1098
1099 let mayLoad = 1, neverHasSideEffects = 1 in {
1100 let Defs = [AX,DX,EFLAGS], Uses = [AX] in
1101 def MUL16m : I<0xF7, MRM4m, (outs), (ins i16mem:$src),
1102                "mul{w}\t$src",
1103                []>, OpSize; // AX,DX = AX*[mem16]
1104
1105 let Defs = [EAX,EDX,EFLAGS], Uses = [EAX] in
1106 def MUL32m : I<0xF7, MRM4m, (outs), (ins i32mem:$src),
1107               "mul{l}\t$src",
1108               []>;          // EAX,EDX = EAX*[mem32]
1109 }
1110
1111 let neverHasSideEffects = 1 in {
1112 let Defs = [AL,EFLAGS,AX], Uses = [AL] in
1113 def IMUL8r  : I<0xF6, MRM5r, (outs),  (ins GR8:$src), "imul{b}\t$src", []>;
1114               // AL,AH = AL*GR8
1115 let Defs = [AX,DX,EFLAGS], Uses = [AX] in
1116 def IMUL16r : I<0xF7, MRM5r, (outs),  (ins GR16:$src), "imul{w}\t$src", []>,
1117               OpSize;    // AX,DX = AX*GR16
1118 let Defs = [EAX,EDX,EFLAGS], Uses = [EAX] in
1119 def IMUL32r : I<0xF7, MRM5r, (outs),  (ins GR32:$src), "imul{l}\t$src", []>;
1120               // EAX,EDX = EAX*GR32
1121 let mayLoad = 1 in {
1122 let Defs = [AL,EFLAGS,AX], Uses = [AL] in
1123 def IMUL8m  : I<0xF6, MRM5m, (outs), (ins i8mem :$src),
1124                 "imul{b}\t$src", []>;    // AL,AH = AL*[mem8]
1125 let Defs = [AX,DX,EFLAGS], Uses = [AX] in
1126 def IMUL16m : I<0xF7, MRM5m, (outs), (ins i16mem:$src),
1127                 "imul{w}\t$src", []>, OpSize; // AX,DX = AX*[mem16]
1128 let Defs = [EAX,EDX,EFLAGS], Uses = [EAX] in
1129 def IMUL32m : I<0xF7, MRM5m, (outs), (ins i32mem:$src),
1130                 "imul{l}\t$src", []>;  // EAX,EDX = EAX*[mem32]
1131 }
1132 } // neverHasSideEffects
1133
1134 // unsigned division/remainder
1135 let Defs = [AL,EFLAGS,AX], Uses = [AX] in
1136 def DIV8r  : I<0xF6, MRM6r, (outs),  (ins GR8:$src),    // AX/r8 = AL,AH
1137                "div{b}\t$src", []>;
1138 let Defs = [AX,DX,EFLAGS], Uses = [AX,DX] in
1139 def DIV16r : I<0xF7, MRM6r, (outs),  (ins GR16:$src),   // DX:AX/r16 = AX,DX
1140                "div{w}\t$src", []>, OpSize;
1141 let Defs = [EAX,EDX,EFLAGS], Uses = [EAX,EDX] in
1142 def DIV32r : I<0xF7, MRM6r, (outs),  (ins GR32:$src),   // EDX:EAX/r32 = EAX,EDX
1143                "div{l}\t$src", []>;
1144 let mayLoad = 1 in {
1145 let Defs = [AL,EFLAGS,AX], Uses = [AX] in
1146 def DIV8m  : I<0xF6, MRM6m, (outs), (ins i8mem:$src),   // AX/[mem8] = AL,AH
1147                "div{b}\t$src", []>;
1148 let Defs = [AX,DX,EFLAGS], Uses = [AX,DX] in
1149 def DIV16m : I<0xF7, MRM6m, (outs), (ins i16mem:$src),  // DX:AX/[mem16] = AX,DX
1150                "div{w}\t$src", []>, OpSize;
1151 let Defs = [EAX,EDX,EFLAGS], Uses = [EAX,EDX] in
1152                                                     // EDX:EAX/[mem32] = EAX,EDX
1153 def DIV32m : I<0xF7, MRM6m, (outs), (ins i32mem:$src),
1154                "div{l}\t$src", []>;
1155 }
1156
1157 // Signed division/remainder.
1158 let Defs = [AL,EFLAGS,AX], Uses = [AX] in
1159 def IDIV8r : I<0xF6, MRM7r, (outs),  (ins GR8:$src),    // AX/r8 = AL,AH
1160                "idiv{b}\t$src", []>;
1161 let Defs = [AX,DX,EFLAGS], Uses = [AX,DX] in
1162 def IDIV16r: I<0xF7, MRM7r, (outs),  (ins GR16:$src),   // DX:AX/r16 = AX,DX
1163                "idiv{w}\t$src", []>, OpSize;
1164 let Defs = [EAX,EDX,EFLAGS], Uses = [EAX,EDX] in
1165 def IDIV32r: I<0xF7, MRM7r, (outs),  (ins GR32:$src),   // EDX:EAX/r32 = EAX,EDX
1166                "idiv{l}\t$src", []>;
1167 let mayLoad = 1, mayLoad = 1 in {
1168 let Defs = [AL,EFLAGS,AX], Uses = [AX] in
1169 def IDIV8m : I<0xF6, MRM7m, (outs), (ins i8mem:$src),   // AX/[mem8] = AL,AH
1170                "idiv{b}\t$src", []>;
1171 let Defs = [AX,DX,EFLAGS], Uses = [AX,DX] in
1172 def IDIV16m: I<0xF7, MRM7m, (outs), (ins i16mem:$src),  // DX:AX/[mem16] = AX,DX
1173                "idiv{w}\t$src", []>, OpSize;
1174 let Defs = [EAX,EDX,EFLAGS], Uses = [EAX,EDX] in
1175 def IDIV32m: I<0xF7, MRM7m, (outs), (ins i32mem:$src), 
1176                                                     // EDX:EAX/[mem32] = EAX,EDX
1177                "idiv{l}\t$src", []>;
1178 }
1179
1180 //===----------------------------------------------------------------------===//
1181 //  Two address Instructions.
1182 //
1183 let isTwoAddress = 1 in {
1184
1185 // Conditional moves
1186 let Uses = [EFLAGS] in {
1187
1188 // X86 doesn't have 8-bit conditional moves. Use a customInserter to
1189 // emit control flow. An alternative to this is to mark i8 SELECT as Promote,
1190 // however that requires promoting the operands, and can induce additional
1191 // i8 register pressure. Note that CMOV_GR8 is conservatively considered to
1192 // clobber EFLAGS, because if one of the operands is zero, the expansion
1193 // could involve an xor.
1194 let usesCustomInserter = 1, isTwoAddress = 0, Defs = [EFLAGS] in
1195 def CMOV_GR8 : I<0, Pseudo,
1196                  (outs GR8:$dst), (ins GR8:$src1, GR8:$src2, i8imm:$cond),
1197                  "#CMOV_GR8 PSEUDO!",
1198                  [(set GR8:$dst, (X86cmov GR8:$src1, GR8:$src2,
1199                                           imm:$cond, EFLAGS))]>;
1200
1201 let isCommutable = 1 in {
1202 def CMOVB16rr : I<0x42, MRMSrcReg,       // if <u, GR16 = GR16
1203                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
1204                   "cmovb{w}\t{$src2, $dst|$dst, $src2}",
1205                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
1206                                    X86_COND_B, EFLAGS))]>,
1207                   TB, OpSize;
1208 def CMOVB32rr : I<0x42, MRMSrcReg,       // if <u, GR32 = GR32
1209                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
1210                   "cmovb{l}\t{$src2, $dst|$dst, $src2}",
1211                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
1212                                    X86_COND_B, EFLAGS))]>,
1213                    TB;
1214 def CMOVAE16rr: I<0x43, MRMSrcReg,       // if >=u, GR16 = GR16
1215                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
1216                   "cmovae{w}\t{$src2, $dst|$dst, $src2}",
1217                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
1218                                    X86_COND_AE, EFLAGS))]>,
1219                    TB, OpSize;
1220 def CMOVAE32rr: I<0x43, MRMSrcReg,       // if >=u, GR32 = GR32
1221                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
1222                   "cmovae{l}\t{$src2, $dst|$dst, $src2}",
1223                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
1224                                    X86_COND_AE, EFLAGS))]>,
1225                    TB;
1226 def CMOVE16rr : I<0x44, MRMSrcReg,       // if ==, GR16 = GR16
1227                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
1228                   "cmove{w}\t{$src2, $dst|$dst, $src2}",
1229                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
1230                                    X86_COND_E, EFLAGS))]>,
1231                    TB, OpSize;
1232 def CMOVE32rr : I<0x44, MRMSrcReg,       // if ==, GR32 = GR32
1233                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
1234                   "cmove{l}\t{$src2, $dst|$dst, $src2}",
1235                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
1236                                    X86_COND_E, EFLAGS))]>,
1237                    TB;
1238 def CMOVNE16rr: I<0x45, MRMSrcReg,       // if !=, GR16 = GR16
1239                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
1240                   "cmovne{w}\t{$src2, $dst|$dst, $src2}",
1241                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
1242                                    X86_COND_NE, EFLAGS))]>,
1243                    TB, OpSize;
1244 def CMOVNE32rr: I<0x45, MRMSrcReg,       // if !=, GR32 = GR32
1245                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
1246                   "cmovne{l}\t{$src2, $dst|$dst, $src2}",
1247                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
1248                                    X86_COND_NE, EFLAGS))]>,
1249                    TB;
1250 def CMOVBE16rr: I<0x46, MRMSrcReg,       // if <=u, GR16 = GR16
1251                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
1252                   "cmovbe{w}\t{$src2, $dst|$dst, $src2}",
1253                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
1254                                    X86_COND_BE, EFLAGS))]>,
1255                    TB, OpSize;
1256 def CMOVBE32rr: I<0x46, MRMSrcReg,       // if <=u, GR32 = GR32
1257                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
1258                   "cmovbe{l}\t{$src2, $dst|$dst, $src2}",
1259                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
1260                                    X86_COND_BE, EFLAGS))]>,
1261                    TB;
1262 def CMOVA16rr : I<0x47, MRMSrcReg,       // if >u, GR16 = GR16
1263                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
1264                   "cmova{w}\t{$src2, $dst|$dst, $src2}",
1265                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
1266                                    X86_COND_A, EFLAGS))]>,
1267                    TB, OpSize;
1268 def CMOVA32rr : I<0x47, MRMSrcReg,       // if >u, GR32 = GR32
1269                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
1270                   "cmova{l}\t{$src2, $dst|$dst, $src2}",
1271                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
1272                                    X86_COND_A, EFLAGS))]>,
1273                    TB;
1274 def CMOVL16rr : I<0x4C, MRMSrcReg,       // if <s, GR16 = GR16
1275                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
1276                   "cmovl{w}\t{$src2, $dst|$dst, $src2}",
1277                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
1278                                    X86_COND_L, EFLAGS))]>,
1279                    TB, OpSize;
1280 def CMOVL32rr : I<0x4C, MRMSrcReg,       // if <s, GR32 = GR32
1281                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
1282                   "cmovl{l}\t{$src2, $dst|$dst, $src2}",
1283                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
1284                                    X86_COND_L, EFLAGS))]>,
1285                    TB;
1286 def CMOVGE16rr: I<0x4D, MRMSrcReg,       // if >=s, GR16 = GR16
1287                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
1288                   "cmovge{w}\t{$src2, $dst|$dst, $src2}",
1289                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
1290                                    X86_COND_GE, EFLAGS))]>,
1291                    TB, OpSize;
1292 def CMOVGE32rr: I<0x4D, MRMSrcReg,       // if >=s, GR32 = GR32
1293                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
1294                   "cmovge{l}\t{$src2, $dst|$dst, $src2}",
1295                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
1296                                    X86_COND_GE, EFLAGS))]>,
1297                    TB;
1298 def CMOVLE16rr: I<0x4E, MRMSrcReg,       // if <=s, GR16 = GR16
1299                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
1300                   "cmovle{w}\t{$src2, $dst|$dst, $src2}",
1301                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
1302                                    X86_COND_LE, EFLAGS))]>,
1303                    TB, OpSize;
1304 def CMOVLE32rr: I<0x4E, MRMSrcReg,       // if <=s, GR32 = GR32
1305                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
1306                   "cmovle{l}\t{$src2, $dst|$dst, $src2}",
1307                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
1308                                    X86_COND_LE, EFLAGS))]>,
1309                    TB;
1310 def CMOVG16rr : I<0x4F, MRMSrcReg,       // if >s, GR16 = GR16
1311                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
1312                   "cmovg{w}\t{$src2, $dst|$dst, $src2}",
1313                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
1314                                    X86_COND_G, EFLAGS))]>,
1315                    TB, OpSize;
1316 def CMOVG32rr : I<0x4F, MRMSrcReg,       // if >s, GR32 = GR32
1317                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
1318                   "cmovg{l}\t{$src2, $dst|$dst, $src2}",
1319                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
1320                                    X86_COND_G, EFLAGS))]>,
1321                    TB;
1322 def CMOVS16rr : I<0x48, MRMSrcReg,       // if signed, GR16 = GR16
1323                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
1324                   "cmovs{w}\t{$src2, $dst|$dst, $src2}",
1325                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
1326                                    X86_COND_S, EFLAGS))]>,
1327                   TB, OpSize;
1328 def CMOVS32rr : I<0x48, MRMSrcReg,       // if signed, GR32 = GR32
1329                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
1330                   "cmovs{l}\t{$src2, $dst|$dst, $src2}",
1331                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
1332                                    X86_COND_S, EFLAGS))]>,
1333                   TB;
1334 def CMOVNS16rr: I<0x49, MRMSrcReg,       // if !signed, GR16 = GR16
1335                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
1336                   "cmovns{w}\t{$src2, $dst|$dst, $src2}",
1337                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
1338                                    X86_COND_NS, EFLAGS))]>,
1339                   TB, OpSize;
1340 def CMOVNS32rr: I<0x49, MRMSrcReg,       // if !signed, GR32 = GR32
1341                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
1342                   "cmovns{l}\t{$src2, $dst|$dst, $src2}",
1343                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
1344                                    X86_COND_NS, EFLAGS))]>,
1345                   TB;
1346 def CMOVP16rr : I<0x4A, MRMSrcReg,       // if parity, GR16 = GR16
1347                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
1348                   "cmovp{w}\t{$src2, $dst|$dst, $src2}",
1349                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
1350                                    X86_COND_P, EFLAGS))]>,
1351                   TB, OpSize;
1352 def CMOVP32rr : I<0x4A, MRMSrcReg,       // if parity, GR32 = GR32
1353                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
1354                   "cmovp{l}\t{$src2, $dst|$dst, $src2}",
1355                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
1356                                    X86_COND_P, EFLAGS))]>,
1357                   TB;
1358 def CMOVNP16rr : I<0x4B, MRMSrcReg,       // if !parity, GR16 = GR16
1359                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
1360                   "cmovnp{w}\t{$src2, $dst|$dst, $src2}",
1361                    [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
1362                                     X86_COND_NP, EFLAGS))]>,
1363                   TB, OpSize;
1364 def CMOVNP32rr : I<0x4B, MRMSrcReg,       // if !parity, GR32 = GR32
1365                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
1366                   "cmovnp{l}\t{$src2, $dst|$dst, $src2}",
1367                    [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
1368                                     X86_COND_NP, EFLAGS))]>,
1369                   TB;
1370 def CMOVO16rr : I<0x40, MRMSrcReg,       // if overflow, GR16 = GR16
1371                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
1372                   "cmovo{w}\t{$src2, $dst|$dst, $src2}",
1373                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
1374                                    X86_COND_O, EFLAGS))]>,
1375                   TB, OpSize;
1376 def CMOVO32rr : I<0x40, MRMSrcReg,       // if overflow, GR32 = GR32
1377                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
1378                   "cmovo{l}\t{$src2, $dst|$dst, $src2}",
1379                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
1380                                    X86_COND_O, EFLAGS))]>,
1381                   TB;
1382 def CMOVNO16rr : I<0x41, MRMSrcReg,       // if !overflow, GR16 = GR16
1383                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
1384                   "cmovno{w}\t{$src2, $dst|$dst, $src2}",
1385                    [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
1386                                     X86_COND_NO, EFLAGS))]>,
1387                   TB, OpSize;
1388 def CMOVNO32rr : I<0x41, MRMSrcReg,       // if !overflow, GR32 = GR32
1389                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
1390                   "cmovno{l}\t{$src2, $dst|$dst, $src2}",
1391                    [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
1392                                     X86_COND_NO, EFLAGS))]>,
1393                   TB;
1394 } // isCommutable = 1
1395
1396 def CMOVB16rm : I<0x42, MRMSrcMem,       // if <u, GR16 = [mem16]
1397                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1398                   "cmovb{w}\t{$src2, $dst|$dst, $src2}",
1399                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
1400                                    X86_COND_B, EFLAGS))]>,
1401                   TB, OpSize;
1402 def CMOVB32rm : I<0x42, MRMSrcMem,       // if <u, GR32 = [mem32]
1403                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1404                   "cmovb{l}\t{$src2, $dst|$dst, $src2}",
1405                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
1406                                    X86_COND_B, EFLAGS))]>,
1407                    TB;
1408 def CMOVAE16rm: I<0x43, MRMSrcMem,       // if >=u, GR16 = [mem16]
1409                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1410                   "cmovae{w}\t{$src2, $dst|$dst, $src2}",
1411                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
1412                                    X86_COND_AE, EFLAGS))]>,
1413                    TB, OpSize;
1414 def CMOVAE32rm: I<0x43, MRMSrcMem,       // if >=u, GR32 = [mem32]
1415                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1416                   "cmovae{l}\t{$src2, $dst|$dst, $src2}",
1417                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
1418                                    X86_COND_AE, EFLAGS))]>,
1419                    TB;
1420 def CMOVE16rm : I<0x44, MRMSrcMem,       // if ==, GR16 = [mem16]
1421                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1422                   "cmove{w}\t{$src2, $dst|$dst, $src2}",
1423                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
1424                                    X86_COND_E, EFLAGS))]>,
1425                    TB, OpSize;
1426 def CMOVE32rm : I<0x44, MRMSrcMem,       // if ==, GR32 = [mem32]
1427                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1428                   "cmove{l}\t{$src2, $dst|$dst, $src2}",
1429                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
1430                                    X86_COND_E, EFLAGS))]>,
1431                    TB;
1432 def CMOVNE16rm: I<0x45, MRMSrcMem,       // if !=, GR16 = [mem16]
1433                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1434                   "cmovne{w}\t{$src2, $dst|$dst, $src2}",
1435                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
1436                                    X86_COND_NE, EFLAGS))]>,
1437                    TB, OpSize;
1438 def CMOVNE32rm: I<0x45, MRMSrcMem,       // if !=, GR32 = [mem32]
1439                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1440                   "cmovne{l}\t{$src2, $dst|$dst, $src2}",
1441                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
1442                                    X86_COND_NE, EFLAGS))]>,
1443                    TB;
1444 def CMOVBE16rm: I<0x46, MRMSrcMem,       // if <=u, GR16 = [mem16]
1445                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1446                   "cmovbe{w}\t{$src2, $dst|$dst, $src2}",
1447                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
1448                                    X86_COND_BE, EFLAGS))]>,
1449                    TB, OpSize;
1450 def CMOVBE32rm: I<0x46, MRMSrcMem,       // if <=u, GR32 = [mem32]
1451                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1452                   "cmovbe{l}\t{$src2, $dst|$dst, $src2}",
1453                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
1454                                    X86_COND_BE, EFLAGS))]>,
1455                    TB;
1456 def CMOVA16rm : I<0x47, MRMSrcMem,       // if >u, GR16 = [mem16]
1457                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1458                   "cmova{w}\t{$src2, $dst|$dst, $src2}",
1459                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
1460                                    X86_COND_A, EFLAGS))]>,
1461                    TB, OpSize;
1462 def CMOVA32rm : I<0x47, MRMSrcMem,       // if >u, GR32 = [mem32]
1463                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1464                   "cmova{l}\t{$src2, $dst|$dst, $src2}",
1465                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
1466                                    X86_COND_A, EFLAGS))]>,
1467                    TB;
1468 def CMOVL16rm : I<0x4C, MRMSrcMem,       // if <s, GR16 = [mem16]
1469                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1470                   "cmovl{w}\t{$src2, $dst|$dst, $src2}",
1471                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
1472                                    X86_COND_L, EFLAGS))]>,
1473                    TB, OpSize;
1474 def CMOVL32rm : I<0x4C, MRMSrcMem,       // if <s, GR32 = [mem32]
1475                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1476                   "cmovl{l}\t{$src2, $dst|$dst, $src2}",
1477                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
1478                                    X86_COND_L, EFLAGS))]>,
1479                    TB;
1480 def CMOVGE16rm: I<0x4D, MRMSrcMem,       // if >=s, GR16 = [mem16]
1481                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1482                   "cmovge{w}\t{$src2, $dst|$dst, $src2}",
1483                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
1484                                    X86_COND_GE, EFLAGS))]>,
1485                    TB, OpSize;
1486 def CMOVGE32rm: I<0x4D, MRMSrcMem,       // if >=s, GR32 = [mem32]
1487                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1488                   "cmovge{l}\t{$src2, $dst|$dst, $src2}",
1489                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
1490                                    X86_COND_GE, EFLAGS))]>,
1491                    TB;
1492 def CMOVLE16rm: I<0x4E, MRMSrcMem,       // if <=s, GR16 = [mem16]
1493                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1494                   "cmovle{w}\t{$src2, $dst|$dst, $src2}",
1495                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
1496                                    X86_COND_LE, EFLAGS))]>,
1497                    TB, OpSize;
1498 def CMOVLE32rm: I<0x4E, MRMSrcMem,       // if <=s, GR32 = [mem32]
1499                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1500                   "cmovle{l}\t{$src2, $dst|$dst, $src2}",
1501                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
1502                                    X86_COND_LE, EFLAGS))]>,
1503                    TB;
1504 def CMOVG16rm : I<0x4F, MRMSrcMem,       // if >s, GR16 = [mem16]
1505                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1506                   "cmovg{w}\t{$src2, $dst|$dst, $src2}",
1507                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
1508                                    X86_COND_G, EFLAGS))]>,
1509                    TB, OpSize;
1510 def CMOVG32rm : I<0x4F, MRMSrcMem,       // if >s, GR32 = [mem32]
1511                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1512                   "cmovg{l}\t{$src2, $dst|$dst, $src2}",
1513                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
1514                                    X86_COND_G, EFLAGS))]>,
1515                    TB;
1516 def CMOVS16rm : I<0x48, MRMSrcMem,       // if signed, GR16 = [mem16]
1517                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1518                   "cmovs{w}\t{$src2, $dst|$dst, $src2}",
1519                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
1520                                    X86_COND_S, EFLAGS))]>,
1521                   TB, OpSize;
1522 def CMOVS32rm : I<0x48, MRMSrcMem,       // if signed, GR32 = [mem32]
1523                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1524                   "cmovs{l}\t{$src2, $dst|$dst, $src2}",
1525                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
1526                                    X86_COND_S, EFLAGS))]>,
1527                   TB;
1528 def CMOVNS16rm: I<0x49, MRMSrcMem,       // if !signed, GR16 = [mem16]
1529                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1530                   "cmovns{w}\t{$src2, $dst|$dst, $src2}",
1531                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
1532                                    X86_COND_NS, EFLAGS))]>,
1533                   TB, OpSize;
1534 def CMOVNS32rm: I<0x49, MRMSrcMem,       // if !signed, GR32 = [mem32]
1535                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1536                   "cmovns{l}\t{$src2, $dst|$dst, $src2}",
1537                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
1538                                    X86_COND_NS, EFLAGS))]>,
1539                   TB;
1540 def CMOVP16rm : I<0x4A, MRMSrcMem,       // if parity, GR16 = [mem16]
1541                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1542                   "cmovp{w}\t{$src2, $dst|$dst, $src2}",
1543                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
1544                                    X86_COND_P, EFLAGS))]>,
1545                   TB, OpSize;
1546 def CMOVP32rm : I<0x4A, MRMSrcMem,       // if parity, GR32 = [mem32]
1547                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1548                   "cmovp{l}\t{$src2, $dst|$dst, $src2}",
1549                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
1550                                    X86_COND_P, EFLAGS))]>,
1551                   TB;
1552 def CMOVNP16rm : I<0x4B, MRMSrcMem,       // if !parity, GR16 = [mem16]
1553                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1554                   "cmovnp{w}\t{$src2, $dst|$dst, $src2}",
1555                    [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
1556                                     X86_COND_NP, EFLAGS))]>,
1557                   TB, OpSize;
1558 def CMOVNP32rm : I<0x4B, MRMSrcMem,       // if !parity, GR32 = [mem32]
1559                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1560                   "cmovnp{l}\t{$src2, $dst|$dst, $src2}",
1561                    [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
1562                                     X86_COND_NP, EFLAGS))]>,
1563                   TB;
1564 def CMOVO16rm : I<0x40, MRMSrcMem,       // if overflow, GR16 = [mem16]
1565                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1566                   "cmovo{w}\t{$src2, $dst|$dst, $src2}",
1567                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
1568                                    X86_COND_O, EFLAGS))]>,
1569                   TB, OpSize;
1570 def CMOVO32rm : I<0x40, MRMSrcMem,       // if overflow, GR32 = [mem32]
1571                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1572                   "cmovo{l}\t{$src2, $dst|$dst, $src2}",
1573                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
1574                                    X86_COND_O, EFLAGS))]>,
1575                   TB;
1576 def CMOVNO16rm : I<0x41, MRMSrcMem,       // if !overflow, GR16 = [mem16]
1577                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1578                   "cmovno{w}\t{$src2, $dst|$dst, $src2}",
1579                    [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
1580                                     X86_COND_NO, EFLAGS))]>,
1581                   TB, OpSize;
1582 def CMOVNO32rm : I<0x41, MRMSrcMem,       // if !overflow, GR32 = [mem32]
1583                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1584                   "cmovno{l}\t{$src2, $dst|$dst, $src2}",
1585                    [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
1586                                     X86_COND_NO, EFLAGS))]>,
1587                   TB;
1588 } // Uses = [EFLAGS]
1589
1590
1591 // unary instructions
1592 let CodeSize = 2 in {
1593 let Defs = [EFLAGS] in {
1594 def NEG8r  : I<0xF6, MRM3r, (outs GR8 :$dst), (ins GR8 :$src), "neg{b}\t$dst",
1595                [(set GR8:$dst, (ineg GR8:$src)),
1596                 (implicit EFLAGS)]>;
1597 def NEG16r : I<0xF7, MRM3r, (outs GR16:$dst), (ins GR16:$src), "neg{w}\t$dst",
1598                [(set GR16:$dst, (ineg GR16:$src)),
1599                 (implicit EFLAGS)]>, OpSize;
1600 def NEG32r : I<0xF7, MRM3r, (outs GR32:$dst), (ins GR32:$src), "neg{l}\t$dst",
1601                [(set GR32:$dst, (ineg GR32:$src)),
1602                 (implicit EFLAGS)]>;
1603 let isTwoAddress = 0 in {
1604   def NEG8m  : I<0xF6, MRM3m, (outs), (ins i8mem :$dst), "neg{b}\t$dst",
1605                  [(store (ineg (loadi8 addr:$dst)), addr:$dst),
1606                   (implicit EFLAGS)]>;
1607   def NEG16m : I<0xF7, MRM3m, (outs), (ins i16mem:$dst), "neg{w}\t$dst",
1608                  [(store (ineg (loadi16 addr:$dst)), addr:$dst),
1609                   (implicit EFLAGS)]>, OpSize;
1610   def NEG32m : I<0xF7, MRM3m, (outs), (ins i32mem:$dst), "neg{l}\t$dst",
1611                  [(store (ineg (loadi32 addr:$dst)), addr:$dst),
1612                   (implicit EFLAGS)]>;
1613 }
1614 } // Defs = [EFLAGS]
1615
1616 // Match xor -1 to not. Favors these over a move imm + xor to save code size.
1617 let AddedComplexity = 15 in {
1618 def NOT8r  : I<0xF6, MRM2r, (outs GR8 :$dst), (ins GR8 :$src), "not{b}\t$dst",
1619                [(set GR8:$dst, (not GR8:$src))]>;
1620 def NOT16r : I<0xF7, MRM2r, (outs GR16:$dst), (ins GR16:$src), "not{w}\t$dst",
1621                [(set GR16:$dst, (not GR16:$src))]>, OpSize;
1622 def NOT32r : I<0xF7, MRM2r, (outs GR32:$dst), (ins GR32:$src), "not{l}\t$dst",
1623                [(set GR32:$dst, (not GR32:$src))]>;
1624 }
1625 let isTwoAddress = 0 in {
1626   def NOT8m  : I<0xF6, MRM2m, (outs), (ins i8mem :$dst), "not{b}\t$dst",
1627                  [(store (not (loadi8 addr:$dst)), addr:$dst)]>;
1628   def NOT16m : I<0xF7, MRM2m, (outs), (ins i16mem:$dst), "not{w}\t$dst",
1629                  [(store (not (loadi16 addr:$dst)), addr:$dst)]>, OpSize;
1630   def NOT32m : I<0xF7, MRM2m, (outs), (ins i32mem:$dst), "not{l}\t$dst",
1631                  [(store (not (loadi32 addr:$dst)), addr:$dst)]>;
1632 }
1633 } // CodeSize
1634
1635 // TODO: inc/dec is slow for P4, but fast for Pentium-M.
1636 let Defs = [EFLAGS] in {
1637 let CodeSize = 2 in
1638 def INC8r  : I<0xFE, MRM0r, (outs GR8 :$dst), (ins GR8 :$src), "inc{b}\t$dst",
1639                [(set GR8:$dst, (add GR8:$src, 1)),
1640                 (implicit EFLAGS)]>;
1641 let isConvertibleToThreeAddress = 1, CodeSize = 1 in {  // Can xform into LEA.
1642 def INC16r : I<0x40, AddRegFrm, (outs GR16:$dst), (ins GR16:$src), 
1643                "inc{w}\t$dst",
1644                [(set GR16:$dst, (add GR16:$src, 1)),
1645                 (implicit EFLAGS)]>,
1646              OpSize, Requires<[In32BitMode]>;
1647 def INC32r : I<0x40, AddRegFrm, (outs GR32:$dst), (ins GR32:$src), 
1648                "inc{l}\t$dst",
1649                [(set GR32:$dst, (add GR32:$src, 1)),
1650                 (implicit EFLAGS)]>, Requires<[In32BitMode]>;
1651 }
1652 let isTwoAddress = 0, CodeSize = 2 in {
1653   def INC8m  : I<0xFE, MRM0m, (outs), (ins i8mem :$dst), "inc{b}\t$dst",
1654                [(store (add (loadi8 addr:$dst), 1), addr:$dst),
1655                 (implicit EFLAGS)]>;
1656   def INC16m : I<0xFF, MRM0m, (outs), (ins i16mem:$dst), "inc{w}\t$dst",
1657                [(store (add (loadi16 addr:$dst), 1), addr:$dst),
1658                 (implicit EFLAGS)]>,
1659                OpSize, Requires<[In32BitMode]>;
1660   def INC32m : I<0xFF, MRM0m, (outs), (ins i32mem:$dst), "inc{l}\t$dst",
1661                [(store (add (loadi32 addr:$dst), 1), addr:$dst),
1662                 (implicit EFLAGS)]>,
1663                Requires<[In32BitMode]>;
1664 }
1665
1666 let CodeSize = 2 in
1667 def DEC8r  : I<0xFE, MRM1r, (outs GR8 :$dst), (ins GR8 :$src), "dec{b}\t$dst",
1668                [(set GR8:$dst, (add GR8:$src, -1)),
1669                 (implicit EFLAGS)]>;
1670 let isConvertibleToThreeAddress = 1, CodeSize = 1 in {   // Can xform into LEA.
1671 def DEC16r : I<0x48, AddRegFrm, (outs GR16:$dst), (ins GR16:$src), 
1672                "dec{w}\t$dst",
1673                [(set GR16:$dst, (add GR16:$src, -1)),
1674                 (implicit EFLAGS)]>,
1675              OpSize, Requires<[In32BitMode]>;
1676 def DEC32r : I<0x48, AddRegFrm, (outs GR32:$dst), (ins GR32:$src), 
1677                "dec{l}\t$dst",
1678                [(set GR32:$dst, (add GR32:$src, -1)),
1679                 (implicit EFLAGS)]>, Requires<[In32BitMode]>;
1680 }
1681
1682 let isTwoAddress = 0, CodeSize = 2 in {
1683   def DEC8m  : I<0xFE, MRM1m, (outs), (ins i8mem :$dst), "dec{b}\t$dst",
1684                [(store (add (loadi8 addr:$dst), -1), addr:$dst),
1685                 (implicit EFLAGS)]>;
1686   def DEC16m : I<0xFF, MRM1m, (outs), (ins i16mem:$dst), "dec{w}\t$dst",
1687                [(store (add (loadi16 addr:$dst), -1), addr:$dst),
1688                 (implicit EFLAGS)]>,
1689                OpSize, Requires<[In32BitMode]>;
1690   def DEC32m : I<0xFF, MRM1m, (outs), (ins i32mem:$dst), "dec{l}\t$dst",
1691                [(store (add (loadi32 addr:$dst), -1), addr:$dst),
1692                 (implicit EFLAGS)]>,
1693                Requires<[In32BitMode]>;
1694 }
1695 } // Defs = [EFLAGS]
1696
1697 // Logical operators...
1698 let Defs = [EFLAGS] in {
1699 let isCommutable = 1 in {   // X = AND Y, Z   --> X = AND Z, Y
1700 def AND8rr   : I<0x20, MRMDestReg,
1701                 (outs GR8 :$dst), (ins GR8 :$src1, GR8 :$src2),
1702                 "and{b}\t{$src2, $dst|$dst, $src2}",
1703                 [(set GR8:$dst, (and GR8:$src1, GR8:$src2)),
1704                  (implicit EFLAGS)]>;
1705 def AND16rr  : I<0x21, MRMDestReg,
1706                  (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
1707                  "and{w}\t{$src2, $dst|$dst, $src2}",
1708                  [(set GR16:$dst, (and GR16:$src1, GR16:$src2)),
1709                   (implicit EFLAGS)]>, OpSize;
1710 def AND32rr  : I<0x21, MRMDestReg, 
1711                  (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
1712                  "and{l}\t{$src2, $dst|$dst, $src2}",
1713                  [(set GR32:$dst, (and GR32:$src1, GR32:$src2)),
1714                   (implicit EFLAGS)]>;
1715 }
1716
1717 // AND instructions with the destination register in REG and the source register
1718 //   in R/M.  Included for the disassembler.
1719 def AND8rr_REV : I<0x22, MRMSrcReg, (outs GR8:$dst), (ins GR8:$src1, GR8:$src2),
1720                   "and{b}\t{$src2, $dst|$dst, $src2}", []>;
1721 def AND16rr_REV : I<0x23, MRMSrcReg, (outs GR16:$dst), 
1722                     (ins GR16:$src1, GR16:$src2),
1723                    "and{w}\t{$src2, $dst|$dst, $src2}", []>, OpSize;
1724 def AND32rr_REV : I<0x23, MRMSrcReg, (outs GR32:$dst), 
1725                     (ins GR32:$src1, GR32:$src2),
1726                    "and{l}\t{$src2, $dst|$dst, $src2}", []>;
1727
1728 def AND8rm   : I<0x22, MRMSrcMem, 
1729                  (outs GR8 :$dst), (ins GR8 :$src1, i8mem :$src2),
1730                  "and{b}\t{$src2, $dst|$dst, $src2}",
1731                 [(set GR8:$dst, (and GR8:$src1, (loadi8 addr:$src2))),
1732                  (implicit EFLAGS)]>;
1733 def AND16rm  : I<0x23, MRMSrcMem, 
1734                  (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1735                  "and{w}\t{$src2, $dst|$dst, $src2}",
1736                 [(set GR16:$dst, (and GR16:$src1, (loadi16 addr:$src2))),
1737                  (implicit EFLAGS)]>, OpSize;
1738 def AND32rm  : I<0x23, MRMSrcMem,
1739                  (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1740                  "and{l}\t{$src2, $dst|$dst, $src2}",
1741                 [(set GR32:$dst, (and GR32:$src1, (loadi32 addr:$src2))),
1742                  (implicit EFLAGS)]>;
1743
1744 def AND8ri   : Ii8<0x80, MRM4r, 
1745                    (outs GR8 :$dst), (ins GR8 :$src1, i8imm :$src2),
1746                    "and{b}\t{$src2, $dst|$dst, $src2}",
1747                    [(set GR8:$dst, (and GR8:$src1, imm:$src2)),
1748                     (implicit EFLAGS)]>;
1749 def AND16ri  : Ii16<0x81, MRM4r, 
1750                     (outs GR16:$dst), (ins GR16:$src1, i16imm:$src2),
1751                     "and{w}\t{$src2, $dst|$dst, $src2}",
1752                     [(set GR16:$dst, (and GR16:$src1, imm:$src2)),
1753                      (implicit EFLAGS)]>, OpSize;
1754 def AND32ri  : Ii32<0x81, MRM4r, 
1755                     (outs GR32:$dst), (ins GR32:$src1, i32imm:$src2),
1756                     "and{l}\t{$src2, $dst|$dst, $src2}",
1757                     [(set GR32:$dst, (and GR32:$src1, imm:$src2)),
1758                      (implicit EFLAGS)]>;
1759 def AND16ri8 : Ii8<0x83, MRM4r, 
1760                    (outs GR16:$dst), (ins GR16:$src1, i16i8imm:$src2),
1761                    "and{w}\t{$src2, $dst|$dst, $src2}",
1762                    [(set GR16:$dst, (and GR16:$src1, i16immSExt8:$src2)),
1763                     (implicit EFLAGS)]>,
1764                    OpSize;
1765 def AND32ri8 : Ii8<0x83, MRM4r, 
1766                    (outs GR32:$dst), (ins GR32:$src1, i32i8imm:$src2),
1767                    "and{l}\t{$src2, $dst|$dst, $src2}",
1768                    [(set GR32:$dst, (and GR32:$src1, i32immSExt8:$src2)),
1769                     (implicit EFLAGS)]>;
1770
1771 let isTwoAddress = 0 in {
1772   def AND8mr   : I<0x20, MRMDestMem,
1773                    (outs), (ins i8mem :$dst, GR8 :$src),
1774                    "and{b}\t{$src, $dst|$dst, $src}",
1775                    [(store (and (load addr:$dst), GR8:$src), addr:$dst),
1776                     (implicit EFLAGS)]>;
1777   def AND16mr  : I<0x21, MRMDestMem,
1778                    (outs), (ins i16mem:$dst, GR16:$src),
1779                    "and{w}\t{$src, $dst|$dst, $src}",
1780                    [(store (and (load addr:$dst), GR16:$src), addr:$dst),
1781                     (implicit EFLAGS)]>,
1782                    OpSize;
1783   def AND32mr  : I<0x21, MRMDestMem,
1784                    (outs), (ins i32mem:$dst, GR32:$src),
1785                    "and{l}\t{$src, $dst|$dst, $src}",
1786                    [(store (and (load addr:$dst), GR32:$src), addr:$dst),
1787                     (implicit EFLAGS)]>;
1788   def AND8mi   : Ii8<0x80, MRM4m,
1789                      (outs), (ins i8mem :$dst, i8imm :$src),
1790                      "and{b}\t{$src, $dst|$dst, $src}",
1791                       [(store (and (loadi8 addr:$dst), imm:$src), addr:$dst),
1792                        (implicit EFLAGS)]>;
1793   def AND16mi  : Ii16<0x81, MRM4m,
1794                       (outs), (ins i16mem:$dst, i16imm:$src),
1795                       "and{w}\t{$src, $dst|$dst, $src}",
1796                       [(store (and (loadi16 addr:$dst), imm:$src), addr:$dst),
1797                        (implicit EFLAGS)]>,
1798                       OpSize;
1799   def AND32mi  : Ii32<0x81, MRM4m,
1800                       (outs), (ins i32mem:$dst, i32imm:$src),
1801                       "and{l}\t{$src, $dst|$dst, $src}",
1802                       [(store (and (loadi32 addr:$dst), imm:$src), addr:$dst),
1803                        (implicit EFLAGS)]>;
1804   def AND16mi8 : Ii8<0x83, MRM4m,
1805                      (outs), (ins i16mem:$dst, i16i8imm :$src),
1806                      "and{w}\t{$src, $dst|$dst, $src}",
1807                 [(store (and (load addr:$dst), i16immSExt8:$src), addr:$dst),
1808                  (implicit EFLAGS)]>,
1809                      OpSize;
1810   def AND32mi8 : Ii8<0x83, MRM4m,
1811                      (outs), (ins i32mem:$dst, i32i8imm :$src),
1812                      "and{l}\t{$src, $dst|$dst, $src}",
1813                 [(store (and (load addr:$dst), i32immSExt8:$src), addr:$dst),
1814                  (implicit EFLAGS)]>;
1815
1816   def AND8i8 : Ii8<0x24, RawFrm, (outs), (ins i8imm:$src),
1817                    "and{b}\t{$src, %al|%al, $src}", []>;
1818   def AND16i16 : Ii16<0x25, RawFrm, (outs), (ins i16imm:$src),
1819                       "and{w}\t{$src, %ax|%ax, $src}", []>, OpSize;
1820   def AND32i32 : Ii32<0x25, RawFrm, (outs), (ins i32imm:$src),
1821                       "and{l}\t{$src, %eax|%eax, $src}", []>;
1822
1823 }
1824
1825
1826 let isCommutable = 1 in {   // X = OR Y, Z   --> X = OR Z, Y
1827 def OR8rr    : I<0x08, MRMDestReg, (outs GR8 :$dst), 
1828                  (ins GR8 :$src1, GR8 :$src2),
1829                  "or{b}\t{$src2, $dst|$dst, $src2}",
1830                  [(set GR8:$dst, (or GR8:$src1, GR8:$src2)),
1831                   (implicit EFLAGS)]>;
1832 def OR16rr   : I<0x09, MRMDestReg, (outs GR16:$dst), 
1833                  (ins GR16:$src1, GR16:$src2),
1834                  "or{w}\t{$src2, $dst|$dst, $src2}",
1835                  [(set GR16:$dst, (or GR16:$src1, GR16:$src2)),
1836                   (implicit EFLAGS)]>, OpSize;
1837 def OR32rr   : I<0x09, MRMDestReg, (outs GR32:$dst), 
1838                  (ins GR32:$src1, GR32:$src2),
1839                  "or{l}\t{$src2, $dst|$dst, $src2}",
1840                  [(set GR32:$dst, (or GR32:$src1, GR32:$src2)),
1841                   (implicit EFLAGS)]>;
1842 }
1843
1844 // OR instructions with the destination register in REG and the source register
1845 //   in R/M.  Included for the disassembler.
1846 def OR8rr_REV : I<0x0A, MRMSrcReg, (outs GR8:$dst), (ins GR8:$src1, GR8:$src2),
1847                   "or{b}\t{$src2, $dst|$dst, $src2}", []>;
1848 def OR16rr_REV : I<0x0B, MRMSrcReg, (outs GR16:$dst),
1849                    (ins GR16:$src1, GR16:$src2),
1850                    "or{w}\t{$src2, $dst|$dst, $src2}", []>, OpSize;
1851 def OR32rr_REV : I<0x0B, MRMSrcReg, (outs GR32:$dst), 
1852                    (ins GR32:$src1, GR32:$src2),
1853                    "or{l}\t{$src2, $dst|$dst, $src2}", []>;
1854                   
1855 def OR8rm    : I<0x0A, MRMSrcMem , (outs GR8 :$dst), 
1856                  (ins GR8 :$src1, i8mem :$src2),
1857                  "or{b}\t{$src2, $dst|$dst, $src2}",
1858                 [(set GR8:$dst, (or GR8:$src1, (load addr:$src2))),
1859                  (implicit EFLAGS)]>;
1860 def OR16rm   : I<0x0B, MRMSrcMem , (outs GR16:$dst), 
1861                  (ins GR16:$src1, i16mem:$src2),
1862                  "or{w}\t{$src2, $dst|$dst, $src2}",
1863                 [(set GR16:$dst, (or GR16:$src1, (load addr:$src2))),
1864                  (implicit EFLAGS)]>, OpSize;
1865 def OR32rm   : I<0x0B, MRMSrcMem , (outs GR32:$dst), 
1866                  (ins GR32:$src1, i32mem:$src2),
1867                  "or{l}\t{$src2, $dst|$dst, $src2}",
1868                 [(set GR32:$dst, (or GR32:$src1, (load addr:$src2))),
1869                  (implicit EFLAGS)]>;
1870
1871 def OR8ri    : Ii8 <0x80, MRM1r, (outs GR8 :$dst), 
1872                     (ins GR8 :$src1, i8imm:$src2),
1873                     "or{b}\t{$src2, $dst|$dst, $src2}",
1874                     [(set GR8:$dst, (or GR8:$src1, imm:$src2)),
1875                      (implicit EFLAGS)]>;
1876 def OR16ri   : Ii16<0x81, MRM1r, (outs GR16:$dst), 
1877                     (ins GR16:$src1, i16imm:$src2),
1878                     "or{w}\t{$src2, $dst|$dst, $src2}", 
1879                     [(set GR16:$dst, (or GR16:$src1, imm:$src2)),
1880                      (implicit EFLAGS)]>, OpSize;
1881 def OR32ri   : Ii32<0x81, MRM1r, (outs GR32:$dst), 
1882                     (ins GR32:$src1, i32imm:$src2),
1883                     "or{l}\t{$src2, $dst|$dst, $src2}",
1884                     [(set GR32:$dst, (or GR32:$src1, imm:$src2)),
1885                      (implicit EFLAGS)]>;
1886
1887 def OR16ri8  : Ii8<0x83, MRM1r, (outs GR16:$dst), 
1888                    (ins GR16:$src1, i16i8imm:$src2),
1889                    "or{w}\t{$src2, $dst|$dst, $src2}",
1890                    [(set GR16:$dst, (or GR16:$src1, i16immSExt8:$src2)),
1891                     (implicit EFLAGS)]>, OpSize;
1892 def OR32ri8  : Ii8<0x83, MRM1r, (outs GR32:$dst), 
1893                    (ins GR32:$src1, i32i8imm:$src2),
1894                    "or{l}\t{$src2, $dst|$dst, $src2}",
1895                    [(set GR32:$dst, (or GR32:$src1, i32immSExt8:$src2)),
1896                     (implicit EFLAGS)]>;
1897 let isTwoAddress = 0 in {
1898   def OR8mr  : I<0x08, MRMDestMem, (outs), (ins i8mem:$dst, GR8:$src),
1899                  "or{b}\t{$src, $dst|$dst, $src}",
1900                  [(store (or (load addr:$dst), GR8:$src), addr:$dst),
1901                   (implicit EFLAGS)]>;
1902   def OR16mr : I<0x09, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src),
1903                  "or{w}\t{$src, $dst|$dst, $src}",
1904                  [(store (or (load addr:$dst), GR16:$src), addr:$dst),
1905                   (implicit EFLAGS)]>, OpSize;
1906   def OR32mr : I<0x09, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
1907                  "or{l}\t{$src, $dst|$dst, $src}",
1908                  [(store (or (load addr:$dst), GR32:$src), addr:$dst),
1909                   (implicit EFLAGS)]>;
1910   def OR8mi    : Ii8<0x80, MRM1m, (outs), (ins i8mem :$dst, i8imm:$src),
1911                  "or{b}\t{$src, $dst|$dst, $src}",
1912                  [(store (or (loadi8 addr:$dst), imm:$src), addr:$dst),
1913                   (implicit EFLAGS)]>;
1914   def OR16mi   : Ii16<0x81, MRM1m, (outs), (ins i16mem:$dst, i16imm:$src),
1915                  "or{w}\t{$src, $dst|$dst, $src}",
1916                  [(store (or (loadi16 addr:$dst), imm:$src), addr:$dst),
1917                   (implicit EFLAGS)]>,
1918                  OpSize;
1919   def OR32mi   : Ii32<0x81, MRM1m, (outs), (ins i32mem:$dst, i32imm:$src),
1920                  "or{l}\t{$src, $dst|$dst, $src}",
1921                  [(store (or (loadi32 addr:$dst), imm:$src), addr:$dst),
1922                   (implicit EFLAGS)]>;
1923   def OR16mi8  : Ii8<0x83, MRM1m, (outs), (ins i16mem:$dst, i16i8imm:$src),
1924                  "or{w}\t{$src, $dst|$dst, $src}",
1925                  [(store (or (load addr:$dst), i16immSExt8:$src), addr:$dst),
1926                   (implicit EFLAGS)]>,
1927                      OpSize;
1928   def OR32mi8  : Ii8<0x83, MRM1m, (outs), (ins i32mem:$dst, i32i8imm:$src),
1929                  "or{l}\t{$src, $dst|$dst, $src}",
1930                  [(store (or (load addr:$dst), i32immSExt8:$src), addr:$dst),
1931                   (implicit EFLAGS)]>;
1932                   
1933   def OR8i8 : Ii8 <0x0C, RawFrm, (outs), (ins i8imm:$src),
1934                    "or{b}\t{$src, %al|%al, $src}", []>;
1935   def OR16i16 : Ii16 <0x0D, RawFrm, (outs), (ins i16imm:$src),
1936                       "or{w}\t{$src, %ax|%ax, $src}", []>, OpSize;
1937   def OR32i32 : Ii32 <0x0D, RawFrm, (outs), (ins i32imm:$src),
1938                       "or{l}\t{$src, %eax|%eax, $src}", []>;
1939 } // isTwoAddress = 0
1940
1941
1942 let isCommutable = 1 in { // X = XOR Y, Z --> X = XOR Z, Y
1943   def XOR8rr   : I<0x30, MRMDestReg,
1944                    (outs GR8 :$dst), (ins GR8 :$src1, GR8 :$src2),
1945                    "xor{b}\t{$src2, $dst|$dst, $src2}",
1946                    [(set GR8:$dst, (xor GR8:$src1, GR8:$src2)),
1947                     (implicit EFLAGS)]>;
1948   def XOR16rr  : I<0x31, MRMDestReg, 
1949                    (outs GR16:$dst), (ins GR16:$src1, GR16:$src2), 
1950                    "xor{w}\t{$src2, $dst|$dst, $src2}",
1951                    [(set GR16:$dst, (xor GR16:$src1, GR16:$src2)),
1952                     (implicit EFLAGS)]>, OpSize;
1953   def XOR32rr  : I<0x31, MRMDestReg, 
1954                    (outs GR32:$dst), (ins GR32:$src1, GR32:$src2), 
1955                    "xor{l}\t{$src2, $dst|$dst, $src2}",
1956                    [(set GR32:$dst, (xor GR32:$src1, GR32:$src2)),
1957                     (implicit EFLAGS)]>;
1958 } // isCommutable = 1
1959
1960 // XOR instructions with the destination register in REG and the source register
1961 //   in R/M.  Included for the disassembler.
1962 def XOR8rr_REV : I<0x32, MRMSrcReg, (outs GR8:$dst), (ins GR8:$src1, GR8:$src2),
1963                   "xor{b}\t{$src2, $dst|$dst, $src2}", []>;
1964 def XOR16rr_REV : I<0x33, MRMSrcReg, (outs GR16:$dst), 
1965                     (ins GR16:$src1, GR16:$src2),
1966                    "xor{w}\t{$src2, $dst|$dst, $src2}", []>, OpSize;
1967 def XOR32rr_REV : I<0x33, MRMSrcReg, (outs GR32:$dst), 
1968                     (ins GR32:$src1, GR32:$src2),
1969                    "xor{l}\t{$src2, $dst|$dst, $src2}", []>;
1970
1971 def XOR8rm   : I<0x32, MRMSrcMem , 
1972                  (outs GR8 :$dst), (ins GR8:$src1, i8mem :$src2), 
1973                  "xor{b}\t{$src2, $dst|$dst, $src2}",
1974                  [(set GR8:$dst, (xor GR8:$src1, (load addr:$src2))),
1975                   (implicit EFLAGS)]>;
1976 def XOR16rm  : I<0x33, MRMSrcMem , 
1977                  (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2), 
1978                  "xor{w}\t{$src2, $dst|$dst, $src2}",
1979                  [(set GR16:$dst, (xor GR16:$src1, (load addr:$src2))),
1980                   (implicit EFLAGS)]>,
1981                  OpSize;
1982 def XOR32rm  : I<0x33, MRMSrcMem , 
1983                  (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2), 
1984                  "xor{l}\t{$src2, $dst|$dst, $src2}",
1985                  [(set GR32:$dst, (xor GR32:$src1, (load addr:$src2))),
1986                   (implicit EFLAGS)]>;
1987
1988 def XOR8ri   : Ii8<0x80, MRM6r, 
1989                    (outs GR8:$dst), (ins GR8:$src1, i8imm:$src2), 
1990                    "xor{b}\t{$src2, $dst|$dst, $src2}",
1991                    [(set GR8:$dst, (xor GR8:$src1, imm:$src2)),
1992                     (implicit EFLAGS)]>;
1993 def XOR16ri  : Ii16<0x81, MRM6r, 
1994                     (outs GR16:$dst), (ins GR16:$src1, i16imm:$src2), 
1995                     "xor{w}\t{$src2, $dst|$dst, $src2}",
1996                     [(set GR16:$dst, (xor GR16:$src1, imm:$src2)),
1997                      (implicit EFLAGS)]>, OpSize;
1998 def XOR32ri  : Ii32<0x81, MRM6r, 
1999                     (outs GR32:$dst), (ins GR32:$src1, i32imm:$src2), 
2000                     "xor{l}\t{$src2, $dst|$dst, $src2}",
2001                     [(set GR32:$dst, (xor GR32:$src1, imm:$src2)),
2002                      (implicit EFLAGS)]>;
2003 def XOR16ri8 : Ii8<0x83, MRM6r, 
2004                    (outs GR16:$dst), (ins GR16:$src1, i16i8imm:$src2),
2005                    "xor{w}\t{$src2, $dst|$dst, $src2}",
2006                    [(set GR16:$dst, (xor GR16:$src1, i16immSExt8:$src2)),
2007                     (implicit EFLAGS)]>,
2008                    OpSize;
2009 def XOR32ri8 : Ii8<0x83, MRM6r, 
2010                    (outs GR32:$dst), (ins GR32:$src1, i32i8imm:$src2),
2011                    "xor{l}\t{$src2, $dst|$dst, $src2}",
2012                    [(set GR32:$dst, (xor GR32:$src1, i32immSExt8:$src2)),
2013                     (implicit EFLAGS)]>;
2014
2015 let isTwoAddress = 0 in {
2016   def XOR8mr   : I<0x30, MRMDestMem,
2017                    (outs), (ins i8mem :$dst, GR8 :$src),
2018                    "xor{b}\t{$src, $dst|$dst, $src}",
2019                    [(store (xor (load addr:$dst), GR8:$src), addr:$dst),
2020                     (implicit EFLAGS)]>;
2021   def XOR16mr  : I<0x31, MRMDestMem,
2022                    (outs), (ins i16mem:$dst, GR16:$src),
2023                    "xor{w}\t{$src, $dst|$dst, $src}",
2024                    [(store (xor (load addr:$dst), GR16:$src), addr:$dst),
2025                     (implicit EFLAGS)]>,
2026                    OpSize;
2027   def XOR32mr  : I<0x31, MRMDestMem,
2028                    (outs), (ins i32mem:$dst, GR32:$src),
2029                    "xor{l}\t{$src, $dst|$dst, $src}",
2030                    [(store (xor (load addr:$dst), GR32:$src), addr:$dst),
2031                     (implicit EFLAGS)]>;
2032   def XOR8mi   : Ii8<0x80, MRM6m,
2033                      (outs), (ins i8mem :$dst, i8imm :$src),
2034                      "xor{b}\t{$src, $dst|$dst, $src}",
2035                     [(store (xor (loadi8 addr:$dst), imm:$src), addr:$dst),
2036                      (implicit EFLAGS)]>;
2037   def XOR16mi  : Ii16<0x81, MRM6m,
2038                       (outs), (ins i16mem:$dst, i16imm:$src),
2039                       "xor{w}\t{$src, $dst|$dst, $src}",
2040                    [(store (xor (loadi16 addr:$dst), imm:$src), addr:$dst),
2041                     (implicit EFLAGS)]>,
2042                       OpSize;
2043   def XOR32mi  : Ii32<0x81, MRM6m,
2044                       (outs), (ins i32mem:$dst, i32imm:$src),
2045                       "xor{l}\t{$src, $dst|$dst, $src}",
2046                    [(store (xor (loadi32 addr:$dst), imm:$src), addr:$dst),
2047                     (implicit EFLAGS)]>;
2048   def XOR16mi8 : Ii8<0x83, MRM6m,
2049                      (outs), (ins i16mem:$dst, i16i8imm :$src),
2050                      "xor{w}\t{$src, $dst|$dst, $src}",
2051                  [(store (xor (load addr:$dst), i16immSExt8:$src), addr:$dst),
2052                   (implicit EFLAGS)]>,
2053                      OpSize;
2054   def XOR32mi8 : Ii8<0x83, MRM6m,
2055                      (outs), (ins i32mem:$dst, i32i8imm :$src),
2056                      "xor{l}\t{$src, $dst|$dst, $src}",
2057                  [(store (xor (load addr:$dst), i32immSExt8:$src), addr:$dst),
2058                   (implicit EFLAGS)]>;
2059                   
2060   def XOR8i8 : Ii8 <0x34, RawFrm, (outs), (ins i8imm:$src),
2061                    "xor{b}\t{$src, %al|%al, $src}", []>;
2062   def XOR16i16 : Ii16 <0x35, RawFrm, (outs), (ins i16imm:$src),
2063                         "xor{w}\t{$src, %ax|%ax, $src}", []>, OpSize;
2064   def XOR32i32 : Ii32 <0x35, RawFrm, (outs), (ins i32imm:$src),
2065                         "xor{l}\t{$src, %eax|%eax, $src}", []>;
2066 } // isTwoAddress = 0
2067 } // Defs = [EFLAGS]
2068
2069 // Shift instructions
2070 let Defs = [EFLAGS] in {
2071 let Uses = [CL] in {
2072 def SHL8rCL  : I<0xD2, MRM4r, (outs GR8 :$dst), (ins GR8 :$src),
2073                  "shl{b}\t{%cl, $dst|$dst, CL}",
2074                  [(set GR8:$dst, (shl GR8:$src, CL))]>;
2075 def SHL16rCL : I<0xD3, MRM4r, (outs GR16:$dst), (ins GR16:$src),
2076                  "shl{w}\t{%cl, $dst|$dst, CL}",
2077                  [(set GR16:$dst, (shl GR16:$src, CL))]>, OpSize;
2078 def SHL32rCL : I<0xD3, MRM4r, (outs GR32:$dst), (ins GR32:$src),
2079                  "shl{l}\t{%cl, $dst|$dst, CL}",
2080                  [(set GR32:$dst, (shl GR32:$src, CL))]>;
2081 } // Uses = [CL]
2082
2083 def SHL8ri   : Ii8<0xC0, MRM4r, (outs GR8 :$dst), (ins GR8 :$src1, i8imm:$src2),
2084                    "shl{b}\t{$src2, $dst|$dst, $src2}",
2085                    [(set GR8:$dst, (shl GR8:$src1, (i8 imm:$src2)))]>;
2086 let isConvertibleToThreeAddress = 1 in {   // Can transform into LEA.
2087 def SHL16ri  : Ii8<0xC1, MRM4r, (outs GR16:$dst), (ins GR16:$src1, i8imm:$src2),
2088                    "shl{w}\t{$src2, $dst|$dst, $src2}",
2089                    [(set GR16:$dst, (shl GR16:$src1, (i8 imm:$src2)))]>, OpSize;
2090 def SHL32ri  : Ii8<0xC1, MRM4r, (outs GR32:$dst), (ins GR32:$src1, i8imm:$src2),
2091                    "shl{l}\t{$src2, $dst|$dst, $src2}",
2092                    [(set GR32:$dst, (shl GR32:$src1, (i8 imm:$src2)))]>;
2093
2094 // NOTE: We don't include patterns for shifts of a register by one, because
2095 // 'add reg,reg' is cheaper.
2096
2097 def SHL8r1   : I<0xD0, MRM4r, (outs GR8:$dst), (ins GR8:$src1),
2098                  "shl{b}\t$dst", []>;
2099 def SHL16r1  : I<0xD1, MRM4r, (outs GR16:$dst), (ins GR16:$src1),
2100                  "shl{w}\t$dst", []>, OpSize;
2101 def SHL32r1  : I<0xD1, MRM4r, (outs GR32:$dst), (ins GR32:$src1),
2102                  "shl{l}\t$dst", []>;
2103
2104 } // isConvertibleToThreeAddress = 1
2105
2106 let isTwoAddress = 0 in {
2107   let Uses = [CL] in {
2108   def SHL8mCL  : I<0xD2, MRM4m, (outs), (ins i8mem :$dst),
2109                    "shl{b}\t{%cl, $dst|$dst, CL}",
2110                    [(store (shl (loadi8 addr:$dst), CL), addr:$dst)]>;
2111   def SHL16mCL : I<0xD3, MRM4m, (outs), (ins i16mem:$dst),
2112                    "shl{w}\t{%cl, $dst|$dst, CL}",
2113                    [(store (shl (loadi16 addr:$dst), CL), addr:$dst)]>, OpSize;
2114   def SHL32mCL : I<0xD3, MRM4m, (outs), (ins i32mem:$dst),
2115                    "shl{l}\t{%cl, $dst|$dst, CL}",
2116                    [(store (shl (loadi32 addr:$dst), CL), addr:$dst)]>;
2117   }
2118   def SHL8mi   : Ii8<0xC0, MRM4m, (outs), (ins i8mem :$dst, i8imm:$src),
2119                      "shl{b}\t{$src, $dst|$dst, $src}",
2120                   [(store (shl (loadi8 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
2121   def SHL16mi  : Ii8<0xC1, MRM4m, (outs), (ins i16mem:$dst, i8imm:$src),
2122                      "shl{w}\t{$src, $dst|$dst, $src}",
2123                  [(store (shl (loadi16 addr:$dst), (i8 imm:$src)), addr:$dst)]>,
2124                      OpSize;
2125   def SHL32mi  : Ii8<0xC1, MRM4m, (outs), (ins i32mem:$dst, i8imm:$src),
2126                      "shl{l}\t{$src, $dst|$dst, $src}",
2127                  [(store (shl (loadi32 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
2128
2129   // Shift by 1
2130   def SHL8m1   : I<0xD0, MRM4m, (outs), (ins i8mem :$dst),
2131                    "shl{b}\t$dst",
2132                   [(store (shl (loadi8 addr:$dst), (i8 1)), addr:$dst)]>;
2133   def SHL16m1  : I<0xD1, MRM4m, (outs), (ins i16mem:$dst),
2134                    "shl{w}\t$dst",
2135                  [(store (shl (loadi16 addr:$dst), (i8 1)), addr:$dst)]>,
2136                      OpSize;
2137   def SHL32m1  : I<0xD1, MRM4m, (outs), (ins i32mem:$dst),
2138                    "shl{l}\t$dst",
2139                  [(store (shl (loadi32 addr:$dst), (i8 1)), addr:$dst)]>;
2140 }
2141
2142 let Uses = [CL] in {
2143 def SHR8rCL  : I<0xD2, MRM5r, (outs GR8 :$dst), (ins GR8 :$src),
2144                  "shr{b}\t{%cl, $dst|$dst, CL}",
2145                  [(set GR8:$dst, (srl GR8:$src, CL))]>;
2146 def SHR16rCL : I<0xD3, MRM5r, (outs GR16:$dst), (ins GR16:$src),
2147                  "shr{w}\t{%cl, $dst|$dst, CL}",
2148                  [(set GR16:$dst, (srl GR16:$src, CL))]>, OpSize;
2149 def SHR32rCL : I<0xD3, MRM5r, (outs GR32:$dst), (ins GR32:$src),
2150                  "shr{l}\t{%cl, $dst|$dst, CL}",
2151                  [(set GR32:$dst, (srl GR32:$src, CL))]>;
2152 }
2153
2154 def SHR8ri   : Ii8<0xC0, MRM5r, (outs GR8:$dst), (ins GR8:$src1, i8imm:$src2),
2155                    "shr{b}\t{$src2, $dst|$dst, $src2}",
2156                    [(set GR8:$dst, (srl GR8:$src1, (i8 imm:$src2)))]>;
2157 def SHR16ri  : Ii8<0xC1, MRM5r, (outs GR16:$dst), (ins GR16:$src1, i8imm:$src2),
2158                    "shr{w}\t{$src2, $dst|$dst, $src2}",
2159                    [(set GR16:$dst, (srl GR16:$src1, (i8 imm:$src2)))]>, OpSize;
2160 def SHR32ri  : Ii8<0xC1, MRM5r, (outs GR32:$dst), (ins GR32:$src1, i8imm:$src2),
2161                    "shr{l}\t{$src2, $dst|$dst, $src2}",
2162                    [(set GR32:$dst, (srl GR32:$src1, (i8 imm:$src2)))]>;
2163
2164 // Shift by 1
2165 def SHR8r1   : I<0xD0, MRM5r, (outs GR8:$dst), (ins GR8:$src1),
2166                  "shr{b}\t$dst",
2167                  [(set GR8:$dst, (srl GR8:$src1, (i8 1)))]>;
2168 def SHR16r1  : I<0xD1, MRM5r, (outs GR16:$dst), (ins GR16:$src1),
2169                  "shr{w}\t$dst",
2170                  [(set GR16:$dst, (srl GR16:$src1, (i8 1)))]>, OpSize;
2171 def SHR32r1  : I<0xD1, MRM5r, (outs GR32:$dst), (ins GR32:$src1),
2172                  "shr{l}\t$dst",
2173                  [(set GR32:$dst, (srl GR32:$src1, (i8 1)))]>;
2174
2175 let isTwoAddress = 0 in {
2176   let Uses = [CL] in {
2177   def SHR8mCL  : I<0xD2, MRM5m, (outs), (ins i8mem :$dst),
2178                    "shr{b}\t{%cl, $dst|$dst, CL}",
2179                    [(store (srl (loadi8 addr:$dst), CL), addr:$dst)]>;
2180   def SHR16mCL : I<0xD3, MRM5m, (outs), (ins i16mem:$dst),
2181                    "shr{w}\t{%cl, $dst|$dst, CL}",
2182                    [(store (srl (loadi16 addr:$dst), CL), addr:$dst)]>,
2183                    OpSize;
2184   def SHR32mCL : I<0xD3, MRM5m, (outs), (ins i32mem:$dst),
2185                    "shr{l}\t{%cl, $dst|$dst, CL}",
2186                    [(store (srl (loadi32 addr:$dst), CL), addr:$dst)]>;
2187   }
2188   def SHR8mi   : Ii8<0xC0, MRM5m, (outs), (ins i8mem :$dst, i8imm:$src),
2189                      "shr{b}\t{$src, $dst|$dst, $src}",
2190                   [(store (srl (loadi8 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
2191   def SHR16mi  : Ii8<0xC1, MRM5m, (outs), (ins i16mem:$dst, i8imm:$src),
2192                      "shr{w}\t{$src, $dst|$dst, $src}",
2193                  [(store (srl (loadi16 addr:$dst), (i8 imm:$src)), addr:$dst)]>,
2194                      OpSize;
2195   def SHR32mi  : Ii8<0xC1, MRM5m, (outs), (ins i32mem:$dst, i8imm:$src),
2196                      "shr{l}\t{$src, $dst|$dst, $src}",
2197                  [(store (srl (loadi32 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
2198
2199   // Shift by 1
2200   def SHR8m1   : I<0xD0, MRM5m, (outs), (ins i8mem :$dst),
2201                    "shr{b}\t$dst",
2202                   [(store (srl (loadi8 addr:$dst), (i8 1)), addr:$dst)]>;
2203   def SHR16m1  : I<0xD1, MRM5m, (outs), (ins i16mem:$dst),
2204                    "shr{w}\t$dst",
2205                  [(store (srl (loadi16 addr:$dst), (i8 1)), addr:$dst)]>,OpSize;
2206   def SHR32m1  : I<0xD1, MRM5m, (outs), (ins i32mem:$dst),
2207                    "shr{l}\t$dst",
2208                  [(store (srl (loadi32 addr:$dst), (i8 1)), addr:$dst)]>;
2209 }
2210
2211 let Uses = [CL] in {
2212 def SAR8rCL  : I<0xD2, MRM7r, (outs GR8 :$dst), (ins GR8 :$src),
2213                  "sar{b}\t{%cl, $dst|$dst, CL}",
2214                  [(set GR8:$dst, (sra GR8:$src, CL))]>;
2215 def SAR16rCL : I<0xD3, MRM7r, (outs GR16:$dst), (ins GR16:$src),
2216                  "sar{w}\t{%cl, $dst|$dst, CL}",
2217                  [(set GR16:$dst, (sra GR16:$src, CL))]>, OpSize;
2218 def SAR32rCL : I<0xD3, MRM7r, (outs GR32:$dst), (ins GR32:$src),
2219                  "sar{l}\t{%cl, $dst|$dst, CL}",
2220                  [(set GR32:$dst, (sra GR32:$src, CL))]>;
2221 }
2222
2223 def SAR8ri   : Ii8<0xC0, MRM7r, (outs GR8 :$dst), (ins GR8 :$src1, i8imm:$src2),
2224                    "sar{b}\t{$src2, $dst|$dst, $src2}",
2225                    [(set GR8:$dst, (sra GR8:$src1, (i8 imm:$src2)))]>;
2226 def SAR16ri  : Ii8<0xC1, MRM7r, (outs GR16:$dst), (ins GR16:$src1, i8imm:$src2),
2227                    "sar{w}\t{$src2, $dst|$dst, $src2}",
2228                    [(set GR16:$dst, (sra GR16:$src1, (i8 imm:$src2)))]>,
2229                    OpSize;
2230 def SAR32ri  : Ii8<0xC1, MRM7r, (outs GR32:$dst), (ins GR32:$src1, i8imm:$src2),
2231                    "sar{l}\t{$src2, $dst|$dst, $src2}",
2232                    [(set GR32:$dst, (sra GR32:$src1, (i8 imm:$src2)))]>;
2233
2234 // Shift by 1
2235 def SAR8r1   : I<0xD0, MRM7r, (outs GR8 :$dst), (ins GR8 :$src1),
2236                  "sar{b}\t$dst",
2237                  [(set GR8:$dst, (sra GR8:$src1, (i8 1)))]>;
2238 def SAR16r1  : I<0xD1, MRM7r, (outs GR16:$dst), (ins GR16:$src1),
2239                  "sar{w}\t$dst",
2240                  [(set GR16:$dst, (sra GR16:$src1, (i8 1)))]>, OpSize;
2241 def SAR32r1  : I<0xD1, MRM7r, (outs GR32:$dst), (ins GR32:$src1),
2242                  "sar{l}\t$dst",
2243                  [(set GR32:$dst, (sra GR32:$src1, (i8 1)))]>;
2244
2245 let isTwoAddress = 0 in {
2246   let Uses = [CL] in {
2247   def SAR8mCL  : I<0xD2, MRM7m, (outs), (ins i8mem :$dst),
2248                    "sar{b}\t{%cl, $dst|$dst, CL}",
2249                    [(store (sra (loadi8 addr:$dst), CL), addr:$dst)]>;
2250   def SAR16mCL : I<0xD3, MRM7m, (outs), (ins i16mem:$dst),
2251                    "sar{w}\t{%cl, $dst|$dst, CL}",
2252                    [(store (sra (loadi16 addr:$dst), CL), addr:$dst)]>, OpSize;
2253   def SAR32mCL : I<0xD3, MRM7m, (outs), (ins i32mem:$dst), 
2254                    "sar{l}\t{%cl, $dst|$dst, CL}",
2255                    [(store (sra (loadi32 addr:$dst), CL), addr:$dst)]>;
2256   }
2257   def SAR8mi   : Ii8<0xC0, MRM7m, (outs), (ins i8mem :$dst, i8imm:$src),
2258                      "sar{b}\t{$src, $dst|$dst, $src}",
2259                   [(store (sra (loadi8 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
2260   def SAR16mi  : Ii8<0xC1, MRM7m, (outs), (ins i16mem:$dst, i8imm:$src),
2261                      "sar{w}\t{$src, $dst|$dst, $src}",
2262                  [(store (sra (loadi16 addr:$dst), (i8 imm:$src)), addr:$dst)]>,
2263                      OpSize;
2264   def SAR32mi  : Ii8<0xC1, MRM7m, (outs), (ins i32mem:$dst, i8imm:$src),
2265                      "sar{l}\t{$src, $dst|$dst, $src}",
2266                  [(store (sra (loadi32 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
2267
2268   // Shift by 1
2269   def SAR8m1   : I<0xD0, MRM7m, (outs), (ins i8mem :$dst),
2270                    "sar{b}\t$dst",
2271                   [(store (sra (loadi8 addr:$dst), (i8 1)), addr:$dst)]>;
2272   def SAR16m1  : I<0xD1, MRM7m, (outs), (ins i16mem:$dst),
2273                    "sar{w}\t$dst",
2274                  [(store (sra (loadi16 addr:$dst), (i8 1)), addr:$dst)]>,
2275                      OpSize;
2276   def SAR32m1  : I<0xD1, MRM7m, (outs), (ins i32mem:$dst),
2277                    "sar{l}\t$dst",
2278                  [(store (sra (loadi32 addr:$dst), (i8 1)), addr:$dst)]>;
2279 }
2280
2281 // Rotate instructions
2282
2283 def RCL8r1 : I<0xD0, MRM2r, (outs GR8:$dst), (ins GR8:$src),
2284                "rcl{b}\t{1, $dst|$dst, 1}", []>;
2285 let Uses = [CL] in {
2286 def RCL8rCL : I<0xD2, MRM2r, (outs GR8:$dst), (ins GR8:$src),
2287                 "rcl{b}\t{%cl, $dst|$dst, CL}", []>;
2288 }
2289 def RCL8ri : Ii8<0xC0, MRM2r, (outs GR8:$dst), (ins GR8:$src, i8imm:$cnt),
2290                  "rcl{b}\t{$cnt, $dst|$dst, $cnt}", []>;
2291   
2292 def RCL16r1 : I<0xD1, MRM2r, (outs GR16:$dst), (ins GR16:$src),
2293                 "rcl{w}\t{1, $dst|$dst, 1}", []>, OpSize;
2294 let Uses = [CL] in {
2295 def RCL16rCL : I<0xD3, MRM2r, (outs GR16:$dst), (ins GR16:$src),
2296                  "rcl{w}\t{%cl, $dst|$dst, CL}", []>, OpSize;
2297 }
2298 def RCL16ri : Ii8<0xC1, MRM2r, (outs GR16:$dst), (ins GR16:$src, i8imm:$cnt),
2299                   "rcl{w}\t{$cnt, $dst|$dst, $cnt}", []>, OpSize;
2300
2301 def RCL32r1 : I<0xD1, MRM2r, (outs GR32:$dst), (ins GR32:$src),
2302                 "rcl{l}\t{1, $dst|$dst, 1}", []>;
2303 let Uses = [CL] in {
2304 def RCL32rCL : I<0xD3, MRM2r, (outs GR32:$dst), (ins GR32:$src),
2305                  "rcl{l}\t{%cl, $dst|$dst, CL}", []>;
2306 }
2307 def RCL32ri : Ii8<0xC1, MRM2r, (outs GR32:$dst), (ins GR32:$src, i8imm:$cnt),
2308                   "rcl{l}\t{$cnt, $dst|$dst, $cnt}", []>;
2309                   
2310 def RCR8r1 : I<0xD0, MRM3r, (outs GR8:$dst), (ins GR8:$src),
2311                "rcr{b}\t{1, $dst|$dst, 1}", []>;
2312 let Uses = [CL] in {
2313 def RCR8rCL : I<0xD2, MRM3r, (outs GR8:$dst), (ins GR8:$src),
2314                 "rcr{b}\t{%cl, $dst|$dst, CL}", []>;
2315 }
2316 def RCR8ri : Ii8<0xC0, MRM3r, (outs GR8:$dst), (ins GR8:$src, i8imm:$cnt),
2317                  "rcr{b}\t{$cnt, $dst|$dst, $cnt}", []>;
2318   
2319 def RCR16r1 : I<0xD1, MRM3r, (outs GR16:$dst), (ins GR16:$src),
2320                 "rcr{w}\t{1, $dst|$dst, 1}", []>, OpSize;
2321 let Uses = [CL] in {
2322 def RCR16rCL : I<0xD3, MRM3r, (outs GR16:$dst), (ins GR16:$src),
2323                  "rcr{w}\t{%cl, $dst|$dst, CL}", []>, OpSize;
2324 }
2325 def RCR16ri : Ii8<0xC1, MRM3r, (outs GR16:$dst), (ins GR16:$src, i8imm:$cnt),
2326                   "rcr{w}\t{$cnt, $dst|$dst, $cnt}", []>, OpSize;
2327
2328 def RCR32r1 : I<0xD1, MRM3r, (outs GR32:$dst), (ins GR32:$src),
2329                 "rcr{l}\t{1, $dst|$dst, 1}", []>;
2330 let Uses = [CL] in {
2331 def RCR32rCL : I<0xD3, MRM3r, (outs GR32:$dst), (ins GR32:$src),
2332                  "rcr{l}\t{%cl, $dst|$dst, CL}", []>;
2333 }
2334 def RCR32ri : Ii8<0xC1, MRM3r, (outs GR32:$dst), (ins GR32:$src, i8imm:$cnt),
2335                   "rcr{l}\t{$cnt, $dst|$dst, $cnt}", []>;
2336
2337 let isTwoAddress = 0 in {
2338 def RCL8m1 : I<0xD0, MRM2m, (outs), (ins i8mem:$dst),
2339                "rcl{b}\t{1, $dst|$dst, 1}", []>;
2340 def RCL8mi : Ii8<0xC0, MRM2m, (outs), (ins i8mem:$dst, i8imm:$cnt),
2341                  "rcl{b}\t{$cnt, $dst|$dst, $cnt}", []>;
2342 def RCL16m1 : I<0xD1, MRM2m, (outs), (ins i16mem:$dst),
2343                 "rcl{w}\t{1, $dst|$dst, 1}", []>, OpSize;
2344 def RCL16mi : Ii8<0xC1, MRM2m, (outs), (ins i16mem:$dst, i8imm:$cnt),
2345                   "rcl{w}\t{$cnt, $dst|$dst, $cnt}", []>, OpSize;
2346 def RCL32m1 : I<0xD1, MRM2m, (outs), (ins i32mem:$dst),
2347                 "rcl{l}\t{1, $dst|$dst, 1}", []>;
2348 def RCL32mi : Ii8<0xC1, MRM2m, (outs), (ins i32mem:$dst, i8imm:$cnt),
2349                   "rcl{l}\t{$cnt, $dst|$dst, $cnt}", []>;
2350 def RCR8m1 : I<0xD0, MRM3m, (outs), (ins i8mem:$dst),
2351                "rcr{b}\t{1, $dst|$dst, 1}", []>;
2352 def RCR8mi : Ii8<0xC0, MRM3m, (outs), (ins i8mem:$dst, i8imm:$cnt),
2353                  "rcr{b}\t{$cnt, $dst|$dst, $cnt}", []>;
2354 def RCR16m1 : I<0xD1, MRM3m, (outs), (ins i16mem:$dst),
2355                 "rcr{w}\t{1, $dst|$dst, 1}", []>, OpSize;
2356 def RCR16mi : Ii8<0xC1, MRM3m, (outs), (ins i16mem:$dst, i8imm:$cnt),
2357                   "rcr{w}\t{$cnt, $dst|$dst, $cnt}", []>, OpSize;
2358 def RCR32m1 : I<0xD1, MRM3m, (outs), (ins i32mem:$dst),
2359                 "rcr{l}\t{1, $dst|$dst, 1}", []>;
2360 def RCR32mi : Ii8<0xC1, MRM3m, (outs), (ins i32mem:$dst, i8imm:$cnt),
2361                   "rcr{l}\t{$cnt, $dst|$dst, $cnt}", []>;
2362
2363 let Uses = [CL] in {
2364 def RCL8mCL : I<0xD2, MRM2m, (outs), (ins i8mem:$dst),
2365                 "rcl{b}\t{%cl, $dst|$dst, CL}", []>;
2366 def RCL16mCL : I<0xD3, MRM2m, (outs), (ins i16mem:$dst),
2367                  "rcl{w}\t{%cl, $dst|$dst, CL}", []>, OpSize;
2368 def RCL32mCL : I<0xD3, MRM2m, (outs), (ins i32mem:$dst),
2369                  "rcl{l}\t{%cl, $dst|$dst, CL}", []>;
2370 def RCR8mCL : I<0xD2, MRM3m, (outs), (ins i8mem:$dst),
2371                 "rcr{b}\t{%cl, $dst|$dst, CL}", []>;
2372 def RCR16mCL : I<0xD3, MRM3m, (outs), (ins i16mem:$dst),
2373                  "rcr{w}\t{%cl, $dst|$dst, CL}", []>, OpSize;
2374 def RCR32mCL : I<0xD3, MRM3m, (outs), (ins i32mem:$dst),
2375                  "rcr{l}\t{%cl, $dst|$dst, CL}", []>;
2376 }
2377 }
2378
2379 // FIXME: provide shorter instructions when imm8 == 1
2380 let Uses = [CL] in {
2381 def ROL8rCL  : I<0xD2, MRM0r, (outs GR8 :$dst), (ins GR8 :$src),
2382                  "rol{b}\t{%cl, $dst|$dst, CL}",
2383                  [(set GR8:$dst, (rotl GR8:$src, CL))]>;
2384 def ROL16rCL : I<0xD3, MRM0r, (outs GR16:$dst), (ins GR16:$src),
2385                  "rol{w}\t{%cl, $dst|$dst, CL}",
2386                  [(set GR16:$dst, (rotl GR16:$src, CL))]>, OpSize;
2387 def ROL32rCL : I<0xD3, MRM0r, (outs GR32:$dst), (ins GR32:$src),
2388                  "rol{l}\t{%cl, $dst|$dst, CL}",
2389                  [(set GR32:$dst, (rotl GR32:$src, CL))]>;
2390 }
2391
2392 def ROL8ri   : Ii8<0xC0, MRM0r, (outs GR8 :$dst), (ins GR8 :$src1, i8imm:$src2),
2393                    "rol{b}\t{$src2, $dst|$dst, $src2}",
2394                    [(set GR8:$dst, (rotl GR8:$src1, (i8 imm:$src2)))]>;
2395 def ROL16ri  : Ii8<0xC1, MRM0r, (outs GR16:$dst), (ins GR16:$src1, i8imm:$src2),
2396                    "rol{w}\t{$src2, $dst|$dst, $src2}",
2397                    [(set GR16:$dst, (rotl GR16:$src1, (i8 imm:$src2)))]>, 
2398                    OpSize;
2399 def ROL32ri  : Ii8<0xC1, MRM0r, (outs GR32:$dst), (ins GR32:$src1, i8imm:$src2),
2400                    "rol{l}\t{$src2, $dst|$dst, $src2}",
2401                    [(set GR32:$dst, (rotl GR32:$src1, (i8 imm:$src2)))]>;
2402
2403 // Rotate by 1
2404 def ROL8r1   : I<0xD0, MRM0r, (outs GR8 :$dst), (ins GR8 :$src1),
2405                  "rol{b}\t$dst",
2406                  [(set GR8:$dst, (rotl GR8:$src1, (i8 1)))]>;
2407 def ROL16r1  : I<0xD1, MRM0r, (outs GR16:$dst), (ins GR16:$src1),
2408                  "rol{w}\t$dst",
2409                  [(set GR16:$dst, (rotl GR16:$src1, (i8 1)))]>, OpSize;
2410 def ROL32r1  : I<0xD1, MRM0r, (outs GR32:$dst), (ins GR32:$src1),
2411                  "rol{l}\t$dst",
2412                  [(set GR32:$dst, (rotl GR32:$src1, (i8 1)))]>;
2413
2414 let isTwoAddress = 0 in {
2415   let Uses = [CL] in {
2416   def ROL8mCL  : I<0xD2, MRM0m, (outs), (ins i8mem :$dst),
2417                    "rol{b}\t{%cl, $dst|$dst, CL}",
2418                    [(store (rotl (loadi8 addr:$dst), CL), addr:$dst)]>;
2419   def ROL16mCL : I<0xD3, MRM0m, (outs), (ins i16mem:$dst),
2420                    "rol{w}\t{%cl, $dst|$dst, CL}",
2421                    [(store (rotl (loadi16 addr:$dst), CL), addr:$dst)]>, OpSize;
2422   def ROL32mCL : I<0xD3, MRM0m, (outs), (ins i32mem:$dst),
2423                    "rol{l}\t{%cl, $dst|$dst, CL}",
2424                    [(store (rotl (loadi32 addr:$dst), CL), addr:$dst)]>;
2425   }
2426   def ROL8mi   : Ii8<0xC0, MRM0m, (outs), (ins i8mem :$dst, i8imm:$src),
2427                      "rol{b}\t{$src, $dst|$dst, $src}",
2428                  [(store (rotl (loadi8 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
2429   def ROL16mi  : Ii8<0xC1, MRM0m, (outs), (ins i16mem:$dst, i8imm:$src),
2430                      "rol{w}\t{$src, $dst|$dst, $src}",
2431                 [(store (rotl (loadi16 addr:$dst), (i8 imm:$src)), addr:$dst)]>,
2432                      OpSize;
2433   def ROL32mi  : Ii8<0xC1, MRM0m, (outs), (ins i32mem:$dst, i8imm:$src),
2434                      "rol{l}\t{$src, $dst|$dst, $src}",
2435                 [(store (rotl (loadi32 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
2436
2437   // Rotate by 1
2438   def ROL8m1   : I<0xD0, MRM0m, (outs), (ins i8mem :$dst),
2439                    "rol{b}\t$dst",
2440                  [(store (rotl (loadi8 addr:$dst), (i8 1)), addr:$dst)]>;
2441   def ROL16m1  : I<0xD1, MRM0m, (outs), (ins i16mem:$dst),
2442                    "rol{w}\t$dst",
2443                 [(store (rotl (loadi16 addr:$dst), (i8 1)), addr:$dst)]>,
2444                      OpSize;
2445   def ROL32m1  : I<0xD1, MRM0m, (outs), (ins i32mem:$dst),
2446                    "rol{l}\t$dst",
2447                 [(store (rotl (loadi32 addr:$dst), (i8 1)), addr:$dst)]>;
2448 }
2449
2450 let Uses = [CL] in {
2451 def ROR8rCL  : I<0xD2, MRM1r, (outs GR8 :$dst), (ins GR8 :$src),
2452                  "ror{b}\t{%cl, $dst|$dst, CL}",
2453                  [(set GR8:$dst, (rotr GR8:$src, CL))]>;
2454 def ROR16rCL : I<0xD3, MRM1r, (outs GR16:$dst), (ins GR16:$src),
2455                  "ror{w}\t{%cl, $dst|$dst, CL}",
2456                  [(set GR16:$dst, (rotr GR16:$src, CL))]>, OpSize;
2457 def ROR32rCL : I<0xD3, MRM1r, (outs GR32:$dst), (ins GR32:$src),
2458                  "ror{l}\t{%cl, $dst|$dst, CL}",
2459                  [(set GR32:$dst, (rotr GR32:$src, CL))]>;
2460 }
2461
2462 def ROR8ri   : Ii8<0xC0, MRM1r, (outs GR8 :$dst), (ins GR8 :$src1, i8imm:$src2),
2463                    "ror{b}\t{$src2, $dst|$dst, $src2}",
2464                    [(set GR8:$dst, (rotr GR8:$src1, (i8 imm:$src2)))]>;
2465 def ROR16ri  : Ii8<0xC1, MRM1r, (outs GR16:$dst), (ins GR16:$src1, i8imm:$src2),
2466                    "ror{w}\t{$src2, $dst|$dst, $src2}",
2467                    [(set GR16:$dst, (rotr GR16:$src1, (i8 imm:$src2)))]>, 
2468                    OpSize;
2469 def ROR32ri  : Ii8<0xC1, MRM1r, (outs GR32:$dst), (ins GR32:$src1, i8imm:$src2),
2470                    "ror{l}\t{$src2, $dst|$dst, $src2}",
2471                    [(set GR32:$dst, (rotr GR32:$src1, (i8 imm:$src2)))]>;
2472
2473 // Rotate by 1
2474 def ROR8r1   : I<0xD0, MRM1r, (outs GR8 :$dst), (ins GR8 :$src1),
2475                  "ror{b}\t$dst",
2476                  [(set GR8:$dst, (rotr GR8:$src1, (i8 1)))]>;
2477 def ROR16r1  : I<0xD1, MRM1r, (outs GR16:$dst), (ins GR16:$src1),
2478                  "ror{w}\t$dst",
2479                  [(set GR16:$dst, (rotr GR16:$src1, (i8 1)))]>, OpSize;
2480 def ROR32r1  : I<0xD1, MRM1r, (outs GR32:$dst), (ins GR32:$src1),
2481                  "ror{l}\t$dst",
2482                  [(set GR32:$dst, (rotr GR32:$src1, (i8 1)))]>;
2483
2484 let isTwoAddress = 0 in {
2485   let Uses = [CL] in {
2486   def ROR8mCL  : I<0xD2, MRM1m, (outs), (ins i8mem :$dst),
2487                    "ror{b}\t{%cl, $dst|$dst, CL}",
2488                    [(store (rotr (loadi8 addr:$dst), CL), addr:$dst)]>;
2489   def ROR16mCL : I<0xD3, MRM1m, (outs), (ins i16mem:$dst),
2490                    "ror{w}\t{%cl, $dst|$dst, CL}",
2491                    [(store (rotr (loadi16 addr:$dst), CL), addr:$dst)]>, OpSize;
2492   def ROR32mCL : I<0xD3, MRM1m, (outs), (ins i32mem:$dst), 
2493                    "ror{l}\t{%cl, $dst|$dst, CL}",
2494                    [(store (rotr (loadi32 addr:$dst), CL), addr:$dst)]>;
2495   }
2496   def ROR8mi   : Ii8<0xC0, MRM1m, (outs), (ins i8mem :$dst, i8imm:$src),
2497                      "ror{b}\t{$src, $dst|$dst, $src}",
2498                  [(store (rotr (loadi8 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
2499   def ROR16mi  : Ii8<0xC1, MRM1m, (outs), (ins i16mem:$dst, i8imm:$src),
2500                      "ror{w}\t{$src, $dst|$dst, $src}",
2501                 [(store (rotr (loadi16 addr:$dst), (i8 imm:$src)), addr:$dst)]>,
2502                      OpSize;
2503   def ROR32mi  : Ii8<0xC1, MRM1m, (outs), (ins i32mem:$dst, i8imm:$src),
2504                      "ror{l}\t{$src, $dst|$dst, $src}",
2505                 [(store (rotr (loadi32 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
2506
2507   // Rotate by 1
2508   def ROR8m1   : I<0xD0, MRM1m, (outs), (ins i8mem :$dst),
2509                    "ror{b}\t$dst",
2510                  [(store (rotr (loadi8 addr:$dst), (i8 1)), addr:$dst)]>;
2511   def ROR16m1  : I<0xD1, MRM1m, (outs), (ins i16mem:$dst),
2512                    "ror{w}\t$dst",
2513                 [(store (rotr (loadi16 addr:$dst), (i8 1)), addr:$dst)]>,
2514                      OpSize;
2515   def ROR32m1  : I<0xD1, MRM1m, (outs), (ins i32mem:$dst),
2516                    "ror{l}\t$dst",
2517                 [(store (rotr (loadi32 addr:$dst), (i8 1)), addr:$dst)]>;
2518 }
2519
2520
2521
2522 // Double shift instructions (generalizations of rotate)
2523 let Uses = [CL] in {
2524 def SHLD32rrCL : I<0xA5, MRMDestReg, (outs GR32:$dst), 
2525                    (ins GR32:$src1, GR32:$src2),
2526                    "shld{l}\t{%cl, $src2, $dst|$dst, $src2, CL}",
2527                    [(set GR32:$dst, (X86shld GR32:$src1, GR32:$src2, CL))]>, TB;
2528 def SHRD32rrCL : I<0xAD, MRMDestReg, (outs GR32:$dst),
2529                    (ins GR32:$src1, GR32:$src2),
2530                    "shrd{l}\t{%cl, $src2, $dst|$dst, $src2, CL}",
2531                    [(set GR32:$dst, (X86shrd GR32:$src1, GR32:$src2, CL))]>, TB;
2532 def SHLD16rrCL : I<0xA5, MRMDestReg, (outs GR16:$dst), 
2533                    (ins GR16:$src1, GR16:$src2),
2534                    "shld{w}\t{%cl, $src2, $dst|$dst, $src2, CL}",
2535                    [(set GR16:$dst, (X86shld GR16:$src1, GR16:$src2, CL))]>,
2536                    TB, OpSize;
2537 def SHRD16rrCL : I<0xAD, MRMDestReg, (outs GR16:$dst), 
2538                    (ins GR16:$src1, GR16:$src2),
2539                    "shrd{w}\t{%cl, $src2, $dst|$dst, $src2, CL}",
2540                    [(set GR16:$dst, (X86shrd GR16:$src1, GR16:$src2, CL))]>,
2541                    TB, OpSize;
2542 }
2543
2544 let isCommutable = 1 in {  // These instructions commute to each other.
2545 def SHLD32rri8 : Ii8<0xA4, MRMDestReg,
2546                      (outs GR32:$dst), 
2547                      (ins GR32:$src1, GR32:$src2, i8imm:$src3),
2548                      "shld{l}\t{$src3, $src2, $dst|$dst, $src2, $src3}",
2549                      [(set GR32:$dst, (X86shld GR32:$src1, GR32:$src2,
2550                                       (i8 imm:$src3)))]>,
2551                  TB;
2552 def SHRD32rri8 : Ii8<0xAC, MRMDestReg,
2553                      (outs GR32:$dst), 
2554                      (ins GR32:$src1, GR32:$src2, i8imm:$src3),
2555                      "shrd{l}\t{$src3, $src2, $dst|$dst, $src2, $src3}",
2556                      [(set GR32:$dst, (X86shrd GR32:$src1, GR32:$src2,
2557                                       (i8 imm:$src3)))]>,
2558                  TB;
2559 def SHLD16rri8 : Ii8<0xA4, MRMDestReg,
2560                      (outs GR16:$dst), 
2561                      (ins GR16:$src1, GR16:$src2, i8imm:$src3),
2562                      "shld{w}\t{$src3, $src2, $dst|$dst, $src2, $src3}",
2563                      [(set GR16:$dst, (X86shld GR16:$src1, GR16:$src2,
2564                                       (i8 imm:$src3)))]>,
2565                      TB, OpSize;
2566 def SHRD16rri8 : Ii8<0xAC, MRMDestReg,
2567                      (outs GR16:$dst), 
2568                      (ins GR16:$src1, GR16:$src2, i8imm:$src3),
2569                      "shrd{w}\t{$src3, $src2, $dst|$dst, $src2, $src3}",
2570                      [(set GR16:$dst, (X86shrd GR16:$src1, GR16:$src2,
2571                                       (i8 imm:$src3)))]>,
2572                      TB, OpSize;
2573 }
2574
2575 let isTwoAddress = 0 in {
2576   let Uses = [CL] in {
2577   def SHLD32mrCL : I<0xA5, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src2),
2578                      "shld{l}\t{%cl, $src2, $dst|$dst, $src2, CL}",
2579                      [(store (X86shld (loadi32 addr:$dst), GR32:$src2, CL),
2580                        addr:$dst)]>, TB;
2581   def SHRD32mrCL : I<0xAD, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src2),
2582                     "shrd{l}\t{%cl, $src2, $dst|$dst, $src2, CL}",
2583                     [(store (X86shrd (loadi32 addr:$dst), GR32:$src2, CL),
2584                       addr:$dst)]>, TB;
2585   }
2586   def SHLD32mri8 : Ii8<0xA4, MRMDestMem,
2587                       (outs), (ins i32mem:$dst, GR32:$src2, i8imm:$src3),
2588                       "shld{l}\t{$src3, $src2, $dst|$dst, $src2, $src3}",
2589                       [(store (X86shld (loadi32 addr:$dst), GR32:$src2,
2590                                         (i8 imm:$src3)), addr:$dst)]>,
2591                       TB;
2592   def SHRD32mri8 : Ii8<0xAC, MRMDestMem, 
2593                        (outs), (ins i32mem:$dst, GR32:$src2, i8imm:$src3),
2594                        "shrd{l}\t{$src3, $src2, $dst|$dst, $src2, $src3}",
2595                        [(store (X86shrd (loadi32 addr:$dst), GR32:$src2,
2596                                          (i8 imm:$src3)), addr:$dst)]>,
2597                        TB;
2598
2599   let Uses = [CL] in {
2600   def SHLD16mrCL : I<0xA5, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src2),
2601                      "shld{w}\t{%cl, $src2, $dst|$dst, $src2, CL}",
2602                      [(store (X86shld (loadi16 addr:$dst), GR16:$src2, CL),
2603                        addr:$dst)]>, TB, OpSize;
2604   def SHRD16mrCL : I<0xAD, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src2),
2605                     "shrd{w}\t{%cl, $src2, $dst|$dst, $src2, CL}",
2606                     [(store (X86shrd (loadi16 addr:$dst), GR16:$src2, CL),
2607                       addr:$dst)]>, TB, OpSize;
2608   }
2609   def SHLD16mri8 : Ii8<0xA4, MRMDestMem,
2610                       (outs), (ins i16mem:$dst, GR16:$src2, i8imm:$src3),
2611                       "shld{w}\t{$src3, $src2, $dst|$dst, $src2, $src3}",
2612                       [(store (X86shld (loadi16 addr:$dst), GR16:$src2,
2613                                         (i8 imm:$src3)), addr:$dst)]>,
2614                       TB, OpSize;
2615   def SHRD16mri8 : Ii8<0xAC, MRMDestMem, 
2616                        (outs), (ins i16mem:$dst, GR16:$src2, i8imm:$src3),
2617                        "shrd{w}\t{$src3, $src2, $dst|$dst, $src2, $src3}",
2618                       [(store (X86shrd (loadi16 addr:$dst), GR16:$src2,
2619                                         (i8 imm:$src3)), addr:$dst)]>,
2620                        TB, OpSize;
2621 }
2622 } // Defs = [EFLAGS]
2623
2624
2625 // Arithmetic.
2626 let Defs = [EFLAGS] in {
2627 let isCommutable = 1 in {   // X = ADD Y, Z   --> X = ADD Z, Y
2628 // Register-Register Addition
2629 def ADD8rr    : I<0x00, MRMDestReg, (outs GR8 :$dst),
2630                                     (ins GR8 :$src1, GR8 :$src2),
2631                   "add{b}\t{$src2, $dst|$dst, $src2}",
2632                   [(set GR8:$dst, (add GR8:$src1, GR8:$src2)),
2633                    (implicit EFLAGS)]>;
2634
2635 let isConvertibleToThreeAddress = 1 in {   // Can transform into LEA.
2636 // Register-Register Addition
2637 def ADD16rr  : I<0x01, MRMDestReg, (outs GR16:$dst),
2638                                    (ins GR16:$src1, GR16:$src2),
2639                  "add{w}\t{$src2, $dst|$dst, $src2}",
2640                  [(set GR16:$dst, (add GR16:$src1, GR16:$src2)),
2641                   (implicit EFLAGS)]>, OpSize;
2642 def ADD32rr  : I<0x01, MRMDestReg, (outs GR32:$dst),
2643                                    (ins GR32:$src1, GR32:$src2),
2644                  "add{l}\t{$src2, $dst|$dst, $src2}",
2645                  [(set GR32:$dst, (add GR32:$src1, GR32:$src2)),
2646                   (implicit EFLAGS)]>;
2647 } // end isConvertibleToThreeAddress
2648 } // end isCommutable
2649
2650 // These are alternate spellings for use by the disassembler, we mark them as
2651 // code gen only to ensure they aren't matched by the assembler.
2652 let isCodeGenOnly = 1 in {
2653   def ADD8rr_alt: I<0x02, MRMSrcReg, (outs GR8:$dst), (ins GR8:$src1, GR8:$src2),
2654                    "add{b}\t{$src2, $dst|$dst, $src2}", []>;
2655   def ADD16rr_alt: I<0x03, MRMSrcReg,(outs GR16:$dst),(ins GR16:$src1, GR16:$src2),
2656                     "add{w}\t{$src2, $dst|$dst, $src2}", []>, OpSize;
2657   def ADD32rr_alt: I<0x03, MRMSrcReg,(outs GR16:$dst),(ins GR16:$src1, GR16:$src2),
2658                     "add{l}\t{$src2, $dst|$dst, $src2}", []>;
2659 }
2660
2661 // Register-Memory Addition
2662 def ADD8rm   : I<0x02, MRMSrcMem, (outs GR8 :$dst),
2663                                   (ins GR8 :$src1, i8mem :$src2),
2664                  "add{b}\t{$src2, $dst|$dst, $src2}",
2665                  [(set GR8:$dst, (add GR8:$src1, (load addr:$src2))),
2666                   (implicit EFLAGS)]>;
2667 def ADD16rm  : I<0x03, MRMSrcMem, (outs GR16:$dst),
2668                                   (ins GR16:$src1, i16mem:$src2),
2669                  "add{w}\t{$src2, $dst|$dst, $src2}",
2670                  [(set GR16:$dst, (add GR16:$src1, (load addr:$src2))),
2671                   (implicit EFLAGS)]>, OpSize;
2672 def ADD32rm  : I<0x03, MRMSrcMem, (outs GR32:$dst),
2673                                   (ins GR32:$src1, i32mem:$src2),
2674                  "add{l}\t{$src2, $dst|$dst, $src2}",
2675                  [(set GR32:$dst, (add GR32:$src1, (load addr:$src2))),
2676                   (implicit EFLAGS)]>;
2677                   
2678 // Register-Integer Addition
2679 def ADD8ri    : Ii8<0x80, MRM0r, (outs GR8:$dst), (ins GR8:$src1, i8imm:$src2),
2680                     "add{b}\t{$src2, $dst|$dst, $src2}",
2681                     [(set GR8:$dst, (add GR8:$src1, imm:$src2)),
2682                      (implicit EFLAGS)]>;
2683
2684 let isConvertibleToThreeAddress = 1 in {   // Can transform into LEA.
2685 // Register-Integer Addition
2686 def ADD16ri  : Ii16<0x81, MRM0r, (outs GR16:$dst),
2687                                  (ins GR16:$src1, i16imm:$src2),
2688                     "add{w}\t{$src2, $dst|$dst, $src2}",
2689                     [(set GR16:$dst, (add GR16:$src1, imm:$src2)),
2690                      (implicit EFLAGS)]>, OpSize;
2691 def ADD32ri  : Ii32<0x81, MRM0r, (outs GR32:$dst),
2692                                  (ins GR32:$src1, i32imm:$src2),
2693                     "add{l}\t{$src2, $dst|$dst, $src2}",
2694                     [(set GR32:$dst, (add GR32:$src1, imm:$src2)),
2695                      (implicit EFLAGS)]>;
2696 def ADD16ri8 : Ii8<0x83, MRM0r, (outs GR16:$dst),
2697                                 (ins GR16:$src1, i16i8imm:$src2),
2698                    "add{w}\t{$src2, $dst|$dst, $src2}",
2699                    [(set GR16:$dst, (add GR16:$src1, i16immSExt8:$src2)),
2700                     (implicit EFLAGS)]>, OpSize;
2701 def ADD32ri8 : Ii8<0x83, MRM0r, (outs GR32:$dst),
2702                                 (ins GR32:$src1, i32i8imm:$src2),
2703                    "add{l}\t{$src2, $dst|$dst, $src2}",
2704                    [(set GR32:$dst, (add GR32:$src1, i32immSExt8:$src2)),
2705                     (implicit EFLAGS)]>;
2706 }
2707
2708 let isTwoAddress = 0 in {
2709   // Memory-Register Addition
2710   def ADD8mr   : I<0x00, MRMDestMem, (outs), (ins i8mem:$dst, GR8:$src2),
2711                    "add{b}\t{$src2, $dst|$dst, $src2}",
2712                    [(store (add (load addr:$dst), GR8:$src2), addr:$dst),
2713                     (implicit EFLAGS)]>;
2714   def ADD16mr  : I<0x01, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src2),
2715                    "add{w}\t{$src2, $dst|$dst, $src2}",
2716                    [(store (add (load addr:$dst), GR16:$src2), addr:$dst),
2717                     (implicit EFLAGS)]>, OpSize;
2718   def ADD32mr  : I<0x01, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src2),
2719                    "add{l}\t{$src2, $dst|$dst, $src2}",
2720                    [(store (add (load addr:$dst), GR32:$src2), addr:$dst),
2721                     (implicit EFLAGS)]>;
2722   def ADD8mi   : Ii8<0x80, MRM0m, (outs), (ins i8mem :$dst, i8imm :$src2),
2723                      "add{b}\t{$src2, $dst|$dst, $src2}",
2724                    [(store (add (loadi8 addr:$dst), imm:$src2), addr:$dst),
2725                     (implicit EFLAGS)]>;
2726   def ADD16mi  : Ii16<0x81, MRM0m, (outs), (ins i16mem:$dst, i16imm:$src2),
2727                       "add{w}\t{$src2, $dst|$dst, $src2}",
2728                   [(store (add (loadi16 addr:$dst), imm:$src2), addr:$dst),
2729                    (implicit EFLAGS)]>, OpSize;
2730   def ADD32mi  : Ii32<0x81, MRM0m, (outs), (ins i32mem:$dst, i32imm:$src2),
2731                       "add{l}\t{$src2, $dst|$dst, $src2}",
2732                       [(store (add (loadi32 addr:$dst), imm:$src2), addr:$dst),
2733                        (implicit EFLAGS)]>;
2734   def ADD16mi8 : Ii8<0x83, MRM0m, (outs), (ins i16mem:$dst, i16i8imm :$src2),
2735                      "add{w}\t{$src2, $dst|$dst, $src2}",
2736                      [(store (add (load addr:$dst), i16immSExt8:$src2),
2737                                   addr:$dst),
2738                       (implicit EFLAGS)]>, OpSize;
2739   def ADD32mi8 : Ii8<0x83, MRM0m, (outs), (ins i32mem:$dst, i32i8imm :$src2),
2740                      "add{l}\t{$src2, $dst|$dst, $src2}",
2741                   [(store (add (load addr:$dst), i32immSExt8:$src2),
2742                                addr:$dst),
2743                    (implicit EFLAGS)]>;
2744
2745   // addition to rAX
2746   def ADD8i8 : Ii8<0x04, RawFrm, (outs), (ins i8imm:$src),
2747                    "add{b}\t{$src, %al|%al, $src}", []>;
2748   def ADD16i16 : Ii16<0x05, RawFrm, (outs), (ins i16imm:$src),
2749                       "add{w}\t{$src, %ax|%ax, $src}", []>, OpSize;
2750   def ADD32i32 : Ii32<0x05, RawFrm, (outs), (ins i32imm:$src),
2751                       "add{l}\t{$src, %eax|%eax, $src}", []>;
2752 }
2753
2754 let Uses = [EFLAGS] in {
2755 let isCommutable = 1 in {  // X = ADC Y, Z --> X = ADC Z, Y
2756 def ADC8rr   : I<0x10, MRMDestReg, (outs GR8:$dst), (ins GR8:$src1, GR8:$src2),
2757                  "adc{b}\t{$src2, $dst|$dst, $src2}",
2758                  [(set GR8:$dst, (adde GR8:$src1, GR8:$src2))]>;
2759 def ADC16rr  : I<0x11, MRMDestReg, (outs GR16:$dst),
2760                                    (ins GR16:$src1, GR16:$src2),
2761                  "adc{w}\t{$src2, $dst|$dst, $src2}",
2762                  [(set GR16:$dst, (adde GR16:$src1, GR16:$src2))]>, OpSize;
2763 def ADC32rr  : I<0x11, MRMDestReg, (outs GR32:$dst),
2764                                    (ins GR32:$src1, GR32:$src2),
2765                  "adc{l}\t{$src2, $dst|$dst, $src2}",
2766                  [(set GR32:$dst, (adde GR32:$src1, GR32:$src2))]>;
2767 }
2768
2769 def ADC8rr_REV : I<0x12, MRMSrcReg, (outs GR8:$dst), (ins GR8:$src1, GR8:$src2),
2770                  "adc{b}\t{$src2, $dst|$dst, $src2}", []>;
2771 def ADC16rr_REV : I<0x13, MRMSrcReg, (outs GR16:$dst), 
2772                     (ins GR16:$src1, GR16:$src2),
2773                     "adc{w}\t{$src2, $dst|$dst, $src2}", []>, OpSize;
2774 def ADC32rr_REV : I<0x13, MRMSrcReg, (outs GR32:$dst), 
2775                     (ins GR32:$src1, GR32:$src2),
2776                     "adc{l}\t{$src2, $dst|$dst, $src2}", []>;
2777
2778 def ADC8rm   : I<0x12, MRMSrcMem , (outs GR8:$dst), 
2779                                    (ins GR8:$src1, i8mem:$src2),
2780                  "adc{b}\t{$src2, $dst|$dst, $src2}",
2781                  [(set GR8:$dst, (adde GR8:$src1, (load addr:$src2)))]>;
2782 def ADC16rm  : I<0x13, MRMSrcMem , (outs GR16:$dst),
2783                                    (ins GR16:$src1, i16mem:$src2),
2784                  "adc{w}\t{$src2, $dst|$dst, $src2}",
2785                  [(set GR16:$dst, (adde GR16:$src1, (load addr:$src2)))]>,
2786                  OpSize;
2787 def ADC32rm  : I<0x13, MRMSrcMem , (outs GR32:$dst),
2788                                    (ins GR32:$src1, i32mem:$src2),
2789                  "adc{l}\t{$src2, $dst|$dst, $src2}",
2790                  [(set GR32:$dst, (adde GR32:$src1, (load addr:$src2)))]>;
2791 def ADC8ri   : Ii8<0x80, MRM2r, (outs GR8:$dst), (ins GR8:$src1, i8imm:$src2),
2792                     "adc{b}\t{$src2, $dst|$dst, $src2}",
2793                  [(set GR8:$dst, (adde GR8:$src1, imm:$src2))]>;
2794 def ADC16ri  : Ii16<0x81, MRM2r, (outs GR16:$dst),
2795                                  (ins GR16:$src1, i16imm:$src2),
2796                     "adc{w}\t{$src2, $dst|$dst, $src2}",
2797                  [(set GR16:$dst, (adde GR16:$src1, imm:$src2))]>, OpSize;
2798 def ADC16ri8 : Ii8<0x83, MRM2r, (outs GR16:$dst),
2799                                 (ins GR16:$src1, i16i8imm:$src2),
2800                    "adc{w}\t{$src2, $dst|$dst, $src2}",
2801                  [(set GR16:$dst, (adde GR16:$src1, i16immSExt8:$src2))]>,
2802                  OpSize;
2803 def ADC32ri  : Ii32<0x81, MRM2r, (outs GR32:$dst),
2804                                  (ins GR32:$src1, i32imm:$src2),
2805                     "adc{l}\t{$src2, $dst|$dst, $src2}",
2806                  [(set GR32:$dst, (adde GR32:$src1, imm:$src2))]>;
2807 def ADC32ri8 : Ii8<0x83, MRM2r, (outs GR32:$dst),
2808                                 (ins GR32:$src1, i32i8imm:$src2),
2809                    "adc{l}\t{$src2, $dst|$dst, $src2}",
2810                  [(set GR32:$dst, (adde GR32:$src1, i32immSExt8:$src2))]>;
2811
2812 let isTwoAddress = 0 in {
2813   def ADC8mr   : I<0x10, MRMDestMem, (outs), (ins i8mem:$dst, GR8:$src2),
2814                    "adc{b}\t{$src2, $dst|$dst, $src2}",
2815                    [(store (adde (load addr:$dst), GR8:$src2), addr:$dst)]>;
2816   def ADC16mr  : I<0x11, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src2),
2817                    "adc{w}\t{$src2, $dst|$dst, $src2}",
2818                    [(store (adde (load addr:$dst), GR16:$src2), addr:$dst)]>,
2819                    OpSize;
2820   def ADC32mr  : I<0x11, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src2),
2821                    "adc{l}\t{$src2, $dst|$dst, $src2}",
2822                    [(store (adde (load addr:$dst), GR32:$src2), addr:$dst)]>;
2823   def ADC8mi   : Ii8<0x80, MRM2m, (outs), (ins i8mem:$dst, i8imm:$src2),
2824                       "adc{b}\t{$src2, $dst|$dst, $src2}",
2825                   [(store (adde (loadi8 addr:$dst), imm:$src2), addr:$dst)]>;
2826   def ADC16mi  : Ii16<0x81, MRM2m, (outs), (ins i16mem:$dst, i16imm:$src2),
2827                       "adc{w}\t{$src2, $dst|$dst, $src2}",
2828                   [(store (adde (loadi16 addr:$dst), imm:$src2), addr:$dst)]>,
2829                   OpSize;
2830   def ADC16mi8 : Ii8<0x83, MRM2m, (outs), (ins i16mem:$dst, i16i8imm :$src2),
2831                      "adc{w}\t{$src2, $dst|$dst, $src2}",
2832                [(store (adde (load addr:$dst), i16immSExt8:$src2), addr:$dst)]>,
2833                OpSize;
2834   def ADC32mi  : Ii32<0x81, MRM2m, (outs), (ins i32mem:$dst, i32imm:$src2),
2835                       "adc{l}\t{$src2, $dst|$dst, $src2}",
2836                   [(store (adde (loadi32 addr:$dst), imm:$src2), addr:$dst)]>;
2837   def ADC32mi8 : Ii8<0x83, MRM2m, (outs), (ins i32mem:$dst, i32i8imm :$src2),
2838                      "adc{l}\t{$src2, $dst|$dst, $src2}",
2839                [(store (adde (load addr:$dst), i32immSExt8:$src2), addr:$dst)]>;
2840
2841   def ADC8i8 : Ii8<0x14, RawFrm, (outs), (ins i8imm:$src),
2842                    "adc{b}\t{$src, %al|%al, $src}", []>;
2843   def ADC16i16 : Ii16<0x15, RawFrm, (outs), (ins i16imm:$src),
2844                       "adc{w}\t{$src, %ax|%ax, $src}", []>, OpSize;
2845   def ADC32i32 : Ii32<0x15, RawFrm, (outs), (ins i32imm:$src),
2846                       "adc{l}\t{$src, %eax|%eax, $src}", []>;
2847 }
2848 } // Uses = [EFLAGS]
2849
2850 // Register-Register Subtraction
2851 def SUB8rr  : I<0x28, MRMDestReg, (outs GR8:$dst), (ins GR8:$src1, GR8:$src2),
2852                 "sub{b}\t{$src2, $dst|$dst, $src2}",
2853                 [(set GR8:$dst, (sub GR8:$src1, GR8:$src2)),
2854                  (implicit EFLAGS)]>;
2855 def SUB16rr : I<0x29, MRMDestReg, (outs GR16:$dst), (ins GR16:$src1,GR16:$src2),
2856                 "sub{w}\t{$src2, $dst|$dst, $src2}",
2857                 [(set GR16:$dst, (sub GR16:$src1, GR16:$src2)),
2858                  (implicit EFLAGS)]>, OpSize;
2859 def SUB32rr : I<0x29, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1,GR32:$src2),
2860                 "sub{l}\t{$src2, $dst|$dst, $src2}",
2861                 [(set GR32:$dst, (sub GR32:$src1, GR32:$src2)),
2862                  (implicit EFLAGS)]>;
2863
2864 def SUB8rr_REV : I<0x2A, MRMSrcReg, (outs GR8:$dst), (ins GR8:$src1, GR8:$src2),
2865                    "sub{b}\t{$src2, $dst|$dst, $src2}", []>;
2866 def SUB16rr_REV : I<0x2B, MRMSrcReg, (outs GR16:$dst), 
2867                     (ins GR16:$src1, GR16:$src2),
2868                     "sub{w}\t{$src2, $dst|$dst, $src2}", []>, OpSize;
2869 def SUB32rr_REV : I<0x2B, MRMSrcReg, (outs GR32:$dst), 
2870                     (ins GR32:$src1, GR32:$src2),
2871                     "sub{l}\t{$src2, $dst|$dst, $src2}", []>;
2872
2873 // Register-Memory Subtraction
2874 def SUB8rm  : I<0x2A, MRMSrcMem, (outs GR8 :$dst),
2875                                  (ins GR8 :$src1, i8mem :$src2),
2876                 "sub{b}\t{$src2, $dst|$dst, $src2}",
2877                 [(set GR8:$dst, (sub GR8:$src1, (load addr:$src2))),
2878                  (implicit EFLAGS)]>;
2879 def SUB16rm : I<0x2B, MRMSrcMem, (outs GR16:$dst),
2880                                  (ins GR16:$src1, i16mem:$src2),
2881                 "sub{w}\t{$src2, $dst|$dst, $src2}",
2882                 [(set GR16:$dst, (sub GR16:$src1, (load addr:$src2))),
2883                  (implicit EFLAGS)]>, OpSize;
2884 def SUB32rm : I<0x2B, MRMSrcMem, (outs GR32:$dst),
2885                                  (ins GR32:$src1, i32mem:$src2),
2886                 "sub{l}\t{$src2, $dst|$dst, $src2}",
2887                 [(set GR32:$dst, (sub GR32:$src1, (load addr:$src2))),
2888                  (implicit EFLAGS)]>;
2889
2890 // Register-Integer Subtraction
2891 def SUB8ri   : Ii8 <0x80, MRM5r, (outs GR8:$dst),
2892                                  (ins GR8:$src1, i8imm:$src2),
2893                     "sub{b}\t{$src2, $dst|$dst, $src2}",
2894                     [(set GR8:$dst, (sub GR8:$src1, imm:$src2)),
2895                      (implicit EFLAGS)]>;
2896 def SUB16ri  : Ii16<0x81, MRM5r, (outs GR16:$dst),
2897                                  (ins GR16:$src1, i16imm:$src2),
2898                     "sub{w}\t{$src2, $dst|$dst, $src2}",
2899                     [(set GR16:$dst, (sub GR16:$src1, imm:$src2)),
2900                      (implicit EFLAGS)]>, OpSize;
2901 def SUB32ri  : Ii32<0x81, MRM5r, (outs GR32:$dst),
2902                                  (ins GR32:$src1, i32imm:$src2),
2903                     "sub{l}\t{$src2, $dst|$dst, $src2}",
2904                     [(set GR32:$dst, (sub GR32:$src1, imm:$src2)),
2905                      (implicit EFLAGS)]>;
2906 def SUB16ri8 : Ii8<0x83, MRM5r, (outs GR16:$dst),
2907                                 (ins GR16:$src1, i16i8imm:$src2),
2908                    "sub{w}\t{$src2, $dst|$dst, $src2}",
2909                    [(set GR16:$dst, (sub GR16:$src1, i16immSExt8:$src2)),
2910                     (implicit EFLAGS)]>, OpSize;
2911 def SUB32ri8 : Ii8<0x83, MRM5r, (outs GR32:$dst),
2912                                 (ins GR32:$src1, i32i8imm:$src2),
2913                    "sub{l}\t{$src2, $dst|$dst, $src2}",
2914                    [(set GR32:$dst, (sub GR32:$src1, i32immSExt8:$src2)),
2915                     (implicit EFLAGS)]>;
2916
2917 let isTwoAddress = 0 in {
2918   // Memory-Register Subtraction
2919   def SUB8mr   : I<0x28, MRMDestMem, (outs), (ins i8mem :$dst, GR8 :$src2),
2920                    "sub{b}\t{$src2, $dst|$dst, $src2}",
2921                    [(store (sub (load addr:$dst), GR8:$src2), addr:$dst),
2922                     (implicit EFLAGS)]>;
2923   def SUB16mr  : I<0x29, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src2),
2924                    "sub{w}\t{$src2, $dst|$dst, $src2}",
2925                    [(store (sub (load addr:$dst), GR16:$src2), addr:$dst),
2926                     (implicit EFLAGS)]>, OpSize;
2927   def SUB32mr  : I<0x29, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src2), 
2928                    "sub{l}\t{$src2, $dst|$dst, $src2}",
2929                    [(store (sub (load addr:$dst), GR32:$src2), addr:$dst),
2930                     (implicit EFLAGS)]>;
2931
2932   // Memory-Integer Subtraction
2933   def SUB8mi   : Ii8<0x80, MRM5m, (outs), (ins i8mem :$dst, i8imm:$src2), 
2934                      "sub{b}\t{$src2, $dst|$dst, $src2}",
2935                      [(store (sub (loadi8 addr:$dst), imm:$src2), addr:$dst),
2936                       (implicit EFLAGS)]>;
2937   def SUB16mi  : Ii16<0x81, MRM5m, (outs), (ins i16mem:$dst, i16imm:$src2), 
2938                       "sub{w}\t{$src2, $dst|$dst, $src2}",
2939                       [(store (sub (loadi16 addr:$dst), imm:$src2),addr:$dst),
2940                        (implicit EFLAGS)]>, OpSize;
2941   def SUB32mi  : Ii32<0x81, MRM5m, (outs), (ins i32mem:$dst, i32imm:$src2), 
2942                       "sub{l}\t{$src2, $dst|$dst, $src2}",
2943                       [(store (sub (loadi32 addr:$dst), imm:$src2),addr:$dst),
2944                        (implicit EFLAGS)]>;
2945   def SUB16mi8 : Ii8<0x83, MRM5m, (outs), (ins i16mem:$dst, i16i8imm :$src2), 
2946                      "sub{w}\t{$src2, $dst|$dst, $src2}",
2947                      [(store (sub (load addr:$dst), i16immSExt8:$src2),
2948                              addr:$dst),
2949                       (implicit EFLAGS)]>, OpSize;
2950   def SUB32mi8 : Ii8<0x83, MRM5m, (outs), (ins i32mem:$dst, i32i8imm :$src2),
2951                      "sub{l}\t{$src2, $dst|$dst, $src2}",
2952                      [(store (sub (load addr:$dst), i32immSExt8:$src2),
2953                              addr:$dst),
2954                       (implicit EFLAGS)]>;
2955                       
2956   def SUB8i8 : Ii8<0x2C, RawFrm, (outs), (ins i8imm:$src),
2957                    "sub{b}\t{$src, %al|%al, $src}", []>;
2958   def SUB16i16 : Ii16<0x2D, RawFrm, (outs), (ins i16imm:$src),
2959                       "sub{w}\t{$src, %ax|%ax, $src}", []>, OpSize;
2960   def SUB32i32 : Ii32<0x2D, RawFrm, (outs), (ins i32imm:$src),
2961                       "sub{l}\t{$src, %eax|%eax, $src}", []>;
2962 }
2963
2964 let Uses = [EFLAGS] in {
2965 def SBB8rr     : I<0x18, MRMDestReg, (outs GR8:$dst),
2966                                      (ins GR8:$src1, GR8:$src2),
2967                   "sbb{b}\t{$src2, $dst|$dst, $src2}",
2968                  [(set GR8:$dst, (sube GR8:$src1, GR8:$src2))]>;
2969 def SBB16rr    : I<0x19, MRMDestReg, (outs GR16:$dst),
2970                                      (ins GR16:$src1, GR16:$src2),
2971                   "sbb{w}\t{$src2, $dst|$dst, $src2}",
2972                  [(set GR16:$dst, (sube GR16:$src1, GR16:$src2))]>, OpSize;
2973 def SBB32rr    : I<0x19, MRMDestReg, (outs GR32:$dst),
2974                                       (ins GR32:$src1, GR32:$src2),
2975                   "sbb{l}\t{$src2, $dst|$dst, $src2}",
2976                  [(set GR32:$dst, (sube GR32:$src1, GR32:$src2))]>;
2977
2978 let isTwoAddress = 0 in {
2979   def SBB8mr   : I<0x18, MRMDestMem, (outs), (ins i8mem:$dst, GR8:$src2), 
2980                    "sbb{b}\t{$src2, $dst|$dst, $src2}",
2981                    [(store (sube (load addr:$dst), GR8:$src2), addr:$dst)]>;
2982   def SBB16mr  : I<0x19, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src2), 
2983                    "sbb{w}\t{$src2, $dst|$dst, $src2}",
2984                    [(store (sube (load addr:$dst), GR16:$src2), addr:$dst)]>,
2985                    OpSize;
2986   def SBB32mr  : I<0x19, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src2), 
2987                    "sbb{l}\t{$src2, $dst|$dst, $src2}",
2988                    [(store (sube (load addr:$dst), GR32:$src2), addr:$dst)]>;
2989   def SBB8mi  : Ii8<0x80, MRM3m, (outs), (ins i8mem:$dst, i8imm:$src2), 
2990                     "sbb{b}\t{$src2, $dst|$dst, $src2}",
2991                    [(store (sube (loadi8 addr:$dst), imm:$src2), addr:$dst)]>;
2992   def SBB16mi  : Ii16<0x81, MRM3m, (outs), (ins i16mem:$dst, i16imm:$src2), 
2993                       "sbb{w}\t{$src2, $dst|$dst, $src2}",
2994                   [(store (sube (loadi16 addr:$dst), imm:$src2), addr:$dst)]>,
2995                   OpSize;
2996   def SBB16mi8 : Ii8<0x83, MRM3m, (outs), (ins i16mem:$dst, i16i8imm :$src2), 
2997                      "sbb{w}\t{$src2, $dst|$dst, $src2}",
2998                [(store (sube (load addr:$dst), i16immSExt8:$src2), addr:$dst)]>,
2999                OpSize;
3000   def SBB32mi  : Ii32<0x81, MRM3m, (outs), (ins i32mem:$dst, i32imm:$src2), 
3001                       "sbb{l}\t{$src2, $dst|$dst, $src2}",
3002                   [(store (sube (loadi32 addr:$dst), imm:$src2), addr:$dst)]>;
3003   def SBB32mi8 : Ii8<0x83, MRM3m, (outs), (ins i32mem:$dst, i32i8imm :$src2), 
3004                      "sbb{l}\t{$src2, $dst|$dst, $src2}",
3005                [(store (sube (load addr:$dst), i32immSExt8:$src2), addr:$dst)]>;
3006                
3007   def SBB8i8 : Ii8<0x1C, RawFrm, (outs), (ins i8imm:$src),
3008                    "sbb{b}\t{$src, %al|%al, $src}", []>;
3009   def SBB16i16 : Ii16<0x1D, RawFrm, (outs), (ins i16imm:$src),
3010                       "sbb{w}\t{$src, %ax|%ax, $src}", []>, OpSize;
3011   def SBB32i32 : Ii32<0x1D, RawFrm, (outs), (ins i32imm:$src),
3012                       "sbb{l}\t{$src, %eax|%eax, $src}", []>;
3013 }
3014
3015 def SBB8rr_REV : I<0x1A, MRMSrcReg, (outs GR8:$dst), (ins GR8:$src1, GR8:$src2),
3016                    "sbb{b}\t{$src2, $dst|$dst, $src2}", []>;
3017 def SBB16rr_REV : I<0x1B, MRMSrcReg, (outs GR16:$dst), 
3018                     (ins GR16:$src1, GR16:$src2),
3019                     "sbb{w}\t{$src2, $dst|$dst, $src2}", []>, OpSize;
3020 def SBB32rr_REV : I<0x1B, MRMSrcReg, (outs GR32:$dst), 
3021                     (ins GR32:$src1, GR32:$src2),
3022                     "sbb{l}\t{$src2, $dst|$dst, $src2}", []>;
3023
3024 def SBB8rm   : I<0x1A, MRMSrcMem, (outs GR8:$dst), (ins GR8:$src1, i8mem:$src2),
3025                     "sbb{b}\t{$src2, $dst|$dst, $src2}",
3026                     [(set GR8:$dst, (sube GR8:$src1, (load addr:$src2)))]>;
3027 def SBB16rm  : I<0x1B, MRMSrcMem, (outs GR16:$dst),
3028                                   (ins GR16:$src1, i16mem:$src2),
3029                     "sbb{w}\t{$src2, $dst|$dst, $src2}",
3030                     [(set GR16:$dst, (sube GR16:$src1, (load addr:$src2)))]>,
3031                     OpSize;
3032 def SBB32rm  : I<0x1B, MRMSrcMem, (outs GR32:$dst),
3033                                   (ins GR32:$src1, i32mem:$src2),
3034                     "sbb{l}\t{$src2, $dst|$dst, $src2}",
3035                     [(set GR32:$dst, (sube GR32:$src1, (load addr:$src2)))]>;
3036 def SBB8ri   : Ii8<0x80, MRM3r, (outs GR8:$dst), (ins GR8:$src1, i8imm:$src2),
3037                     "sbb{b}\t{$src2, $dst|$dst, $src2}",
3038                     [(set GR8:$dst, (sube GR8:$src1, imm:$src2))]>;
3039 def SBB16ri  : Ii16<0x81, MRM3r, (outs GR16:$dst),
3040                                  (ins GR16:$src1, i16imm:$src2),
3041                     "sbb{w}\t{$src2, $dst|$dst, $src2}",
3042                     [(set GR16:$dst, (sube GR16:$src1, imm:$src2))]>, OpSize;
3043 def SBB16ri8 : Ii8<0x83, MRM3r, (outs GR16:$dst),
3044                                 (ins GR16:$src1, i16i8imm:$src2),
3045                    "sbb{w}\t{$src2, $dst|$dst, $src2}",
3046                    [(set GR16:$dst, (sube GR16:$src1, i16immSExt8:$src2))]>,
3047                    OpSize;
3048 def SBB32ri  : Ii32<0x81, MRM3r, (outs GR32:$dst), 
3049                                  (ins GR32:$src1, i32imm:$src2),
3050                     "sbb{l}\t{$src2, $dst|$dst, $src2}",
3051                     [(set GR32:$dst, (sube GR32:$src1, imm:$src2))]>;
3052 def SBB32ri8 : Ii8<0x83, MRM3r, (outs GR32:$dst),
3053                                 (ins GR32:$src1, i32i8imm:$src2),
3054                    "sbb{l}\t{$src2, $dst|$dst, $src2}",
3055                    [(set GR32:$dst, (sube GR32:$src1, i32immSExt8:$src2))]>;
3056 } // Uses = [EFLAGS]
3057 } // Defs = [EFLAGS]
3058
3059 let Defs = [EFLAGS] in {
3060 let isCommutable = 1 in {  // X = IMUL Y, Z --> X = IMUL Z, Y
3061 // Register-Register Signed Integer Multiply
3062 def IMUL16rr : I<0xAF, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src1,GR16:$src2),
3063                  "imul{w}\t{$src2, $dst|$dst, $src2}",
3064                  [(set GR16:$dst, (mul GR16:$src1, GR16:$src2)),
3065                   (implicit EFLAGS)]>, TB, OpSize;
3066 def IMUL32rr : I<0xAF, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src1,GR32:$src2),
3067                  "imul{l}\t{$src2, $dst|$dst, $src2}",
3068                  [(set GR32:$dst, (mul GR32:$src1, GR32:$src2)),
3069                   (implicit EFLAGS)]>, TB;
3070 }
3071
3072 // Register-Memory Signed Integer Multiply
3073 def IMUL16rm : I<0xAF, MRMSrcMem, (outs GR16:$dst),
3074                                   (ins GR16:$src1, i16mem:$src2),
3075                  "imul{w}\t{$src2, $dst|$dst, $src2}",
3076                  [(set GR16:$dst, (mul GR16:$src1, (load addr:$src2))),
3077                   (implicit EFLAGS)]>, TB, OpSize;
3078 def IMUL32rm : I<0xAF, MRMSrcMem, (outs GR32:$dst), 
3079                  (ins GR32:$src1, i32mem:$src2),
3080                  "imul{l}\t{$src2, $dst|$dst, $src2}",
3081                  [(set GR32:$dst, (mul GR32:$src1, (load addr:$src2))),
3082                   (implicit EFLAGS)]>, TB;
3083 } // Defs = [EFLAGS]
3084 } // end Two Address instructions
3085
3086 // Suprisingly enough, these are not two address instructions!
3087 let Defs = [EFLAGS] in {
3088 // Register-Integer Signed Integer Multiply
3089 def IMUL16rri  : Ii16<0x69, MRMSrcReg,                      // GR16 = GR16*I16
3090                       (outs GR16:$dst), (ins GR16:$src1, i16imm:$src2),
3091                       "imul{w}\t{$src2, $src1, $dst|$dst, $src1, $src2}",
3092                       [(set GR16:$dst, (mul GR16:$src1, imm:$src2)),
3093                        (implicit EFLAGS)]>, OpSize;
3094 def IMUL32rri  : Ii32<0x69, MRMSrcReg,                      // GR32 = GR32*I32
3095                       (outs GR32:$dst), (ins GR32:$src1, i32imm:$src2),
3096                       "imul{l}\t{$src2, $src1, $dst|$dst, $src1, $src2}",
3097                       [(set GR32:$dst, (mul GR32:$src1, imm:$src2)),
3098                        (implicit EFLAGS)]>;
3099 def IMUL16rri8 : Ii8<0x6B, MRMSrcReg,                       // GR16 = GR16*I8
3100                      (outs GR16:$dst), (ins GR16:$src1, i16i8imm:$src2),
3101                      "imul{w}\t{$src2, $src1, $dst|$dst, $src1, $src2}",
3102                      [(set GR16:$dst, (mul GR16:$src1, i16immSExt8:$src2)),
3103                       (implicit EFLAGS)]>, OpSize;
3104 def IMUL32rri8 : Ii8<0x6B, MRMSrcReg,                       // GR32 = GR32*I8
3105                      (outs GR32:$dst), (ins GR32:$src1, i32i8imm:$src2),
3106                      "imul{l}\t{$src2, $src1, $dst|$dst, $src1, $src2}",
3107                      [(set GR32:$dst, (mul GR32:$src1, i32immSExt8:$src2)),
3108                       (implicit EFLAGS)]>;
3109
3110 // Memory-Integer Signed Integer Multiply
3111 def IMUL16rmi  : Ii16<0x69, MRMSrcMem,                     // GR16 = [mem16]*I16
3112                       (outs GR16:$dst), (ins i16mem:$src1, i16imm:$src2),
3113                       "imul{w}\t{$src2, $src1, $dst|$dst, $src1, $src2}",
3114                       [(set GR16:$dst, (mul (load addr:$src1), imm:$src2)),
3115                        (implicit EFLAGS)]>, OpSize;
3116 def IMUL32rmi  : Ii32<0x69, MRMSrcMem,                     // GR32 = [mem32]*I32
3117                       (outs GR32:$dst), (ins i32mem:$src1, i32imm:$src2),
3118                       "imul{l}\t{$src2, $src1, $dst|$dst, $src1, $src2}",
3119                       [(set GR32:$dst, (mul (load addr:$src1), imm:$src2)),
3120                        (implicit EFLAGS)]>;
3121 def IMUL16rmi8 : Ii8<0x6B, MRMSrcMem,                       // GR16 = [mem16]*I8
3122                      (outs GR16:$dst), (ins i16mem:$src1, i16i8imm :$src2),
3123                      "imul{w}\t{$src2, $src1, $dst|$dst, $src1, $src2}",
3124                      [(set GR16:$dst, (mul (load addr:$src1),
3125                                        i16immSExt8:$src2)),
3126                       (implicit EFLAGS)]>, OpSize;
3127 def IMUL32rmi8 : Ii8<0x6B, MRMSrcMem,                       // GR32 = [mem32]*I8
3128                      (outs GR32:$dst), (ins i32mem:$src1, i32i8imm: $src2),
3129                      "imul{l}\t{$src2, $src1, $dst|$dst, $src1, $src2}",
3130                      [(set GR32:$dst, (mul (load addr:$src1),
3131                                            i32immSExt8:$src2)),
3132                       (implicit EFLAGS)]>;
3133 } // Defs = [EFLAGS]
3134
3135 //===----------------------------------------------------------------------===//
3136 // Test instructions are just like AND, except they don't generate a result.
3137 //
3138 let Defs = [EFLAGS] in {
3139 let isCommutable = 1 in {   // TEST X, Y   --> TEST Y, X
3140 def TEST8rr  : I<0x84, MRMSrcReg, (outs),  (ins GR8:$src1, GR8:$src2),
3141                      "test{b}\t{$src2, $src1|$src1, $src2}",
3142                      [(X86cmp (and_su GR8:$src1, GR8:$src2), 0),
3143                       (implicit EFLAGS)]>;
3144 def TEST16rr : I<0x85, MRMSrcReg, (outs),  (ins GR16:$src1, GR16:$src2),
3145                      "test{w}\t{$src2, $src1|$src1, $src2}",
3146                      [(X86cmp (and_su GR16:$src1, GR16:$src2), 0),
3147                       (implicit EFLAGS)]>,
3148                  OpSize;
3149 def TEST32rr : I<0x85, MRMSrcReg, (outs),  (ins GR32:$src1, GR32:$src2),
3150                      "test{l}\t{$src2, $src1|$src1, $src2}",
3151                      [(X86cmp (and_su GR32:$src1, GR32:$src2), 0),
3152                       (implicit EFLAGS)]>;
3153 }
3154
3155 def TEST8i8  : Ii8<0xA8, RawFrm, (outs), (ins i8imm:$src),
3156                    "test{b}\t{$src, %al|%al, $src}", []>;
3157 def TEST16i16 : Ii16<0xA9, RawFrm, (outs), (ins i16imm:$src),
3158                      "test{w}\t{$src, %ax|%ax, $src}", []>, OpSize;
3159 def TEST32i32 : Ii32<0xA9, RawFrm, (outs), (ins i32imm:$src),
3160                      "test{l}\t{$src, %eax|%eax, $src}", []>;
3161
3162 def TEST8rm  : I<0x84, MRMSrcMem, (outs),  (ins GR8 :$src1, i8mem :$src2),
3163                      "test{b}\t{$src2, $src1|$src1, $src2}",
3164                      [(X86cmp (and GR8:$src1, (loadi8 addr:$src2)), 0),
3165                       (implicit EFLAGS)]>;
3166 def TEST16rm : I<0x85, MRMSrcMem, (outs),  (ins GR16:$src1, i16mem:$src2),
3167                      "test{w}\t{$src2, $src1|$src1, $src2}",
3168                      [(X86cmp (and GR16:$src1, (loadi16 addr:$src2)), 0),
3169                       (implicit EFLAGS)]>, OpSize;
3170 def TEST32rm : I<0x85, MRMSrcMem, (outs),  (ins GR32:$src1, i32mem:$src2),
3171                      "test{l}\t{$src2, $src1|$src1, $src2}",
3172                      [(X86cmp (and GR32:$src1, (loadi32 addr:$src2)), 0),
3173                       (implicit EFLAGS)]>;
3174
3175 def TEST8ri  : Ii8 <0xF6, MRM0r,                     // flags = GR8  & imm8
3176                     (outs),  (ins GR8:$src1, i8imm:$src2),
3177                     "test{b}\t{$src2, $src1|$src1, $src2}",
3178                     [(X86cmp (and_su GR8:$src1, imm:$src2), 0),
3179                      (implicit EFLAGS)]>;
3180 def TEST16ri : Ii16<0xF7, MRM0r,                     // flags = GR16 & imm16
3181                     (outs),  (ins GR16:$src1, i16imm:$src2),
3182                     "test{w}\t{$src2, $src1|$src1, $src2}",
3183                     [(X86cmp (and_su GR16:$src1, imm:$src2), 0),
3184                      (implicit EFLAGS)]>, OpSize;
3185 def TEST32ri : Ii32<0xF7, MRM0r,                     // flags = GR32 & imm32
3186                     (outs),  (ins GR32:$src1, i32imm:$src2),
3187                     "test{l}\t{$src2, $src1|$src1, $src2}",
3188                     [(X86cmp (and_su GR32:$src1, imm:$src2), 0),
3189                      (implicit EFLAGS)]>;
3190
3191 def TEST8mi  : Ii8 <0xF6, MRM0m,                   // flags = [mem8]  & imm8
3192                     (outs), (ins i8mem:$src1, i8imm:$src2),
3193                     "test{b}\t{$src2, $src1|$src1, $src2}",
3194                     [(X86cmp (and (loadi8 addr:$src1), imm:$src2), 0),
3195                      (implicit EFLAGS)]>;
3196 def TEST16mi : Ii16<0xF7, MRM0m,                   // flags = [mem16] & imm16
3197                     (outs), (ins i16mem:$src1, i16imm:$src2),
3198                     "test{w}\t{$src2, $src1|$src1, $src2}",
3199                     [(X86cmp (and (loadi16 addr:$src1), imm:$src2), 0),
3200                      (implicit EFLAGS)]>, OpSize;
3201 def TEST32mi : Ii32<0xF7, MRM0m,                   // flags = [mem32] & imm32
3202                     (outs), (ins i32mem:$src1, i32imm:$src2),
3203                     "test{l}\t{$src2, $src1|$src1, $src2}",
3204                     [(X86cmp (and (loadi32 addr:$src1), imm:$src2), 0),
3205                      (implicit EFLAGS)]>;
3206 } // Defs = [EFLAGS]
3207
3208
3209 // Condition code ops, incl. set if equal/not equal/...
3210 let Defs = [EFLAGS], Uses = [AH], neverHasSideEffects = 1 in
3211 def SAHF     : I<0x9E, RawFrm, (outs),  (ins), "sahf", []>;  // flags = AH
3212 let Defs = [AH], Uses = [EFLAGS], neverHasSideEffects = 1 in
3213 def LAHF     : I<0x9F, RawFrm, (outs),  (ins), "lahf", []>;  // AH = flags
3214
3215 let Uses = [EFLAGS] in {
3216 // Use sbb to materialize carry bit.
3217 let Defs = [EFLAGS], isCodeGenOnly = 1 in {
3218 // FIXME: These are pseudo ops that should be replaced with Pat<> patterns.
3219 // However, Pat<> can't replicate the destination reg into the inputs of the
3220 // result.
3221 // FIXME: Change these to have encoding Pseudo when X86MCCodeEmitter replaces
3222 // X86CodeEmitter.
3223 def SETB_C8r : I<0x18, MRMInitReg, (outs GR8:$dst), (ins), "",
3224                  [(set GR8:$dst, (X86setcc_c X86_COND_B, EFLAGS))]>;
3225 def SETB_C16r : I<0x19, MRMInitReg, (outs GR16:$dst), (ins), "",
3226                  [(set GR16:$dst, (X86setcc_c X86_COND_B, EFLAGS))]>,
3227                 OpSize;
3228 def SETB_C32r : I<0x19, MRMInitReg, (outs GR32:$dst), (ins), "",
3229                  [(set GR32:$dst, (X86setcc_c X86_COND_B, EFLAGS))]>;
3230 } // isCodeGenOnly
3231
3232 def SETEr    : I<0x94, MRM0r, 
3233                  (outs GR8   :$dst), (ins),
3234                  "sete\t$dst",
3235                  [(set GR8:$dst, (X86setcc X86_COND_E, EFLAGS))]>,
3236                TB;                        // GR8 = ==
3237 def SETEm    : I<0x94, MRM0m, 
3238                  (outs), (ins i8mem:$dst),
3239                  "sete\t$dst",
3240                  [(store (X86setcc X86_COND_E, EFLAGS), addr:$dst)]>,
3241                TB;                        // [mem8] = ==
3242
3243 def SETNEr   : I<0x95, MRM0r, 
3244                  (outs GR8   :$dst), (ins),
3245                  "setne\t$dst",
3246                  [(set GR8:$dst, (X86setcc X86_COND_NE, EFLAGS))]>,
3247                TB;                        // GR8 = !=
3248 def SETNEm   : I<0x95, MRM0m, 
3249                  (outs), (ins i8mem:$dst),
3250                  "setne\t$dst",
3251                  [(store (X86setcc X86_COND_NE, EFLAGS), addr:$dst)]>,
3252                TB;                        // [mem8] = !=
3253
3254 def SETLr    : I<0x9C, MRM0r, 
3255                  (outs GR8   :$dst), (ins),
3256                  "setl\t$dst",
3257                  [(set GR8:$dst, (X86setcc X86_COND_L, EFLAGS))]>,
3258                TB;                        // GR8 = <  signed
3259 def SETLm    : I<0x9C, MRM0m, 
3260                  (outs), (ins i8mem:$dst),
3261                  "setl\t$dst",
3262                  [(store (X86setcc X86_COND_L, EFLAGS), addr:$dst)]>,
3263                TB;                        // [mem8] = <  signed
3264
3265 def SETGEr   : I<0x9D, MRM0r, 
3266                  (outs GR8   :$dst), (ins),
3267                  "setge\t$dst",
3268                  [(set GR8:$dst, (X86setcc X86_COND_GE, EFLAGS))]>,
3269                TB;                        // GR8 = >= signed
3270 def SETGEm   : I<0x9D, MRM0m, 
3271                  (outs), (ins i8mem:$dst),
3272                  "setge\t$dst",
3273                  [(store (X86setcc X86_COND_GE, EFLAGS), addr:$dst)]>,
3274                TB;                        // [mem8] = >= signed
3275
3276 def SETLEr   : I<0x9E, MRM0r, 
3277                  (outs GR8   :$dst), (ins),
3278                  "setle\t$dst",
3279                  [(set GR8:$dst, (X86setcc X86_COND_LE, EFLAGS))]>,
3280                TB;                        // GR8 = <= signed
3281 def SETLEm   : I<0x9E, MRM0m, 
3282                  (outs), (ins i8mem:$dst),
3283                  "setle\t$dst",
3284                  [(store (X86setcc X86_COND_LE, EFLAGS), addr:$dst)]>,
3285                TB;                        // [mem8] = <= signed
3286
3287 def SETGr    : I<0x9F, MRM0r, 
3288                  (outs GR8   :$dst), (ins),
3289                  "setg\t$dst",
3290                  [(set GR8:$dst, (X86setcc X86_COND_G, EFLAGS))]>,
3291                TB;                        // GR8 = >  signed
3292 def SETGm    : I<0x9F, MRM0m, 
3293                  (outs), (ins i8mem:$dst),
3294                  "setg\t$dst",
3295                  [(store (X86setcc X86_COND_G, EFLAGS), addr:$dst)]>,
3296                TB;                        // [mem8] = >  signed
3297
3298 def SETBr    : I<0x92, MRM0r,
3299                  (outs GR8   :$dst), (ins),
3300                  "setb\t$dst",
3301                  [(set GR8:$dst, (X86setcc X86_COND_B, EFLAGS))]>,
3302                TB;                        // GR8 = <  unsign
3303 def SETBm    : I<0x92, MRM0m,
3304                  (outs), (ins i8mem:$dst),
3305                  "setb\t$dst",
3306                  [(store (X86setcc X86_COND_B, EFLAGS), addr:$dst)]>,
3307                TB;                        // [mem8] = <  unsign
3308
3309 def SETAEr   : I<0x93, MRM0r, 
3310                  (outs GR8   :$dst), (ins),
3311                  "setae\t$dst",
3312                  [(set GR8:$dst, (X86setcc X86_COND_AE, EFLAGS))]>,
3313                TB;                        // GR8 = >= unsign
3314 def SETAEm   : I<0x93, MRM0m, 
3315                  (outs), (ins i8mem:$dst),
3316                  "setae\t$dst",
3317                  [(store (X86setcc X86_COND_AE, EFLAGS), addr:$dst)]>,
3318                TB;                        // [mem8] = >= unsign
3319
3320 def SETBEr   : I<0x96, MRM0r, 
3321                  (outs GR8   :$dst), (ins),
3322                  "setbe\t$dst",
3323                  [(set GR8:$dst, (X86setcc X86_COND_BE, EFLAGS))]>,
3324                TB;                        // GR8 = <= unsign
3325 def SETBEm   : I<0x96, MRM0m, 
3326                  (outs), (ins i8mem:$dst),
3327                  "setbe\t$dst",
3328                  [(store (X86setcc X86_COND_BE, EFLAGS), addr:$dst)]>,
3329                TB;                        // [mem8] = <= unsign
3330
3331 def SETAr    : I<0x97, MRM0r, 
3332                  (outs GR8   :$dst), (ins),
3333                  "seta\t$dst",
3334                  [(set GR8:$dst, (X86setcc X86_COND_A, EFLAGS))]>,
3335                TB;                        // GR8 = >  signed
3336 def SETAm    : I<0x97, MRM0m, 
3337                  (outs), (ins i8mem:$dst),
3338                  "seta\t$dst",
3339                  [(store (X86setcc X86_COND_A, EFLAGS), addr:$dst)]>,
3340                TB;                        // [mem8] = >  signed
3341
3342 def SETSr    : I<0x98, MRM0r, 
3343                  (outs GR8   :$dst), (ins),
3344                  "sets\t$dst",
3345                  [(set GR8:$dst, (X86setcc X86_COND_S, EFLAGS))]>,
3346                TB;                        // GR8 = <sign bit>
3347 def SETSm    : I<0x98, MRM0m, 
3348                  (outs), (ins i8mem:$dst),
3349                  "sets\t$dst",
3350                  [(store (X86setcc X86_COND_S, EFLAGS), addr:$dst)]>,
3351                TB;                        // [mem8] = <sign bit>
3352 def SETNSr   : I<0x99, MRM0r, 
3353                  (outs GR8   :$dst), (ins),
3354                  "setns\t$dst",
3355                  [(set GR8:$dst, (X86setcc X86_COND_NS, EFLAGS))]>,
3356                TB;                        // GR8 = !<sign bit>
3357 def SETNSm   : I<0x99, MRM0m, 
3358                  (outs), (ins i8mem:$dst),
3359                  "setns\t$dst",
3360                  [(store (X86setcc X86_COND_NS, EFLAGS), addr:$dst)]>,
3361                TB;                        // [mem8] = !<sign bit>
3362
3363 def SETPr    : I<0x9A, MRM0r, 
3364                  (outs GR8   :$dst), (ins),
3365                  "setp\t$dst",
3366                  [(set GR8:$dst, (X86setcc X86_COND_P, EFLAGS))]>,
3367                TB;                        // GR8 = parity
3368 def SETPm    : I<0x9A, MRM0m, 
3369                  (outs), (ins i8mem:$dst),
3370                  "setp\t$dst",
3371                  [(store (X86setcc X86_COND_P, EFLAGS), addr:$dst)]>,
3372                TB;                        // [mem8] = parity
3373 def SETNPr   : I<0x9B, MRM0r, 
3374                  (outs GR8   :$dst), (ins),
3375                  "setnp\t$dst",
3376                  [(set GR8:$dst, (X86setcc X86_COND_NP, EFLAGS))]>,
3377                TB;                        // GR8 = not parity
3378 def SETNPm   : I<0x9B, MRM0m, 
3379                  (outs), (ins i8mem:$dst),
3380                  "setnp\t$dst",
3381                  [(store (X86setcc X86_COND_NP, EFLAGS), addr:$dst)]>,
3382                TB;                        // [mem8] = not parity
3383
3384 def SETOr    : I<0x90, MRM0r, 
3385                  (outs GR8   :$dst), (ins),
3386                  "seto\t$dst",
3387                  [(set GR8:$dst, (X86setcc X86_COND_O, EFLAGS))]>,
3388                TB;                        // GR8 = overflow
3389 def SETOm    : I<0x90, MRM0m, 
3390                  (outs), (ins i8mem:$dst),
3391                  "seto\t$dst",
3392                  [(store (X86setcc X86_COND_O, EFLAGS), addr:$dst)]>,
3393                TB;                        // [mem8] = overflow
3394 def SETNOr   : I<0x91, MRM0r, 
3395                  (outs GR8   :$dst), (ins),
3396                  "setno\t$dst",
3397                  [(set GR8:$dst, (X86setcc X86_COND_NO, EFLAGS))]>,
3398                TB;                        // GR8 = not overflow
3399 def SETNOm   : I<0x91, MRM0m, 
3400                  (outs), (ins i8mem:$dst),
3401                  "setno\t$dst",
3402                  [(store (X86setcc X86_COND_NO, EFLAGS), addr:$dst)]>,
3403                TB;                        // [mem8] = not overflow
3404 } // Uses = [EFLAGS]
3405
3406
3407 // Integer comparisons
3408 let Defs = [EFLAGS] in {
3409 def CMP8i8 : Ii8<0x3C, RawFrm, (outs), (ins i8imm:$src),
3410                  "cmp{b}\t{$src, %al|%al, $src}", []>;
3411 def CMP16i16 : Ii16<0x3D, RawFrm, (outs), (ins i16imm:$src),
3412                     "cmp{w}\t{$src, %ax|%ax, $src}", []>, OpSize;
3413 def CMP32i32 : Ii32<0x3D, RawFrm, (outs), (ins i32imm:$src),
3414                     "cmp{l}\t{$src, %eax|%eax, $src}", []>;
3415
3416 def CMP8rr  : I<0x38, MRMDestReg,
3417                 (outs), (ins GR8 :$src1, GR8 :$src2),
3418                 "cmp{b}\t{$src2, $src1|$src1, $src2}",
3419                 [(X86cmp GR8:$src1, GR8:$src2), (implicit EFLAGS)]>;
3420 def CMP16rr : I<0x39, MRMDestReg,
3421                 (outs), (ins GR16:$src1, GR16:$src2),
3422                 "cmp{w}\t{$src2, $src1|$src1, $src2}",
3423                 [(X86cmp GR16:$src1, GR16:$src2), (implicit EFLAGS)]>, OpSize;
3424 def CMP32rr : I<0x39, MRMDestReg,
3425                 (outs), (ins GR32:$src1, GR32:$src2),
3426                 "cmp{l}\t{$src2, $src1|$src1, $src2}",
3427                 [(X86cmp GR32:$src1, GR32:$src2), (implicit EFLAGS)]>;
3428 def CMP8mr  : I<0x38, MRMDestMem,
3429                 (outs), (ins i8mem :$src1, GR8 :$src2),
3430                 "cmp{b}\t{$src2, $src1|$src1, $src2}",
3431                 [(X86cmp (loadi8 addr:$src1), GR8:$src2),
3432                  (implicit EFLAGS)]>;
3433 def CMP16mr : I<0x39, MRMDestMem,
3434                 (outs), (ins i16mem:$src1, GR16:$src2),
3435                 "cmp{w}\t{$src2, $src1|$src1, $src2}",
3436                 [(X86cmp (loadi16 addr:$src1), GR16:$src2),
3437                  (implicit EFLAGS)]>, OpSize;
3438 def CMP32mr : I<0x39, MRMDestMem,
3439                 (outs), (ins i32mem:$src1, GR32:$src2),
3440                 "cmp{l}\t{$src2, $src1|$src1, $src2}",
3441                 [(X86cmp (loadi32 addr:$src1), GR32:$src2),
3442                  (implicit EFLAGS)]>;
3443 def CMP8rm  : I<0x3A, MRMSrcMem,
3444                 (outs), (ins GR8 :$src1, i8mem :$src2),
3445                 "cmp{b}\t{$src2, $src1|$src1, $src2}",
3446                 [(X86cmp GR8:$src1, (loadi8 addr:$src2)),
3447                  (implicit EFLAGS)]>;
3448 def CMP16rm : I<0x3B, MRMSrcMem,
3449                 (outs), (ins GR16:$src1, i16mem:$src2),
3450                 "cmp{w}\t{$src2, $src1|$src1, $src2}",
3451                 [(X86cmp GR16:$src1, (loadi16 addr:$src2)),
3452                  (implicit EFLAGS)]>, OpSize;
3453 def CMP32rm : I<0x3B, MRMSrcMem,
3454                 (outs), (ins GR32:$src1, i32mem:$src2),
3455                 "cmp{l}\t{$src2, $src1|$src1, $src2}",
3456                 [(X86cmp GR32:$src1, (loadi32 addr:$src2)),
3457                  (implicit EFLAGS)]>;
3458
3459 // These are alternate spellings for use by the disassembler, we mark them as
3460 // code gen only to ensure they aren't matched by the assembler.
3461 let isCodeGenOnly = 1 in {
3462   def CMP8rr_alt : I<0x3A, MRMSrcReg, (outs), (ins GR8:$src1, GR8:$src2),
3463                     "cmp{b}\t{$src2, $src1|$src1, $src2}", []>;
3464   def CMP16rr_alt : I<0x3B, MRMSrcReg, (outs), (ins GR16:$src1, GR16:$src2),
3465                      "cmp{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize;
3466   def CMP32rr_alt : I<0x3B, MRMSrcReg, (outs), (ins GR32:$src1, GR32:$src2),
3467                      "cmp{l}\t{$src2, $src1|$src1, $src2}", []>;
3468 }
3469
3470 def CMP8ri  : Ii8<0x80, MRM7r,
3471                   (outs), (ins GR8:$src1, i8imm:$src2),
3472                   "cmp{b}\t{$src2, $src1|$src1, $src2}",
3473                   [(X86cmp GR8:$src1, imm:$src2), (implicit EFLAGS)]>;
3474 def CMP16ri : Ii16<0x81, MRM7r,
3475                    (outs), (ins GR16:$src1, i16imm:$src2),
3476                    "cmp{w}\t{$src2, $src1|$src1, $src2}",
3477                    [(X86cmp GR16:$src1, imm:$src2),
3478                     (implicit EFLAGS)]>, OpSize;
3479 def CMP32ri : Ii32<0x81, MRM7r,
3480                    (outs), (ins GR32:$src1, i32imm:$src2),
3481                    "cmp{l}\t{$src2, $src1|$src1, $src2}",
3482                    [(X86cmp GR32:$src1, imm:$src2), (implicit EFLAGS)]>;
3483 def CMP8mi  : Ii8 <0x80, MRM7m,
3484                    (outs), (ins i8mem :$src1, i8imm :$src2),
3485                    "cmp{b}\t{$src2, $src1|$src1, $src2}",
3486                    [(X86cmp (loadi8 addr:$src1), imm:$src2),
3487                     (implicit EFLAGS)]>;
3488 def CMP16mi : Ii16<0x81, MRM7m,
3489                    (outs), (ins i16mem:$src1, i16imm:$src2),
3490                    "cmp{w}\t{$src2, $src1|$src1, $src2}",
3491                    [(X86cmp (loadi16 addr:$src1), imm:$src2),
3492                     (implicit EFLAGS)]>, OpSize;
3493 def CMP32mi : Ii32<0x81, MRM7m,
3494                    (outs), (ins i32mem:$src1, i32imm:$src2),
3495                    "cmp{l}\t{$src2, $src1|$src1, $src2}",
3496                    [(X86cmp (loadi32 addr:$src1), imm:$src2),
3497                     (implicit EFLAGS)]>;
3498 def CMP16ri8 : Ii8<0x83, MRM7r,
3499                    (outs), (ins GR16:$src1, i16i8imm:$src2),
3500                    "cmp{w}\t{$src2, $src1|$src1, $src2}",
3501                    [(X86cmp GR16:$src1, i16immSExt8:$src2),
3502                     (implicit EFLAGS)]>, OpSize;
3503 def CMP16mi8 : Ii8<0x83, MRM7m,
3504                    (outs), (ins i16mem:$src1, i16i8imm:$src2),
3505                    "cmp{w}\t{$src2, $src1|$src1, $src2}",
3506                    [(X86cmp (loadi16 addr:$src1), i16immSExt8:$src2),
3507                     (implicit EFLAGS)]>, OpSize;
3508 def CMP32mi8 : Ii8<0x83, MRM7m,
3509                    (outs), (ins i32mem:$src1, i32i8imm:$src2),
3510                    "cmp{l}\t{$src2, $src1|$src1, $src2}",
3511                    [(X86cmp (loadi32 addr:$src1), i32immSExt8:$src2),
3512                     (implicit EFLAGS)]>;
3513 def CMP32ri8 : Ii8<0x83, MRM7r,
3514                    (outs), (ins GR32:$src1, i32i8imm:$src2),
3515                    "cmp{l}\t{$src2, $src1|$src1, $src2}",
3516                    [(X86cmp GR32:$src1, i32immSExt8:$src2),
3517                     (implicit EFLAGS)]>;
3518 } // Defs = [EFLAGS]
3519
3520 // Bit tests.
3521 // TODO: BTC, BTR, and BTS
3522 let Defs = [EFLAGS] in {
3523 def BT16rr : I<0xA3, MRMDestReg, (outs), (ins GR16:$src1, GR16:$src2),
3524                "bt{w}\t{$src2, $src1|$src1, $src2}",
3525                [(X86bt GR16:$src1, GR16:$src2),
3526                 (implicit EFLAGS)]>, OpSize, TB;
3527 def BT32rr : I<0xA3, MRMDestReg, (outs), (ins GR32:$src1, GR32:$src2),
3528                "bt{l}\t{$src2, $src1|$src1, $src2}",
3529                [(X86bt GR32:$src1, GR32:$src2),
3530                 (implicit EFLAGS)]>, TB;
3531
3532 // Unlike with the register+register form, the memory+register form of the
3533 // bt instruction does not ignore the high bits of the index. From ISel's
3534 // perspective, this is pretty bizarre. Make these instructions disassembly
3535 // only for now.
3536
3537 def BT16mr : I<0xA3, MRMDestMem, (outs), (ins i16mem:$src1, GR16:$src2),
3538                "bt{w}\t{$src2, $src1|$src1, $src2}", 
3539 //               [(X86bt (loadi16 addr:$src1), GR16:$src2),
3540 //                (implicit EFLAGS)]
3541                []
3542                >, OpSize, TB, Requires<[FastBTMem]>;
3543 def BT32mr : I<0xA3, MRMDestMem, (outs), (ins i32mem:$src1, GR32:$src2),
3544                "bt{l}\t{$src2, $src1|$src1, $src2}", 
3545 //               [(X86bt (loadi32 addr:$src1), GR32:$src2),
3546 //                (implicit EFLAGS)]
3547                []
3548                >, TB, Requires<[FastBTMem]>;
3549
3550 def BT16ri8 : Ii8<0xBA, MRM4r, (outs), (ins GR16:$src1, i16i8imm:$src2),
3551                 "bt{w}\t{$src2, $src1|$src1, $src2}",
3552                 [(X86bt GR16:$src1, i16immSExt8:$src2),
3553                  (implicit EFLAGS)]>, OpSize, TB;
3554 def BT32ri8 : Ii8<0xBA, MRM4r, (outs), (ins GR32:$src1, i32i8imm:$src2),
3555                 "bt{l}\t{$src2, $src1|$src1, $src2}",
3556                 [(X86bt GR32:$src1, i32immSExt8:$src2),
3557                  (implicit EFLAGS)]>, TB;
3558 // Note that these instructions don't need FastBTMem because that
3559 // only applies when the other operand is in a register. When it's
3560 // an immediate, bt is still fast.
3561 def BT16mi8 : Ii8<0xBA, MRM4m, (outs), (ins i16mem:$src1, i16i8imm:$src2),
3562                 "bt{w}\t{$src2, $src1|$src1, $src2}",
3563                 [(X86bt (loadi16 addr:$src1), i16immSExt8:$src2),
3564                  (implicit EFLAGS)]>, OpSize, TB;
3565 def BT32mi8 : Ii8<0xBA, MRM4m, (outs), (ins i32mem:$src1, i32i8imm:$src2),
3566                 "bt{l}\t{$src2, $src1|$src1, $src2}",
3567                 [(X86bt (loadi32 addr:$src1), i32immSExt8:$src2),
3568                  (implicit EFLAGS)]>, TB;
3569
3570 def BTC16rr : I<0xBB, MRMDestReg, (outs), (ins GR16:$src1, GR16:$src2),
3571                 "btc{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
3572 def BTC32rr : I<0xBB, MRMDestReg, (outs), (ins GR32:$src1, GR32:$src2),
3573                 "btc{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
3574 def BTC16mr : I<0xBB, MRMDestMem, (outs), (ins i16mem:$src1, GR16:$src2),
3575                 "btc{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
3576 def BTC32mr : I<0xBB, MRMDestMem, (outs), (ins i32mem:$src1, GR32:$src2),
3577                 "btc{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
3578 def BTC16ri8 : Ii8<0xBA, MRM7r, (outs), (ins GR16:$src1, i16i8imm:$src2),
3579                     "btc{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
3580 def BTC32ri8 : Ii8<0xBA, MRM7r, (outs), (ins GR32:$src1, i32i8imm:$src2),
3581                     "btc{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
3582 def BTC16mi8 : Ii8<0xBA, MRM7m, (outs), (ins i16mem:$src1, i16i8imm:$src2),
3583                     "btc{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
3584 def BTC32mi8 : Ii8<0xBA, MRM7m, (outs), (ins i32mem:$src1, i32i8imm:$src2),
3585                     "btc{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
3586
3587 def BTR16rr : I<0xB3, MRMDestReg, (outs), (ins GR16:$src1, GR16:$src2),
3588                 "btr{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
3589 def BTR32rr : I<0xB3, MRMDestReg, (outs), (ins GR32:$src1, GR32:$src2),
3590                 "btr{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
3591 def BTR16mr : I<0xB3, MRMDestMem, (outs), (ins i16mem:$src1, GR16:$src2),
3592                 "btr{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
3593 def BTR32mr : I<0xB3, MRMDestMem, (outs), (ins i32mem:$src1, GR32:$src2),
3594                 "btr{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
3595 def BTR16ri8 : Ii8<0xBA, MRM6r, (outs), (ins GR16:$src1, i16i8imm:$src2),
3596                     "btr{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
3597 def BTR32ri8 : Ii8<0xBA, MRM6r, (outs), (ins GR32:$src1, i32i8imm:$src2),
3598                     "btr{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
3599 def BTR16mi8 : Ii8<0xBA, MRM6m, (outs), (ins i16mem:$src1, i16i8imm:$src2),
3600                     "btr{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
3601 def BTR32mi8 : Ii8<0xBA, MRM6m, (outs), (ins i32mem:$src1, i32i8imm:$src2),
3602                     "btr{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
3603
3604 def BTS16rr : I<0xAB, MRMDestReg, (outs), (ins GR16:$src1, GR16:$src2),
3605                 "bts{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
3606 def BTS32rr : I<0xAB, MRMDestReg, (outs), (ins GR32:$src1, GR32:$src2),
3607                 "bts{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
3608 def BTS16mr : I<0xAB, MRMDestMem, (outs), (ins i16mem:$src1, GR16:$src2),
3609                 "bts{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
3610 def BTS32mr : I<0xAB, MRMDestMem, (outs), (ins i32mem:$src1, GR32:$src2),
3611                 "bts{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
3612 def BTS16ri8 : Ii8<0xBA, MRM5r, (outs), (ins GR16:$src1, i16i8imm:$src2),
3613                     "bts{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
3614 def BTS32ri8 : Ii8<0xBA, MRM5r, (outs), (ins GR32:$src1, i32i8imm:$src2),
3615                     "bts{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
3616 def BTS16mi8 : Ii8<0xBA, MRM5m, (outs), (ins i16mem:$src1, i16i8imm:$src2),
3617                     "bts{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
3618 def BTS32mi8 : Ii8<0xBA, MRM5m, (outs), (ins i32mem:$src1, i32i8imm:$src2),
3619                     "bts{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
3620 } // Defs = [EFLAGS]
3621
3622 // Sign/Zero extenders
3623 // Use movsbl intead of movsbw; we don't care about the high 16 bits
3624 // of the register here. This has a smaller encoding and avoids a
3625 // partial-register update.  Actual movsbw included for the disassembler.
3626 def MOVSX16rr8W : I<0xBE, MRMSrcReg, (outs GR16:$dst), (ins GR8:$src),
3627                     "movs{bw|x}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
3628 def MOVSX16rm8W : I<0xBE, MRMSrcMem, (outs GR16:$dst), (ins i8mem:$src),
3629                     "movs{bw|x}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
3630 def MOVSX16rr8 : I<0xBE, MRMSrcReg, (outs GR16:$dst), (ins GR8 :$src),
3631                    "", [(set GR16:$dst, (sext GR8:$src))]>, TB;
3632 def MOVSX16rm8 : I<0xBE, MRMSrcMem, (outs GR16:$dst), (ins i8mem :$src),
3633                    "", [(set GR16:$dst, (sextloadi16i8 addr:$src))]>, TB;
3634 def MOVSX32rr8 : I<0xBE, MRMSrcReg, (outs GR32:$dst), (ins GR8 :$src),
3635                    "movs{bl|x}\t{$src, $dst|$dst, $src}",
3636                    [(set GR32:$dst, (sext GR8:$src))]>, TB;
3637 def MOVSX32rm8 : I<0xBE, MRMSrcMem, (outs GR32:$dst), (ins i8mem :$src),
3638                    "movs{bl|x}\t{$src, $dst|$dst, $src}",
3639                    [(set GR32:$dst, (sextloadi32i8 addr:$src))]>, TB;
3640 def MOVSX32rr16: I<0xBF, MRMSrcReg, (outs GR32:$dst), (ins GR16:$src),
3641                    "movs{wl|x}\t{$src, $dst|$dst, $src}",
3642                    [(set GR32:$dst, (sext GR16:$src))]>, TB;
3643 def MOVSX32rm16: I<0xBF, MRMSrcMem, (outs GR32:$dst), (ins i16mem:$src),
3644                    "movs{wl|x}\t{$src, $dst|$dst, $src}",
3645                    [(set GR32:$dst, (sextloadi32i16 addr:$src))]>, TB;
3646
3647 // Use movzbl intead of movzbw; we don't care about the high 16 bits
3648 // of the register here. This has a smaller encoding and avoids a
3649 // partial-register update.  Actual movzbw included for the disassembler.
3650 def MOVZX16rr8W : I<0xB6, MRMSrcReg, (outs GR16:$dst), (ins GR8:$src),
3651                     "movz{bw|x}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
3652 def MOVZX16rm8W : I<0xB6, MRMSrcMem, (outs GR16:$dst), (ins i8mem:$src),
3653                     "movz{bw|x}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;  
3654 def MOVZX16rr8 : I<0xB6, MRMSrcReg, (outs GR16:$dst), (ins GR8 :$src),
3655                    "", [(set GR16:$dst, (zext GR8:$src))]>, TB;
3656 def MOVZX16rm8 : I<0xB6, MRMSrcMem, (outs GR16:$dst), (ins i8mem :$src),
3657                    "", [(set GR16:$dst, (zextloadi16i8 addr:$src))]>, TB;
3658 def MOVZX32rr8 : I<0xB6, MRMSrcReg, (outs GR32:$dst), (ins GR8 :$src),
3659                    "movz{bl|x}\t{$src, $dst|$dst, $src}",
3660                    [(set GR32:$dst, (zext GR8:$src))]>, TB;
3661 def MOVZX32rm8 : I<0xB6, MRMSrcMem, (outs GR32:$dst), (ins i8mem :$src),
3662                    "movz{bl|x}\t{$src, $dst|$dst, $src}",
3663                    [(set GR32:$dst, (zextloadi32i8 addr:$src))]>, TB;
3664 def MOVZX32rr16: I<0xB7, MRMSrcReg, (outs GR32:$dst), (ins GR16:$src),
3665                    "movz{wl|x}\t{$src, $dst|$dst, $src}",
3666                    [(set GR32:$dst, (zext GR16:$src))]>, TB;
3667 def MOVZX32rm16: I<0xB7, MRMSrcMem, (outs GR32:$dst), (ins i16mem:$src),
3668                    "movz{wl|x}\t{$src, $dst|$dst, $src}",
3669                    [(set GR32:$dst, (zextloadi32i16 addr:$src))]>, TB;
3670
3671 // These are the same as the regular MOVZX32rr8 and MOVZX32rm8
3672 // except that they use GR32_NOREX for the output operand register class
3673 // instead of GR32. This allows them to operate on h registers on x86-64.
3674 def MOVZX32_NOREXrr8 : I<0xB6, MRMSrcReg,
3675                          (outs GR32_NOREX:$dst), (ins GR8:$src),
3676                          "movz{bl|x}\t{$src, $dst|$dst, $src}  # NOREX",
3677                          []>, TB;
3678 let mayLoad = 1 in
3679 def MOVZX32_NOREXrm8 : I<0xB6, MRMSrcMem,
3680                          (outs GR32_NOREX:$dst), (ins i8mem:$src),
3681                          "movz{bl|x}\t{$src, $dst|$dst, $src}  # NOREX",
3682                          []>, TB;
3683
3684 let neverHasSideEffects = 1 in {
3685   let Defs = [AX], Uses = [AL] in
3686   def CBW : I<0x98, RawFrm, (outs), (ins),
3687               "{cbtw|cbw}", []>, OpSize;   // AX = signext(AL)
3688   let Defs = [EAX], Uses = [AX] in
3689   def CWDE : I<0x98, RawFrm, (outs), (ins),
3690               "{cwtl|cwde}", []>;   // EAX = signext(AX)
3691
3692   let Defs = [AX,DX], Uses = [AX] in
3693   def CWD : I<0x99, RawFrm, (outs), (ins),
3694               "{cwtd|cwd}", []>, OpSize; // DX:AX = signext(AX)
3695   let Defs = [EAX,EDX], Uses = [EAX] in
3696   def CDQ : I<0x99, RawFrm, (outs), (ins),
3697               "{cltd|cdq}", []>; // EDX:EAX = signext(EAX)
3698 }
3699
3700 //===----------------------------------------------------------------------===//
3701 // Alias Instructions
3702 //===----------------------------------------------------------------------===//
3703
3704 // Alias instructions that map movr0 to xor.
3705 // FIXME: remove when we can teach regalloc that xor reg, reg is ok.
3706 // FIXME: Set encoding to pseudo.
3707 let Defs = [EFLAGS], isReMaterializable = 1, isAsCheapAsAMove = 1,
3708     isCodeGenOnly = 1 in {
3709 def MOV8r0   : I<0x30, MRMInitReg, (outs GR8 :$dst), (ins), "",
3710                  [(set GR8:$dst, 0)]>;
3711
3712 // We want to rewrite MOV16r0 in terms of MOV32r0, because it's a smaller
3713 // encoding and avoids a partial-register update sometimes, but doing so
3714 // at isel time interferes with rematerialization in the current register
3715 // allocator. For now, this is rewritten when the instruction is lowered
3716 // to an MCInst.
3717 def MOV16r0   : I<0x31, MRMInitReg, (outs GR16:$dst), (ins),
3718                  "",
3719                  [(set GR16:$dst, 0)]>, OpSize;
3720                  
3721 // FIXME: Set encoding to pseudo.
3722 def MOV32r0  : I<0x31, MRMInitReg, (outs GR32:$dst), (ins), "",
3723                  [(set GR32:$dst, 0)]>;
3724 }
3725
3726 //===----------------------------------------------------------------------===//
3727 // Thread Local Storage Instructions
3728 //
3729
3730 // All calls clobber the non-callee saved registers. ESP is marked as
3731 // a use to prevent stack-pointer assignments that appear immediately
3732 // before calls from potentially appearing dead.
3733 let Defs = [EAX, ECX, EDX, FP0, FP1, FP2, FP3, FP4, FP5, FP6, ST0,
3734             MM0, MM1, MM2, MM3, MM4, MM5, MM6, MM7,
3735             XMM0, XMM1, XMM2, XMM3, XMM4, XMM5, XMM6, XMM7,
3736             XMM8, XMM9, XMM10, XMM11, XMM12, XMM13, XMM14, XMM15, EFLAGS],
3737     Uses = [ESP] in
3738 def TLS_addr32 : I<0, Pseudo, (outs), (ins lea32mem:$sym),
3739                   "leal\t$sym, %eax; "
3740                   "call\t___tls_get_addr@PLT",
3741                   [(X86tlsaddr tls32addr:$sym)]>,
3742                   Requires<[In32BitMode]>;
3743
3744 let AddedComplexity = 5, isCodeGenOnly = 1 in
3745 def GS_MOV32rm : I<0x8B, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
3746                    "movl\t%gs:$src, $dst",
3747                    [(set GR32:$dst, (gsload addr:$src))]>, SegGS;
3748
3749 let AddedComplexity = 5, isCodeGenOnly = 1 in
3750 def FS_MOV32rm : I<0x8B, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
3751                    "movl\t%fs:$src, $dst",
3752                    [(set GR32:$dst, (fsload addr:$src))]>, SegFS;
3753
3754 //===----------------------------------------------------------------------===//
3755 // EH Pseudo Instructions
3756 //
3757 let isTerminator = 1, isReturn = 1, isBarrier = 1,
3758     hasCtrlDep = 1, isCodeGenOnly = 1 in {
3759 def EH_RETURN   : I<0xC3, RawFrm, (outs), (ins GR32:$addr),
3760                     "ret\t#eh_return, addr: $addr",
3761                     [(X86ehret GR32:$addr)]>;
3762
3763 }
3764
3765 //===----------------------------------------------------------------------===//
3766 // Atomic support
3767 //
3768
3769 // Atomic swap. These are just normal xchg instructions. But since a memory
3770 // operand is referenced, the atomicity is ensured.
3771 let Constraints = "$val = $dst" in {
3772 def XCHG32rm : I<0x87, MRMSrcMem, (outs GR32:$dst), 
3773                  (ins GR32:$val, i32mem:$ptr),
3774                "xchg{l}\t{$val, $ptr|$ptr, $val}", 
3775                [(set GR32:$dst, (atomic_swap_32 addr:$ptr, GR32:$val))]>;
3776 def XCHG16rm : I<0x87, MRMSrcMem, (outs GR16:$dst), 
3777                  (ins GR16:$val, i16mem:$ptr),
3778                "xchg{w}\t{$val, $ptr|$ptr, $val}", 
3779                [(set GR16:$dst, (atomic_swap_16 addr:$ptr, GR16:$val))]>, 
3780                 OpSize;
3781 def XCHG8rm  : I<0x86, MRMSrcMem, (outs GR8:$dst), (ins GR8:$val, i8mem:$ptr),
3782                "xchg{b}\t{$val, $ptr|$ptr, $val}", 
3783                [(set GR8:$dst, (atomic_swap_8 addr:$ptr, GR8:$val))]>;
3784
3785 def XCHG32rr : I<0x87, MRMSrcReg, (outs GR32:$dst), (ins GR32:$val, GR32:$src),
3786                  "xchg{l}\t{$val, $src|$src, $val}", []>;
3787 def XCHG16rr : I<0x87, MRMSrcReg, (outs GR16:$dst), (ins GR16:$val, GR16:$src),
3788                  "xchg{w}\t{$val, $src|$src, $val}", []>, OpSize;
3789 def XCHG8rr : I<0x86, MRMSrcReg, (outs GR8:$dst), (ins GR8:$val, GR8:$src),
3790                 "xchg{b}\t{$val, $src|$src, $val}", []>;
3791 }
3792
3793 def XCHG16ar : I<0x90, AddRegFrm, (outs), (ins GR16:$src),
3794                   "xchg{w}\t{$src, %ax|%ax, $src}", []>, OpSize;
3795 def XCHG32ar : I<0x90, AddRegFrm, (outs), (ins GR32:$src),
3796                   "xchg{l}\t{$src, %eax|%eax, $src}", []>;
3797
3798 // Atomic compare and swap.
3799 let Defs = [EAX, EFLAGS], Uses = [EAX] in {
3800 def LCMPXCHG32 : I<0xB1, MRMDestMem, (outs), (ins i32mem:$ptr, GR32:$swap),
3801                "lock\n\t"
3802                "cmpxchg{l}\t{$swap, $ptr|$ptr, $swap}",
3803                [(X86cas addr:$ptr, GR32:$swap, 4)]>, TB, LOCK;
3804 }
3805 let Defs = [EAX, EDX, EFLAGS], Uses = [EAX, EBX, ECX, EDX] in {
3806 def LCMPXCHG8B : I<0xC7, MRM1m, (outs), (ins i64mem:$ptr),
3807                "lock\n\t"
3808                "cmpxchg8b\t$ptr",
3809                [(X86cas8 addr:$ptr)]>, TB, LOCK;
3810 }
3811
3812 let Defs = [AX, EFLAGS], Uses = [AX] in {
3813 def LCMPXCHG16 : I<0xB1, MRMDestMem, (outs), (ins i16mem:$ptr, GR16:$swap),
3814                "lock\n\t"
3815                "cmpxchg{w}\t{$swap, $ptr|$ptr, $swap}",
3816                [(X86cas addr:$ptr, GR16:$swap, 2)]>, TB, OpSize, LOCK;
3817 }
3818 let Defs = [AL, EFLAGS], Uses = [AL] in {
3819 def LCMPXCHG8 : I<0xB0, MRMDestMem, (outs), (ins i8mem:$ptr, GR8:$swap),
3820                "lock\n\t"
3821                "cmpxchg{b}\t{$swap, $ptr|$ptr, $swap}",
3822                [(X86cas addr:$ptr, GR8:$swap, 1)]>, TB, LOCK;
3823 }
3824
3825 // Atomic exchange and add
3826 let Constraints = "$val = $dst", Defs = [EFLAGS] in {
3827 def LXADD32 : I<0xC1, MRMSrcMem, (outs GR32:$dst), (ins GR32:$val, i32mem:$ptr),
3828                "lock\n\t"
3829                "xadd{l}\t{$val, $ptr|$ptr, $val}",
3830                [(set GR32:$dst, (atomic_load_add_32 addr:$ptr, GR32:$val))]>,
3831                 TB, LOCK;
3832 def LXADD16 : I<0xC1, MRMSrcMem, (outs GR16:$dst), (ins GR16:$val, i16mem:$ptr),
3833                "lock\n\t"
3834                "xadd{w}\t{$val, $ptr|$ptr, $val}",
3835                [(set GR16:$dst, (atomic_load_add_16 addr:$ptr, GR16:$val))]>,
3836                 TB, OpSize, LOCK;
3837 def LXADD8  : I<0xC0, MRMSrcMem, (outs GR8:$dst), (ins GR8:$val, i8mem:$ptr),
3838                "lock\n\t"
3839                "xadd{b}\t{$val, $ptr|$ptr, $val}",
3840                [(set GR8:$dst, (atomic_load_add_8 addr:$ptr, GR8:$val))]>,
3841                 TB, LOCK;
3842 }
3843
3844 def XADD8rr : I<0xC0, MRMDestReg, (outs GR8:$dst), (ins GR8:$src),
3845                 "xadd{b}\t{$src, $dst|$dst, $src}", []>, TB;
3846 def XADD16rr : I<0xC1, MRMDestReg, (outs GR16:$dst), (ins GR16:$src),
3847                  "xadd{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
3848 def XADD32rr  : I<0xC1, MRMDestReg, (outs GR32:$dst), (ins GR32:$src),
3849                  "xadd{l}\t{$src, $dst|$dst, $src}", []>, TB;
3850
3851 def XADD8rm   : I<0xC0, MRMDestMem, (outs), (ins i8mem:$dst, GR8:$src),
3852                  "xadd{b}\t{$src, $dst|$dst, $src}", []>, TB;
3853 def XADD16rm  : I<0xC1, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src),
3854                  "xadd{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
3855 def XADD32rm  : I<0xC1, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
3856                  "xadd{l}\t{$src, $dst|$dst, $src}", []>, TB;
3857
3858 def CMPXCHG8rr : I<0xB0, MRMDestReg, (outs GR8:$dst), (ins GR8:$src),
3859                    "cmpxchg{b}\t{$src, $dst|$dst, $src}", []>, TB;
3860 def CMPXCHG16rr : I<0xB1, MRMDestReg, (outs GR16:$dst), (ins GR16:$src),
3861                     "cmpxchg{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
3862 def CMPXCHG32rr  : I<0xB1, MRMDestReg, (outs GR32:$dst), (ins GR32:$src),
3863                      "cmpxchg{l}\t{$src, $dst|$dst, $src}", []>, TB;
3864
3865 def CMPXCHG8rm   : I<0xB0, MRMDestMem, (outs), (ins i8mem:$dst, GR8:$src),
3866                      "cmpxchg{b}\t{$src, $dst|$dst, $src}", []>, TB;
3867 def CMPXCHG16rm  : I<0xB1, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src),
3868                      "cmpxchg{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
3869 def CMPXCHG32rm  : I<0xB1, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
3870                      "cmpxchg{l}\t{$src, $dst|$dst, $src}", []>, TB;
3871
3872 let Defs = [EAX, EDX, EFLAGS], Uses = [EAX, EBX, ECX, EDX] in
3873 def CMPXCHG8B : I<0xC7, MRM1m, (outs), (ins i64mem:$dst),
3874                   "cmpxchg8b\t$dst", []>, TB;
3875
3876 // Optimized codegen when the non-memory output is not used.
3877 // FIXME: Use normal add / sub instructions and add lock prefix dynamically.
3878 let Defs = [EFLAGS] in {
3879 def LOCK_ADD8mr  : I<0x00, MRMDestMem, (outs), (ins i8mem:$dst, GR8:$src2),
3880                     "lock\n\t"
3881                     "add{b}\t{$src2, $dst|$dst, $src2}", []>, LOCK;
3882 def LOCK_ADD16mr  : I<0x01, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src2),
3883                     "lock\n\t"
3884                     "add{w}\t{$src2, $dst|$dst, $src2}", []>, OpSize, LOCK;
3885 def LOCK_ADD32mr  : I<0x01, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src2),
3886                     "lock\n\t"
3887                     "add{l}\t{$src2, $dst|$dst, $src2}", []>, LOCK;
3888 def LOCK_ADD8mi   : Ii8<0x80, MRM0m, (outs), (ins i8mem :$dst, i8imm :$src2),
3889                     "lock\n\t"
3890                     "add{b}\t{$src2, $dst|$dst, $src2}", []>, LOCK;
3891 def LOCK_ADD16mi  : Ii16<0x81, MRM0m, (outs), (ins i16mem:$dst, i16imm:$src2),
3892                     "lock\n\t"
3893                      "add{w}\t{$src2, $dst|$dst, $src2}", []>, LOCK;
3894 def LOCK_ADD32mi  : Ii32<0x81, MRM0m, (outs), (ins i32mem:$dst, i32imm:$src2),
3895                     "lock\n\t"
3896                     "add{l}\t{$src2, $dst|$dst, $src2}", []>, LOCK;
3897 def LOCK_ADD16mi8 : Ii8<0x83, MRM0m, (outs), (ins i16mem:$dst, i16i8imm :$src2),
3898                     "lock\n\t"
3899                     "add{w}\t{$src2, $dst|$dst, $src2}", []>, OpSize, LOCK;
3900 def LOCK_ADD32mi8 : Ii8<0x83, MRM0m, (outs), (ins i32mem:$dst, i32i8imm :$src2),
3901                     "lock\n\t"
3902                     "add{l}\t{$src2, $dst|$dst, $src2}", []>, LOCK;
3903
3904 def LOCK_INC8m  : I<0xFE, MRM0m, (outs), (ins i8mem :$dst),
3905                     "lock\n\t"
3906                     "inc{b}\t$dst", []>, LOCK;
3907 def LOCK_INC16m : I<0xFF, MRM0m, (outs), (ins i16mem:$dst),
3908                     "lock\n\t"
3909                     "inc{w}\t$dst", []>, OpSize, LOCK;
3910 def LOCK_INC32m : I<0xFF, MRM0m, (outs), (ins i32mem:$dst),
3911                     "lock\n\t"
3912                     "inc{l}\t$dst", []>, LOCK;
3913
3914 def LOCK_SUB8mr   : I<0x28, MRMDestMem, (outs), (ins i8mem :$dst, GR8 :$src2),
3915                     "lock\n\t"
3916                     "sub{b}\t{$src2, $dst|$dst, $src2}", []>, LOCK;
3917 def LOCK_SUB16mr  : I<0x29, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src2),
3918                     "lock\n\t"
3919                     "sub{w}\t{$src2, $dst|$dst, $src2}", []>, OpSize, LOCK;
3920 def LOCK_SUB32mr  : I<0x29, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src2), 
3921                     "lock\n\t"
3922                     "sub{l}\t{$src2, $dst|$dst, $src2}", []>, LOCK;
3923 def LOCK_SUB8mi   : Ii8<0x80, MRM5m, (outs), (ins i8mem :$dst, i8imm:$src2), 
3924                     "lock\n\t"
3925                     "sub{b}\t{$src2, $dst|$dst, $src2}", []>, LOCK;
3926 def LOCK_SUB16mi  : Ii16<0x81, MRM5m, (outs), (ins i16mem:$dst, i16imm:$src2), 
3927                     "lock\n\t"
3928                     "sub{w}\t{$src2, $dst|$dst, $src2}", []>, OpSize, LOCK;
3929 def LOCK_SUB32mi  : Ii32<0x81, MRM5m, (outs), (ins i32mem:$dst, i32imm:$src2), 
3930                     "lock\n\t"
3931                      "sub{l}\t{$src2, $dst|$dst, $src2}", []>, LOCK;
3932 def LOCK_SUB16mi8 : Ii8<0x83, MRM5m, (outs), (ins i16mem:$dst, i16i8imm :$src2),
3933                     "lock\n\t"
3934                      "sub{w}\t{$src2, $dst|$dst, $src2}", []>, OpSize, LOCK;
3935 def LOCK_SUB32mi8 : Ii8<0x83, MRM5m, (outs), (ins i32mem:$dst, i32i8imm :$src2),
3936                     "lock\n\t"
3937                      "sub{l}\t{$src2, $dst|$dst, $src2}", []>, LOCK;
3938
3939 def LOCK_DEC8m  : I<0xFE, MRM1m, (outs), (ins i8mem :$dst),
3940                     "lock\n\t"
3941                     "dec{b}\t$dst", []>, LOCK;
3942 def LOCK_DEC16m : I<0xFF, MRM1m, (outs), (ins i16mem:$dst),
3943                     "lock\n\t"
3944                     "dec{w}\t$dst", []>, OpSize, LOCK;
3945 def LOCK_DEC32m : I<0xFF, MRM1m, (outs), (ins i32mem:$dst),
3946                     "lock\n\t"
3947                     "dec{l}\t$dst", []>, LOCK;
3948 }
3949
3950 // Atomic exchange, and, or, xor
3951 let Constraints = "$val = $dst", Defs = [EFLAGS],
3952                   usesCustomInserter = 1 in {
3953 def ATOMAND32 : I<0, Pseudo, (outs GR32:$dst),(ins i32mem:$ptr, GR32:$val),
3954                "#ATOMAND32 PSEUDO!", 
3955                [(set GR32:$dst, (atomic_load_and_32 addr:$ptr, GR32:$val))]>;
3956 def ATOMOR32 : I<0, Pseudo, (outs GR32:$dst),(ins i32mem:$ptr, GR32:$val),
3957                "#ATOMOR32 PSEUDO!", 
3958                [(set GR32:$dst, (atomic_load_or_32 addr:$ptr, GR32:$val))]>;
3959 def ATOMXOR32 : I<0, Pseudo,(outs GR32:$dst),(ins i32mem:$ptr, GR32:$val),
3960                "#ATOMXOR32 PSEUDO!", 
3961                [(set GR32:$dst, (atomic_load_xor_32 addr:$ptr, GR32:$val))]>;
3962 def ATOMNAND32 : I<0, Pseudo,(outs GR32:$dst),(ins i32mem:$ptr, GR32:$val),
3963                "#ATOMNAND32 PSEUDO!", 
3964                [(set GR32:$dst, (atomic_load_nand_32 addr:$ptr, GR32:$val))]>;
3965 def ATOMMIN32: I<0, Pseudo, (outs GR32:$dst), (ins i32mem:$ptr, GR32:$val),
3966                "#ATOMMIN32 PSEUDO!", 
3967                [(set GR32:$dst, (atomic_load_min_32 addr:$ptr, GR32:$val))]>;
3968 def ATOMMAX32: I<0, Pseudo, (outs GR32:$dst),(ins i32mem:$ptr, GR32:$val),
3969                "#ATOMMAX32 PSEUDO!", 
3970                [(set GR32:$dst, (atomic_load_max_32 addr:$ptr, GR32:$val))]>;
3971 def ATOMUMIN32: I<0, Pseudo, (outs GR32:$dst),(ins i32mem:$ptr, GR32:$val),
3972                "#ATOMUMIN32 PSEUDO!", 
3973                [(set GR32:$dst, (atomic_load_umin_32 addr:$ptr, GR32:$val))]>;
3974 def ATOMUMAX32: I<0, Pseudo, (outs GR32:$dst),(ins i32mem:$ptr, GR32:$val),
3975                "#ATOMUMAX32 PSEUDO!", 
3976                [(set GR32:$dst, (atomic_load_umax_32 addr:$ptr, GR32:$val))]>;
3977
3978 def ATOMAND16 : I<0, Pseudo, (outs GR16:$dst),(ins i16mem:$ptr, GR16:$val),
3979                "#ATOMAND16 PSEUDO!", 
3980                [(set GR16:$dst, (atomic_load_and_16 addr:$ptr, GR16:$val))]>;
3981 def ATOMOR16 : I<0, Pseudo, (outs GR16:$dst),(ins i16mem:$ptr, GR16:$val),
3982                "#ATOMOR16 PSEUDO!", 
3983                [(set GR16:$dst, (atomic_load_or_16 addr:$ptr, GR16:$val))]>;
3984 def ATOMXOR16 : I<0, Pseudo,(outs GR16:$dst),(ins i16mem:$ptr, GR16:$val),
3985                "#ATOMXOR16 PSEUDO!", 
3986                [(set GR16:$dst, (atomic_load_xor_16 addr:$ptr, GR16:$val))]>;
3987 def ATOMNAND16 : I<0, Pseudo,(outs GR16:$dst),(ins i16mem:$ptr, GR16:$val),
3988                "#ATOMNAND16 PSEUDO!", 
3989                [(set GR16:$dst, (atomic_load_nand_16 addr:$ptr, GR16:$val))]>;
3990 def ATOMMIN16: I<0, Pseudo, (outs GR16:$dst), (ins i16mem:$ptr, GR16:$val),
3991                "#ATOMMIN16 PSEUDO!", 
3992                [(set GR16:$dst, (atomic_load_min_16 addr:$ptr, GR16:$val))]>;
3993 def ATOMMAX16: I<0, Pseudo, (outs GR16:$dst),(ins i16mem:$ptr, GR16:$val),
3994                "#ATOMMAX16 PSEUDO!", 
3995                [(set GR16:$dst, (atomic_load_max_16 addr:$ptr, GR16:$val))]>;
3996 def ATOMUMIN16: I<0, Pseudo, (outs GR16:$dst),(ins i16mem:$ptr, GR16:$val),
3997                "#ATOMUMIN16 PSEUDO!", 
3998                [(set GR16:$dst, (atomic_load_umin_16 addr:$ptr, GR16:$val))]>;
3999 def ATOMUMAX16: I<0, Pseudo, (outs GR16:$dst),(ins i16mem:$ptr, GR16:$val),
4000                "#ATOMUMAX16 PSEUDO!", 
4001                [(set GR16:$dst, (atomic_load_umax_16 addr:$ptr, GR16:$val))]>;
4002
4003 def ATOMAND8 : I<0, Pseudo, (outs GR8:$dst),(ins i8mem:$ptr, GR8:$val),
4004                "#ATOMAND8 PSEUDO!", 
4005                [(set GR8:$dst, (atomic_load_and_8 addr:$ptr, GR8:$val))]>;
4006 def ATOMOR8 : I<0, Pseudo, (outs GR8:$dst),(ins i8mem:$ptr, GR8:$val),
4007                "#ATOMOR8 PSEUDO!", 
4008                [(set GR8:$dst, (atomic_load_or_8 addr:$ptr, GR8:$val))]>;
4009 def ATOMXOR8 : I<0, Pseudo,(outs GR8:$dst),(ins i8mem:$ptr, GR8:$val),
4010                "#ATOMXOR8 PSEUDO!", 
4011                [(set GR8:$dst, (atomic_load_xor_8 addr:$ptr, GR8:$val))]>;
4012 def ATOMNAND8 : I<0, Pseudo,(outs GR8:$dst),(ins i8mem:$ptr, GR8:$val),
4013                "#ATOMNAND8 PSEUDO!", 
4014                [(set GR8:$dst, (atomic_load_nand_8 addr:$ptr, GR8:$val))]>;
4015 }
4016
4017 let Constraints = "$val1 = $dst1, $val2 = $dst2", 
4018                   Defs = [EFLAGS, EAX, EBX, ECX, EDX],
4019                   Uses = [EAX, EBX, ECX, EDX],
4020                   mayLoad = 1, mayStore = 1,
4021                   usesCustomInserter = 1 in {
4022 def ATOMAND6432 : I<0, Pseudo, (outs GR32:$dst1, GR32:$dst2),
4023                                (ins i64mem:$ptr, GR32:$val1, GR32:$val2),
4024                "#ATOMAND6432 PSEUDO!", []>;
4025 def ATOMOR6432 : I<0, Pseudo, (outs GR32:$dst1, GR32:$dst2),
4026                                (ins i64mem:$ptr, GR32:$val1, GR32:$val2),
4027                "#ATOMOR6432 PSEUDO!", []>;
4028 def ATOMXOR6432 : I<0, Pseudo, (outs GR32:$dst1, GR32:$dst2),
4029                                (ins i64mem:$ptr, GR32:$val1, GR32:$val2),
4030                "#ATOMXOR6432 PSEUDO!", []>;
4031 def ATOMNAND6432 : I<0, Pseudo, (outs GR32:$dst1, GR32:$dst2),
4032                                (ins i64mem:$ptr, GR32:$val1, GR32:$val2),
4033                "#ATOMNAND6432 PSEUDO!", []>;
4034 def ATOMADD6432 : I<0, Pseudo, (outs GR32:$dst1, GR32:$dst2),
4035                                (ins i64mem:$ptr, GR32:$val1, GR32:$val2),
4036                "#ATOMADD6432 PSEUDO!", []>;
4037 def ATOMSUB6432 : I<0, Pseudo, (outs GR32:$dst1, GR32:$dst2),
4038                                (ins i64mem:$ptr, GR32:$val1, GR32:$val2),
4039                "#ATOMSUB6432 PSEUDO!", []>;
4040 def ATOMSWAP6432 : I<0, Pseudo, (outs GR32:$dst1, GR32:$dst2),
4041                                (ins i64mem:$ptr, GR32:$val1, GR32:$val2),
4042                "#ATOMSWAP6432 PSEUDO!", []>;
4043 }
4044
4045 // Segmentation support instructions.
4046
4047 def LAR16rm : I<0x02, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src), 
4048                 "lar{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
4049 def LAR16rr : I<0x02, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src),
4050                 "lar{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
4051
4052 // i16mem operand in LAR32rm and GR32 operand in LAR32rr is not a typo.
4053 def LAR32rm : I<0x02, MRMSrcMem, (outs GR32:$dst), (ins i16mem:$src), 
4054                 "lar{l}\t{$src, $dst|$dst, $src}", []>, TB;
4055 def LAR32rr : I<0x02, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
4056                 "lar{l}\t{$src, $dst|$dst, $src}", []>, TB;
4057
4058 def LSL16rm : I<0x03, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
4059                 "lsl{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize; 
4060 def LSL16rr : I<0x03, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src),
4061                 "lsl{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
4062 def LSL32rm : I<0x03, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
4063                 "lsl{l}\t{$src, $dst|$dst, $src}", []>, TB; 
4064 def LSL32rr : I<0x03, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
4065                 "lsl{l}\t{$src, $dst|$dst, $src}", []>, TB;
4066                 
4067 def INVLPG : I<0x01, MRM7m, (outs), (ins i8mem:$addr), "invlpg\t$addr", []>, TB;
4068
4069 def STRr : I<0x00, MRM1r, (outs GR16:$dst), (ins),
4070              "str{w}\t{$dst}", []>, TB;
4071 def STRm : I<0x00, MRM1m, (outs i16mem:$dst), (ins),
4072              "str{w}\t{$dst}", []>, TB;
4073 def LTRr : I<0x00, MRM3r, (outs), (ins GR16:$src),
4074              "ltr{w}\t{$src}", []>, TB;
4075 def LTRm : I<0x00, MRM3m, (outs), (ins i16mem:$src),
4076              "ltr{w}\t{$src}", []>, TB;
4077              
4078 def PUSHFS16 : I<0xa0, RawFrm, (outs), (ins),
4079                  "push{w}\t%fs", []>, OpSize, TB;
4080 def PUSHFS32 : I<0xa0, RawFrm, (outs), (ins),
4081                  "push{l}\t%fs", []>, TB;
4082 def PUSHGS16 : I<0xa8, RawFrm, (outs), (ins),
4083                  "push{w}\t%gs", []>, OpSize, TB;
4084 def PUSHGS32 : I<0xa8, RawFrm, (outs), (ins),
4085                  "push{l}\t%gs", []>, TB;
4086
4087 def POPFS16 : I<0xa1, RawFrm, (outs), (ins),
4088                 "pop{w}\t%fs", []>, OpSize, TB;
4089 def POPFS32 : I<0xa1, RawFrm, (outs), (ins),
4090                 "pop{l}\t%fs", []>, TB;
4091 def POPGS16 : I<0xa9, RawFrm, (outs), (ins),
4092                 "pop{w}\t%gs", []>, OpSize, TB;
4093 def POPGS32 : I<0xa9, RawFrm, (outs), (ins),
4094                 "pop{l}\t%gs", []>, TB;
4095
4096 def LDS16rm : I<0xc5, MRMSrcMem, (outs GR16:$dst), (ins opaque32mem:$src),
4097                 "lds{w}\t{$src, $dst|$dst, $src}", []>, OpSize;
4098 def LDS32rm : I<0xc5, MRMSrcMem, (outs GR32:$dst), (ins opaque48mem:$src),
4099                 "lds{l}\t{$src, $dst|$dst, $src}", []>;
4100 def LSS16rm : I<0xb2, MRMSrcMem, (outs GR16:$dst), (ins opaque32mem:$src),
4101                 "lss{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
4102 def LSS32rm : I<0xb2, MRMSrcMem, (outs GR32:$dst), (ins opaque48mem:$src),
4103                 "lss{l}\t{$src, $dst|$dst, $src}", []>, TB;
4104 def LES16rm : I<0xc4, MRMSrcMem, (outs GR16:$dst), (ins opaque32mem:$src),
4105                 "les{w}\t{$src, $dst|$dst, $src}", []>, OpSize;
4106 def LES32rm : I<0xc4, MRMSrcMem, (outs GR32:$dst), (ins opaque48mem:$src),
4107                 "les{l}\t{$src, $dst|$dst, $src}", []>;
4108 def LFS16rm : I<0xb4, MRMSrcMem, (outs GR16:$dst), (ins opaque32mem:$src),
4109                 "lfs{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
4110 def LFS32rm : I<0xb4, MRMSrcMem, (outs GR32:$dst), (ins opaque48mem:$src),
4111                 "lfs{l}\t{$src, $dst|$dst, $src}", []>, TB;
4112 def LGS16rm : I<0xb5, MRMSrcMem, (outs GR16:$dst), (ins opaque32mem:$src),
4113                 "lgs{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
4114 def LGS32rm : I<0xb5, MRMSrcMem, (outs GR32:$dst), (ins opaque48mem:$src),
4115                 "lgs{l}\t{$src, $dst|$dst, $src}", []>, TB;
4116
4117 def VERRr : I<0x00, MRM4r, (outs), (ins GR16:$seg),
4118               "verr\t$seg", []>, TB;
4119 def VERRm : I<0x00, MRM4m, (outs), (ins i16mem:$seg),
4120               "verr\t$seg", []>, TB;
4121 def VERWr : I<0x00, MRM5r, (outs), (ins GR16:$seg),
4122               "verw\t$seg", []>, TB;
4123 def VERWm : I<0x00, MRM5m, (outs), (ins i16mem:$seg),
4124               "verw\t$seg", []>, TB;
4125
4126 // Descriptor-table support instructions
4127
4128 def SGDTm : I<0x01, MRM0m, (outs opaque48mem:$dst), (ins),
4129               "sgdt\t$dst", []>, TB;
4130 def SIDTm : I<0x01, MRM1m, (outs opaque48mem:$dst), (ins),
4131               "sidt\t$dst", []>, TB;
4132 def SLDT16r : I<0x00, MRM0r, (outs GR16:$dst), (ins),
4133                 "sldt{w}\t$dst", []>, TB;
4134 def SLDT16m : I<0x00, MRM0m, (outs i16mem:$dst), (ins),
4135                 "sldt{w}\t$dst", []>, TB;
4136 def LGDTm : I<0x01, MRM2m, (outs), (ins opaque48mem:$src),
4137               "lgdt\t$src", []>, TB;
4138 def LIDTm : I<0x01, MRM3m, (outs), (ins opaque48mem:$src),
4139               "lidt\t$src", []>, TB;
4140 def LLDT16r : I<0x00, MRM2r, (outs), (ins GR16:$src),
4141                 "lldt{w}\t$src", []>, TB;
4142 def LLDT16m : I<0x00, MRM2m, (outs), (ins i16mem:$src),
4143                 "lldt{w}\t$src", []>, TB;
4144                 
4145 // Lock instruction prefix
4146 def LOCK_PREFIX : I<0xF0, RawFrm, (outs),  (ins), "lock", []>;
4147
4148 // Repeat string operation instruction prefixes
4149 // These uses the DF flag in the EFLAGS register to inc or dec ECX
4150 let Defs = [ECX], Uses = [ECX,EFLAGS] in {
4151 // Repeat (used with INS, OUTS, MOVS, LODS and STOS)
4152 def REP_PREFIX : I<0xF3, RawFrm, (outs),  (ins), "rep", []>;
4153 // Repeat while not equal (used with CMPS and SCAS)
4154 def REPNE_PREFIX : I<0xF2, RawFrm, (outs),  (ins), "repne", []>;
4155 }
4156
4157 // Segment override instruction prefixes
4158 def CS_PREFIX : I<0x2E, RawFrm, (outs),  (ins), "cs", []>;
4159 def SS_PREFIX : I<0x36, RawFrm, (outs),  (ins), "ss", []>;
4160 def DS_PREFIX : I<0x3E, RawFrm, (outs),  (ins), "ds", []>;
4161 def ES_PREFIX : I<0x26, RawFrm, (outs),  (ins), "es", []>;
4162 def FS_PREFIX : I<0x64, RawFrm, (outs),  (ins), "fs", []>;
4163 def GS_PREFIX : I<0x65, RawFrm, (outs),  (ins), "gs", []>;
4164
4165 // String manipulation instructions
4166
4167 def LODSB : I<0xAC, RawFrm, (outs), (ins), "lodsb", []>;
4168 def LODSW : I<0xAD, RawFrm, (outs), (ins), "lodsw", []>, OpSize;
4169 def LODSD : I<0xAD, RawFrm, (outs), (ins), "lods{l|d}", []>;
4170
4171 def OUTSB : I<0x6E, RawFrm, (outs), (ins), "outsb", []>;
4172 def OUTSW : I<0x6F, RawFrm, (outs), (ins), "outsw", []>, OpSize;
4173 def OUTSD : I<0x6F, RawFrm, (outs), (ins), "outs{l|d}", []>;
4174
4175 // CPU flow control instructions
4176
4177 def HLT : I<0xF4, RawFrm, (outs), (ins), "hlt", []>;
4178 def RSM : I<0xAA, RawFrm, (outs), (ins), "rsm", []>, TB;
4179
4180 // FPU control instructions
4181
4182 def FNINIT : I<0xE3, RawFrm, (outs), (ins), "fninit", []>, DB;
4183
4184 // Flag instructions
4185
4186 def CLC : I<0xF8, RawFrm, (outs), (ins), "clc", []>;
4187 def STC : I<0xF9, RawFrm, (outs), (ins), "stc", []>;
4188 def CLI : I<0xFA, RawFrm, (outs), (ins), "cli", []>;
4189 def STI : I<0xFB, RawFrm, (outs), (ins), "sti", []>;
4190 def CLD : I<0xFC, RawFrm, (outs), (ins), "cld", []>;
4191 def STD : I<0xFD, RawFrm, (outs), (ins), "std", []>;
4192 def CMC : I<0xF5, RawFrm, (outs), (ins), "cmc", []>;
4193
4194 def CLTS : I<0x06, RawFrm, (outs), (ins), "clts", []>, TB;
4195
4196 // Table lookup instructions
4197
4198 def XLAT : I<0xD7, RawFrm, (outs), (ins), "xlatb", []>;
4199
4200 // Specialized register support
4201
4202 def WRMSR : I<0x30, RawFrm, (outs), (ins), "wrmsr", []>, TB;
4203 def RDMSR : I<0x32, RawFrm, (outs), (ins), "rdmsr", []>, TB;
4204 def RDPMC : I<0x33, RawFrm, (outs), (ins), "rdpmc", []>, TB;
4205
4206 def SMSW16r : I<0x01, MRM4r, (outs GR16:$dst), (ins), 
4207                 "smsw{w}\t$dst", []>, OpSize, TB;
4208 def SMSW32r : I<0x01, MRM4r, (outs GR32:$dst), (ins), 
4209                 "smsw{l}\t$dst", []>, TB;
4210 // For memory operands, there is only a 16-bit form
4211 def SMSW16m : I<0x01, MRM4m, (outs i16mem:$dst), (ins),
4212                 "smsw{w}\t$dst", []>, TB;
4213
4214 def LMSW16r : I<0x01, MRM6r, (outs), (ins GR16:$src),
4215                 "lmsw{w}\t$src", []>, TB;
4216 def LMSW16m : I<0x01, MRM6m, (outs), (ins i16mem:$src),
4217                 "lmsw{w}\t$src", []>, TB;
4218                 
4219 def CPUID : I<0xA2, RawFrm, (outs), (ins), "cpuid", []>, TB;
4220
4221 // Cache instructions
4222
4223 def INVD : I<0x08, RawFrm, (outs), (ins), "invd", []>, TB;
4224 def WBINVD : I<0x09, RawFrm, (outs), (ins), "wbinvd", []>, TB;
4225
4226 // VMX instructions
4227
4228 // 66 0F 38 80
4229 def INVEPT : I<0x80, RawFrm, (outs), (ins), "invept", []>, OpSize, T8;
4230 // 66 0F 38 81
4231 def INVVPID : I<0x81, RawFrm, (outs), (ins), "invvpid", []>, OpSize, T8;
4232 // 0F 01 C1
4233 def VMCALL : I<0x01, MRM_C1, (outs), (ins), "vmcall", []>, TB;
4234 def VMCLEARm : I<0xC7, MRM6m, (outs), (ins i64mem:$vmcs),
4235   "vmclear\t$vmcs", []>, OpSize, TB;
4236 // 0F 01 C2
4237 def VMLAUNCH : I<0x01, MRM_C2, (outs), (ins), "vmlaunch", []>, TB;
4238 // 0F 01 C3
4239 def VMRESUME : I<0x01, MRM_C3, (outs), (ins), "vmresume", []>, TB;
4240 def VMPTRLDm : I<0xC7, MRM6m, (outs), (ins i64mem:$vmcs),
4241   "vmptrld\t$vmcs", []>, TB;
4242 def VMPTRSTm : I<0xC7, MRM7m, (outs i64mem:$vmcs), (ins),
4243   "vmptrst\t$vmcs", []>, TB;
4244 def VMREAD64rm : I<0x78, MRMDestMem, (outs i64mem:$dst), (ins GR64:$src),
4245   "vmread{q}\t{$src, $dst|$dst, $src}", []>, TB;
4246 def VMREAD64rr : I<0x78, MRMDestReg, (outs GR64:$dst), (ins GR64:$src),
4247   "vmread{q}\t{$src, $dst|$dst, $src}", []>, TB;
4248 def VMREAD32rm : I<0x78, MRMDestMem, (outs i32mem:$dst), (ins GR32:$src),
4249   "vmread{l}\t{$src, $dst|$dst, $src}", []>, TB;
4250 def VMREAD32rr : I<0x78, MRMDestReg, (outs GR32:$dst), (ins GR32:$src),
4251   "vmread{l}\t{$src, $dst|$dst, $src}", []>, TB;
4252 def VMWRITE64rm : I<0x79, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
4253   "vmwrite{q}\t{$src, $dst|$dst, $src}", []>, TB;
4254 def VMWRITE64rr : I<0x79, MRMSrcReg, (outs GR64:$dst), (ins GR64:$src),
4255   "vmwrite{q}\t{$src, $dst|$dst, $src}", []>, TB;
4256 def VMWRITE32rm : I<0x79, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
4257   "vmwrite{l}\t{$src, $dst|$dst, $src}", []>, TB;
4258 def VMWRITE32rr : I<0x79, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
4259   "vmwrite{l}\t{$src, $dst|$dst, $src}", []>, TB;
4260 // 0F 01 C4
4261 def VMXOFF : I<0x01, MRM_C4, (outs), (ins), "vmxoff", []>, TB;
4262 def VMXON : I<0xC7, MRM6m, (outs), (ins i64mem:$vmxon),
4263   "vmxon\t{$vmxon}", []>, XS;
4264
4265 //===----------------------------------------------------------------------===//
4266 // Non-Instruction Patterns
4267 //===----------------------------------------------------------------------===//
4268
4269 // ConstantPool GlobalAddress, ExternalSymbol, and JumpTable
4270 def : Pat<(i32 (X86Wrapper tconstpool  :$dst)), (MOV32ri tconstpool  :$dst)>;
4271 def : Pat<(i32 (X86Wrapper tjumptable  :$dst)), (MOV32ri tjumptable  :$dst)>;
4272 def : Pat<(i32 (X86Wrapper tglobaltlsaddr:$dst)),(MOV32ri tglobaltlsaddr:$dst)>;
4273 def : Pat<(i32 (X86Wrapper tglobaladdr :$dst)), (MOV32ri tglobaladdr :$dst)>;
4274 def : Pat<(i32 (X86Wrapper texternalsym:$dst)), (MOV32ri texternalsym:$dst)>;
4275 def : Pat<(i32 (X86Wrapper tblockaddress:$dst)), (MOV32ri tblockaddress:$dst)>;
4276
4277 def : Pat<(add GR32:$src1, (X86Wrapper tconstpool:$src2)),
4278           (ADD32ri GR32:$src1, tconstpool:$src2)>;
4279 def : Pat<(add GR32:$src1, (X86Wrapper tjumptable:$src2)),
4280           (ADD32ri GR32:$src1, tjumptable:$src2)>;
4281 def : Pat<(add GR32:$src1, (X86Wrapper tglobaladdr :$src2)),
4282           (ADD32ri GR32:$src1, tglobaladdr:$src2)>;
4283 def : Pat<(add GR32:$src1, (X86Wrapper texternalsym:$src2)),
4284           (ADD32ri GR32:$src1, texternalsym:$src2)>;
4285 def : Pat<(add GR32:$src1, (X86Wrapper tblockaddress:$src2)),
4286           (ADD32ri GR32:$src1, tblockaddress:$src2)>;
4287
4288 def : Pat<(store (i32 (X86Wrapper tglobaladdr:$src)), addr:$dst),
4289           (MOV32mi addr:$dst, tglobaladdr:$src)>;
4290 def : Pat<(store (i32 (X86Wrapper texternalsym:$src)), addr:$dst),
4291           (MOV32mi addr:$dst, texternalsym:$src)>;
4292 def : Pat<(store (i32 (X86Wrapper tblockaddress:$src)), addr:$dst),
4293           (MOV32mi addr:$dst, tblockaddress:$src)>;
4294
4295 // Calls
4296 // tailcall stuff
4297 def : Pat<(X86tcret GR32:$dst, imm:$off),
4298           (TCRETURNri GR32:$dst, imm:$off)>;
4299
4300 def : Pat<(X86tcret (i32 tglobaladdr:$dst), imm:$off),
4301           (TCRETURNdi texternalsym:$dst, imm:$off)>;
4302
4303 def : Pat<(X86tcret (i32 texternalsym:$dst), imm:$off),
4304           (TCRETURNdi texternalsym:$dst, imm:$off)>;
4305
4306 // Normal calls, with various flavors of addresses.
4307 def : Pat<(X86call (i32 tglobaladdr:$dst)),
4308           (CALLpcrel32 tglobaladdr:$dst)>;
4309 def : Pat<(X86call (i32 texternalsym:$dst)),
4310           (CALLpcrel32 texternalsym:$dst)>;
4311 def : Pat<(X86call (i32 imm:$dst)),
4312           (CALLpcrel32 imm:$dst)>, Requires<[CallImmAddr]>;
4313
4314 // X86 specific add which produces a flag.
4315 def : Pat<(addc GR32:$src1, GR32:$src2),
4316           (ADD32rr GR32:$src1, GR32:$src2)>;
4317 def : Pat<(addc GR32:$src1, (load addr:$src2)),
4318           (ADD32rm GR32:$src1, addr:$src2)>;
4319 def : Pat<(addc GR32:$src1, imm:$src2),
4320           (ADD32ri GR32:$src1, imm:$src2)>;
4321 def : Pat<(addc GR32:$src1, i32immSExt8:$src2),
4322           (ADD32ri8 GR32:$src1, i32immSExt8:$src2)>;
4323
4324 def : Pat<(subc GR32:$src1, GR32:$src2),
4325           (SUB32rr GR32:$src1, GR32:$src2)>;
4326 def : Pat<(subc GR32:$src1, (load addr:$src2)),
4327           (SUB32rm GR32:$src1, addr:$src2)>;
4328 def : Pat<(subc GR32:$src1, imm:$src2),
4329           (SUB32ri GR32:$src1, imm:$src2)>;
4330 def : Pat<(subc GR32:$src1, i32immSExt8:$src2),
4331           (SUB32ri8 GR32:$src1, i32immSExt8:$src2)>;
4332
4333 // Comparisons.
4334
4335 // TEST R,R is smaller than CMP R,0
4336 def : Pat<(parallel (X86cmp GR8:$src1, 0), (implicit EFLAGS)),
4337           (TEST8rr GR8:$src1, GR8:$src1)>;
4338 def : Pat<(parallel (X86cmp GR16:$src1, 0), (implicit EFLAGS)),
4339           (TEST16rr GR16:$src1, GR16:$src1)>;
4340 def : Pat<(parallel (X86cmp GR32:$src1, 0), (implicit EFLAGS)),
4341           (TEST32rr GR32:$src1, GR32:$src1)>;
4342
4343 // Conditional moves with folded loads with operands swapped and conditions
4344 // inverted.
4345 def : Pat<(X86cmov (loadi16 addr:$src1), GR16:$src2, X86_COND_B, EFLAGS),
4346           (CMOVAE16rm GR16:$src2, addr:$src1)>;
4347 def : Pat<(X86cmov (loadi32 addr:$src1), GR32:$src2, X86_COND_B, EFLAGS),
4348           (CMOVAE32rm GR32:$src2, addr:$src1)>;
4349 def : Pat<(X86cmov (loadi16 addr:$src1), GR16:$src2, X86_COND_AE, EFLAGS),
4350           (CMOVB16rm GR16:$src2, addr:$src1)>;
4351 def : Pat<(X86cmov (loadi32 addr:$src1), GR32:$src2, X86_COND_AE, EFLAGS),
4352           (CMOVB32rm GR32:$src2, addr:$src1)>;
4353 def : Pat<(X86cmov (loadi16 addr:$src1), GR16:$src2, X86_COND_E, EFLAGS),
4354           (CMOVNE16rm GR16:$src2, addr:$src1)>;
4355 def : Pat<(X86cmov (loadi32 addr:$src1), GR32:$src2, X86_COND_E, EFLAGS),
4356           (CMOVNE32rm GR32:$src2, addr:$src1)>;
4357 def : Pat<(X86cmov (loadi16 addr:$src1), GR16:$src2, X86_COND_NE, EFLAGS),
4358           (CMOVE16rm GR16:$src2, addr:$src1)>;
4359 def : Pat<(X86cmov (loadi32 addr:$src1), GR32:$src2, X86_COND_NE, EFLAGS),
4360           (CMOVE32rm GR32:$src2, addr:$src1)>;
4361 def : Pat<(X86cmov (loadi16 addr:$src1), GR16:$src2, X86_COND_BE, EFLAGS),
4362           (CMOVA16rm GR16:$src2, addr:$src1)>;
4363 def : Pat<(X86cmov (loadi32 addr:$src1), GR32:$src2, X86_COND_BE, EFLAGS),
4364           (CMOVA32rm GR32:$src2, addr:$src1)>;
4365 def : Pat<(X86cmov (loadi16 addr:$src1), GR16:$src2, X86_COND_A, EFLAGS),
4366           (CMOVBE16rm GR16:$src2, addr:$src1)>;
4367 def : Pat<(X86cmov (loadi32 addr:$src1), GR32:$src2, X86_COND_A, EFLAGS),
4368           (CMOVBE32rm GR32:$src2, addr:$src1)>;
4369 def : Pat<(X86cmov (loadi16 addr:$src1), GR16:$src2, X86_COND_L, EFLAGS),
4370           (CMOVGE16rm GR16:$src2, addr:$src1)>;
4371 def : Pat<(X86cmov (loadi32 addr:$src1), GR32:$src2, X86_COND_L, EFLAGS),
4372           (CMOVGE32rm GR32:$src2, addr:$src1)>;
4373 def : Pat<(X86cmov (loadi16 addr:$src1), GR16:$src2, X86_COND_GE, EFLAGS),
4374           (CMOVL16rm GR16:$src2, addr:$src1)>;
4375 def : Pat<(X86cmov (loadi32 addr:$src1), GR32:$src2, X86_COND_GE, EFLAGS),
4376           (CMOVL32rm GR32:$src2, addr:$src1)>;
4377 def : Pat<(X86cmov (loadi16 addr:$src1), GR16:$src2, X86_COND_LE, EFLAGS),
4378           (CMOVG16rm GR16:$src2, addr:$src1)>;
4379 def : Pat<(X86cmov (loadi32 addr:$src1), GR32:$src2, X86_COND_LE, EFLAGS),
4380           (CMOVG32rm GR32:$src2, addr:$src1)>;
4381 def : Pat<(X86cmov (loadi16 addr:$src1), GR16:$src2, X86_COND_G, EFLAGS),
4382           (CMOVLE16rm GR16:$src2, addr:$src1)>;
4383 def : Pat<(X86cmov (loadi32 addr:$src1), GR32:$src2, X86_COND_G, EFLAGS),
4384           (CMOVLE32rm GR32:$src2, addr:$src1)>;
4385 def : Pat<(X86cmov (loadi16 addr:$src1), GR16:$src2, X86_COND_P, EFLAGS),
4386           (CMOVNP16rm GR16:$src2, addr:$src1)>;
4387 def : Pat<(X86cmov (loadi32 addr:$src1), GR32:$src2, X86_COND_P, EFLAGS),
4388           (CMOVNP32rm GR32:$src2, addr:$src1)>;
4389 def : Pat<(X86cmov (loadi16 addr:$src1), GR16:$src2, X86_COND_NP, EFLAGS),
4390           (CMOVP16rm GR16:$src2, addr:$src1)>;
4391 def : Pat<(X86cmov (loadi32 addr:$src1), GR32:$src2, X86_COND_NP, EFLAGS),
4392           (CMOVP32rm GR32:$src2, addr:$src1)>;
4393 def : Pat<(X86cmov (loadi16 addr:$src1), GR16:$src2, X86_COND_S, EFLAGS),
4394           (CMOVNS16rm GR16:$src2, addr:$src1)>;
4395 def : Pat<(X86cmov (loadi32 addr:$src1), GR32:$src2, X86_COND_S, EFLAGS),
4396           (CMOVNS32rm GR32:$src2, addr:$src1)>;
4397 def : Pat<(X86cmov (loadi16 addr:$src1), GR16:$src2, X86_COND_NS, EFLAGS),
4398           (CMOVS16rm GR16:$src2, addr:$src1)>;
4399 def : Pat<(X86cmov (loadi32 addr:$src1), GR32:$src2, X86_COND_NS, EFLAGS),
4400           (CMOVS32rm GR32:$src2, addr:$src1)>;
4401 def : Pat<(X86cmov (loadi16 addr:$src1), GR16:$src2, X86_COND_O, EFLAGS),
4402           (CMOVNO16rm GR16:$src2, addr:$src1)>;
4403 def : Pat<(X86cmov (loadi32 addr:$src1), GR32:$src2, X86_COND_O, EFLAGS),
4404           (CMOVNO32rm GR32:$src2, addr:$src1)>;
4405 def : Pat<(X86cmov (loadi16 addr:$src1), GR16:$src2, X86_COND_NO, EFLAGS),
4406           (CMOVO16rm GR16:$src2, addr:$src1)>;
4407 def : Pat<(X86cmov (loadi32 addr:$src1), GR32:$src2, X86_COND_NO, EFLAGS),
4408           (CMOVO32rm GR32:$src2, addr:$src1)>;
4409
4410 // zextload bool -> zextload byte
4411 def : Pat<(zextloadi8i1  addr:$src), (MOV8rm     addr:$src)>;
4412 def : Pat<(zextloadi16i1 addr:$src), (MOVZX16rm8 addr:$src)>;
4413 def : Pat<(zextloadi32i1 addr:$src), (MOVZX32rm8 addr:$src)>;
4414
4415 // extload bool -> extload byte
4416 def : Pat<(extloadi8i1 addr:$src),   (MOV8rm      addr:$src)>;
4417 def : Pat<(extloadi16i1 addr:$src),  (MOVZX16rm8  addr:$src)>;
4418 def : Pat<(extloadi32i1 addr:$src),  (MOVZX32rm8  addr:$src)>;
4419 def : Pat<(extloadi16i8 addr:$src),  (MOVZX16rm8  addr:$src)>;
4420 def : Pat<(extloadi32i8 addr:$src),  (MOVZX32rm8  addr:$src)>;
4421 def : Pat<(extloadi32i16 addr:$src), (MOVZX32rm16 addr:$src)>;
4422
4423 // anyext. Define these to do an explicit zero-extend to
4424 // avoid partial-register updates.
4425 def : Pat<(i16 (anyext GR8 :$src)), (MOVZX16rr8  GR8 :$src)>;
4426 def : Pat<(i32 (anyext GR8 :$src)), (MOVZX32rr8  GR8 :$src)>;
4427 def : Pat<(i32 (anyext GR16:$src)), (MOVZX32rr16 GR16:$src)>;
4428
4429 //===----------------------------------------------------------------------===//
4430 // Some peepholes
4431 //===----------------------------------------------------------------------===//
4432
4433 // Odd encoding trick: -128 fits into an 8-bit immediate field while
4434 // +128 doesn't, so in this special case use a sub instead of an add.
4435 def : Pat<(add GR16:$src1, 128),
4436           (SUB16ri8 GR16:$src1, -128)>;
4437 def : Pat<(store (add (loadi16 addr:$dst), 128), addr:$dst),
4438           (SUB16mi8 addr:$dst, -128)>;
4439 def : Pat<(add GR32:$src1, 128),
4440           (SUB32ri8 GR32:$src1, -128)>;
4441 def : Pat<(store (add (loadi32 addr:$dst), 128), addr:$dst),
4442           (SUB32mi8 addr:$dst, -128)>;
4443
4444 // r & (2^16-1) ==> movz
4445 def : Pat<(and GR32:$src1, 0xffff),
4446           (MOVZX32rr16 (EXTRACT_SUBREG GR32:$src1, x86_subreg_16bit))>;
4447 // r & (2^8-1) ==> movz
4448 def : Pat<(and GR32:$src1, 0xff),
4449           (MOVZX32rr8 (EXTRACT_SUBREG (i32 (COPY_TO_REGCLASS GR32:$src1, 
4450                                                              GR32_ABCD)),
4451                                       x86_subreg_8bit))>,
4452       Requires<[In32BitMode]>;
4453 // r & (2^8-1) ==> movz
4454 def : Pat<(and GR16:$src1, 0xff),
4455           (MOVZX16rr8 (EXTRACT_SUBREG (i16 (COPY_TO_REGCLASS GR16:$src1, 
4456                                                              GR16_ABCD)),
4457                                       x86_subreg_8bit))>,
4458       Requires<[In32BitMode]>;
4459
4460 // sext_inreg patterns
4461 def : Pat<(sext_inreg GR32:$src, i16),
4462           (MOVSX32rr16 (EXTRACT_SUBREG GR32:$src, x86_subreg_16bit))>;
4463 def : Pat<(sext_inreg GR32:$src, i8),
4464           (MOVSX32rr8 (EXTRACT_SUBREG (i32 (COPY_TO_REGCLASS GR32:$src, 
4465                                                              GR32_ABCD)),
4466                                       x86_subreg_8bit))>,
4467       Requires<[In32BitMode]>;
4468 def : Pat<(sext_inreg GR16:$src, i8),
4469           (MOVSX16rr8 (EXTRACT_SUBREG (i16 (COPY_TO_REGCLASS GR16:$src, 
4470                                                              GR16_ABCD)),
4471                                       x86_subreg_8bit))>,
4472       Requires<[In32BitMode]>;
4473
4474 // trunc patterns
4475 def : Pat<(i16 (trunc GR32:$src)),
4476           (EXTRACT_SUBREG GR32:$src, x86_subreg_16bit)>;
4477 def : Pat<(i8 (trunc GR32:$src)),
4478           (EXTRACT_SUBREG (i32 (COPY_TO_REGCLASS GR32:$src, GR32_ABCD)),
4479                           x86_subreg_8bit)>,
4480       Requires<[In32BitMode]>;
4481 def : Pat<(i8 (trunc GR16:$src)),
4482           (EXTRACT_SUBREG (i16 (COPY_TO_REGCLASS GR16:$src, GR16_ABCD)),
4483                           x86_subreg_8bit)>,
4484       Requires<[In32BitMode]>;
4485
4486 // h-register tricks
4487 def : Pat<(i8 (trunc (srl_su GR16:$src, (i8 8)))),
4488           (EXTRACT_SUBREG (i32 (COPY_TO_REGCLASS GR16:$src, GR16_ABCD)),
4489                           x86_subreg_8bit_hi)>,
4490       Requires<[In32BitMode]>;
4491 def : Pat<(i8 (trunc (srl_su GR32:$src, (i8 8)))),
4492           (EXTRACT_SUBREG (i16 (COPY_TO_REGCLASS GR32:$src, GR32_ABCD)),
4493                           x86_subreg_8bit_hi)>,
4494       Requires<[In32BitMode]>;
4495 def : Pat<(srl GR16:$src, (i8 8)),
4496           (EXTRACT_SUBREG
4497             (MOVZX32rr8
4498               (EXTRACT_SUBREG (i16 (COPY_TO_REGCLASS GR16:$src, GR16_ABCD)),
4499                               x86_subreg_8bit_hi)),
4500             x86_subreg_16bit)>,
4501       Requires<[In32BitMode]>;
4502 def : Pat<(i32 (zext (srl_su GR16:$src, (i8 8)))),
4503           (MOVZX32rr8 (EXTRACT_SUBREG (i16 (COPY_TO_REGCLASS GR16:$src, 
4504                                                              GR16_ABCD)),
4505                                       x86_subreg_8bit_hi))>,
4506       Requires<[In32BitMode]>;
4507 def : Pat<(i32 (anyext (srl_su GR16:$src, (i8 8)))),
4508           (MOVZX32rr8 (EXTRACT_SUBREG (i16 (COPY_TO_REGCLASS GR16:$src, 
4509                                                              GR16_ABCD)),
4510                                       x86_subreg_8bit_hi))>,
4511       Requires<[In32BitMode]>;
4512 def : Pat<(and (srl_su GR32:$src, (i8 8)), (i32 255)),
4513           (MOVZX32rr8 (EXTRACT_SUBREG (i32 (COPY_TO_REGCLASS GR32:$src, 
4514                                                              GR32_ABCD)),
4515                                       x86_subreg_8bit_hi))>,
4516       Requires<[In32BitMode]>;
4517
4518 // (shl x, 1) ==> (add x, x)
4519 def : Pat<(shl GR8 :$src1, (i8 1)), (ADD8rr  GR8 :$src1, GR8 :$src1)>;
4520 def : Pat<(shl GR16:$src1, (i8 1)), (ADD16rr GR16:$src1, GR16:$src1)>;
4521 def : Pat<(shl GR32:$src1, (i8 1)), (ADD32rr GR32:$src1, GR32:$src1)>;
4522
4523 // (shl x (and y, 31)) ==> (shl x, y)
4524 def : Pat<(shl GR8:$src1, (and CL, 31)),
4525           (SHL8rCL GR8:$src1)>;
4526 def : Pat<(shl GR16:$src1, (and CL, 31)),
4527           (SHL16rCL GR16:$src1)>;
4528 def : Pat<(shl GR32:$src1, (and CL, 31)),
4529           (SHL32rCL GR32:$src1)>;
4530 def : Pat<(store (shl (loadi8 addr:$dst), (and CL, 31)), addr:$dst),
4531           (SHL8mCL addr:$dst)>;
4532 def : Pat<(store (shl (loadi16 addr:$dst), (and CL, 31)), addr:$dst),
4533           (SHL16mCL addr:$dst)>;
4534 def : Pat<(store (shl (loadi32 addr:$dst), (and CL, 31)), addr:$dst),
4535           (SHL32mCL addr:$dst)>;
4536
4537 def : Pat<(srl GR8:$src1, (and CL, 31)),
4538           (SHR8rCL GR8:$src1)>;
4539 def : Pat<(srl GR16:$src1, (and CL, 31)),
4540           (SHR16rCL GR16:$src1)>;
4541 def : Pat<(srl GR32:$src1, (and CL, 31)),
4542           (SHR32rCL GR32:$src1)>;
4543 def : Pat<(store (srl (loadi8 addr:$dst), (and CL, 31)), addr:$dst),
4544           (SHR8mCL addr:$dst)>;
4545 def : Pat<(store (srl (loadi16 addr:$dst), (and CL, 31)), addr:$dst),
4546           (SHR16mCL addr:$dst)>;
4547 def : Pat<(store (srl (loadi32 addr:$dst), (and CL, 31)), addr:$dst),
4548           (SHR32mCL addr:$dst)>;
4549
4550 def : Pat<(sra GR8:$src1, (and CL, 31)),
4551           (SAR8rCL GR8:$src1)>;
4552 def : Pat<(sra GR16:$src1, (and CL, 31)),
4553           (SAR16rCL GR16:$src1)>;
4554 def : Pat<(sra GR32:$src1, (and CL, 31)),
4555           (SAR32rCL GR32:$src1)>;
4556 def : Pat<(store (sra (loadi8 addr:$dst), (and CL, 31)), addr:$dst),
4557           (SAR8mCL addr:$dst)>;
4558 def : Pat<(store (sra (loadi16 addr:$dst), (and CL, 31)), addr:$dst),
4559           (SAR16mCL addr:$dst)>;
4560 def : Pat<(store (sra (loadi32 addr:$dst), (and CL, 31)), addr:$dst),
4561           (SAR32mCL addr:$dst)>;
4562
4563 // (or (x >> c) | (y << (32 - c))) ==> (shrd32 x, y, c)
4564 def : Pat<(or (srl GR32:$src1, CL:$amt),
4565               (shl GR32:$src2, (sub 32, CL:$amt))),
4566           (SHRD32rrCL GR32:$src1, GR32:$src2)>;
4567
4568 def : Pat<(store (or (srl (loadi32 addr:$dst), CL:$amt),
4569                      (shl GR32:$src2, (sub 32, CL:$amt))), addr:$dst),
4570           (SHRD32mrCL addr:$dst, GR32:$src2)>;
4571
4572 def : Pat<(or (srl GR32:$src1, (i8 (trunc ECX:$amt))),
4573               (shl GR32:$src2, (i8 (trunc (sub 32, ECX:$amt))))),
4574           (SHRD32rrCL GR32:$src1, GR32:$src2)>;
4575
4576 def : Pat<(store (or (srl (loadi32 addr:$dst), (i8 (trunc ECX:$amt))),
4577                      (shl GR32:$src2, (i8 (trunc (sub 32, ECX:$amt))))),
4578                  addr:$dst),
4579           (SHRD32mrCL addr:$dst, GR32:$src2)>;
4580
4581 def : Pat<(shrd GR32:$src1, (i8 imm:$amt1), GR32:$src2, (i8 imm/*:$amt2*/)),
4582           (SHRD32rri8 GR32:$src1, GR32:$src2, (i8 imm:$amt1))>;
4583
4584 def : Pat<(store (shrd (loadi32 addr:$dst), (i8 imm:$amt1),
4585                        GR32:$src2, (i8 imm/*:$amt2*/)), addr:$dst),
4586           (SHRD32mri8 addr:$dst, GR32:$src2, (i8 imm:$amt1))>;
4587
4588 // (or (x << c) | (y >> (32 - c))) ==> (shld32 x, y, c)
4589 def : Pat<(or (shl GR32:$src1, CL:$amt),
4590               (srl GR32:$src2, (sub 32, CL:$amt))),
4591           (SHLD32rrCL GR32:$src1, GR32:$src2)>;
4592
4593 def : Pat<(store (or (shl (loadi32 addr:$dst), CL:$amt),
4594                      (srl GR32:$src2, (sub 32, CL:$amt))), addr:$dst),
4595           (SHLD32mrCL addr:$dst, GR32:$src2)>;
4596
4597 def : Pat<(or (shl GR32:$src1, (i8 (trunc ECX:$amt))),
4598               (srl GR32:$src2, (i8 (trunc (sub 32, ECX:$amt))))),
4599           (SHLD32rrCL GR32:$src1, GR32:$src2)>;
4600
4601 def : Pat<(store (or (shl (loadi32 addr:$dst), (i8 (trunc ECX:$amt))),
4602                      (srl GR32:$src2, (i8 (trunc (sub 32, ECX:$amt))))),
4603                  addr:$dst),
4604           (SHLD32mrCL addr:$dst, GR32:$src2)>;
4605
4606 def : Pat<(shld GR32:$src1, (i8 imm:$amt1), GR32:$src2, (i8 imm/*:$amt2*/)),
4607           (SHLD32rri8 GR32:$src1, GR32:$src2, (i8 imm:$amt1))>;
4608
4609 def : Pat<(store (shld (loadi32 addr:$dst), (i8 imm:$amt1),
4610                        GR32:$src2, (i8 imm/*:$amt2*/)), addr:$dst),
4611           (SHLD32mri8 addr:$dst, GR32:$src2, (i8 imm:$amt1))>;
4612
4613 // (or (x >> c) | (y << (16 - c))) ==> (shrd16 x, y, c)
4614 def : Pat<(or (srl GR16:$src1, CL:$amt),
4615               (shl GR16:$src2, (sub 16, CL:$amt))),
4616           (SHRD16rrCL GR16:$src1, GR16:$src2)>;
4617
4618 def : Pat<(store (or (srl (loadi16 addr:$dst), CL:$amt),
4619                      (shl GR16:$src2, (sub 16, CL:$amt))), addr:$dst),
4620           (SHRD16mrCL addr:$dst, GR16:$src2)>;
4621
4622 def : Pat<(or (srl GR16:$src1, (i8 (trunc CX:$amt))),
4623               (shl GR16:$src2, (i8 (trunc (sub 16, CX:$amt))))),
4624           (SHRD16rrCL GR16:$src1, GR16:$src2)>;
4625
4626 def : Pat<(store (or (srl (loadi16 addr:$dst), (i8 (trunc CX:$amt))),
4627                      (shl GR16:$src2, (i8 (trunc (sub 16, CX:$amt))))),
4628                  addr:$dst),
4629           (SHRD16mrCL addr:$dst, GR16:$src2)>;
4630
4631 def : Pat<(shrd GR16:$src1, (i8 imm:$amt1), GR16:$src2, (i8 imm/*:$amt2*/)),
4632           (SHRD16rri8 GR16:$src1, GR16:$src2, (i8 imm:$amt1))>;
4633
4634 def : Pat<(store (shrd (loadi16 addr:$dst), (i8 imm:$amt1),
4635                        GR16:$src2, (i8 imm/*:$amt2*/)), addr:$dst),
4636           (SHRD16mri8 addr:$dst, GR16:$src2, (i8 imm:$amt1))>;
4637
4638 // (or (x << c) | (y >> (16 - c))) ==> (shld16 x, y, c)
4639 def : Pat<(or (shl GR16:$src1, CL:$amt),
4640               (srl GR16:$src2, (sub 16, CL:$amt))),
4641           (SHLD16rrCL GR16:$src1, GR16:$src2)>;
4642
4643 def : Pat<(store (or (shl (loadi16 addr:$dst), CL:$amt),
4644                      (srl GR16:$src2, (sub 16, CL:$amt))), addr:$dst),
4645           (SHLD16mrCL addr:$dst, GR16:$src2)>;
4646
4647 def : Pat<(or (shl GR16:$src1, (i8 (trunc CX:$amt))),
4648               (srl GR16:$src2, (i8 (trunc (sub 16, CX:$amt))))),
4649           (SHLD16rrCL GR16:$src1, GR16:$src2)>;
4650
4651 def : Pat<(store (or (shl (loadi16 addr:$dst), (i8 (trunc CX:$amt))),
4652                      (srl GR16:$src2, (i8 (trunc (sub 16, CX:$amt))))),
4653                  addr:$dst),
4654           (SHLD16mrCL addr:$dst, GR16:$src2)>;
4655
4656 def : Pat<(shld GR16:$src1, (i8 imm:$amt1), GR16:$src2, (i8 imm/*:$amt2*/)),
4657           (SHLD16rri8 GR16:$src1, GR16:$src2, (i8 imm:$amt1))>;
4658
4659 def : Pat<(store (shld (loadi16 addr:$dst), (i8 imm:$amt1),
4660                        GR16:$src2, (i8 imm/*:$amt2*/)), addr:$dst),
4661           (SHLD16mri8 addr:$dst, GR16:$src2, (i8 imm:$amt1))>;
4662
4663 // (anyext (setcc_carry)) -> (setcc_carry)
4664 def : Pat<(i16 (anyext (i8 (X86setcc_c X86_COND_B, EFLAGS)))),
4665           (SETB_C16r)>;
4666 def : Pat<(i32 (anyext (i8 (X86setcc_c X86_COND_B, EFLAGS)))),
4667           (SETB_C32r)>;
4668
4669 // (or x1, x2) -> (add x1, x2) if two operands are known not to share bits.
4670 let AddedComplexity = 5 in { // Try this before the selecting to OR
4671 def : Pat<(parallel (or_is_add GR16:$src1, imm:$src2),
4672                     (implicit EFLAGS)),
4673           (ADD16ri GR16:$src1, imm:$src2)>;
4674 def : Pat<(parallel (or_is_add GR32:$src1, imm:$src2),
4675                     (implicit EFLAGS)),
4676           (ADD32ri GR32:$src1, imm:$src2)>;
4677 def : Pat<(parallel (or_is_add GR16:$src1, i16immSExt8:$src2),
4678                     (implicit EFLAGS)),
4679           (ADD16ri8 GR16:$src1, i16immSExt8:$src2)>;
4680 def : Pat<(parallel (or_is_add GR32:$src1, i32immSExt8:$src2),
4681                     (implicit EFLAGS)),
4682           (ADD32ri8 GR32:$src1, i32immSExt8:$src2)>;
4683 def : Pat<(parallel (or_is_add GR16:$src1, GR16:$src2),
4684                     (implicit EFLAGS)),
4685           (ADD16rr GR16:$src1, GR16:$src2)>;
4686 def : Pat<(parallel (or_is_add GR32:$src1, GR32:$src2),
4687                     (implicit EFLAGS)),
4688           (ADD32rr GR32:$src1, GR32:$src2)>;
4689 } // AddedComplexity
4690
4691 //===----------------------------------------------------------------------===//
4692 // EFLAGS-defining Patterns
4693 //===----------------------------------------------------------------------===//
4694
4695 // Register-Register Addition with EFLAGS result
4696 def : Pat<(parallel (X86add_flag GR8:$src1, GR8:$src2),
4697                     (implicit EFLAGS)),
4698           (ADD8rr GR8:$src1, GR8:$src2)>;
4699 def : Pat<(parallel (X86add_flag GR16:$src1, GR16:$src2),
4700                     (implicit EFLAGS)),
4701           (ADD16rr GR16:$src1, GR16:$src2)>;
4702 def : Pat<(parallel (X86add_flag GR32:$src1, GR32:$src2),
4703                     (implicit EFLAGS)),
4704           (ADD32rr GR32:$src1, GR32:$src2)>;
4705
4706 // Register-Memory Addition with EFLAGS result
4707 def : Pat<(parallel (X86add_flag GR8:$src1, (loadi8 addr:$src2)),
4708                     (implicit EFLAGS)),
4709           (ADD8rm GR8:$src1, addr:$src2)>;
4710 def : Pat<(parallel (X86add_flag GR16:$src1, (loadi16 addr:$src2)),
4711                     (implicit EFLAGS)),
4712           (ADD16rm GR16:$src1, addr:$src2)>;
4713 def : Pat<(parallel (X86add_flag GR32:$src1, (loadi32 addr:$src2)),
4714                     (implicit EFLAGS)),
4715           (ADD32rm GR32:$src1, addr:$src2)>;
4716
4717 // Register-Integer Addition with EFLAGS result
4718 def : Pat<(parallel (X86add_flag GR8:$src1, imm:$src2),
4719                     (implicit EFLAGS)),
4720           (ADD8ri GR8:$src1, imm:$src2)>;
4721 def : Pat<(parallel (X86add_flag GR16:$src1, imm:$src2),
4722                     (implicit EFLAGS)),
4723           (ADD16ri GR16:$src1, imm:$src2)>;
4724 def : Pat<(parallel (X86add_flag GR32:$src1, imm:$src2),
4725                     (implicit EFLAGS)),
4726           (ADD32ri GR32:$src1, imm:$src2)>;
4727 def : Pat<(parallel (X86add_flag GR16:$src1, i16immSExt8:$src2),
4728                     (implicit EFLAGS)),
4729           (ADD16ri8 GR16:$src1, i16immSExt8:$src2)>;
4730 def : Pat<(parallel (X86add_flag GR32:$src1, i32immSExt8:$src2),
4731                     (implicit EFLAGS)),
4732           (ADD32ri8 GR32:$src1, i32immSExt8:$src2)>;
4733
4734 // Memory-Register Addition with EFLAGS result
4735 def : Pat<(parallel (store (X86add_flag (loadi8 addr:$dst), GR8:$src2),
4736                            addr:$dst),
4737                     (implicit EFLAGS)),
4738           (ADD8mr addr:$dst, GR8:$src2)>;
4739 def : Pat<(parallel (store (X86add_flag (loadi16 addr:$dst), GR16:$src2),
4740                            addr:$dst),
4741                     (implicit EFLAGS)),
4742           (ADD16mr addr:$dst, GR16:$src2)>;
4743 def : Pat<(parallel (store (X86add_flag (loadi32 addr:$dst), GR32:$src2),
4744                            addr:$dst),
4745                     (implicit EFLAGS)),
4746           (ADD32mr addr:$dst, GR32:$src2)>;
4747
4748 // Memory-Integer Addition with EFLAGS result
4749 def : Pat<(parallel (store (X86add_flag (loadi8 addr:$dst), imm:$src2),
4750                            addr:$dst),
4751                     (implicit EFLAGS)),
4752           (ADD8mi addr:$dst, imm:$src2)>;
4753 def : Pat<(parallel (store (X86add_flag (loadi16 addr:$dst), imm:$src2),
4754                            addr:$dst),
4755                     (implicit EFLAGS)),
4756           (ADD16mi addr:$dst, imm:$src2)>;
4757 def : Pat<(parallel (store (X86add_flag (loadi32 addr:$dst), imm:$src2),
4758                            addr:$dst),
4759                     (implicit EFLAGS)),
4760           (ADD32mi addr:$dst, imm:$src2)>;
4761 def : Pat<(parallel (store (X86add_flag (loadi16 addr:$dst), i16immSExt8:$src2),
4762                            addr:$dst),
4763                     (implicit EFLAGS)),
4764           (ADD16mi8 addr:$dst, i16immSExt8:$src2)>;
4765 def : Pat<(parallel (store (X86add_flag (loadi32 addr:$dst), i32immSExt8:$src2),
4766                            addr:$dst),
4767                     (implicit EFLAGS)),
4768           (ADD32mi8 addr:$dst, i32immSExt8:$src2)>;
4769
4770 // Register-Register Subtraction with EFLAGS result
4771 def : Pat<(parallel (X86sub_flag GR8:$src1, GR8:$src2),
4772                     (implicit EFLAGS)),
4773           (SUB8rr GR8:$src1, GR8:$src2)>;
4774 def : Pat<(parallel (X86sub_flag GR16:$src1, GR16:$src2),
4775                     (implicit EFLAGS)),
4776           (SUB16rr GR16:$src1, GR16:$src2)>;
4777 def : Pat<(parallel (X86sub_flag GR32:$src1, GR32:$src2),
4778                     (implicit EFLAGS)),
4779           (SUB32rr GR32:$src1, GR32:$src2)>;
4780
4781 // Register-Memory Subtraction with EFLAGS result
4782 def : Pat<(parallel (X86sub_flag GR8:$src1, (loadi8 addr:$src2)),
4783                     (implicit EFLAGS)),
4784           (SUB8rm GR8:$src1, addr:$src2)>;
4785 def : Pat<(parallel (X86sub_flag GR16:$src1, (loadi16 addr:$src2)),
4786                     (implicit EFLAGS)),
4787           (SUB16rm GR16:$src1, addr:$src2)>;
4788 def : Pat<(parallel (X86sub_flag GR32:$src1, (loadi32 addr:$src2)),
4789                     (implicit EFLAGS)),
4790           (SUB32rm GR32:$src1, addr:$src2)>;
4791
4792 // Register-Integer Subtraction with EFLAGS result
4793 def : Pat<(parallel (X86sub_flag GR8:$src1, imm:$src2),
4794                     (implicit EFLAGS)),
4795           (SUB8ri GR8:$src1, imm:$src2)>;
4796 def : Pat<(parallel (X86sub_flag GR16:$src1, imm:$src2),
4797                     (implicit EFLAGS)),
4798           (SUB16ri GR16:$src1, imm:$src2)>;
4799 def : Pat<(parallel (X86sub_flag GR32:$src1, imm:$src2),
4800                     (implicit EFLAGS)),
4801           (SUB32ri GR32:$src1, imm:$src2)>;
4802 def : Pat<(parallel (X86sub_flag GR16:$src1, i16immSExt8:$src2),
4803                     (implicit EFLAGS)),
4804           (SUB16ri8 GR16:$src1, i16immSExt8:$src2)>;
4805 def : Pat<(parallel (X86sub_flag GR32:$src1, i32immSExt8:$src2),
4806                     (implicit EFLAGS)),
4807           (SUB32ri8 GR32:$src1, i32immSExt8:$src2)>;
4808
4809 // Memory-Register Subtraction with EFLAGS result
4810 def : Pat<(parallel (store (X86sub_flag (loadi8 addr:$dst), GR8:$src2),
4811                            addr:$dst),
4812                     (implicit EFLAGS)),
4813           (SUB8mr addr:$dst, GR8:$src2)>;
4814 def : Pat<(parallel (store (X86sub_flag (loadi16 addr:$dst), GR16:$src2),
4815                            addr:$dst),
4816                     (implicit EFLAGS)),
4817           (SUB16mr addr:$dst, GR16:$src2)>;
4818 def : Pat<(parallel (store (X86sub_flag (loadi32 addr:$dst), GR32:$src2),
4819                            addr:$dst),
4820                     (implicit EFLAGS)),
4821           (SUB32mr addr:$dst, GR32:$src2)>;
4822
4823 // Memory-Integer Subtraction with EFLAGS result
4824 def : Pat<(parallel (store (X86sub_flag (loadi8 addr:$dst), imm:$src2),
4825                            addr:$dst),
4826                     (implicit EFLAGS)),
4827           (SUB8mi addr:$dst, imm:$src2)>;
4828 def : Pat<(parallel (store (X86sub_flag (loadi16 addr:$dst), imm:$src2),
4829                            addr:$dst),
4830                     (implicit EFLAGS)),
4831           (SUB16mi addr:$dst, imm:$src2)>;
4832 def : Pat<(parallel (store (X86sub_flag (loadi32 addr:$dst), imm:$src2),
4833                            addr:$dst),
4834                     (implicit EFLAGS)),
4835           (SUB32mi addr:$dst, imm:$src2)>;
4836 def : Pat<(parallel (store (X86sub_flag (loadi16 addr:$dst), i16immSExt8:$src2),
4837                            addr:$dst),
4838                     (implicit EFLAGS)),
4839           (SUB16mi8 addr:$dst, i16immSExt8:$src2)>;
4840 def : Pat<(parallel (store (X86sub_flag (loadi32 addr:$dst), i32immSExt8:$src2),
4841                            addr:$dst),
4842                     (implicit EFLAGS)),
4843           (SUB32mi8 addr:$dst, i32immSExt8:$src2)>;
4844
4845
4846 // Register-Register Signed Integer Multiply with EFLAGS result
4847 def : Pat<(parallel (X86smul_flag GR16:$src1, GR16:$src2),
4848                     (implicit EFLAGS)),
4849           (IMUL16rr GR16:$src1, GR16:$src2)>;
4850 def : Pat<(parallel (X86smul_flag GR32:$src1, GR32:$src2),
4851                     (implicit EFLAGS)),
4852           (IMUL32rr GR32:$src1, GR32:$src2)>;
4853
4854 // Register-Memory Signed Integer Multiply with EFLAGS result
4855 def : Pat<(parallel (X86smul_flag GR16:$src1, (loadi16 addr:$src2)),
4856                     (implicit EFLAGS)),
4857           (IMUL16rm GR16:$src1, addr:$src2)>;
4858 def : Pat<(parallel (X86smul_flag GR32:$src1, (loadi32 addr:$src2)),
4859                     (implicit EFLAGS)),
4860           (IMUL32rm GR32:$src1, addr:$src2)>;
4861
4862 // Register-Integer Signed Integer Multiply with EFLAGS result
4863 def : Pat<(parallel (X86smul_flag GR16:$src1, imm:$src2),
4864                     (implicit EFLAGS)),
4865           (IMUL16rri GR16:$src1, imm:$src2)>;
4866 def : Pat<(parallel (X86smul_flag GR32:$src1, imm:$src2),
4867                     (implicit EFLAGS)),
4868           (IMUL32rri GR32:$src1, imm:$src2)>;
4869 def : Pat<(parallel (X86smul_flag GR16:$src1, i16immSExt8:$src2),
4870                     (implicit EFLAGS)),
4871           (IMUL16rri8 GR16:$src1, i16immSExt8:$src2)>;
4872 def : Pat<(parallel (X86smul_flag GR32:$src1, i32immSExt8:$src2),
4873                     (implicit EFLAGS)),
4874           (IMUL32rri8 GR32:$src1, i32immSExt8:$src2)>;
4875
4876 // Memory-Integer Signed Integer Multiply with EFLAGS result
4877 def : Pat<(parallel (X86smul_flag (loadi16 addr:$src1), imm:$src2),
4878                     (implicit EFLAGS)),
4879           (IMUL16rmi addr:$src1, imm:$src2)>;
4880 def : Pat<(parallel (X86smul_flag (loadi32 addr:$src1), imm:$src2),
4881                     (implicit EFLAGS)),
4882           (IMUL32rmi addr:$src1, imm:$src2)>;
4883 def : Pat<(parallel (X86smul_flag (loadi16 addr:$src1), i16immSExt8:$src2),
4884                     (implicit EFLAGS)),
4885           (IMUL16rmi8 addr:$src1, i16immSExt8:$src2)>;
4886 def : Pat<(parallel (X86smul_flag (loadi32 addr:$src1), i32immSExt8:$src2),
4887                     (implicit EFLAGS)),
4888           (IMUL32rmi8 addr:$src1, i32immSExt8:$src2)>;
4889
4890 // Optimize multiply by 2 with EFLAGS result.
4891 let AddedComplexity = 2 in {
4892 def : Pat<(parallel (X86smul_flag GR16:$src1, 2),
4893                     (implicit EFLAGS)),
4894           (ADD16rr GR16:$src1, GR16:$src1)>;
4895
4896 def : Pat<(parallel (X86smul_flag GR32:$src1, 2),
4897                     (implicit EFLAGS)),
4898           (ADD32rr GR32:$src1, GR32:$src1)>;
4899 }
4900
4901 // INC and DEC with EFLAGS result. Note that these do not set CF.
4902 def : Pat<(parallel (X86inc_flag GR8:$src), (implicit EFLAGS)),
4903           (INC8r GR8:$src)>;
4904 def : Pat<(parallel (store (i8 (X86inc_flag (loadi8 addr:$dst))), addr:$dst),
4905                     (implicit EFLAGS)),
4906           (INC8m addr:$dst)>;
4907 def : Pat<(parallel (X86dec_flag GR8:$src), (implicit EFLAGS)),
4908           (DEC8r GR8:$src)>;
4909 def : Pat<(parallel (store (i8 (X86dec_flag (loadi8 addr:$dst))), addr:$dst),
4910                     (implicit EFLAGS)),
4911           (DEC8m addr:$dst)>;
4912
4913 def : Pat<(parallel (X86inc_flag GR16:$src), (implicit EFLAGS)),
4914           (INC16r GR16:$src)>, Requires<[In32BitMode]>;
4915 def : Pat<(parallel (store (i16 (X86inc_flag (loadi16 addr:$dst))), addr:$dst),
4916                     (implicit EFLAGS)),
4917           (INC16m addr:$dst)>, Requires<[In32BitMode]>;
4918 def : Pat<(parallel (X86dec_flag GR16:$src), (implicit EFLAGS)),
4919           (DEC16r GR16:$src)>, Requires<[In32BitMode]>;
4920 def : Pat<(parallel (store (i16 (X86dec_flag (loadi16 addr:$dst))), addr:$dst),
4921                     (implicit EFLAGS)),
4922           (DEC16m addr:$dst)>, Requires<[In32BitMode]>;
4923
4924 def : Pat<(parallel (X86inc_flag GR32:$src), (implicit EFLAGS)),
4925           (INC32r GR32:$src)>, Requires<[In32BitMode]>;
4926 def : Pat<(parallel (store (i32 (X86inc_flag (loadi32 addr:$dst))), addr:$dst),
4927                     (implicit EFLAGS)),
4928           (INC32m addr:$dst)>, Requires<[In32BitMode]>;
4929 def : Pat<(parallel (X86dec_flag GR32:$src), (implicit EFLAGS)),
4930           (DEC32r GR32:$src)>, Requires<[In32BitMode]>;
4931 def : Pat<(parallel (store (i32 (X86dec_flag (loadi32 addr:$dst))), addr:$dst),
4932                     (implicit EFLAGS)),
4933           (DEC32m addr:$dst)>, Requires<[In32BitMode]>;
4934
4935 // Register-Register Or with EFLAGS result
4936 def : Pat<(parallel (X86or_flag GR8:$src1, GR8:$src2),
4937                     (implicit EFLAGS)),
4938           (OR8rr GR8:$src1, GR8:$src2)>;
4939 def : Pat<(parallel (X86or_flag GR16:$src1, GR16:$src2),
4940                     (implicit EFLAGS)),
4941           (OR16rr GR16:$src1, GR16:$src2)>;
4942 def : Pat<(parallel (X86or_flag GR32:$src1, GR32:$src2),
4943                     (implicit EFLAGS)),
4944           (OR32rr GR32:$src1, GR32:$src2)>;
4945
4946 // Register-Memory Or with EFLAGS result
4947 def : Pat<(parallel (X86or_flag GR8:$src1, (loadi8 addr:$src2)),
4948                     (implicit EFLAGS)),
4949           (OR8rm GR8:$src1, addr:$src2)>;
4950 def : Pat<(parallel (X86or_flag GR16:$src1, (loadi16 addr:$src2)),
4951                     (implicit EFLAGS)),
4952           (OR16rm GR16:$src1, addr:$src2)>;
4953 def : Pat<(parallel (X86or_flag GR32:$src1, (loadi32 addr:$src2)),
4954                     (implicit EFLAGS)),
4955           (OR32rm GR32:$src1, addr:$src2)>;
4956
4957 // Register-Integer Or with EFLAGS result
4958 def : Pat<(parallel (X86or_flag GR8:$src1, imm:$src2),
4959                     (implicit EFLAGS)),
4960           (OR8ri GR8:$src1, imm:$src2)>;
4961 def : Pat<(parallel (X86or_flag GR16:$src1, imm:$src2),
4962                     (implicit EFLAGS)),
4963           (OR16ri GR16:$src1, imm:$src2)>;
4964 def : Pat<(parallel (X86or_flag GR32:$src1, imm:$src2),
4965                     (implicit EFLAGS)),
4966           (OR32ri GR32:$src1, imm:$src2)>;
4967 def : Pat<(parallel (X86or_flag GR16:$src1, i16immSExt8:$src2),
4968                     (implicit EFLAGS)),
4969           (OR16ri8 GR16:$src1, i16immSExt8:$src2)>;
4970 def : Pat<(parallel (X86or_flag GR32:$src1, i32immSExt8:$src2),
4971                     (implicit EFLAGS)),
4972           (OR32ri8 GR32:$src1, i32immSExt8:$src2)>;
4973
4974 // Memory-Register Or with EFLAGS result
4975 def : Pat<(parallel (store (X86or_flag (loadi8 addr:$dst), GR8:$src2),
4976                            addr:$dst),
4977                     (implicit EFLAGS)),
4978           (OR8mr addr:$dst, GR8:$src2)>;
4979 def : Pat<(parallel (store (X86or_flag (loadi16 addr:$dst), GR16:$src2),
4980                            addr:$dst),
4981                     (implicit EFLAGS)),
4982           (OR16mr addr:$dst, GR16:$src2)>;
4983 def : Pat<(parallel (store (X86or_flag (loadi32 addr:$dst), GR32:$src2),
4984                            addr:$dst),
4985                     (implicit EFLAGS)),
4986           (OR32mr addr:$dst, GR32:$src2)>;
4987
4988 // Memory-Integer Or with EFLAGS result
4989 def : Pat<(parallel (store (X86or_flag (loadi8 addr:$dst), imm:$src2),
4990                            addr:$dst),
4991                     (implicit EFLAGS)),
4992           (OR8mi addr:$dst, imm:$src2)>;
4993 def : Pat<(parallel (store (X86or_flag (loadi16 addr:$dst), imm:$src2),
4994                            addr:$dst),
4995                     (implicit EFLAGS)),
4996           (OR16mi addr:$dst, imm:$src2)>;
4997 def : Pat<(parallel (store (X86or_flag (loadi32 addr:$dst), imm:$src2),
4998                            addr:$dst),
4999                     (implicit EFLAGS)),
5000           (OR32mi addr:$dst, imm:$src2)>;
5001 def : Pat<(parallel (store (X86or_flag (loadi16 addr:$dst), i16immSExt8:$src2),
5002                            addr:$dst),
5003                     (implicit EFLAGS)),
5004           (OR16mi8 addr:$dst, i16immSExt8:$src2)>;
5005 def : Pat<(parallel (store (X86or_flag (loadi32 addr:$dst), i32immSExt8:$src2),
5006                            addr:$dst),
5007                     (implicit EFLAGS)),
5008           (OR32mi8 addr:$dst, i32immSExt8:$src2)>;
5009
5010 // Register-Register XOr with EFLAGS result
5011 def : Pat<(parallel (X86xor_flag GR8:$src1, GR8:$src2),
5012                     (implicit EFLAGS)),
5013           (XOR8rr GR8:$src1, GR8:$src2)>;
5014 def : Pat<(parallel (X86xor_flag GR16:$src1, GR16:$src2),
5015                     (implicit EFLAGS)),
5016           (XOR16rr GR16:$src1, GR16:$src2)>;
5017 def : Pat<(parallel (X86xor_flag GR32:$src1, GR32:$src2),
5018                     (implicit EFLAGS)),
5019           (XOR32rr GR32:$src1, GR32:$src2)>;
5020
5021 // Register-Memory XOr with EFLAGS result
5022 def : Pat<(parallel (X86xor_flag GR8:$src1, (loadi8 addr:$src2)),
5023                     (implicit EFLAGS)),
5024           (XOR8rm GR8:$src1, addr:$src2)>;
5025 def : Pat<(parallel (X86xor_flag GR16:$src1, (loadi16 addr:$src2)),
5026                     (implicit EFLAGS)),
5027           (XOR16rm GR16:$src1, addr:$src2)>;
5028 def : Pat<(parallel (X86xor_flag GR32:$src1, (loadi32 addr:$src2)),
5029                     (implicit EFLAGS)),
5030           (XOR32rm GR32:$src1, addr:$src2)>;
5031
5032 // Register-Integer XOr with EFLAGS result
5033 def : Pat<(parallel (X86xor_flag GR8:$src1, imm:$src2),
5034                     (implicit EFLAGS)),
5035           (XOR8ri GR8:$src1, imm:$src2)>;
5036 def : Pat<(parallel (X86xor_flag GR16:$src1, imm:$src2),
5037                     (implicit EFLAGS)),
5038           (XOR16ri GR16:$src1, imm:$src2)>;
5039 def : Pat<(parallel (X86xor_flag GR32:$src1, imm:$src2),
5040                     (implicit EFLAGS)),
5041           (XOR32ri GR32:$src1, imm:$src2)>;
5042 def : Pat<(parallel (X86xor_flag GR16:$src1, i16immSExt8:$src2),
5043                     (implicit EFLAGS)),
5044           (XOR16ri8 GR16:$src1, i16immSExt8:$src2)>;
5045 def : Pat<(parallel (X86xor_flag GR32:$src1, i32immSExt8:$src2),
5046                     (implicit EFLAGS)),
5047           (XOR32ri8 GR32:$src1, i32immSExt8:$src2)>;
5048
5049 // Memory-Register XOr with EFLAGS result
5050 def : Pat<(parallel (store (X86xor_flag (loadi8 addr:$dst), GR8:$src2),
5051                            addr:$dst),
5052                     (implicit EFLAGS)),
5053           (XOR8mr addr:$dst, GR8:$src2)>;
5054 def : Pat<(parallel (store (X86xor_flag (loadi16 addr:$dst), GR16:$src2),
5055                            addr:$dst),
5056                     (implicit EFLAGS)),
5057           (XOR16mr addr:$dst, GR16:$src2)>;
5058 def : Pat<(parallel (store (X86xor_flag (loadi32 addr:$dst), GR32:$src2),
5059                            addr:$dst),
5060                     (implicit EFLAGS)),
5061           (XOR32mr addr:$dst, GR32:$src2)>;
5062
5063 // Memory-Integer XOr with EFLAGS result
5064 def : Pat<(parallel (store (X86xor_flag (loadi8 addr:$dst), imm:$src2),
5065                            addr:$dst),
5066                     (implicit EFLAGS)),
5067           (XOR8mi addr:$dst, imm:$src2)>;
5068 def : Pat<(parallel (store (X86xor_flag (loadi16 addr:$dst), imm:$src2),
5069                            addr:$dst),
5070                     (implicit EFLAGS)),
5071           (XOR16mi addr:$dst, imm:$src2)>;
5072 def : Pat<(parallel (store (X86xor_flag (loadi32 addr:$dst), imm:$src2),
5073                            addr:$dst),
5074                     (implicit EFLAGS)),
5075           (XOR32mi addr:$dst, imm:$src2)>;
5076 def : Pat<(parallel (store (X86xor_flag (loadi16 addr:$dst), i16immSExt8:$src2),
5077                            addr:$dst),
5078                     (implicit EFLAGS)),
5079           (XOR16mi8 addr:$dst, i16immSExt8:$src2)>;
5080 def : Pat<(parallel (store (X86xor_flag (loadi32 addr:$dst), i32immSExt8:$src2),
5081                            addr:$dst),
5082                     (implicit EFLAGS)),
5083           (XOR32mi8 addr:$dst, i32immSExt8:$src2)>;
5084
5085 // Register-Register And with EFLAGS result
5086 def : Pat<(parallel (X86and_flag GR8:$src1, GR8:$src2),
5087                     (implicit EFLAGS)),
5088           (AND8rr GR8:$src1, GR8:$src2)>;
5089 def : Pat<(parallel (X86and_flag GR16:$src1, GR16:$src2),
5090                     (implicit EFLAGS)),
5091           (AND16rr GR16:$src1, GR16:$src2)>;
5092 def : Pat<(parallel (X86and_flag GR32:$src1, GR32:$src2),
5093                     (implicit EFLAGS)),
5094           (AND32rr GR32:$src1, GR32:$src2)>;
5095
5096 // Register-Memory And with EFLAGS result
5097 def : Pat<(parallel (X86and_flag GR8:$src1, (loadi8 addr:$src2)),
5098                     (implicit EFLAGS)),
5099           (AND8rm GR8:$src1, addr:$src2)>;
5100 def : Pat<(parallel (X86and_flag GR16:$src1, (loadi16 addr:$src2)),
5101                     (implicit EFLAGS)),
5102           (AND16rm GR16:$src1, addr:$src2)>;
5103 def : Pat<(parallel (X86and_flag GR32:$src1, (loadi32 addr:$src2)),
5104                     (implicit EFLAGS)),
5105           (AND32rm GR32:$src1, addr:$src2)>;
5106
5107 // Register-Integer And with EFLAGS result
5108 def : Pat<(parallel (X86and_flag GR8:$src1, imm:$src2),
5109                     (implicit EFLAGS)),
5110           (AND8ri GR8:$src1, imm:$src2)>;
5111 def : Pat<(parallel (X86and_flag GR16:$src1, imm:$src2),
5112                     (implicit EFLAGS)),
5113           (AND16ri GR16:$src1, imm:$src2)>;
5114 def : Pat<(parallel (X86and_flag GR32:$src1, imm:$src2),
5115                     (implicit EFLAGS)),
5116           (AND32ri GR32:$src1, imm:$src2)>;
5117 def : Pat<(parallel (X86and_flag GR16:$src1, i16immSExt8:$src2),
5118                     (implicit EFLAGS)),
5119           (AND16ri8 GR16:$src1, i16immSExt8:$src2)>;
5120 def : Pat<(parallel (X86and_flag GR32:$src1, i32immSExt8:$src2),
5121                     (implicit EFLAGS)),
5122           (AND32ri8 GR32:$src1, i32immSExt8:$src2)>;
5123
5124 // Memory-Register And with EFLAGS result
5125 def : Pat<(parallel (store (X86and_flag (loadi8 addr:$dst), GR8:$src2),
5126                            addr:$dst),
5127                     (implicit EFLAGS)),
5128           (AND8mr addr:$dst, GR8:$src2)>;
5129 def : Pat<(parallel (store (X86and_flag (loadi16 addr:$dst), GR16:$src2),
5130                            addr:$dst),
5131                     (implicit EFLAGS)),
5132           (AND16mr addr:$dst, GR16:$src2)>;
5133 def : Pat<(parallel (store (X86and_flag (loadi32 addr:$dst), GR32:$src2),
5134                            addr:$dst),
5135                     (implicit EFLAGS)),
5136           (AND32mr addr:$dst, GR32:$src2)>;
5137
5138 // Memory-Integer And with EFLAGS result
5139 def : Pat<(parallel (store (X86and_flag (loadi8 addr:$dst), imm:$src2),
5140                            addr:$dst),
5141                     (implicit EFLAGS)),
5142           (AND8mi addr:$dst, imm:$src2)>;
5143 def : Pat<(parallel (store (X86and_flag (loadi16 addr:$dst), imm:$src2),
5144                            addr:$dst),
5145                     (implicit EFLAGS)),
5146           (AND16mi addr:$dst, imm:$src2)>;
5147 def : Pat<(parallel (store (X86and_flag (loadi32 addr:$dst), imm:$src2),
5148                            addr:$dst),
5149                     (implicit EFLAGS)),
5150           (AND32mi addr:$dst, imm:$src2)>;
5151 def : Pat<(parallel (store (X86and_flag (loadi16 addr:$dst), i16immSExt8:$src2),
5152                            addr:$dst),
5153                     (implicit EFLAGS)),
5154           (AND16mi8 addr:$dst, i16immSExt8:$src2)>;
5155 def : Pat<(parallel (store (X86and_flag (loadi32 addr:$dst), i32immSExt8:$src2),
5156                            addr:$dst),
5157                     (implicit EFLAGS)),
5158           (AND32mi8 addr:$dst, i32immSExt8:$src2)>;
5159
5160 // -disable-16bit support.
5161 def : Pat<(truncstorei16 (i16 imm:$src), addr:$dst),
5162           (MOV16mi addr:$dst, imm:$src)>;
5163 def : Pat<(truncstorei16 GR32:$src, addr:$dst),
5164           (MOV16mr addr:$dst, (EXTRACT_SUBREG GR32:$src, x86_subreg_16bit))>;
5165 def : Pat<(i32 (sextloadi16 addr:$dst)),
5166           (MOVSX32rm16 addr:$dst)>;
5167 def : Pat<(i32 (zextloadi16 addr:$dst)),
5168           (MOVZX32rm16 addr:$dst)>;
5169 def : Pat<(i32 (extloadi16 addr:$dst)),
5170           (MOVZX32rm16 addr:$dst)>;
5171
5172 //===----------------------------------------------------------------------===//
5173 // Floating Point Stack Support
5174 //===----------------------------------------------------------------------===//
5175
5176 include "X86InstrFPStack.td"
5177
5178 //===----------------------------------------------------------------------===//
5179 // X86-64 Support
5180 //===----------------------------------------------------------------------===//
5181
5182 include "X86Instr64bit.td"
5183
5184 //===----------------------------------------------------------------------===//
5185 // SIMD support (SSE, MMX and AVX)
5186 //===----------------------------------------------------------------------===//
5187
5188 include "X86InstrFragmentsSIMD.td"
5189
5190 //===----------------------------------------------------------------------===//
5191 // XMM Floating point support (requires SSE / SSE2)
5192 //===----------------------------------------------------------------------===//
5193
5194 include "X86InstrSSE.td"
5195
5196 //===----------------------------------------------------------------------===//
5197 // MMX and XMM Packed Integer support (requires MMX, SSE, and SSE2)
5198 //===----------------------------------------------------------------------===//
5199
5200 include "X86InstrMMX.td"