Some Mips minor fixes
[oota-llvm.git] / lib / Target / X86 / X86InstrInfo.td
1 //===- X86InstrInfo.td - Describe the X86 Instruction Set --*- tablegen -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file describes the X86 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 def SDTX86BrCond  : SDTypeProfile<0, 3,
31                                   [SDTCisVT<0, OtherVT>,
32                                    SDTCisVT<1, i8>, SDTCisVT<2, i32>]>;
33
34 def SDTX86SetCC   : SDTypeProfile<1, 2,
35                                   [SDTCisVT<0, i8>,
36                                    SDTCisVT<1, i8>, SDTCisVT<2, i32>]>;
37
38 def SDTX86cas : SDTypeProfile<0, 3, [SDTCisPtrTy<0>, SDTCisInt<1>, 
39                                      SDTCisVT<2, i8>]>;
40 def SDTX86cas8 : SDTypeProfile<0, 1, [SDTCisPtrTy<0>]>;
41
42 def SDTX86Ret     : SDTypeProfile<0, -1, [SDTCisVT<0, i16>]>;
43
44 def SDT_X86CallSeqStart : SDCallSeqStart<[ SDTCisVT<0, i32> ]>;
45 def SDT_X86CallSeqEnd   : SDCallSeqEnd<[ SDTCisVT<0, i32>,
46                                          SDTCisVT<1, i32> ]>;
47
48 def SDT_X86Call   : SDTypeProfile<0, -1, [SDTCisVT<0, iPTR>]>;
49
50 def SDTX86RepStr  : SDTypeProfile<0, 1, [SDTCisVT<0, OtherVT>]>;
51
52 def SDTX86RdTsc   : SDTypeProfile<0, 0, []>;
53
54 def SDTX86Wrapper : SDTypeProfile<1, 1, [SDTCisSameAs<0, 1>, SDTCisPtrTy<0>]>;
55
56 def SDT_X86TLSADDR : SDTypeProfile<1, 1, [SDTCisPtrTy<0>, SDTCisInt<1>]>;
57
58 def SDT_X86TLSTP : SDTypeProfile<1, 0, [SDTCisPtrTy<0>]>;
59
60 def SDT_X86EHRET : SDTypeProfile<0, 1, [SDTCisInt<0>]>;
61
62 def SDT_X86TCRET : SDTypeProfile<0, 2, [SDTCisPtrTy<0>, SDTCisVT<1, i32>]>;
63
64 def X86bsf     : SDNode<"X86ISD::BSF",      SDTIntUnaryOp>;
65 def X86bsr     : SDNode<"X86ISD::BSR",      SDTIntUnaryOp>;
66 def X86shld    : SDNode<"X86ISD::SHLD",     SDTIntShiftDOp>;
67 def X86shrd    : SDNode<"X86ISD::SHRD",     SDTIntShiftDOp>;
68
69 def X86cmp     : SDNode<"X86ISD::CMP" ,     SDTX86CmpTest>;
70
71 def X86cmov    : SDNode<"X86ISD::CMOV",     SDTX86Cmov>;
72 def X86brcond  : SDNode<"X86ISD::BRCOND",   SDTX86BrCond,
73                         [SDNPHasChain]>;
74 def X86setcc   : SDNode<"X86ISD::SETCC",    SDTX86SetCC>;
75
76 def X86cas : SDNode<"X86ISD::LCMPXCHG_DAG", SDTX86cas,
77                         [SDNPHasChain, SDNPInFlag, SDNPOutFlag, SDNPMayStore,
78                          SDNPMayLoad]>;
79 def X86cas8 : SDNode<"X86ISD::LCMPXCHG8_DAG", SDTX86cas8,
80                         [SDNPHasChain, SDNPInFlag, SDNPOutFlag, SDNPMayStore,
81                          SDNPMayLoad]>;
82
83 def X86retflag : SDNode<"X86ISD::RET_FLAG", SDTX86Ret,
84                         [SDNPHasChain, SDNPOptInFlag]>;
85
86 def X86callseq_start :
87                  SDNode<"ISD::CALLSEQ_START", SDT_X86CallSeqStart,
88                         [SDNPHasChain, SDNPOutFlag]>;
89 def X86callseq_end :
90                  SDNode<"ISD::CALLSEQ_END",   SDT_X86CallSeqEnd,
91                         [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;       
92
93 def X86call    : SDNode<"X86ISD::CALL",     SDT_X86Call,
94                         [SDNPHasChain, SDNPOutFlag, SDNPOptInFlag]>;
95
96 def X86tailcall: SDNode<"X86ISD::TAILCALL",     SDT_X86Call,
97                         [SDNPHasChain, SDNPOutFlag, SDNPOptInFlag]>;
98
99 def X86rep_stos: SDNode<"X86ISD::REP_STOS", SDTX86RepStr,
100                         [SDNPHasChain, SDNPInFlag, SDNPOutFlag, SDNPMayStore]>;
101 def X86rep_movs: SDNode<"X86ISD::REP_MOVS", SDTX86RepStr,
102                         [SDNPHasChain, SDNPInFlag, SDNPOutFlag, SDNPMayStore,
103                          SDNPMayLoad]>;
104
105 def X86rdtsc   : SDNode<"X86ISD::RDTSC_DAG",SDTX86RdTsc,
106                         [SDNPHasChain, SDNPOutFlag, SDNPSideEffect]>;
107
108 def X86Wrapper    : SDNode<"X86ISD::Wrapper",     SDTX86Wrapper>;
109 def X86WrapperRIP : SDNode<"X86ISD::WrapperRIP",  SDTX86Wrapper>;
110
111 def X86tlsaddr : SDNode<"X86ISD::TLSADDR", SDT_X86TLSADDR,
112                         [SDNPHasChain, SDNPOptInFlag, SDNPOutFlag]>;
113 def X86TLStp : SDNode<"X86ISD::THREAD_POINTER", SDT_X86TLSTP, []>;
114
115 def X86ehret : SDNode<"X86ISD::EH_RETURN", SDT_X86EHRET,
116                         [SDNPHasChain]>;
117
118 def X86tcret : SDNode<"X86ISD::TC_RETURN", SDT_X86TCRET, 
119                         [SDNPHasChain,  SDNPOptInFlag]>;
120
121 //===----------------------------------------------------------------------===//
122 // X86 Operand Definitions.
123 //
124
125 // *mem - Operand definitions for the funky X86 addressing mode operands.
126 //
127 class X86MemOperand<string printMethod> : Operand<iPTR> {
128   let PrintMethod = printMethod;
129   let MIOperandInfo = (ops ptr_rc, i8imm, ptr_rc, i32imm);
130 }
131
132 def i8mem   : X86MemOperand<"printi8mem">;
133 def i16mem  : X86MemOperand<"printi16mem">;
134 def i32mem  : X86MemOperand<"printi32mem">;
135 def i64mem  : X86MemOperand<"printi64mem">;
136 def i128mem : X86MemOperand<"printi128mem">;
137 def f32mem  : X86MemOperand<"printf32mem">;
138 def f64mem  : X86MemOperand<"printf64mem">;
139 def f80mem  : X86MemOperand<"printf80mem">;
140 def f128mem : X86MemOperand<"printf128mem">;
141
142 def lea32mem : Operand<i32> {
143   let PrintMethod = "printi32mem";
144   let MIOperandInfo = (ops GR32, i8imm, GR32, i32imm);
145 }
146
147 def SSECC : Operand<i8> {
148   let PrintMethod = "printSSECC";
149 }
150
151 def piclabel: Operand<i32> {
152   let PrintMethod = "printPICLabel";
153 }
154
155 // A couple of more descriptive operand definitions.
156 // 16-bits but only 8 bits are significant.
157 def i16i8imm  : Operand<i16>;
158 // 32-bits but only 8 bits are significant.
159 def i32i8imm  : Operand<i32>;
160
161 // Branch targets have OtherVT type.
162 def brtarget : Operand<OtherVT>;
163
164 //===----------------------------------------------------------------------===//
165 // X86 Complex Pattern Definitions.
166 //
167
168 // Define X86 specific addressing mode.
169 def addr      : ComplexPattern<iPTR, 4, "SelectAddr", [], []>;
170 def lea32addr : ComplexPattern<i32, 4, "SelectLEAAddr",
171                                [add, mul, shl, or, frameindex], []>;
172
173 //===----------------------------------------------------------------------===//
174 // X86 Instruction Predicate Definitions.
175 def HasMMX       : Predicate<"Subtarget->hasMMX()">;
176 def HasSSE1      : Predicate<"Subtarget->hasSSE1()">;
177 def HasSSE2      : Predicate<"Subtarget->hasSSE2()">;
178 def HasSSE3      : Predicate<"Subtarget->hasSSE3()">;
179 def HasSSSE3     : Predicate<"Subtarget->hasSSSE3()">;
180 def HasSSE41     : Predicate<"Subtarget->hasSSE41()">;
181 def HasSSE42     : Predicate<"Subtarget->hasSSE42()">;
182 def FPStackf32   : Predicate<"!Subtarget->hasSSE1()">;
183 def FPStackf64   : Predicate<"!Subtarget->hasSSE2()">;
184 def In32BitMode  : Predicate<"!Subtarget->is64Bit()">;
185 def In64BitMode  : Predicate<"Subtarget->is64Bit()">;
186 def SmallCode    : Predicate<"TM.getCodeModel() == CodeModel::Small">;
187 def NotSmallCode : Predicate<"TM.getCodeModel() != CodeModel::Small">;
188 def IsStatic     : Predicate<"TM.getRelocationModel() == Reloc::Static">;
189
190 //===----------------------------------------------------------------------===//
191 // X86 Instruction Format Definitions.
192 //
193
194 include "X86InstrFormats.td"
195
196 //===----------------------------------------------------------------------===//
197 // Pattern fragments...
198 //
199
200 // X86 specific condition code. These correspond to CondCode in
201 // X86InstrInfo.h. They must be kept in synch.
202 def X86_COND_A   : PatLeaf<(i8 0)>;
203 def X86_COND_AE  : PatLeaf<(i8 1)>;
204 def X86_COND_B   : PatLeaf<(i8 2)>;
205 def X86_COND_BE  : PatLeaf<(i8 3)>;
206 def X86_COND_E   : PatLeaf<(i8 4)>;
207 def X86_COND_G   : PatLeaf<(i8 5)>;
208 def X86_COND_GE  : PatLeaf<(i8 6)>;
209 def X86_COND_L   : PatLeaf<(i8 7)>;
210 def X86_COND_LE  : PatLeaf<(i8 8)>;
211 def X86_COND_NE  : PatLeaf<(i8 9)>;
212 def X86_COND_NO  : PatLeaf<(i8 10)>;
213 def X86_COND_NP  : PatLeaf<(i8 11)>;
214 def X86_COND_NS  : PatLeaf<(i8 12)>;
215 def X86_COND_O   : PatLeaf<(i8 13)>;
216 def X86_COND_P   : PatLeaf<(i8 14)>;
217 def X86_COND_S   : PatLeaf<(i8 15)>;
218
219 def i16immSExt8  : PatLeaf<(i16 imm), [{
220   // i16immSExt8 predicate - True if the 16-bit immediate fits in a 8-bit
221   // sign extended field.
222   return (int16_t)N->getValue() == (int8_t)N->getValue();
223 }]>;
224
225 def i32immSExt8  : PatLeaf<(i32 imm), [{
226   // i32immSExt8 predicate - True if the 32-bit immediate fits in a 8-bit
227   // sign extended field.
228   return (int32_t)N->getValue() == (int8_t)N->getValue();
229 }]>;
230
231 // Helper fragments for loads.
232 // It's always safe to treat a anyext i16 load as a i32 load if the i16 is
233 // known to be 32-bit aligned or better. Ditto for i8 to i16.
234 def loadi16 : PatFrag<(ops node:$ptr), (i16 (ld node:$ptr)), [{
235   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
236     if (LD->getAddressingMode() != ISD::UNINDEXED)
237       return false;
238     ISD::LoadExtType ExtType = LD->getExtensionType();
239     if (ExtType == ISD::NON_EXTLOAD)
240       return true;
241     if (ExtType == ISD::EXTLOAD)
242       return LD->getAlignment() >= 2 && !LD->isVolatile();
243   }
244   return false;
245 }]>;
246
247 def loadi32 : PatFrag<(ops node:$ptr), (i32 (ld node:$ptr)), [{
248   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
249     if (LD->getAddressingMode() != ISD::UNINDEXED)
250       return false;
251     ISD::LoadExtType ExtType = LD->getExtensionType();
252     if (ExtType == ISD::NON_EXTLOAD)
253       return true;
254     if (ExtType == ISD::EXTLOAD)
255       return LD->getAlignment() >= 4 && !LD->isVolatile();
256   }
257   return false;
258 }]>;
259
260 def loadi8  : PatFrag<(ops node:$ptr), (i8  (load node:$ptr))>;
261 def loadi64 : PatFrag<(ops node:$ptr), (i64 (load node:$ptr))>;
262
263 def loadf32 : PatFrag<(ops node:$ptr), (f32 (load node:$ptr))>;
264 def loadf64 : PatFrag<(ops node:$ptr), (f64 (load node:$ptr))>;
265 def loadf80 : PatFrag<(ops node:$ptr), (f80 (load node:$ptr))>;
266
267 def sextloadi16i8  : PatFrag<(ops node:$ptr), (i16 (sextloadi8 node:$ptr))>;
268 def sextloadi32i8  : PatFrag<(ops node:$ptr), (i32 (sextloadi8 node:$ptr))>;
269 def sextloadi32i16 : PatFrag<(ops node:$ptr), (i32 (sextloadi16 node:$ptr))>;
270
271 def zextloadi8i1   : PatFrag<(ops node:$ptr), (i8  (zextloadi1 node:$ptr))>;
272 def zextloadi16i1  : PatFrag<(ops node:$ptr), (i16 (zextloadi1 node:$ptr))>;
273 def zextloadi32i1  : PatFrag<(ops node:$ptr), (i32 (zextloadi1 node:$ptr))>;
274 def zextloadi16i8  : PatFrag<(ops node:$ptr), (i16 (zextloadi8 node:$ptr))>;
275 def zextloadi32i8  : PatFrag<(ops node:$ptr), (i32 (zextloadi8 node:$ptr))>;
276 def zextloadi32i16 : PatFrag<(ops node:$ptr), (i32 (zextloadi16 node:$ptr))>;
277
278 def extloadi8i1    : PatFrag<(ops node:$ptr), (i8  (extloadi1 node:$ptr))>;
279 def extloadi16i1   : PatFrag<(ops node:$ptr), (i16 (extloadi1 node:$ptr))>;
280 def extloadi32i1   : PatFrag<(ops node:$ptr), (i32 (extloadi1 node:$ptr))>;
281 def extloadi16i8   : PatFrag<(ops node:$ptr), (i16 (extloadi8 node:$ptr))>;
282 def extloadi32i8   : PatFrag<(ops node:$ptr), (i32 (extloadi8 node:$ptr))>;
283 def extloadi32i16  : PatFrag<(ops node:$ptr), (i32 (extloadi16 node:$ptr))>;
284
285
286 // An 'and' node with a single use.
287 def and_su : PatFrag<(ops node:$lhs, node:$rhs), (and node:$lhs, node:$rhs), [{
288   return N->hasOneUse();
289 }]>;
290
291 //===----------------------------------------------------------------------===//
292 // Instruction list...
293 //
294
295 // ADJCALLSTACKDOWN/UP implicitly use/def ESP because they may be expanded into
296 // a stack adjustment and the codegen must know that they may modify the stack
297 // pointer before prolog-epilog rewriting occurs.
298 // Pessimistically assume ADJCALLSTACKDOWN / ADJCALLSTACKUP will become
299 // sub / add which can clobber EFLAGS.
300 let Defs = [ESP, EFLAGS], Uses = [ESP] in {
301 def ADJCALLSTACKDOWN : I<0, Pseudo, (outs), (ins i32imm:$amt),
302                          "#ADJCALLSTACKDOWN",
303                          [(X86callseq_start imm:$amt)]>;
304 def ADJCALLSTACKUP   : I<0, Pseudo, (outs), (ins i32imm:$amt1, i32imm:$amt2),
305                          "#ADJCALLSTACKUP",
306                          [(X86callseq_end imm:$amt1, imm:$amt2)]>;
307 }
308
309 // Nop
310 let neverHasSideEffects = 1 in
311   def NOOP : I<0x90, RawFrm, (outs), (ins), "nop", []>;
312
313 // PIC base
314 let neverHasSideEffects = 1, isNotDuplicable = 1 in
315   def MOVPC32r : Ii32<0xE8, Pseudo, (outs GR32:$reg), (ins piclabel:$label),
316                       "call\t$label\n\tpop{l}\t$reg", []>;
317
318 //===----------------------------------------------------------------------===//
319 //  Control Flow Instructions...
320 //
321
322 // Return instructions.
323 let isTerminator = 1, isReturn = 1, isBarrier = 1,
324     hasCtrlDep = 1, FPForm = SpecialFP, FPFormBits = SpecialFP.Value in {
325   def RET    : I   <0xC3, RawFrm, (outs), (ins variable_ops),
326                     "ret",
327                     [(X86retflag 0)]>;
328   def RETI   : Ii16<0xC2, RawFrm, (outs), (ins i16imm:$amt, variable_ops),
329                     "ret\t$amt",
330                     [(X86retflag imm:$amt)]>;
331 }
332
333 // All branches are RawFrm, Void, Branch, and Terminators
334 let isBranch = 1, isTerminator = 1 in
335   class IBr<bits<8> opcode, dag ins, string asm, list<dag> pattern> :
336         I<opcode, RawFrm, (outs), ins, asm, pattern>;
337
338 let isBranch = 1, isBarrier = 1 in
339   def JMP : IBr<0xE9, (ins brtarget:$dst), "jmp\t$dst", [(br bb:$dst)]>;
340
341 // Indirect branches
342 let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
343   def JMP32r     : I<0xFF, MRM4r, (outs), (ins GR32:$dst), "jmp{l}\t{*}$dst",
344                      [(brind GR32:$dst)]>;
345   def JMP32m     : I<0xFF, MRM4m, (outs), (ins i32mem:$dst), "jmp{l}\t{*}$dst",
346                      [(brind (loadi32 addr:$dst))]>;
347 }
348
349 // Conditional branches
350 let Uses = [EFLAGS] in {
351 def JE  : IBr<0x84, (ins brtarget:$dst), "je\t$dst",
352               [(X86brcond bb:$dst, X86_COND_E, EFLAGS)]>, TB;
353 def JNE : IBr<0x85, (ins brtarget:$dst), "jne\t$dst",
354               [(X86brcond bb:$dst, X86_COND_NE, EFLAGS)]>, TB;
355 def JL  : IBr<0x8C, (ins brtarget:$dst), "jl\t$dst",
356               [(X86brcond bb:$dst, X86_COND_L, EFLAGS)]>, TB;
357 def JLE : IBr<0x8E, (ins brtarget:$dst), "jle\t$dst",
358               [(X86brcond bb:$dst, X86_COND_LE, EFLAGS)]>, TB;
359 def JG  : IBr<0x8F, (ins brtarget:$dst), "jg\t$dst",
360               [(X86brcond bb:$dst, X86_COND_G, EFLAGS)]>, TB;
361 def JGE : IBr<0x8D, (ins brtarget:$dst), "jge\t$dst",
362               [(X86brcond bb:$dst, X86_COND_GE, EFLAGS)]>, TB;
363
364 def JB  : IBr<0x82, (ins brtarget:$dst), "jb\t$dst",
365               [(X86brcond bb:$dst, X86_COND_B, EFLAGS)]>, TB;
366 def JBE : IBr<0x86, (ins brtarget:$dst), "jbe\t$dst",
367               [(X86brcond bb:$dst, X86_COND_BE, EFLAGS)]>, TB;
368 def JA  : IBr<0x87, (ins brtarget:$dst), "ja\t$dst",
369               [(X86brcond bb:$dst, X86_COND_A, EFLAGS)]>, TB;
370 def JAE : IBr<0x83, (ins brtarget:$dst), "jae\t$dst",
371               [(X86brcond bb:$dst, X86_COND_AE, EFLAGS)]>, TB;
372
373 def JS  : IBr<0x88, (ins brtarget:$dst), "js\t$dst",
374               [(X86brcond bb:$dst, X86_COND_S, EFLAGS)]>, TB;
375 def JNS : IBr<0x89, (ins brtarget:$dst), "jns\t$dst",
376               [(X86brcond bb:$dst, X86_COND_NS, EFLAGS)]>, TB;
377 def JP  : IBr<0x8A, (ins brtarget:$dst), "jp\t$dst",
378               [(X86brcond bb:$dst, X86_COND_P, EFLAGS)]>, TB;
379 def JNP : IBr<0x8B, (ins brtarget:$dst), "jnp\t$dst",
380               [(X86brcond bb:$dst, X86_COND_NP, EFLAGS)]>, TB;
381 def JO  : IBr<0x80, (ins brtarget:$dst), "jo\t$dst",
382               [(X86brcond bb:$dst, X86_COND_O, EFLAGS)]>, TB;
383 def JNO : IBr<0x81, (ins brtarget:$dst), "jno\t$dst",
384               [(X86brcond bb:$dst, X86_COND_NO, EFLAGS)]>, TB;
385 } // Uses = [EFLAGS]
386
387 //===----------------------------------------------------------------------===//
388 //  Call Instructions...
389 //
390 let isCall = 1 in
391   // All calls clobber the non-callee saved registers...
392   let Defs = [EAX, ECX, EDX, FP0, FP1, FP2, FP3, FP4, FP5, FP6, ST0,
393               MM0, MM1, MM2, MM3, MM4, MM5, MM6, MM7,
394               XMM0, XMM1, XMM2, XMM3, XMM4, XMM5, XMM6, XMM7, EFLAGS] in {
395     def CALLpcrel32 : Ii32<0xE8, RawFrm, (outs), (ins i32imm:$dst,variable_ops),
396                            "call\t${dst:call}", []>;
397     def CALL32r     : I<0xFF, MRM2r, (outs), (ins GR32:$dst, variable_ops),
398                         "call\t{*}$dst", [(X86call GR32:$dst)]>;
399     def CALL32m     : I<0xFF, MRM2m, (outs), (ins i32mem:$dst, variable_ops),
400                         "call\t{*}$dst", [(X86call (loadi32 addr:$dst))]>;
401   }
402
403 // Tail call stuff.
404
405 def TAILCALL : I<0, Pseudo, (outs), (ins),
406                          "#TAILCALL",
407                          []>;
408
409 let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in
410 def TCRETURNdi : I<0, Pseudo, (outs), (ins i32imm:$dst, i32imm:$offset, variable_ops),
411                  "#TC_RETURN $dst $offset",
412                  []>;
413
414 let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in
415 def TCRETURNri : I<0, Pseudo, (outs), (ins GR32:$dst, i32imm:$offset, variable_ops),
416                  "#TC_RETURN $dst $offset",
417                  []>;
418
419 let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in
420
421   def TAILJMPd : IBr<0xE9, (ins i32imm:$dst), "jmp\t${dst:call}  # TAILCALL",
422                  []>;
423 let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in
424   def TAILJMPr : I<0xFF, MRM4r, (outs), (ins GR32:$dst), "jmp{l}\t{*}$dst  # TAILCALL",
425                  []>;     
426 let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in
427   def TAILJMPm : I<0xFF, MRM4m, (outs), (ins i32mem:$dst),
428                    "jmp\t{*}$dst  # TAILCALL", []>;
429
430 //===----------------------------------------------------------------------===//
431 //  Miscellaneous Instructions...
432 //
433 let Defs = [EBP, ESP], Uses = [EBP, ESP], mayLoad = 1, neverHasSideEffects=1 in
434 def LEAVE    : I<0xC9, RawFrm,
435                  (outs), (ins), "leave", []>;
436
437 let Defs = [ESP], Uses = [ESP], neverHasSideEffects=1 in {
438 let mayLoad = 1 in
439 def POP32r   : I<0x58, AddRegFrm, (outs GR32:$reg), (ins), "pop{l}\t$reg", []>;
440
441 let mayStore = 1 in
442 def PUSH32r  : I<0x50, AddRegFrm, (outs), (ins GR32:$reg), "push{l}\t$reg",[]>;
443 }
444
445 let Defs = [ESP, EFLAGS], Uses = [ESP], mayLoad = 1, neverHasSideEffects=1 in
446 def POPFD    : I<0x9D, RawFrm, (outs), (ins), "popf", []>;
447 let Defs = [ESP], Uses = [ESP, EFLAGS], mayStore = 1, neverHasSideEffects=1 in
448 def PUSHFD   : I<0x9C, RawFrm, (outs), (ins), "pushf", []>;
449
450 let isTwoAddress = 1 in                               // GR32 = bswap GR32
451   def BSWAP32r : I<0xC8, AddRegFrm,
452                    (outs GR32:$dst), (ins GR32:$src),
453                    "bswap{l}\t$dst", 
454                    [(set GR32:$dst, (bswap GR32:$src))]>, TB;
455
456
457 // Bit scan instructions.
458 let Defs = [EFLAGS] in {
459 def BSF16rr  : I<0xBC, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src),
460                  "bsf{w}\t{$src, $dst|$dst, $src}",
461                  [(set GR16:$dst, (X86bsf GR16:$src)), (implicit EFLAGS)]>, TB;
462 def BSF16rm  : I<0xBC, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
463                  "bsf{w}\t{$src, $dst|$dst, $src}",
464                  [(set GR16:$dst, (X86bsf (loadi16 addr:$src))),
465                   (implicit EFLAGS)]>, TB;
466 def BSF32rr  : I<0xBC, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
467                  "bsf{l}\t{$src, $dst|$dst, $src}",
468                  [(set GR32:$dst, (X86bsf GR32:$src)), (implicit EFLAGS)]>, TB;
469 def BSF32rm  : I<0xBC, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
470                  "bsf{l}\t{$src, $dst|$dst, $src}",
471                  [(set GR32:$dst, (X86bsf (loadi32 addr:$src))),
472                   (implicit EFLAGS)]>, TB;
473
474 def BSR16rr  : I<0xBD, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src),
475                  "bsr{w}\t{$src, $dst|$dst, $src}",
476                  [(set GR16:$dst, (X86bsr GR16:$src)), (implicit EFLAGS)]>, TB;
477 def BSR16rm  : I<0xBD, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
478                  "bsr{w}\t{$src, $dst|$dst, $src}",
479                  [(set GR16:$dst, (X86bsr (loadi16 addr:$src))),
480                   (implicit EFLAGS)]>, TB;
481 def BSR32rr  : I<0xBD, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
482                  "bsr{l}\t{$src, $dst|$dst, $src}",
483                  [(set GR32:$dst, (X86bsr GR32:$src)), (implicit EFLAGS)]>, TB;
484 def BSR32rm  : I<0xBD, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
485                  "bsr{l}\t{$src, $dst|$dst, $src}",
486                  [(set GR32:$dst, (X86bsr (loadi32 addr:$src))),
487                   (implicit EFLAGS)]>, TB;
488 } // Defs = [EFLAGS]
489
490 let neverHasSideEffects = 1 in
491 def LEA16r   : I<0x8D, MRMSrcMem,
492                  (outs GR16:$dst), (ins i32mem:$src),
493                  "lea{w}\t{$src|$dst}, {$dst|$src}", []>, OpSize;
494 let isReMaterializable = 1 in
495 def LEA32r   : I<0x8D, MRMSrcMem,
496                  (outs GR32:$dst), (ins lea32mem:$src),
497                  "lea{l}\t{$src|$dst}, {$dst|$src}",
498                  [(set GR32:$dst, lea32addr:$src)]>, Requires<[In32BitMode]>;
499
500 let Defs = [ECX,EDI,ESI], Uses = [ECX,EDI,ESI] in {
501 def REP_MOVSB : I<0xA4, RawFrm, (outs), (ins), "{rep;movsb|rep movsb}",
502                   [(X86rep_movs i8)]>, REP;
503 def REP_MOVSW : I<0xA5, RawFrm, (outs), (ins), "{rep;movsw|rep movsw}",
504                   [(X86rep_movs i16)]>, REP, OpSize;
505 def REP_MOVSD : I<0xA5, RawFrm, (outs), (ins), "{rep;movsl|rep movsd}",
506                   [(X86rep_movs i32)]>, REP;
507 }
508
509 let Defs = [ECX,EDI], Uses = [AL,ECX,EDI] in
510 def REP_STOSB : I<0xAA, RawFrm, (outs), (ins), "{rep;stosb|rep stosb}",
511                   [(X86rep_stos i8)]>, REP;
512 let Defs = [ECX,EDI], Uses = [AX,ECX,EDI] in
513 def REP_STOSW : I<0xAB, RawFrm, (outs), (ins), "{rep;stosw|rep stosw}",
514                   [(X86rep_stos i16)]>, REP, OpSize;
515 let Defs = [ECX,EDI], Uses = [EAX,ECX,EDI] in
516 def REP_STOSD : I<0xAB, RawFrm, (outs), (ins), "{rep;stosl|rep stosd}",
517                   [(X86rep_stos i32)]>, REP;
518
519 let Defs = [RAX, RDX] in
520 def RDTSC : I<0x31, RawFrm, (outs), (ins), "rdtsc", [(X86rdtsc)]>,
521             TB;
522
523 let isBarrier = 1, hasCtrlDep = 1 in {
524 def TRAP    : I<0x0B, RawFrm, (outs), (ins), "ud2", [(trap)]>, TB;
525 }
526
527 //===----------------------------------------------------------------------===//
528 //  Input/Output Instructions...
529 //
530 let Defs = [AL], Uses = [DX] in
531 def IN8rr  : I<0xEC, RawFrm, (outs), (ins),
532                "in{b}\t{%dx, %al|%AL, %DX}", []>;
533 let Defs = [AX], Uses = [DX] in
534 def IN16rr : I<0xED, RawFrm, (outs), (ins),
535                "in{w}\t{%dx, %ax|%AX, %DX}", []>,  OpSize;
536 let Defs = [EAX], Uses = [DX] in
537 def IN32rr : I<0xED, RawFrm, (outs), (ins),
538                "in{l}\t{%dx, %eax|%EAX, %DX}", []>;
539
540 let Defs = [AL] in
541 def IN8ri  : Ii8<0xE4, RawFrm, (outs), (ins i16i8imm:$port),
542                   "in{b}\t{$port, %al|%AL, $port}", []>;
543 let Defs = [AX] in
544 def IN16ri : Ii8<0xE5, RawFrm, (outs), (ins i16i8imm:$port),
545                   "in{w}\t{$port, %ax|%AX, $port}", []>, OpSize;
546 let Defs = [EAX] in
547 def IN32ri : Ii8<0xE5, RawFrm, (outs), (ins i16i8imm:$port),
548                   "in{l}\t{$port, %eax|%EAX, $port}", []>;
549
550 let Uses = [DX, AL] in
551 def OUT8rr  : I<0xEE, RawFrm, (outs), (ins),
552                 "out{b}\t{%al, %dx|%DX, %AL}", []>;
553 let Uses = [DX, AX] in
554 def OUT16rr : I<0xEF, RawFrm, (outs), (ins),
555                 "out{w}\t{%ax, %dx|%DX, %AX}", []>, OpSize;
556 let Uses = [DX, EAX] in
557 def OUT32rr : I<0xEF, RawFrm, (outs), (ins),
558                 "out{l}\t{%eax, %dx|%DX, %EAX}", []>;
559
560 let Uses = [AL] in
561 def OUT8ir  : Ii8<0xE6, RawFrm, (outs), (ins i16i8imm:$port),
562                    "out{b}\t{%al, $port|$port, %AL}", []>;
563 let Uses = [AX] in
564 def OUT16ir : Ii8<0xE7, RawFrm, (outs), (ins i16i8imm:$port),
565                    "out{w}\t{%ax, $port|$port, %AX}", []>, OpSize;
566 let Uses = [EAX] in
567 def OUT32ir : Ii8<0xE7, RawFrm, (outs), (ins i16i8imm:$port),
568                    "out{l}\t{%eax, $port|$port, %EAX}", []>;
569
570 //===----------------------------------------------------------------------===//
571 //  Move Instructions...
572 //
573 let neverHasSideEffects = 1 in {
574 def MOV8rr  : I<0x88, MRMDestReg, (outs GR8 :$dst), (ins GR8 :$src),
575                 "mov{b}\t{$src, $dst|$dst, $src}", []>;
576 def MOV16rr : I<0x89, MRMDestReg, (outs GR16:$dst), (ins GR16:$src),
577                 "mov{w}\t{$src, $dst|$dst, $src}", []>, OpSize;
578 def MOV32rr : I<0x89, MRMDestReg, (outs GR32:$dst), (ins GR32:$src),
579                 "mov{l}\t{$src, $dst|$dst, $src}", []>;
580 }
581 let isReMaterializable = 1 in {
582 def MOV8ri  : Ii8 <0xB0, AddRegFrm, (outs GR8 :$dst), (ins i8imm :$src),
583                    "mov{b}\t{$src, $dst|$dst, $src}",
584                    [(set GR8:$dst, imm:$src)]>;
585 def MOV16ri : Ii16<0xB8, AddRegFrm, (outs GR16:$dst), (ins i16imm:$src),
586                    "mov{w}\t{$src, $dst|$dst, $src}",
587                    [(set GR16:$dst, imm:$src)]>, OpSize;
588 def MOV32ri : Ii32<0xB8, AddRegFrm, (outs GR32:$dst), (ins i32imm:$src),
589                    "mov{l}\t{$src, $dst|$dst, $src}",
590                    [(set GR32:$dst, imm:$src)]>;
591 }
592 def MOV8mi  : Ii8 <0xC6, MRM0m, (outs), (ins i8mem :$dst, i8imm :$src),
593                    "mov{b}\t{$src, $dst|$dst, $src}",
594                    [(store (i8 imm:$src), addr:$dst)]>;
595 def MOV16mi : Ii16<0xC7, MRM0m, (outs), (ins i16mem:$dst, i16imm:$src),
596                    "mov{w}\t{$src, $dst|$dst, $src}",
597                    [(store (i16 imm:$src), addr:$dst)]>, OpSize;
598 def MOV32mi : Ii32<0xC7, MRM0m, (outs), (ins i32mem:$dst, i32imm:$src),
599                    "mov{l}\t{$src, $dst|$dst, $src}",
600                    [(store (i32 imm:$src), addr:$dst)]>;
601
602 let isSimpleLoad = 1, isReMaterializable = 1, mayHaveSideEffects = 1 in {
603 def MOV8rm  : I<0x8A, MRMSrcMem, (outs GR8 :$dst), (ins i8mem :$src),
604                 "mov{b}\t{$src, $dst|$dst, $src}",
605                 [(set GR8:$dst, (load addr:$src))]>;
606 def MOV16rm : I<0x8B, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
607                 "mov{w}\t{$src, $dst|$dst, $src}",
608                 [(set GR16:$dst, (load addr:$src))]>, OpSize;
609 def MOV32rm : I<0x8B, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
610                 "mov{l}\t{$src, $dst|$dst, $src}",
611                 [(set GR32:$dst, (load addr:$src))]>;
612 }
613
614 def MOV8mr  : I<0x88, MRMDestMem, (outs), (ins i8mem :$dst, GR8 :$src),
615                 "mov{b}\t{$src, $dst|$dst, $src}",
616                 [(store GR8:$src, addr:$dst)]>;
617 def MOV16mr : I<0x89, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src),
618                 "mov{w}\t{$src, $dst|$dst, $src}",
619                 [(store GR16:$src, addr:$dst)]>, OpSize;
620 def MOV32mr : I<0x89, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
621                 "mov{l}\t{$src, $dst|$dst, $src}",
622                 [(store GR32:$src, addr:$dst)]>;
623                 
624 //===----------------------------------------------------------------------===//
625 //  Fixed-Register Multiplication and Division Instructions...
626 //
627
628 // Extra precision multiplication
629 let Defs = [AL,AH,EFLAGS], Uses = [AL] in
630 def MUL8r  : I<0xF6, MRM4r, (outs),  (ins GR8:$src), "mul{b}\t$src",
631                // FIXME: Used for 8-bit mul, ignore result upper 8 bits.
632                // This probably ought to be moved to a def : Pat<> if the
633                // syntax can be accepted.
634                [(set AL, (mul AL, GR8:$src))]>;               // AL,AH = AL*GR8
635 let Defs = [AX,DX,EFLAGS], Uses = [AX], neverHasSideEffects = 1 in
636 def MUL16r : I<0xF7, MRM4r, (outs),  (ins GR16:$src), "mul{w}\t$src", []>,
637              OpSize;    // AX,DX = AX*GR16
638 let Defs = [EAX,EDX,EFLAGS], Uses = [EAX], neverHasSideEffects = 1 in
639 def MUL32r : I<0xF7, MRM4r, (outs),  (ins GR32:$src), "mul{l}\t$src", []>;
640                        // EAX,EDX = EAX*GR32
641 let Defs = [AL,AH,EFLAGS], Uses = [AL] in
642 def MUL8m  : I<0xF6, MRM4m, (outs), (ins i8mem :$src),
643                "mul{b}\t$src",
644                // FIXME: Used for 8-bit mul, ignore result upper 8 bits.
645                // This probably ought to be moved to a def : Pat<> if the
646                // syntax can be accepted.
647                [(set AL, (mul AL, (loadi8 addr:$src)))]>;   // AL,AH = AL*[mem8]
648 let mayLoad = 1, neverHasSideEffects = 1 in {
649 let Defs = [AX,DX,EFLAGS], Uses = [AX] in
650 def MUL16m : I<0xF7, MRM4m, (outs), (ins i16mem:$src),
651                "mul{w}\t$src", []>, OpSize; // AX,DX = AX*[mem16]
652 let Defs = [EAX,EDX,EFLAGS], Uses = [EAX] in
653 def MUL32m : I<0xF7, MRM4m, (outs), (ins i32mem:$src),
654               "mul{l}\t$src", []>;          // EAX,EDX = EAX*[mem32]
655 }
656
657 let neverHasSideEffects = 1 in {
658 let Defs = [AL,AH,EFLAGS], Uses = [AL] in
659 def IMUL8r  : I<0xF6, MRM5r, (outs),  (ins GR8:$src), "imul{b}\t$src", []>;
660               // AL,AH = AL*GR8
661 let Defs = [AX,DX,EFLAGS], Uses = [AX] in
662 def IMUL16r : I<0xF7, MRM5r, (outs),  (ins GR16:$src), "imul{w}\t$src", []>,
663               OpSize;    // AX,DX = AX*GR16
664 let Defs = [EAX,EDX,EFLAGS], Uses = [EAX] in
665 def IMUL32r : I<0xF7, MRM5r, (outs),  (ins GR32:$src), "imul{l}\t$src", []>;
666               // EAX,EDX = EAX*GR32
667 let mayLoad = 1 in {
668 let Defs = [AL,AH,EFLAGS], Uses = [AL] in
669 def IMUL8m  : I<0xF6, MRM5m, (outs), (ins i8mem :$src),
670                 "imul{b}\t$src", []>;    // AL,AH = AL*[mem8]
671 let Defs = [AX,DX,EFLAGS], Uses = [AX] in
672 def IMUL16m : I<0xF7, MRM5m, (outs), (ins i16mem:$src),
673                 "imul{w}\t$src", []>, OpSize; // AX,DX = AX*[mem16]
674 let Defs = [EAX,EDX], Uses = [EAX] in
675 def IMUL32m : I<0xF7, MRM5m, (outs), (ins i32mem:$src),
676                 "imul{l}\t$src", []>;  // EAX,EDX = EAX*[mem32]
677 }
678
679 // unsigned division/remainder
680 let Defs = [AX,EFLAGS], Uses = [AL,AH] in
681 def DIV8r  : I<0xF6, MRM6r, (outs),  (ins GR8:$src),          // AX/r8 = AL,AH
682                "div{b}\t$src", []>;
683 let Defs = [AX,DX,EFLAGS], Uses = [AX,DX] in
684 def DIV16r : I<0xF7, MRM6r, (outs),  (ins GR16:$src),         // DX:AX/r16 = AX,DX
685                "div{w}\t$src", []>, OpSize;
686 let Defs = [EAX,EDX,EFLAGS], Uses = [EAX,EDX] in
687 def DIV32r : I<0xF7, MRM6r, (outs),  (ins GR32:$src),         // EDX:EAX/r32 = EAX,EDX
688                "div{l}\t$src", []>;
689 let mayLoad = 1 in {
690 let Defs = [AX,EFLAGS], Uses = [AL,AH] in
691 def DIV8m  : I<0xF6, MRM6m, (outs), (ins i8mem:$src),       // AX/[mem8] = AL,AH
692                "div{b}\t$src", []>;
693 let Defs = [AX,DX,EFLAGS], Uses = [AX,DX] in
694 def DIV16m : I<0xF7, MRM6m, (outs), (ins i16mem:$src),      // DX:AX/[mem16] = AX,DX
695                "div{w}\t$src", []>, OpSize;
696 let Defs = [EAX,EDX,EFLAGS], Uses = [EAX,EDX] in
697 def DIV32m : I<0xF7, MRM6m, (outs), (ins i32mem:$src),      // EDX:EAX/[mem32] = EAX,EDX
698                "div{l}\t$src", []>;
699 }
700
701 // Signed division/remainder.
702 let Defs = [AX,EFLAGS], Uses = [AL,AH] in
703 def IDIV8r : I<0xF6, MRM7r, (outs),  (ins GR8:$src),          // AX/r8 = AL,AH
704                "idiv{b}\t$src", []>;
705 let Defs = [AX,DX,EFLAGS], Uses = [AX,DX] in
706 def IDIV16r: I<0xF7, MRM7r, (outs),  (ins GR16:$src),         // DX:AX/r16 = AX,DX
707                "idiv{w}\t$src", []>, OpSize;
708 let Defs = [EAX,EDX,EFLAGS], Uses = [EAX,EDX] in
709 def IDIV32r: I<0xF7, MRM7r, (outs),  (ins GR32:$src),         // EDX:EAX/r32 = EAX,EDX
710                "idiv{l}\t$src", []>;
711 let mayLoad = 1, mayLoad = 1 in {
712 let Defs = [AX,EFLAGS], Uses = [AL,AH] in
713 def IDIV8m : I<0xF6, MRM7m, (outs), (ins i8mem:$src),      // AX/[mem8] = AL,AH
714                "idiv{b}\t$src", []>;
715 let Defs = [AX,DX,EFLAGS], Uses = [AX,DX] in
716 def IDIV16m: I<0xF7, MRM7m, (outs), (ins i16mem:$src),     // DX:AX/[mem16] = AX,DX
717                "idiv{w}\t$src", []>, OpSize;
718 let Defs = [EAX,EDX,EFLAGS], Uses = [EAX,EDX] in
719 def IDIV32m: I<0xF7, MRM7m, (outs), (ins i32mem:$src),     // EDX:EAX/[mem32] = EAX,EDX
720                "idiv{l}\t$src", []>;
721 }
722 } // neverHasSideEffects
723
724 //===----------------------------------------------------------------------===//
725 //  Two address Instructions.
726 //
727 let isTwoAddress = 1 in {
728
729 // Conditional moves
730 let Uses = [EFLAGS] in {
731 let isCommutable = 1 in {
732 def CMOVB16rr : I<0x42, MRMSrcReg,       // if <u, GR16 = GR16
733                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
734                   "cmovb\t{$src2, $dst|$dst, $src2}",
735                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
736                                    X86_COND_B, EFLAGS))]>,
737                   TB, OpSize;
738 def CMOVB32rr : I<0x42, MRMSrcReg,       // if <u, GR32 = GR32
739                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
740                   "cmovb\t{$src2, $dst|$dst, $src2}",
741                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
742                                    X86_COND_B, EFLAGS))]>,
743                    TB;
744
745 def CMOVAE16rr: I<0x43, MRMSrcReg,       // if >=u, GR16 = GR16
746                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
747                   "cmovae\t{$src2, $dst|$dst, $src2}",
748                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
749                                    X86_COND_AE, EFLAGS))]>,
750                    TB, OpSize;
751 def CMOVAE32rr: I<0x43, MRMSrcReg,       // if >=u, GR32 = GR32
752                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
753                   "cmovae\t{$src2, $dst|$dst, $src2}",
754                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
755                                    X86_COND_AE, EFLAGS))]>,
756                    TB;
757 def CMOVE16rr : I<0x44, MRMSrcReg,       // if ==, GR16 = GR16
758                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
759                   "cmove\t{$src2, $dst|$dst, $src2}",
760                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
761                                    X86_COND_E, EFLAGS))]>,
762                    TB, OpSize;
763 def CMOVE32rr : I<0x44, MRMSrcReg,       // if ==, GR32 = GR32
764                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
765                   "cmove\t{$src2, $dst|$dst, $src2}",
766                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
767                                    X86_COND_E, EFLAGS))]>,
768                    TB;
769 def CMOVNE16rr: I<0x45, MRMSrcReg,       // if !=, GR16 = GR16
770                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
771                   "cmovne\t{$src2, $dst|$dst, $src2}",
772                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
773                                    X86_COND_NE, EFLAGS))]>,
774                    TB, OpSize;
775 def CMOVNE32rr: I<0x45, MRMSrcReg,       // if !=, GR32 = GR32
776                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
777                   "cmovne\t{$src2, $dst|$dst, $src2}",
778                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
779                                    X86_COND_NE, EFLAGS))]>,
780                    TB;
781 def CMOVBE16rr: I<0x46, MRMSrcReg,       // if <=u, GR16 = GR16
782                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
783                   "cmovbe\t{$src2, $dst|$dst, $src2}",
784                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
785                                    X86_COND_BE, EFLAGS))]>,
786                    TB, OpSize;
787 def CMOVBE32rr: I<0x46, MRMSrcReg,       // if <=u, GR32 = GR32
788                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
789                   "cmovbe\t{$src2, $dst|$dst, $src2}",
790                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
791                                    X86_COND_BE, EFLAGS))]>,
792                    TB;
793 def CMOVA16rr : I<0x47, MRMSrcReg,       // if >u, GR16 = GR16
794                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
795                   "cmova\t{$src2, $dst|$dst, $src2}",
796                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
797                                    X86_COND_A, EFLAGS))]>,
798                    TB, OpSize;
799 def CMOVA32rr : I<0x47, MRMSrcReg,       // if >u, GR32 = GR32
800                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
801                   "cmova\t{$src2, $dst|$dst, $src2}",
802                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
803                                    X86_COND_A, EFLAGS))]>,
804                    TB;
805 def CMOVL16rr : I<0x4C, MRMSrcReg,       // if <s, GR16 = GR16
806                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
807                   "cmovl\t{$src2, $dst|$dst, $src2}",
808                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
809                                    X86_COND_L, EFLAGS))]>,
810                    TB, OpSize;
811 def CMOVL32rr : I<0x4C, MRMSrcReg,       // if <s, GR32 = GR32
812                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
813                   "cmovl\t{$src2, $dst|$dst, $src2}",
814                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
815                                    X86_COND_L, EFLAGS))]>,
816                    TB;
817 def CMOVGE16rr: I<0x4D, MRMSrcReg,       // if >=s, GR16 = GR16
818                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
819                   "cmovge\t{$src2, $dst|$dst, $src2}",
820                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
821                                    X86_COND_GE, EFLAGS))]>,
822                    TB, OpSize;
823 def CMOVGE32rr: I<0x4D, MRMSrcReg,       // if >=s, GR32 = GR32
824                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
825                   "cmovge\t{$src2, $dst|$dst, $src2}",
826                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
827                                    X86_COND_GE, EFLAGS))]>,
828                    TB;
829 def CMOVLE16rr: I<0x4E, MRMSrcReg,       // if <=s, GR16 = GR16
830                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
831                   "cmovle\t{$src2, $dst|$dst, $src2}",
832                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
833                                    X86_COND_LE, EFLAGS))]>,
834                    TB, OpSize;
835 def CMOVLE32rr: I<0x4E, MRMSrcReg,       // if <=s, GR32 = GR32
836                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
837                   "cmovle\t{$src2, $dst|$dst, $src2}",
838                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
839                                    X86_COND_LE, EFLAGS))]>,
840                    TB;
841 def CMOVG16rr : I<0x4F, MRMSrcReg,       // if >s, GR16 = GR16
842                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
843                   "cmovg\t{$src2, $dst|$dst, $src2}",
844                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
845                                    X86_COND_G, EFLAGS))]>,
846                    TB, OpSize;
847 def CMOVG32rr : I<0x4F, MRMSrcReg,       // if >s, GR32 = GR32
848                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
849                   "cmovg\t{$src2, $dst|$dst, $src2}",
850                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
851                                    X86_COND_G, EFLAGS))]>,
852                    TB;
853 def CMOVS16rr : I<0x48, MRMSrcReg,       // if signed, GR16 = GR16
854                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
855                   "cmovs\t{$src2, $dst|$dst, $src2}",
856                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
857                                    X86_COND_S, EFLAGS))]>,
858                   TB, OpSize;
859 def CMOVS32rr : I<0x48, MRMSrcReg,       // if signed, GR32 = GR32
860                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
861                   "cmovs\t{$src2, $dst|$dst, $src2}",
862                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
863                                    X86_COND_S, EFLAGS))]>,
864                   TB;
865 def CMOVNS16rr: I<0x49, MRMSrcReg,       // if !signed, GR16 = GR16
866                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
867                   "cmovns\t{$src2, $dst|$dst, $src2}",
868                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
869                                    X86_COND_NS, EFLAGS))]>,
870                   TB, OpSize;
871 def CMOVNS32rr: I<0x49, MRMSrcReg,       // if !signed, GR32 = GR32
872                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
873                   "cmovns\t{$src2, $dst|$dst, $src2}",
874                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
875                                    X86_COND_NS, EFLAGS))]>,
876                   TB;
877 def CMOVP16rr : I<0x4A, MRMSrcReg,       // if parity, GR16 = GR16
878                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
879                   "cmovp\t{$src2, $dst|$dst, $src2}",
880                   [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
881                                    X86_COND_P, EFLAGS))]>,
882                   TB, OpSize;
883 def CMOVP32rr : I<0x4A, MRMSrcReg,       // if parity, GR32 = GR32
884                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
885                   "cmovp\t{$src2, $dst|$dst, $src2}",
886                   [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
887                                    X86_COND_P, EFLAGS))]>,
888                   TB;
889 def CMOVNP16rr : I<0x4B, MRMSrcReg,       // if !parity, GR16 = GR16
890                   (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
891                   "cmovnp\t{$src2, $dst|$dst, $src2}",
892                    [(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
893                                     X86_COND_NP, EFLAGS))]>,
894                   TB, OpSize;
895 def CMOVNP32rr : I<0x4B, MRMSrcReg,       // if !parity, GR32 = GR32
896                   (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
897                   "cmovnp\t{$src2, $dst|$dst, $src2}",
898                    [(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
899                                     X86_COND_NP, EFLAGS))]>,
900                   TB;
901 } // isCommutable = 1
902
903 def CMOVNP32rm : I<0x4B, MRMSrcMem,       // if !parity, GR32 = [mem32]
904                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
905                   "cmovnp\t{$src2, $dst|$dst, $src2}",
906                    [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
907                                     X86_COND_NP, EFLAGS))]>,
908                   TB;
909
910 def CMOVB16rm : I<0x42, MRMSrcMem,       // if <u, GR16 = [mem16]
911                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
912                   "cmovb\t{$src2, $dst|$dst, $src2}",
913                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
914                                    X86_COND_B, EFLAGS))]>,
915                   TB, OpSize;
916 def CMOVB32rm : I<0x42, MRMSrcMem,       // if <u, GR32 = [mem32]
917                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
918                   "cmovb\t{$src2, $dst|$dst, $src2}",
919                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
920                                    X86_COND_B, EFLAGS))]>,
921                    TB;
922 def CMOVAE16rm: I<0x43, MRMSrcMem,       // if >=u, GR16 = [mem16]
923                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
924                   "cmovae\t{$src2, $dst|$dst, $src2}",
925                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
926                                    X86_COND_AE, EFLAGS))]>,
927                    TB, OpSize;
928 def CMOVAE32rm: I<0x43, MRMSrcMem,       // if >=u, GR32 = [mem32]
929                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
930                   "cmovae\t{$src2, $dst|$dst, $src2}",
931                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
932                                    X86_COND_AE, EFLAGS))]>,
933                    TB;
934 def CMOVE16rm : I<0x44, MRMSrcMem,       // if ==, GR16 = [mem16]
935                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
936                   "cmove\t{$src2, $dst|$dst, $src2}",
937                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
938                                    X86_COND_E, EFLAGS))]>,
939                    TB, OpSize;
940 def CMOVE32rm : I<0x44, MRMSrcMem,       // if ==, GR32 = [mem32]
941                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
942                   "cmove\t{$src2, $dst|$dst, $src2}",
943                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
944                                    X86_COND_E, EFLAGS))]>,
945                    TB;
946 def CMOVNE16rm: I<0x45, MRMSrcMem,       // if !=, GR16 = [mem16]
947                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
948                   "cmovne\t{$src2, $dst|$dst, $src2}",
949                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
950                                    X86_COND_NE, EFLAGS))]>,
951                    TB, OpSize;
952 def CMOVNE32rm: I<0x45, MRMSrcMem,       // if !=, GR32 = [mem32]
953                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
954                   "cmovne\t{$src2, $dst|$dst, $src2}",
955                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
956                                    X86_COND_NE, EFLAGS))]>,
957                    TB;
958 def CMOVBE16rm: I<0x46, MRMSrcMem,       // if <=u, GR16 = [mem16]
959                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
960                   "cmovbe\t{$src2, $dst|$dst, $src2}",
961                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
962                                    X86_COND_BE, EFLAGS))]>,
963                    TB, OpSize;
964 def CMOVBE32rm: I<0x46, MRMSrcMem,       // if <=u, GR32 = [mem32]
965                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
966                   "cmovbe\t{$src2, $dst|$dst, $src2}",
967                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
968                                    X86_COND_BE, EFLAGS))]>,
969                    TB;
970 def CMOVA16rm : I<0x47, MRMSrcMem,       // if >u, GR16 = [mem16]
971                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
972                   "cmova\t{$src2, $dst|$dst, $src2}",
973                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
974                                    X86_COND_A, EFLAGS))]>,
975                    TB, OpSize;
976 def CMOVA32rm : I<0x47, MRMSrcMem,       // if >u, GR32 = [mem32]
977                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
978                   "cmova\t{$src2, $dst|$dst, $src2}",
979                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
980                                    X86_COND_A, EFLAGS))]>,
981                    TB;
982 def CMOVL16rm : I<0x4C, MRMSrcMem,       // if <s, GR16 = [mem16]
983                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
984                   "cmovl\t{$src2, $dst|$dst, $src2}",
985                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
986                                    X86_COND_L, EFLAGS))]>,
987                    TB, OpSize;
988 def CMOVL32rm : I<0x4C, MRMSrcMem,       // if <s, GR32 = [mem32]
989                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
990                   "cmovl\t{$src2, $dst|$dst, $src2}",
991                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
992                                    X86_COND_L, EFLAGS))]>,
993                    TB;
994 def CMOVGE16rm: I<0x4D, MRMSrcMem,       // if >=s, GR16 = [mem16]
995                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
996                   "cmovge\t{$src2, $dst|$dst, $src2}",
997                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
998                                    X86_COND_GE, EFLAGS))]>,
999                    TB, OpSize;
1000 def CMOVGE32rm: I<0x4D, MRMSrcMem,       // if >=s, GR32 = [mem32]
1001                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1002                   "cmovge\t{$src2, $dst|$dst, $src2}",
1003                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
1004                                    X86_COND_GE, EFLAGS))]>,
1005                    TB;
1006 def CMOVLE16rm: I<0x4E, MRMSrcMem,       // if <=s, GR16 = [mem16]
1007                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1008                   "cmovle\t{$src2, $dst|$dst, $src2}",
1009                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
1010                                    X86_COND_LE, EFLAGS))]>,
1011                    TB, OpSize;
1012 def CMOVLE32rm: I<0x4E, MRMSrcMem,       // if <=s, GR32 = [mem32]
1013                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1014                   "cmovle\t{$src2, $dst|$dst, $src2}",
1015                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
1016                                    X86_COND_LE, EFLAGS))]>,
1017                    TB;
1018 def CMOVG16rm : I<0x4F, MRMSrcMem,       // if >s, GR16 = [mem16]
1019                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1020                   "cmovg\t{$src2, $dst|$dst, $src2}",
1021                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
1022                                    X86_COND_G, EFLAGS))]>,
1023                    TB, OpSize;
1024 def CMOVG32rm : I<0x4F, MRMSrcMem,       // if >s, GR32 = [mem32]
1025                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1026                   "cmovg\t{$src2, $dst|$dst, $src2}",
1027                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
1028                                    X86_COND_G, EFLAGS))]>,
1029                    TB;
1030 def CMOVS16rm : I<0x48, MRMSrcMem,       // if signed, GR16 = [mem16]
1031                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1032                   "cmovs\t{$src2, $dst|$dst, $src2}",
1033                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
1034                                    X86_COND_S, EFLAGS))]>,
1035                   TB, OpSize;
1036 def CMOVS32rm : I<0x48, MRMSrcMem,       // if signed, GR32 = [mem32]
1037                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1038                   "cmovs\t{$src2, $dst|$dst, $src2}",
1039                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
1040                                    X86_COND_S, EFLAGS))]>,
1041                   TB;
1042 def CMOVNS16rm: I<0x49, MRMSrcMem,       // if !signed, GR16 = [mem16]
1043                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1044                   "cmovns\t{$src2, $dst|$dst, $src2}",
1045                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
1046                                    X86_COND_NS, EFLAGS))]>,
1047                   TB, OpSize;
1048 def CMOVNS32rm: I<0x49, MRMSrcMem,       // if !signed, GR32 = [mem32]
1049                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1050                   "cmovns\t{$src2, $dst|$dst, $src2}",
1051                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
1052                                    X86_COND_NS, EFLAGS))]>,
1053                   TB;
1054 def CMOVP16rm : I<0x4A, MRMSrcMem,       // if parity, GR16 = [mem16]
1055                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1056                   "cmovp\t{$src2, $dst|$dst, $src2}",
1057                   [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
1058                                    X86_COND_P, EFLAGS))]>,
1059                   TB, OpSize;
1060 def CMOVP32rm : I<0x4A, MRMSrcMem,       // if parity, GR32 = [mem32]
1061                   (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1062                   "cmovp\t{$src2, $dst|$dst, $src2}",
1063                   [(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
1064                                    X86_COND_P, EFLAGS))]>,
1065                   TB;
1066 def CMOVNP16rm : I<0x4B, MRMSrcMem,       // if !parity, GR16 = [mem16]
1067                   (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1068                   "cmovnp\t{$src2, $dst|$dst, $src2}",
1069                    [(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
1070                                     X86_COND_NP, EFLAGS))]>,
1071                   TB, OpSize;
1072 } // Uses = [EFLAGS]
1073
1074
1075 // unary instructions
1076 let CodeSize = 2 in {
1077 let Defs = [EFLAGS] in {
1078 def NEG8r  : I<0xF6, MRM3r, (outs GR8 :$dst), (ins GR8 :$src), "neg{b}\t$dst",
1079                [(set GR8:$dst, (ineg GR8:$src))]>;
1080 def NEG16r : I<0xF7, MRM3r, (outs GR16:$dst), (ins GR16:$src), "neg{w}\t$dst",
1081                [(set GR16:$dst, (ineg GR16:$src))]>, OpSize;
1082 def NEG32r : I<0xF7, MRM3r, (outs GR32:$dst), (ins GR32:$src), "neg{l}\t$dst",
1083                [(set GR32:$dst, (ineg GR32:$src))]>;
1084 let isTwoAddress = 0 in {
1085   def NEG8m  : I<0xF6, MRM3m, (outs), (ins i8mem :$dst), "neg{b}\t$dst",
1086                  [(store (ineg (loadi8 addr:$dst)), addr:$dst)]>;
1087   def NEG16m : I<0xF7, MRM3m, (outs), (ins i16mem:$dst), "neg{w}\t$dst",
1088                  [(store (ineg (loadi16 addr:$dst)), addr:$dst)]>, OpSize;
1089   def NEG32m : I<0xF7, MRM3m, (outs), (ins i32mem:$dst), "neg{l}\t$dst",
1090                  [(store (ineg (loadi32 addr:$dst)), addr:$dst)]>;
1091
1092 }
1093 } // Defs = [EFLAGS]
1094
1095 def NOT8r  : I<0xF6, MRM2r, (outs GR8 :$dst), (ins GR8 :$src), "not{b}\t$dst",
1096                [(set GR8:$dst, (not GR8:$src))]>;
1097 def NOT16r : I<0xF7, MRM2r, (outs GR16:$dst), (ins GR16:$src), "not{w}\t$dst",
1098                [(set GR16:$dst, (not GR16:$src))]>, OpSize;
1099 def NOT32r : I<0xF7, MRM2r, (outs GR32:$dst), (ins GR32:$src), "not{l}\t$dst",
1100                [(set GR32:$dst, (not GR32:$src))]>;
1101 let isTwoAddress = 0 in {
1102   def NOT8m  : I<0xF6, MRM2m, (outs), (ins i8mem :$dst), "not{b}\t$dst",
1103                  [(store (not (loadi8 addr:$dst)), addr:$dst)]>;
1104   def NOT16m : I<0xF7, MRM2m, (outs), (ins i16mem:$dst), "not{w}\t$dst",
1105                  [(store (not (loadi16 addr:$dst)), addr:$dst)]>, OpSize;
1106   def NOT32m : I<0xF7, MRM2m, (outs), (ins i32mem:$dst), "not{l}\t$dst",
1107                  [(store (not (loadi32 addr:$dst)), addr:$dst)]>;
1108 }
1109 } // CodeSize
1110
1111 // TODO: inc/dec is slow for P4, but fast for Pentium-M.
1112 let Defs = [EFLAGS] in {
1113 let CodeSize = 2 in
1114 def INC8r  : I<0xFE, MRM0r, (outs GR8 :$dst), (ins GR8 :$src), "inc{b}\t$dst",
1115                [(set GR8:$dst, (add GR8:$src, 1))]>;
1116 let isConvertibleToThreeAddress = 1, CodeSize = 1 in {  // Can xform into LEA.
1117 def INC16r : I<0x40, AddRegFrm, (outs GR16:$dst), (ins GR16:$src), "inc{w}\t$dst",
1118                [(set GR16:$dst, (add GR16:$src, 1))]>,
1119              OpSize, Requires<[In32BitMode]>;
1120 def INC32r : I<0x40, AddRegFrm, (outs GR32:$dst), (ins GR32:$src), "inc{l}\t$dst",
1121                [(set GR32:$dst, (add GR32:$src, 1))]>, Requires<[In32BitMode]>;
1122 }
1123 let isTwoAddress = 0, CodeSize = 2 in {
1124   def INC8m  : I<0xFE, MRM0m, (outs), (ins i8mem :$dst), "inc{b}\t$dst",
1125                [(store (add (loadi8 addr:$dst), 1), addr:$dst)]>;
1126   def INC16m : I<0xFF, MRM0m, (outs), (ins i16mem:$dst), "inc{w}\t$dst",
1127                [(store (add (loadi16 addr:$dst), 1), addr:$dst)]>,
1128                OpSize, Requires<[In32BitMode]>;
1129   def INC32m : I<0xFF, MRM0m, (outs), (ins i32mem:$dst), "inc{l}\t$dst",
1130                [(store (add (loadi32 addr:$dst), 1), addr:$dst)]>,
1131                Requires<[In32BitMode]>;
1132 }
1133
1134 let CodeSize = 2 in
1135 def DEC8r  : I<0xFE, MRM1r, (outs GR8 :$dst), (ins GR8 :$src), "dec{b}\t$dst",
1136                [(set GR8:$dst, (add GR8:$src, -1))]>;
1137 let isConvertibleToThreeAddress = 1, CodeSize = 1 in {   // Can xform into LEA.
1138 def DEC16r : I<0x48, AddRegFrm, (outs GR16:$dst), (ins GR16:$src), "dec{w}\t$dst",
1139                [(set GR16:$dst, (add GR16:$src, -1))]>,
1140              OpSize, Requires<[In32BitMode]>;
1141 def DEC32r : I<0x48, AddRegFrm, (outs GR32:$dst), (ins GR32:$src), "dec{l}\t$dst",
1142                [(set GR32:$dst, (add GR32:$src, -1))]>, Requires<[In32BitMode]>;
1143 }
1144
1145 let isTwoAddress = 0, CodeSize = 2 in {
1146   def DEC8m  : I<0xFE, MRM1m, (outs), (ins i8mem :$dst), "dec{b}\t$dst",
1147                [(store (add (loadi8 addr:$dst), -1), addr:$dst)]>;
1148   def DEC16m : I<0xFF, MRM1m, (outs), (ins i16mem:$dst), "dec{w}\t$dst",
1149                [(store (add (loadi16 addr:$dst), -1), addr:$dst)]>,
1150                OpSize, Requires<[In32BitMode]>;
1151   def DEC32m : I<0xFF, MRM1m, (outs), (ins i32mem:$dst), "dec{l}\t$dst",
1152                [(store (add (loadi32 addr:$dst), -1), addr:$dst)]>,
1153                Requires<[In32BitMode]>;
1154 }
1155 } // Defs = [EFLAGS]
1156
1157 // Logical operators...
1158 let Defs = [EFLAGS] in {
1159 let isCommutable = 1 in {   // X = AND Y, Z   --> X = AND Z, Y
1160 def AND8rr   : I<0x20, MRMDestReg,
1161                 (outs GR8 :$dst), (ins GR8 :$src1, GR8 :$src2),
1162                 "and{b}\t{$src2, $dst|$dst, $src2}",
1163                 [(set GR8:$dst, (and GR8:$src1, GR8:$src2))]>;
1164 def AND16rr  : I<0x21, MRMDestReg,
1165                  (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
1166                  "and{w}\t{$src2, $dst|$dst, $src2}",
1167                  [(set GR16:$dst, (and GR16:$src1, GR16:$src2))]>, OpSize;
1168 def AND32rr  : I<0x21, MRMDestReg, 
1169                  (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
1170                  "and{l}\t{$src2, $dst|$dst, $src2}",
1171                  [(set GR32:$dst, (and GR32:$src1, GR32:$src2))]>;
1172 }
1173
1174 def AND8rm   : I<0x22, MRMSrcMem, 
1175                  (outs GR8 :$dst), (ins GR8 :$src1, i8mem :$src2),
1176                  "and{b}\t{$src2, $dst|$dst, $src2}",
1177                 [(set GR8:$dst, (and GR8:$src1, (load addr:$src2)))]>;
1178 def AND16rm  : I<0x23, MRMSrcMem, 
1179                  (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1180                  "and{w}\t{$src2, $dst|$dst, $src2}",
1181                 [(set GR16:$dst, (and GR16:$src1, (load addr:$src2)))]>, OpSize;
1182 def AND32rm  : I<0x23, MRMSrcMem,
1183                  (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1184                  "and{l}\t{$src2, $dst|$dst, $src2}",
1185                 [(set GR32:$dst, (and GR32:$src1, (load addr:$src2)))]>;
1186
1187 def AND8ri   : Ii8<0x80, MRM4r, 
1188                    (outs GR8 :$dst), (ins GR8 :$src1, i8imm :$src2),
1189                    "and{b}\t{$src2, $dst|$dst, $src2}",
1190                    [(set GR8:$dst, (and GR8:$src1, imm:$src2))]>;
1191 def AND16ri  : Ii16<0x81, MRM4r, 
1192                     (outs GR16:$dst), (ins GR16:$src1, i16imm:$src2),
1193                     "and{w}\t{$src2, $dst|$dst, $src2}",
1194                     [(set GR16:$dst, (and GR16:$src1, imm:$src2))]>, OpSize;
1195 def AND32ri  : Ii32<0x81, MRM4r, 
1196                     (outs GR32:$dst), (ins GR32:$src1, i32imm:$src2),
1197                     "and{l}\t{$src2, $dst|$dst, $src2}",
1198                     [(set GR32:$dst, (and GR32:$src1, imm:$src2))]>;
1199 def AND16ri8 : Ii8<0x83, MRM4r, 
1200                    (outs GR16:$dst), (ins GR16:$src1, i16i8imm:$src2),
1201                    "and{w}\t{$src2, $dst|$dst, $src2}",
1202                    [(set GR16:$dst, (and GR16:$src1, i16immSExt8:$src2))]>,
1203                    OpSize;
1204 def AND32ri8 : Ii8<0x83, MRM4r, 
1205                    (outs GR32:$dst), (ins GR32:$src1, i32i8imm:$src2),
1206                    "and{l}\t{$src2, $dst|$dst, $src2}",
1207                    [(set GR32:$dst, (and GR32:$src1, i32immSExt8:$src2))]>;
1208
1209 let isTwoAddress = 0 in {
1210   def AND8mr   : I<0x20, MRMDestMem,
1211                    (outs), (ins i8mem :$dst, GR8 :$src),
1212                    "and{b}\t{$src, $dst|$dst, $src}",
1213                    [(store (and (load addr:$dst), GR8:$src), addr:$dst)]>;
1214   def AND16mr  : I<0x21, MRMDestMem,
1215                    (outs), (ins i16mem:$dst, GR16:$src),
1216                    "and{w}\t{$src, $dst|$dst, $src}",
1217                    [(store (and (load addr:$dst), GR16:$src), addr:$dst)]>,
1218                    OpSize;
1219   def AND32mr  : I<0x21, MRMDestMem,
1220                    (outs), (ins i32mem:$dst, GR32:$src),
1221                    "and{l}\t{$src, $dst|$dst, $src}",
1222                    [(store (and (load addr:$dst), GR32:$src), addr:$dst)]>;
1223   def AND8mi   : Ii8<0x80, MRM4m,
1224                      (outs), (ins i8mem :$dst, i8imm :$src),
1225                      "and{b}\t{$src, $dst|$dst, $src}",
1226                       [(store (and (loadi8 addr:$dst), imm:$src), addr:$dst)]>;
1227   def AND16mi  : Ii16<0x81, MRM4m,
1228                       (outs), (ins i16mem:$dst, i16imm:$src),
1229                       "and{w}\t{$src, $dst|$dst, $src}",
1230                       [(store (and (loadi16 addr:$dst), imm:$src), addr:$dst)]>,
1231                       OpSize;
1232   def AND32mi  : Ii32<0x81, MRM4m,
1233                       (outs), (ins i32mem:$dst, i32imm:$src),
1234                       "and{l}\t{$src, $dst|$dst, $src}",
1235                       [(store (and (loadi32 addr:$dst), imm:$src), addr:$dst)]>;
1236   def AND16mi8 : Ii8<0x83, MRM4m,
1237                      (outs), (ins i16mem:$dst, i16i8imm :$src),
1238                      "and{w}\t{$src, $dst|$dst, $src}",
1239                 [(store (and (load addr:$dst), i16immSExt8:$src), addr:$dst)]>,
1240                      OpSize;
1241   def AND32mi8 : Ii8<0x83, MRM4m,
1242                      (outs), (ins i32mem:$dst, i32i8imm :$src),
1243                      "and{l}\t{$src, $dst|$dst, $src}",
1244                 [(store (and (load addr:$dst), i32immSExt8:$src), addr:$dst)]>;
1245 }
1246
1247
1248 let isCommutable = 1 in {   // X = OR Y, Z   --> X = OR Z, Y
1249 def OR8rr    : I<0x08, MRMDestReg, (outs GR8 :$dst), (ins GR8 :$src1, GR8 :$src2),
1250                  "or{b}\t{$src2, $dst|$dst, $src2}",
1251                  [(set GR8:$dst, (or GR8:$src1, GR8:$src2))]>;
1252 def OR16rr   : I<0x09, MRMDestReg, (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
1253                  "or{w}\t{$src2, $dst|$dst, $src2}",
1254                  [(set GR16:$dst, (or GR16:$src1, GR16:$src2))]>, OpSize;
1255 def OR32rr   : I<0x09, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
1256                  "or{l}\t{$src2, $dst|$dst, $src2}",
1257                  [(set GR32:$dst, (or GR32:$src1, GR32:$src2))]>;
1258 }
1259 def OR8rm    : I<0x0A, MRMSrcMem , (outs GR8 :$dst), (ins GR8 :$src1, i8mem :$src2),
1260                  "or{b}\t{$src2, $dst|$dst, $src2}",
1261                 [(set GR8:$dst, (or GR8:$src1, (load addr:$src2)))]>;
1262 def OR16rm   : I<0x0B, MRMSrcMem , (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1263                  "or{w}\t{$src2, $dst|$dst, $src2}",
1264                 [(set GR16:$dst, (or GR16:$src1, (load addr:$src2)))]>, OpSize;
1265 def OR32rm   : I<0x0B, MRMSrcMem , (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1266                  "or{l}\t{$src2, $dst|$dst, $src2}",
1267                 [(set GR32:$dst, (or GR32:$src1, (load addr:$src2)))]>;
1268
1269 def OR8ri    : Ii8 <0x80, MRM1r, (outs GR8 :$dst), (ins GR8 :$src1, i8imm:$src2),
1270                     "or{b}\t{$src2, $dst|$dst, $src2}",
1271                     [(set GR8:$dst, (or GR8:$src1, imm:$src2))]>;
1272 def OR16ri   : Ii16<0x81, MRM1r, (outs GR16:$dst), (ins GR16:$src1, i16imm:$src2),
1273                     "or{w}\t{$src2, $dst|$dst, $src2}", 
1274                     [(set GR16:$dst, (or GR16:$src1, imm:$src2))]>, OpSize;
1275 def OR32ri   : Ii32<0x81, MRM1r, (outs GR32:$dst), (ins GR32:$src1, i32imm:$src2),
1276                     "or{l}\t{$src2, $dst|$dst, $src2}",
1277                     [(set GR32:$dst, (or GR32:$src1, imm:$src2))]>;
1278
1279 def OR16ri8  : Ii8<0x83, MRM1r, (outs GR16:$dst), (ins GR16:$src1, i16i8imm:$src2),
1280                    "or{w}\t{$src2, $dst|$dst, $src2}",
1281                    [(set GR16:$dst, (or GR16:$src1, i16immSExt8:$src2))]>, OpSize;
1282 def OR32ri8  : Ii8<0x83, MRM1r, (outs GR32:$dst), (ins GR32:$src1, i32i8imm:$src2),
1283                    "or{l}\t{$src2, $dst|$dst, $src2}",
1284                    [(set GR32:$dst, (or GR32:$src1, i32immSExt8:$src2))]>;
1285 let isTwoAddress = 0 in {
1286   def OR8mr  : I<0x08, MRMDestMem, (outs), (ins i8mem:$dst, GR8:$src),
1287                  "or{b}\t{$src, $dst|$dst, $src}",
1288                  [(store (or (load addr:$dst), GR8:$src), addr:$dst)]>;
1289   def OR16mr : I<0x09, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src),
1290                  "or{w}\t{$src, $dst|$dst, $src}",
1291                  [(store (or (load addr:$dst), GR16:$src), addr:$dst)]>, OpSize;
1292   def OR32mr : I<0x09, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
1293                  "or{l}\t{$src, $dst|$dst, $src}",
1294                  [(store (or (load addr:$dst), GR32:$src), addr:$dst)]>;
1295   def OR8mi    : Ii8<0x80, MRM1m, (outs), (ins i8mem :$dst, i8imm:$src),
1296                  "or{b}\t{$src, $dst|$dst, $src}",
1297                  [(store (or (loadi8 addr:$dst), imm:$src), addr:$dst)]>;
1298   def OR16mi   : Ii16<0x81, MRM1m, (outs), (ins i16mem:$dst, i16imm:$src),
1299                  "or{w}\t{$src, $dst|$dst, $src}",
1300                  [(store (or (loadi16 addr:$dst), imm:$src), addr:$dst)]>,
1301                  OpSize;
1302   def OR32mi   : Ii32<0x81, MRM1m, (outs), (ins i32mem:$dst, i32imm:$src),
1303                  "or{l}\t{$src, $dst|$dst, $src}",
1304                  [(store (or (loadi32 addr:$dst), imm:$src), addr:$dst)]>;
1305   def OR16mi8  : Ii8<0x83, MRM1m, (outs), (ins i16mem:$dst, i16i8imm:$src),
1306                  "or{w}\t{$src, $dst|$dst, $src}",
1307                  [(store (or (load addr:$dst), i16immSExt8:$src), addr:$dst)]>,
1308                      OpSize;
1309   def OR32mi8  : Ii8<0x83, MRM1m, (outs), (ins i32mem:$dst, i32i8imm:$src),
1310                  "or{l}\t{$src, $dst|$dst, $src}",
1311                  [(store (or (load addr:$dst), i32immSExt8:$src), addr:$dst)]>;
1312 } // isTwoAddress = 0
1313
1314
1315 let isAsCheapAsAMove = 1,
1316     isCommutable = 1 in { // X = XOR Y, Z --> X = XOR Z, Y
1317   def XOR8rr   : I<0x30, MRMDestReg,
1318                    (outs GR8 :$dst), (ins GR8 :$src1, GR8 :$src2),
1319                    "xor{b}\t{$src2, $dst|$dst, $src2}",
1320                    [(set GR8:$dst, (xor GR8:$src1, GR8:$src2))]>;
1321   def XOR16rr  : I<0x31, MRMDestReg, 
1322                    (outs GR16:$dst), (ins GR16:$src1, GR16:$src2), 
1323                    "xor{w}\t{$src2, $dst|$dst, $src2}",
1324                    [(set GR16:$dst, (xor GR16:$src1, GR16:$src2))]>, OpSize;
1325   def XOR32rr  : I<0x31, MRMDestReg, 
1326                    (outs GR32:$dst), (ins GR32:$src1, GR32:$src2), 
1327                    "xor{l}\t{$src2, $dst|$dst, $src2}",
1328                    [(set GR32:$dst, (xor GR32:$src1, GR32:$src2))]>;
1329 } // isAsCheapAsAMove = 1, isCommutable = 1
1330
1331 def XOR8rm   : I<0x32, MRMSrcMem , 
1332                  (outs GR8 :$dst), (ins GR8:$src1, i8mem :$src2), 
1333                  "xor{b}\t{$src2, $dst|$dst, $src2}",
1334                  [(set GR8:$dst, (xor GR8:$src1, (load addr:$src2)))]>;
1335 def XOR16rm  : I<0x33, MRMSrcMem , 
1336                  (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2), 
1337                  "xor{w}\t{$src2, $dst|$dst, $src2}",
1338                  [(set GR16:$dst, (xor GR16:$src1, (load addr:$src2)))]>,
1339                  OpSize;
1340 def XOR32rm  : I<0x33, MRMSrcMem , 
1341                  (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2), 
1342                  "xor{l}\t{$src2, $dst|$dst, $src2}",
1343                  [(set GR32:$dst, (xor GR32:$src1, (load addr:$src2)))]>;
1344
1345 def XOR8ri   : Ii8<0x80, MRM6r, 
1346                    (outs GR8:$dst), (ins GR8:$src1, i8imm:$src2), 
1347                    "xor{b}\t{$src2, $dst|$dst, $src2}",
1348                    [(set GR8:$dst, (xor GR8:$src1, imm:$src2))]>;
1349 def XOR16ri  : Ii16<0x81, MRM6r, 
1350                     (outs GR16:$dst), (ins GR16:$src1, i16imm:$src2), 
1351                     "xor{w}\t{$src2, $dst|$dst, $src2}",
1352                     [(set GR16:$dst, (xor GR16:$src1, imm:$src2))]>, OpSize;
1353 def XOR32ri  : Ii32<0x81, MRM6r, 
1354                     (outs GR32:$dst), (ins GR32:$src1, i32imm:$src2), 
1355                     "xor{l}\t{$src2, $dst|$dst, $src2}",
1356                     [(set GR32:$dst, (xor GR32:$src1, imm:$src2))]>;
1357 def XOR16ri8 : Ii8<0x83, MRM6r, 
1358                    (outs GR16:$dst), (ins GR16:$src1, i16i8imm:$src2),
1359                    "xor{w}\t{$src2, $dst|$dst, $src2}",
1360                    [(set GR16:$dst, (xor GR16:$src1, i16immSExt8:$src2))]>,
1361                    OpSize;
1362 def XOR32ri8 : Ii8<0x83, MRM6r, 
1363                    (outs GR32:$dst), (ins GR32:$src1, i32i8imm:$src2),
1364                    "xor{l}\t{$src2, $dst|$dst, $src2}",
1365                    [(set GR32:$dst, (xor GR32:$src1, i32immSExt8:$src2))]>;
1366
1367 let isTwoAddress = 0 in {
1368   def XOR8mr   : I<0x30, MRMDestMem,
1369                    (outs), (ins i8mem :$dst, GR8 :$src),
1370                    "xor{b}\t{$src, $dst|$dst, $src}",
1371                    [(store (xor (load addr:$dst), GR8:$src), addr:$dst)]>;
1372   def XOR16mr  : I<0x31, MRMDestMem,
1373                    (outs), (ins i16mem:$dst, GR16:$src),
1374                    "xor{w}\t{$src, $dst|$dst, $src}",
1375                    [(store (xor (load addr:$dst), GR16:$src), addr:$dst)]>,
1376                    OpSize;
1377   def XOR32mr  : I<0x31, MRMDestMem,
1378                    (outs), (ins i32mem:$dst, GR32:$src),
1379                    "xor{l}\t{$src, $dst|$dst, $src}",
1380                    [(store (xor (load addr:$dst), GR32:$src), addr:$dst)]>;
1381   def XOR8mi   : Ii8<0x80, MRM6m,
1382                      (outs), (ins i8mem :$dst, i8imm :$src),
1383                      "xor{b}\t{$src, $dst|$dst, $src}",
1384                     [(store (xor (loadi8 addr:$dst), imm:$src), addr:$dst)]>;
1385   def XOR16mi  : Ii16<0x81, MRM6m,
1386                       (outs), (ins i16mem:$dst, i16imm:$src),
1387                       "xor{w}\t{$src, $dst|$dst, $src}",
1388                    [(store (xor (loadi16 addr:$dst), imm:$src), addr:$dst)]>,
1389                       OpSize;
1390   def XOR32mi  : Ii32<0x81, MRM6m,
1391                       (outs), (ins i32mem:$dst, i32imm:$src),
1392                       "xor{l}\t{$src, $dst|$dst, $src}",
1393                    [(store (xor (loadi32 addr:$dst), imm:$src), addr:$dst)]>;
1394   def XOR16mi8 : Ii8<0x83, MRM6m,
1395                      (outs), (ins i16mem:$dst, i16i8imm :$src),
1396                      "xor{w}\t{$src, $dst|$dst, $src}",
1397                  [(store (xor (load addr:$dst), i16immSExt8:$src), addr:$dst)]>,
1398                      OpSize;
1399   def XOR32mi8 : Ii8<0x83, MRM6m,
1400                      (outs), (ins i32mem:$dst, i32i8imm :$src),
1401                      "xor{l}\t{$src, $dst|$dst, $src}",
1402                  [(store (xor (load addr:$dst), i32immSExt8:$src), addr:$dst)]>;
1403 } // isTwoAddress = 0
1404 } // Defs = [EFLAGS]
1405
1406 // Shift instructions
1407 let Defs = [EFLAGS] in {
1408 let Uses = [CL] in {
1409 def SHL8rCL  : I<0xD2, MRM4r, (outs GR8 :$dst), (ins GR8 :$src),
1410                  "shl{b}\t{%cl, $dst|$dst, %CL}",
1411                  [(set GR8:$dst, (shl GR8:$src, CL))]>;
1412 def SHL16rCL : I<0xD3, MRM4r, (outs GR16:$dst), (ins GR16:$src),
1413                  "shl{w}\t{%cl, $dst|$dst, %CL}",
1414                  [(set GR16:$dst, (shl GR16:$src, CL))]>, OpSize;
1415 def SHL32rCL : I<0xD3, MRM4r, (outs GR32:$dst), (ins GR32:$src),
1416                  "shl{l}\t{%cl, $dst|$dst, %CL}",
1417                  [(set GR32:$dst, (shl GR32:$src, CL))]>;
1418 } // Uses = [CL]
1419
1420 def SHL8ri   : Ii8<0xC0, MRM4r, (outs GR8 :$dst), (ins GR8 :$src1, i8imm:$src2),
1421                    "shl{b}\t{$src2, $dst|$dst, $src2}",
1422                    [(set GR8:$dst, (shl GR8:$src1, (i8 imm:$src2)))]>;
1423 let isConvertibleToThreeAddress = 1 in {   // Can transform into LEA.
1424 def SHL16ri  : Ii8<0xC1, MRM4r, (outs GR16:$dst), (ins GR16:$src1, i8imm:$src2),
1425                    "shl{w}\t{$src2, $dst|$dst, $src2}",
1426                    [(set GR16:$dst, (shl GR16:$src1, (i8 imm:$src2)))]>, OpSize;
1427 def SHL32ri  : Ii8<0xC1, MRM4r, (outs GR32:$dst), (ins GR32:$src1, i8imm:$src2),
1428                    "shl{l}\t{$src2, $dst|$dst, $src2}",
1429                    [(set GR32:$dst, (shl GR32:$src1, (i8 imm:$src2)))]>;
1430 // NOTE: We don't use shifts of a register by one, because 'add reg,reg' is
1431 // cheaper.
1432 } // isConvertibleToThreeAddress = 1
1433
1434 let isTwoAddress = 0 in {
1435   let Uses = [CL] in {
1436   def SHL8mCL  : I<0xD2, MRM4m, (outs), (ins i8mem :$dst),
1437                    "shl{b}\t{%cl, $dst|$dst, %CL}",
1438                    [(store (shl (loadi8 addr:$dst), CL), addr:$dst)]>;
1439   def SHL16mCL : I<0xD3, MRM4m, (outs), (ins i16mem:$dst),
1440                    "shl{w}\t{%cl, $dst|$dst, %CL}",
1441                    [(store (shl (loadi16 addr:$dst), CL), addr:$dst)]>, OpSize;
1442   def SHL32mCL : I<0xD3, MRM4m, (outs), (ins i32mem:$dst),
1443                    "shl{l}\t{%cl, $dst|$dst, %CL}",
1444                    [(store (shl (loadi32 addr:$dst), CL), addr:$dst)]>;
1445   }
1446   def SHL8mi   : Ii8<0xC0, MRM4m, (outs), (ins i8mem :$dst, i8imm:$src),
1447                      "shl{b}\t{$src, $dst|$dst, $src}",
1448                   [(store (shl (loadi8 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
1449   def SHL16mi  : Ii8<0xC1, MRM4m, (outs), (ins i16mem:$dst, i8imm:$src),
1450                      "shl{w}\t{$src, $dst|$dst, $src}",
1451                  [(store (shl (loadi16 addr:$dst), (i8 imm:$src)), addr:$dst)]>,
1452                      OpSize;
1453   def SHL32mi  : Ii8<0xC1, MRM4m, (outs), (ins i32mem:$dst, i8imm:$src),
1454                      "shl{l}\t{$src, $dst|$dst, $src}",
1455                  [(store (shl (loadi32 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
1456
1457   // Shift by 1
1458   def SHL8m1   : I<0xD0, MRM4m, (outs), (ins i8mem :$dst),
1459                    "shl{b}\t$dst",
1460                   [(store (shl (loadi8 addr:$dst), (i8 1)), addr:$dst)]>;
1461   def SHL16m1  : I<0xD1, MRM4m, (outs), (ins i16mem:$dst),
1462                    "shl{w}\t$dst",
1463                  [(store (shl (loadi16 addr:$dst), (i8 1)), addr:$dst)]>,
1464                      OpSize;
1465   def SHL32m1  : I<0xD1, MRM4m, (outs), (ins i32mem:$dst),
1466                    "shl{l}\t$dst",
1467                  [(store (shl (loadi32 addr:$dst), (i8 1)), addr:$dst)]>;
1468 }
1469
1470 let Uses = [CL] in {
1471 def SHR8rCL  : I<0xD2, MRM5r, (outs GR8 :$dst), (ins GR8 :$src),
1472                  "shr{b}\t{%cl, $dst|$dst, %CL}",
1473                  [(set GR8:$dst, (srl GR8:$src, CL))]>;
1474 def SHR16rCL : I<0xD3, MRM5r, (outs GR16:$dst), (ins GR16:$src),
1475                  "shr{w}\t{%cl, $dst|$dst, %CL}",
1476                  [(set GR16:$dst, (srl GR16:$src, CL))]>, OpSize;
1477 def SHR32rCL : I<0xD3, MRM5r, (outs GR32:$dst), (ins GR32:$src),
1478                  "shr{l}\t{%cl, $dst|$dst, %CL}",
1479                  [(set GR32:$dst, (srl GR32:$src, CL))]>;
1480 }
1481
1482 def SHR8ri   : Ii8<0xC0, MRM5r, (outs GR8:$dst), (ins GR8:$src1, i8imm:$src2),
1483                    "shr{b}\t{$src2, $dst|$dst, $src2}",
1484                    [(set GR8:$dst, (srl GR8:$src1, (i8 imm:$src2)))]>;
1485 def SHR16ri  : Ii8<0xC1, MRM5r, (outs GR16:$dst), (ins GR16:$src1, i8imm:$src2),
1486                    "shr{w}\t{$src2, $dst|$dst, $src2}",
1487                    [(set GR16:$dst, (srl GR16:$src1, (i8 imm:$src2)))]>, OpSize;
1488 def SHR32ri  : Ii8<0xC1, MRM5r, (outs GR32:$dst), (ins GR32:$src1, i8imm:$src2),
1489                    "shr{l}\t{$src2, $dst|$dst, $src2}",
1490                    [(set GR32:$dst, (srl GR32:$src1, (i8 imm:$src2)))]>;
1491
1492 // Shift by 1
1493 def SHR8r1   : I<0xD0, MRM5r, (outs GR8:$dst), (ins GR8:$src1),
1494                  "shr{b}\t$dst",
1495                  [(set GR8:$dst, (srl GR8:$src1, (i8 1)))]>;
1496 def SHR16r1  : I<0xD1, MRM5r, (outs GR16:$dst), (ins GR16:$src1),
1497                  "shr{w}\t$dst",
1498                  [(set GR16:$dst, (srl GR16:$src1, (i8 1)))]>, OpSize;
1499 def SHR32r1  : I<0xD1, MRM5r, (outs GR32:$dst), (ins GR32:$src1),
1500                  "shr{l}\t$dst",
1501                  [(set GR32:$dst, (srl GR32:$src1, (i8 1)))]>;
1502
1503 let isTwoAddress = 0 in {
1504   let Uses = [CL] in {
1505   def SHR8mCL  : I<0xD2, MRM5m, (outs), (ins i8mem :$dst),
1506                    "shr{b}\t{%cl, $dst|$dst, %CL}",
1507                    [(store (srl (loadi8 addr:$dst), CL), addr:$dst)]>;
1508   def SHR16mCL : I<0xD3, MRM5m, (outs), (ins i16mem:$dst),
1509                    "shr{w}\t{%cl, $dst|$dst, %CL}",
1510                    [(store (srl (loadi16 addr:$dst), CL), addr:$dst)]>,
1511                    OpSize;
1512   def SHR32mCL : I<0xD3, MRM5m, (outs), (ins i32mem:$dst),
1513                    "shr{l}\t{%cl, $dst|$dst, %CL}",
1514                    [(store (srl (loadi32 addr:$dst), CL), addr:$dst)]>;
1515   }
1516   def SHR8mi   : Ii8<0xC0, MRM5m, (outs), (ins i8mem :$dst, i8imm:$src),
1517                      "shr{b}\t{$src, $dst|$dst, $src}",
1518                   [(store (srl (loadi8 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
1519   def SHR16mi  : Ii8<0xC1, MRM5m, (outs), (ins i16mem:$dst, i8imm:$src),
1520                      "shr{w}\t{$src, $dst|$dst, $src}",
1521                  [(store (srl (loadi16 addr:$dst), (i8 imm:$src)), addr:$dst)]>,
1522                      OpSize;
1523   def SHR32mi  : Ii8<0xC1, MRM5m, (outs), (ins i32mem:$dst, i8imm:$src),
1524                      "shr{l}\t{$src, $dst|$dst, $src}",
1525                  [(store (srl (loadi32 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
1526
1527   // Shift by 1
1528   def SHR8m1   : I<0xD0, MRM5m, (outs), (ins i8mem :$dst),
1529                    "shr{b}\t$dst",
1530                   [(store (srl (loadi8 addr:$dst), (i8 1)), addr:$dst)]>;
1531   def SHR16m1  : I<0xD1, MRM5m, (outs), (ins i16mem:$dst),
1532                    "shr{w}\t$dst",
1533                  [(store (srl (loadi16 addr:$dst), (i8 1)), addr:$dst)]>,OpSize;
1534   def SHR32m1  : I<0xD1, MRM5m, (outs), (ins i32mem:$dst),
1535                    "shr{l}\t$dst",
1536                  [(store (srl (loadi32 addr:$dst), (i8 1)), addr:$dst)]>;
1537 }
1538
1539 let Uses = [CL] in {
1540 def SAR8rCL  : I<0xD2, MRM7r, (outs GR8 :$dst), (ins GR8 :$src),
1541                  "sar{b}\t{%cl, $dst|$dst, %CL}",
1542                  [(set GR8:$dst, (sra GR8:$src, CL))]>;
1543 def SAR16rCL : I<0xD3, MRM7r, (outs GR16:$dst), (ins GR16:$src),
1544                  "sar{w}\t{%cl, $dst|$dst, %CL}",
1545                  [(set GR16:$dst, (sra GR16:$src, CL))]>, OpSize;
1546 def SAR32rCL : I<0xD3, MRM7r, (outs GR32:$dst), (ins GR32:$src),
1547                  "sar{l}\t{%cl, $dst|$dst, %CL}",
1548                  [(set GR32:$dst, (sra GR32:$src, CL))]>;
1549 }
1550
1551 def SAR8ri   : Ii8<0xC0, MRM7r, (outs GR8 :$dst), (ins GR8 :$src1, i8imm:$src2),
1552                    "sar{b}\t{$src2, $dst|$dst, $src2}",
1553                    [(set GR8:$dst, (sra GR8:$src1, (i8 imm:$src2)))]>;
1554 def SAR16ri  : Ii8<0xC1, MRM7r, (outs GR16:$dst), (ins GR16:$src1, i8imm:$src2),
1555                    "sar{w}\t{$src2, $dst|$dst, $src2}",
1556                    [(set GR16:$dst, (sra GR16:$src1, (i8 imm:$src2)))]>,
1557                    OpSize;
1558 def SAR32ri  : Ii8<0xC1, MRM7r, (outs GR32:$dst), (ins GR32:$src1, i8imm:$src2),
1559                    "sar{l}\t{$src2, $dst|$dst, $src2}",
1560                    [(set GR32:$dst, (sra GR32:$src1, (i8 imm:$src2)))]>;
1561
1562 // Shift by 1
1563 def SAR8r1   : I<0xD0, MRM7r, (outs GR8 :$dst), (ins GR8 :$src1),
1564                  "sar{b}\t$dst",
1565                  [(set GR8:$dst, (sra GR8:$src1, (i8 1)))]>;
1566 def SAR16r1  : I<0xD1, MRM7r, (outs GR16:$dst), (ins GR16:$src1),
1567                  "sar{w}\t$dst",
1568                  [(set GR16:$dst, (sra GR16:$src1, (i8 1)))]>, OpSize;
1569 def SAR32r1  : I<0xD1, MRM7r, (outs GR32:$dst), (ins GR32:$src1),
1570                  "sar{l}\t$dst",
1571                  [(set GR32:$dst, (sra GR32:$src1, (i8 1)))]>;
1572
1573 let isTwoAddress = 0 in {
1574   let Uses = [CL] in {
1575   def SAR8mCL  : I<0xD2, MRM7m, (outs), (ins i8mem :$dst),
1576                    "sar{b}\t{%cl, $dst|$dst, %CL}",
1577                    [(store (sra (loadi8 addr:$dst), CL), addr:$dst)]>;
1578   def SAR16mCL : I<0xD3, MRM7m, (outs), (ins i16mem:$dst),
1579                    "sar{w}\t{%cl, $dst|$dst, %CL}",
1580                    [(store (sra (loadi16 addr:$dst), CL), addr:$dst)]>, OpSize;
1581   def SAR32mCL : I<0xD3, MRM7m, (outs), (ins i32mem:$dst), 
1582                    "sar{l}\t{%cl, $dst|$dst, %CL}",
1583                    [(store (sra (loadi32 addr:$dst), CL), addr:$dst)]>;
1584   }
1585   def SAR8mi   : Ii8<0xC0, MRM7m, (outs), (ins i8mem :$dst, i8imm:$src),
1586                      "sar{b}\t{$src, $dst|$dst, $src}",
1587                   [(store (sra (loadi8 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
1588   def SAR16mi  : Ii8<0xC1, MRM7m, (outs), (ins i16mem:$dst, i8imm:$src),
1589                      "sar{w}\t{$src, $dst|$dst, $src}",
1590                  [(store (sra (loadi16 addr:$dst), (i8 imm:$src)), addr:$dst)]>,
1591                      OpSize;
1592   def SAR32mi  : Ii8<0xC1, MRM7m, (outs), (ins i32mem:$dst, i8imm:$src),
1593                      "sar{l}\t{$src, $dst|$dst, $src}",
1594                  [(store (sra (loadi32 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
1595
1596   // Shift by 1
1597   def SAR8m1   : I<0xD0, MRM7m, (outs), (ins i8mem :$dst),
1598                    "sar{b}\t$dst",
1599                   [(store (sra (loadi8 addr:$dst), (i8 1)), addr:$dst)]>;
1600   def SAR16m1  : I<0xD1, MRM7m, (outs), (ins i16mem:$dst),
1601                    "sar{w}\t$dst",
1602                  [(store (sra (loadi16 addr:$dst), (i8 1)), addr:$dst)]>,
1603                      OpSize;
1604   def SAR32m1  : I<0xD1, MRM7m, (outs), (ins i32mem:$dst),
1605                    "sar{l}\t$dst",
1606                  [(store (sra (loadi32 addr:$dst), (i8 1)), addr:$dst)]>;
1607 }
1608
1609 // Rotate instructions
1610 // FIXME: provide shorter instructions when imm8 == 1
1611 let Uses = [CL] in {
1612 def ROL8rCL  : I<0xD2, MRM0r, (outs GR8 :$dst), (ins GR8 :$src),
1613                  "rol{b}\t{%cl, $dst|$dst, %CL}",
1614                  [(set GR8:$dst, (rotl GR8:$src, CL))]>;
1615 def ROL16rCL : I<0xD3, MRM0r, (outs GR16:$dst), (ins GR16:$src),
1616                  "rol{w}\t{%cl, $dst|$dst, %CL}",
1617                  [(set GR16:$dst, (rotl GR16:$src, CL))]>, OpSize;
1618 def ROL32rCL : I<0xD3, MRM0r, (outs GR32:$dst), (ins GR32:$src),
1619                  "rol{l}\t{%cl, $dst|$dst, %CL}",
1620                  [(set GR32:$dst, (rotl GR32:$src, CL))]>;
1621 }
1622
1623 def ROL8ri   : Ii8<0xC0, MRM0r, (outs GR8 :$dst), (ins GR8 :$src1, i8imm:$src2),
1624                    "rol{b}\t{$src2, $dst|$dst, $src2}",
1625                    [(set GR8:$dst, (rotl GR8:$src1, (i8 imm:$src2)))]>;
1626 def ROL16ri  : Ii8<0xC1, MRM0r, (outs GR16:$dst), (ins GR16:$src1, i8imm:$src2),
1627                    "rol{w}\t{$src2, $dst|$dst, $src2}",
1628                    [(set GR16:$dst, (rotl GR16:$src1, (i8 imm:$src2)))]>, OpSize;
1629 def ROL32ri  : Ii8<0xC1, MRM0r, (outs GR32:$dst), (ins GR32:$src1, i8imm:$src2),
1630                    "rol{l}\t{$src2, $dst|$dst, $src2}",
1631                    [(set GR32:$dst, (rotl GR32:$src1, (i8 imm:$src2)))]>;
1632
1633 // Rotate by 1
1634 def ROL8r1   : I<0xD0, MRM0r, (outs GR8 :$dst), (ins GR8 :$src1),
1635                  "rol{b}\t$dst",
1636                  [(set GR8:$dst, (rotl GR8:$src1, (i8 1)))]>;
1637 def ROL16r1  : I<0xD1, MRM0r, (outs GR16:$dst), (ins GR16:$src1),
1638                  "rol{w}\t$dst",
1639                  [(set GR16:$dst, (rotl GR16:$src1, (i8 1)))]>, OpSize;
1640 def ROL32r1  : I<0xD1, MRM0r, (outs GR32:$dst), (ins GR32:$src1),
1641                  "rol{l}\t$dst",
1642                  [(set GR32:$dst, (rotl GR32:$src1, (i8 1)))]>;
1643
1644 let isTwoAddress = 0 in {
1645   let Uses = [CL] in {
1646   def ROL8mCL  : I<0xD2, MRM0m, (outs), (ins i8mem :$dst),
1647                    "rol{b}\t{%cl, $dst|$dst, %CL}",
1648                    [(store (rotl (loadi8 addr:$dst), CL), addr:$dst)]>;
1649   def ROL16mCL : I<0xD3, MRM0m, (outs), (ins i16mem:$dst),
1650                    "rol{w}\t{%cl, $dst|$dst, %CL}",
1651                    [(store (rotl (loadi16 addr:$dst), CL), addr:$dst)]>, OpSize;
1652   def ROL32mCL : I<0xD3, MRM0m, (outs), (ins i32mem:$dst),
1653                    "rol{l}\t{%cl, $dst|$dst, %CL}",
1654                    [(store (rotl (loadi32 addr:$dst), CL), addr:$dst)]>;
1655   }
1656   def ROL8mi   : Ii8<0xC0, MRM0m, (outs), (ins i8mem :$dst, i8imm:$src),
1657                      "rol{b}\t{$src, $dst|$dst, $src}",
1658                  [(store (rotl (loadi8 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
1659   def ROL16mi  : Ii8<0xC1, MRM0m, (outs), (ins i16mem:$dst, i8imm:$src),
1660                      "rol{w}\t{$src, $dst|$dst, $src}",
1661                 [(store (rotl (loadi16 addr:$dst), (i8 imm:$src)), addr:$dst)]>,
1662                      OpSize;
1663   def ROL32mi  : Ii8<0xC1, MRM0m, (outs), (ins i32mem:$dst, i8imm:$src),
1664                      "rol{l}\t{$src, $dst|$dst, $src}",
1665                 [(store (rotl (loadi32 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
1666
1667   // Rotate by 1
1668   def ROL8m1   : I<0xD0, MRM0m, (outs), (ins i8mem :$dst),
1669                    "rol{b}\t$dst",
1670                  [(store (rotl (loadi8 addr:$dst), (i8 1)), addr:$dst)]>;
1671   def ROL16m1  : I<0xD1, MRM0m, (outs), (ins i16mem:$dst),
1672                    "rol{w}\t$dst",
1673                 [(store (rotl (loadi16 addr:$dst), (i8 1)), addr:$dst)]>,
1674                      OpSize;
1675   def ROL32m1  : I<0xD1, MRM0m, (outs), (ins i32mem:$dst),
1676                    "rol{l}\t$dst",
1677                 [(store (rotl (loadi32 addr:$dst), (i8 1)), addr:$dst)]>;
1678 }
1679
1680 let Uses = [CL] in {
1681 def ROR8rCL  : I<0xD2, MRM1r, (outs GR8 :$dst), (ins GR8 :$src),
1682                  "ror{b}\t{%cl, $dst|$dst, %CL}",
1683                  [(set GR8:$dst, (rotr GR8:$src, CL))]>;
1684 def ROR16rCL : I<0xD3, MRM1r, (outs GR16:$dst), (ins GR16:$src),
1685                  "ror{w}\t{%cl, $dst|$dst, %CL}",
1686                  [(set GR16:$dst, (rotr GR16:$src, CL))]>, OpSize;
1687 def ROR32rCL : I<0xD3, MRM1r, (outs GR32:$dst), (ins GR32:$src),
1688                  "ror{l}\t{%cl, $dst|$dst, %CL}",
1689                  [(set GR32:$dst, (rotr GR32:$src, CL))]>;
1690 }
1691
1692 def ROR8ri   : Ii8<0xC0, MRM1r, (outs GR8 :$dst), (ins GR8 :$src1, i8imm:$src2),
1693                    "ror{b}\t{$src2, $dst|$dst, $src2}",
1694                    [(set GR8:$dst, (rotr GR8:$src1, (i8 imm:$src2)))]>;
1695 def ROR16ri  : Ii8<0xC1, MRM1r, (outs GR16:$dst), (ins GR16:$src1, i8imm:$src2),
1696                    "ror{w}\t{$src2, $dst|$dst, $src2}",
1697                    [(set GR16:$dst, (rotr GR16:$src1, (i8 imm:$src2)))]>, OpSize;
1698 def ROR32ri  : Ii8<0xC1, MRM1r, (outs GR32:$dst), (ins GR32:$src1, i8imm:$src2),
1699                    "ror{l}\t{$src2, $dst|$dst, $src2}",
1700                    [(set GR32:$dst, (rotr GR32:$src1, (i8 imm:$src2)))]>;
1701
1702 // Rotate by 1
1703 def ROR8r1   : I<0xD0, MRM1r, (outs GR8 :$dst), (ins GR8 :$src1),
1704                  "ror{b}\t$dst",
1705                  [(set GR8:$dst, (rotr GR8:$src1, (i8 1)))]>;
1706 def ROR16r1  : I<0xD1, MRM1r, (outs GR16:$dst), (ins GR16:$src1),
1707                  "ror{w}\t$dst",
1708                  [(set GR16:$dst, (rotr GR16:$src1, (i8 1)))]>, OpSize;
1709 def ROR32r1  : I<0xD1, MRM1r, (outs GR32:$dst), (ins GR32:$src1),
1710                  "ror{l}\t$dst",
1711                  [(set GR32:$dst, (rotr GR32:$src1, (i8 1)))]>;
1712
1713 let isTwoAddress = 0 in {
1714   let Uses = [CL] in {
1715   def ROR8mCL  : I<0xD2, MRM1m, (outs), (ins i8mem :$dst),
1716                    "ror{b}\t{%cl, $dst|$dst, %CL}",
1717                    [(store (rotr (loadi8 addr:$dst), CL), addr:$dst)]>;
1718   def ROR16mCL : I<0xD3, MRM1m, (outs), (ins i16mem:$dst),
1719                    "ror{w}\t{%cl, $dst|$dst, %CL}",
1720                    [(store (rotr (loadi16 addr:$dst), CL), addr:$dst)]>, OpSize;
1721   def ROR32mCL : I<0xD3, MRM1m, (outs), (ins i32mem:$dst), 
1722                    "ror{l}\t{%cl, $dst|$dst, %CL}",
1723                    [(store (rotr (loadi32 addr:$dst), CL), addr:$dst)]>;
1724   }
1725   def ROR8mi   : Ii8<0xC0, MRM1m, (outs), (ins i8mem :$dst, i8imm:$src),
1726                      "ror{b}\t{$src, $dst|$dst, $src}",
1727                  [(store (rotr (loadi8 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
1728   def ROR16mi  : Ii8<0xC1, MRM1m, (outs), (ins i16mem:$dst, i8imm:$src),
1729                      "ror{w}\t{$src, $dst|$dst, $src}",
1730                 [(store (rotr (loadi16 addr:$dst), (i8 imm:$src)), addr:$dst)]>,
1731                      OpSize;
1732   def ROR32mi  : Ii8<0xC1, MRM1m, (outs), (ins i32mem:$dst, i8imm:$src),
1733                      "ror{l}\t{$src, $dst|$dst, $src}",
1734                 [(store (rotr (loadi32 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
1735
1736   // Rotate by 1
1737   def ROR8m1   : I<0xD0, MRM1m, (outs), (ins i8mem :$dst),
1738                    "ror{b}\t$dst",
1739                  [(store (rotr (loadi8 addr:$dst), (i8 1)), addr:$dst)]>;
1740   def ROR16m1  : I<0xD1, MRM1m, (outs), (ins i16mem:$dst),
1741                    "ror{w}\t$dst",
1742                 [(store (rotr (loadi16 addr:$dst), (i8 1)), addr:$dst)]>,
1743                      OpSize;
1744   def ROR32m1  : I<0xD1, MRM1m, (outs), (ins i32mem:$dst),
1745                    "ror{l}\t$dst",
1746                 [(store (rotr (loadi32 addr:$dst), (i8 1)), addr:$dst)]>;
1747 }
1748
1749
1750
1751 // Double shift instructions (generalizations of rotate)
1752 let Uses = [CL] in {
1753 def SHLD32rrCL : I<0xA5, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
1754                    "shld{l}\t{%cl, $src2, $dst|$dst, $src2, %CL}",
1755                    [(set GR32:$dst, (X86shld GR32:$src1, GR32:$src2, CL))]>, TB;
1756 def SHRD32rrCL : I<0xAD, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
1757                    "shrd{l}\t{%cl, $src2, $dst|$dst, $src2, %CL}",
1758                    [(set GR32:$dst, (X86shrd GR32:$src1, GR32:$src2, CL))]>, TB;
1759 def SHLD16rrCL : I<0xA5, MRMDestReg, (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
1760                    "shld{w}\t{%cl, $src2, $dst|$dst, $src2, %CL}",
1761                    [(set GR16:$dst, (X86shld GR16:$src1, GR16:$src2, CL))]>,
1762                    TB, OpSize;
1763 def SHRD16rrCL : I<0xAD, MRMDestReg, (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
1764                    "shrd{w}\t{%cl, $src2, $dst|$dst, $src2, %CL}",
1765                    [(set GR16:$dst, (X86shrd GR16:$src1, GR16:$src2, CL))]>,
1766                    TB, OpSize;
1767 }
1768
1769 let isCommutable = 1 in {  // These instructions commute to each other.
1770 def SHLD32rri8 : Ii8<0xA4, MRMDestReg,
1771                      (outs GR32:$dst), (ins GR32:$src1, GR32:$src2, i8imm:$src3),
1772                      "shld{l}\t{$src3, $src2, $dst|$dst, $src2, $src3}",
1773                      [(set GR32:$dst, (X86shld GR32:$src1, GR32:$src2,
1774                                       (i8 imm:$src3)))]>,
1775                  TB;
1776 def SHRD32rri8 : Ii8<0xAC, MRMDestReg,
1777                      (outs GR32:$dst), (ins GR32:$src1, GR32:$src2, i8imm:$src3),
1778                      "shrd{l}\t{$src3, $src2, $dst|$dst, $src2, $src3}",
1779                      [(set GR32:$dst, (X86shrd GR32:$src1, GR32:$src2,
1780                                       (i8 imm:$src3)))]>,
1781                  TB;
1782 def SHLD16rri8 : Ii8<0xA4, MRMDestReg,
1783                      (outs GR16:$dst), (ins GR16:$src1, GR16:$src2, i8imm:$src3),
1784                      "shld{w}\t{$src3, $src2, $dst|$dst, $src2, $src3}",
1785                      [(set GR16:$dst, (X86shld GR16:$src1, GR16:$src2,
1786                                       (i8 imm:$src3)))]>,
1787                      TB, OpSize;
1788 def SHRD16rri8 : Ii8<0xAC, MRMDestReg,
1789                      (outs GR16:$dst), (ins GR16:$src1, GR16:$src2, i8imm:$src3),
1790                      "shrd{w}\t{$src3, $src2, $dst|$dst, $src2, $src3}",
1791                      [(set GR16:$dst, (X86shrd GR16:$src1, GR16:$src2,
1792                                       (i8 imm:$src3)))]>,
1793                      TB, OpSize;
1794 }
1795
1796 let isTwoAddress = 0 in {
1797   let Uses = [CL] in {
1798   def SHLD32mrCL : I<0xA5, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src2),
1799                      "shld{l}\t{%cl, $src2, $dst|$dst, $src2, %CL}",
1800                      [(store (X86shld (loadi32 addr:$dst), GR32:$src2, CL),
1801                        addr:$dst)]>, TB;
1802   def SHRD32mrCL : I<0xAD, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src2),
1803                     "shrd{l}\t{%cl, $src2, $dst|$dst, $src2, %CL}",
1804                     [(store (X86shrd (loadi32 addr:$dst), GR32:$src2, CL),
1805                       addr:$dst)]>, TB;
1806   }
1807   def SHLD32mri8 : Ii8<0xA4, MRMDestMem,
1808                       (outs), (ins i32mem:$dst, GR32:$src2, i8imm:$src3),
1809                       "shld{l}\t{$src3, $src2, $dst|$dst, $src2, $src3}",
1810                       [(store (X86shld (loadi32 addr:$dst), GR32:$src2,
1811                                         (i8 imm:$src3)), addr:$dst)]>,
1812                       TB;
1813   def SHRD32mri8 : Ii8<0xAC, MRMDestMem, 
1814                        (outs), (ins i32mem:$dst, GR32:$src2, i8imm:$src3),
1815                        "shrd{l}\t{$src3, $src2, $dst|$dst, $src2, $src3}",
1816                        [(store (X86shrd (loadi32 addr:$dst), GR32:$src2,
1817                                          (i8 imm:$src3)), addr:$dst)]>,
1818                        TB;
1819
1820   let Uses = [CL] in {
1821   def SHLD16mrCL : I<0xA5, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src2),
1822                      "shld{w}\t{%cl, $src2, $dst|$dst, $src2, %CL}",
1823                      [(store (X86shld (loadi16 addr:$dst), GR16:$src2, CL),
1824                        addr:$dst)]>, TB, OpSize;
1825   def SHRD16mrCL : I<0xAD, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src2),
1826                     "shrd{w}\t{%cl, $src2, $dst|$dst, $src2, %CL}",
1827                     [(store (X86shrd (loadi16 addr:$dst), GR16:$src2, CL),
1828                       addr:$dst)]>, TB, OpSize;
1829   }
1830   def SHLD16mri8 : Ii8<0xA4, MRMDestMem,
1831                       (outs), (ins i16mem:$dst, GR16:$src2, i8imm:$src3),
1832                       "shld{w}\t{$src3, $src2, $dst|$dst, $src2, $src3}",
1833                       [(store (X86shld (loadi16 addr:$dst), GR16:$src2,
1834                                         (i8 imm:$src3)), addr:$dst)]>,
1835                       TB, OpSize;
1836   def SHRD16mri8 : Ii8<0xAC, MRMDestMem, 
1837                        (outs), (ins i16mem:$dst, GR16:$src2, i8imm:$src3),
1838                        "shrd{w}\t{$src3, $src2, $dst|$dst, $src2, $src3}",
1839                       [(store (X86shrd (loadi16 addr:$dst), GR16:$src2,
1840                                         (i8 imm:$src3)), addr:$dst)]>,
1841                        TB, OpSize;
1842 }
1843 } // Defs = [EFLAGS]
1844
1845
1846 // Arithmetic.
1847 let Defs = [EFLAGS] in {
1848 let isCommutable = 1 in {   // X = ADD Y, Z   --> X = ADD Z, Y
1849 def ADD8rr   : I<0x00, MRMDestReg, (outs GR8 :$dst),
1850                                    (ins GR8 :$src1, GR8 :$src2),
1851                  "add{b}\t{$src2, $dst|$dst, $src2}",
1852                  [(set GR8:$dst, (add GR8:$src1, GR8:$src2))]>;
1853 let isConvertibleToThreeAddress = 1 in {   // Can transform into LEA.
1854 def ADD16rr  : I<0x01, MRMDestReg, (outs GR16:$dst),
1855                                    (ins GR16:$src1, GR16:$src2),
1856                  "add{w}\t{$src2, $dst|$dst, $src2}",
1857                  [(set GR16:$dst, (add GR16:$src1, GR16:$src2))]>, OpSize;
1858 def ADD32rr  : I<0x01, MRMDestReg, (outs GR32:$dst),
1859                                    (ins GR32:$src1, GR32:$src2),
1860                  "add{l}\t{$src2, $dst|$dst, $src2}",
1861                  [(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
1862 } // end isConvertibleToThreeAddress
1863 } // end isCommutable
1864 def ADD8rm   : I<0x02, MRMSrcMem, (outs GR8 :$dst),
1865                                   (ins GR8 :$src1, i8mem :$src2),
1866                  "add{b}\t{$src2, $dst|$dst, $src2}",
1867                  [(set GR8:$dst, (add GR8:$src1, (load addr:$src2)))]>;
1868 def ADD16rm  : I<0x03, MRMSrcMem, (outs GR16:$dst),
1869                                   (ins GR16:$src1, i16mem:$src2),
1870                  "add{w}\t{$src2, $dst|$dst, $src2}",
1871                  [(set GR16:$dst, (add GR16:$src1, (load addr:$src2)))]>,OpSize;
1872 def ADD32rm  : I<0x03, MRMSrcMem, (outs GR32:$dst),
1873                                   (ins GR32:$src1, i32mem:$src2),
1874                  "add{l}\t{$src2, $dst|$dst, $src2}",
1875                  [(set GR32:$dst, (add GR32:$src1, (load addr:$src2)))]>;
1876
1877 def ADD8ri   : Ii8<0x80, MRM0r, (outs GR8:$dst), (ins GR8:$src1, i8imm:$src2),
1878                    "add{b}\t{$src2, $dst|$dst, $src2}",
1879                    [(set GR8:$dst, (add GR8:$src1, imm:$src2))]>;
1880
1881 let isConvertibleToThreeAddress = 1 in {   // Can transform into LEA.
1882 def ADD16ri  : Ii16<0x81, MRM0r, (outs GR16:$dst),
1883                                  (ins GR16:$src1, i16imm:$src2),
1884                     "add{w}\t{$src2, $dst|$dst, $src2}",
1885                     [(set GR16:$dst, (add GR16:$src1, imm:$src2))]>, OpSize;
1886 def ADD32ri  : Ii32<0x81, MRM0r, (outs GR32:$dst),
1887                                  (ins GR32:$src1, i32imm:$src2),
1888                     "add{l}\t{$src2, $dst|$dst, $src2}",
1889                     [(set GR32:$dst, (add GR32:$src1, imm:$src2))]>;
1890 def ADD16ri8 : Ii8<0x83, MRM0r, (outs GR16:$dst),
1891                                 (ins GR16:$src1, i16i8imm:$src2),
1892                    "add{w}\t{$src2, $dst|$dst, $src2}",
1893                 [(set GR16:$dst, (add GR16:$src1, i16immSExt8:$src2))]>, OpSize;
1894 def ADD32ri8 : Ii8<0x83, MRM0r, (outs GR32:$dst),
1895                                 (ins GR32:$src1, i32i8imm:$src2),
1896                    "add{l}\t{$src2, $dst|$dst, $src2}",
1897                 [(set GR32:$dst, (add GR32:$src1, i32immSExt8:$src2))]>;
1898 }
1899
1900 let isTwoAddress = 0 in {
1901   def ADD8mr   : I<0x00, MRMDestMem, (outs), (ins i8mem :$dst, GR8 :$src2),
1902                    "add{b}\t{$src2, $dst|$dst, $src2}",
1903                    [(store (add (load addr:$dst), GR8:$src2), addr:$dst)]>;
1904   def ADD16mr  : I<0x01, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src2),
1905                    "add{w}\t{$src2, $dst|$dst, $src2}",
1906                    [(store (add (load addr:$dst), GR16:$src2), addr:$dst)]>,
1907                  OpSize;
1908   def ADD32mr  : I<0x01, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src2),
1909                    "add{l}\t{$src2, $dst|$dst, $src2}",
1910                    [(store (add (load addr:$dst), GR32:$src2), addr:$dst)]>;
1911   def ADD8mi   : Ii8<0x80, MRM0m, (outs), (ins i8mem :$dst, i8imm :$src2),
1912                      "add{b}\t{$src2, $dst|$dst, $src2}",
1913                    [(store (add (loadi8 addr:$dst), imm:$src2), addr:$dst)]>;
1914   def ADD16mi  : Ii16<0x81, MRM0m, (outs), (ins i16mem:$dst, i16imm:$src2),
1915                       "add{w}\t{$src2, $dst|$dst, $src2}",
1916                   [(store (add (loadi16 addr:$dst), imm:$src2), addr:$dst)]>,
1917                  OpSize;
1918   def ADD32mi  : Ii32<0x81, MRM0m, (outs), (ins i32mem:$dst, i32imm:$src2),
1919                       "add{l}\t{$src2, $dst|$dst, $src2}",
1920                   [(store (add (loadi32 addr:$dst), imm:$src2), addr:$dst)]>;
1921   def ADD16mi8 : Ii8<0x83, MRM0m, (outs), (ins i16mem:$dst, i16i8imm :$src2),
1922                      "add{w}\t{$src2, $dst|$dst, $src2}",
1923                 [(store (add (load addr:$dst), i16immSExt8:$src2), addr:$dst)]>,
1924                  OpSize;
1925   def ADD32mi8 : Ii8<0x83, MRM0m, (outs), (ins i32mem:$dst, i32i8imm :$src2),
1926                      "add{l}\t{$src2, $dst|$dst, $src2}",
1927                 [(store (add (load addr:$dst), i32immSExt8:$src2), addr:$dst)]>;
1928 }
1929
1930 let Uses = [EFLAGS] in {
1931 let isCommutable = 1 in {  // X = ADC Y, Z --> X = ADC Z, Y
1932 def ADC32rr  : I<0x11, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
1933                  "adc{l}\t{$src2, $dst|$dst, $src2}",
1934                  [(set GR32:$dst, (adde GR32:$src1, GR32:$src2))]>;
1935 }
1936 def ADC32rm  : I<0x13, MRMSrcMem , (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1937                  "adc{l}\t{$src2, $dst|$dst, $src2}",
1938                  [(set GR32:$dst, (adde GR32:$src1, (load addr:$src2)))]>;
1939 def ADC32ri  : Ii32<0x81, MRM2r, (outs GR32:$dst), (ins GR32:$src1, i32imm:$src2),
1940                     "adc{l}\t{$src2, $dst|$dst, $src2}",
1941                  [(set GR32:$dst, (adde GR32:$src1, imm:$src2))]>;
1942 def ADC32ri8 : Ii8<0x83, MRM2r, (outs GR32:$dst), (ins GR32:$src1, i32i8imm:$src2),
1943                    "adc{l}\t{$src2, $dst|$dst, $src2}",
1944                  [(set GR32:$dst, (adde GR32:$src1, i32immSExt8:$src2))]>;
1945
1946 let isTwoAddress = 0 in {
1947   def ADC32mr  : I<0x11, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src2),
1948                    "adc{l}\t{$src2, $dst|$dst, $src2}",
1949                    [(store (adde (load addr:$dst), GR32:$src2), addr:$dst)]>;
1950   def ADC32mi  : Ii32<0x81, MRM2m, (outs), (ins i32mem:$dst, i32imm:$src2),
1951                       "adc{l}\t{$src2, $dst|$dst, $src2}",
1952                   [(store (adde (loadi32 addr:$dst), imm:$src2), addr:$dst)]>;
1953   def ADC32mi8 : Ii8<0x83, MRM2m, (outs), (ins i32mem:$dst, i32i8imm :$src2),
1954                      "adc{l}\t{$src2, $dst|$dst, $src2}",
1955              [(store (adde (load addr:$dst), i32immSExt8:$src2), addr:$dst)]>;
1956 }
1957 } // Uses = [EFLAGS]
1958
1959 def SUB8rr   : I<0x28, MRMDestReg, (outs GR8 :$dst), (ins GR8 :$src1, GR8 :$src2),
1960                  "sub{b}\t{$src2, $dst|$dst, $src2}",
1961                  [(set GR8:$dst, (sub GR8:$src1, GR8:$src2))]>;
1962 def SUB16rr  : I<0x29, MRMDestReg, (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
1963                  "sub{w}\t{$src2, $dst|$dst, $src2}",
1964                  [(set GR16:$dst, (sub GR16:$src1, GR16:$src2))]>, OpSize;
1965 def SUB32rr  : I<0x29, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
1966                  "sub{l}\t{$src2, $dst|$dst, $src2}",
1967                  [(set GR32:$dst, (sub GR32:$src1, GR32:$src2))]>;
1968 def SUB8rm   : I<0x2A, MRMSrcMem, (outs GR8 :$dst), (ins GR8 :$src1, i8mem :$src2),
1969                  "sub{b}\t{$src2, $dst|$dst, $src2}",
1970                  [(set GR8:$dst, (sub GR8:$src1, (load addr:$src2)))]>;
1971 def SUB16rm  : I<0x2B, MRMSrcMem, (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
1972                  "sub{w}\t{$src2, $dst|$dst, $src2}",
1973                  [(set GR16:$dst, (sub GR16:$src1, (load addr:$src2)))]>, OpSize;
1974 def SUB32rm  : I<0x2B, MRMSrcMem, (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
1975                  "sub{l}\t{$src2, $dst|$dst, $src2}",
1976                  [(set GR32:$dst, (sub GR32:$src1, (load addr:$src2)))]>;
1977
1978 def SUB8ri   : Ii8 <0x80, MRM5r, (outs GR8:$dst), (ins GR8:$src1, i8imm:$src2),
1979                     "sub{b}\t{$src2, $dst|$dst, $src2}",
1980                     [(set GR8:$dst, (sub GR8:$src1, imm:$src2))]>;
1981 def SUB16ri  : Ii16<0x81, MRM5r, (outs GR16:$dst), (ins GR16:$src1, i16imm:$src2),
1982                     "sub{w}\t{$src2, $dst|$dst, $src2}",
1983                     [(set GR16:$dst, (sub GR16:$src1, imm:$src2))]>, OpSize;
1984 def SUB32ri  : Ii32<0x81, MRM5r, (outs GR32:$dst), (ins GR32:$src1, i32imm:$src2),
1985                     "sub{l}\t{$src2, $dst|$dst, $src2}",
1986                     [(set GR32:$dst, (sub GR32:$src1, imm:$src2))]>;
1987 def SUB16ri8 : Ii8<0x83, MRM5r, (outs GR16:$dst), (ins GR16:$src1, i16i8imm:$src2),
1988                    "sub{w}\t{$src2, $dst|$dst, $src2}",
1989                    [(set GR16:$dst, (sub GR16:$src1, i16immSExt8:$src2))]>,
1990                OpSize;
1991 def SUB32ri8 : Ii8<0x83, MRM5r, (outs GR32:$dst), (ins GR32:$src1, i32i8imm:$src2),
1992                    "sub{l}\t{$src2, $dst|$dst, $src2}",
1993                    [(set GR32:$dst, (sub GR32:$src1, i32immSExt8:$src2))]>;
1994 let isTwoAddress = 0 in {
1995   def SUB8mr   : I<0x28, MRMDestMem, (outs), (ins i8mem :$dst, GR8 :$src2),
1996                    "sub{b}\t{$src2, $dst|$dst, $src2}",
1997                    [(store (sub (load addr:$dst), GR8:$src2), addr:$dst)]>;
1998   def SUB16mr  : I<0x29, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src2),
1999                    "sub{w}\t{$src2, $dst|$dst, $src2}",
2000                    [(store (sub (load addr:$dst), GR16:$src2), addr:$dst)]>,
2001                  OpSize;
2002   def SUB32mr  : I<0x29, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src2), 
2003                    "sub{l}\t{$src2, $dst|$dst, $src2}",
2004                    [(store (sub (load addr:$dst), GR32:$src2), addr:$dst)]>;
2005   def SUB8mi   : Ii8<0x80, MRM5m, (outs), (ins i8mem :$dst, i8imm:$src2), 
2006                      "sub{b}\t{$src2, $dst|$dst, $src2}",
2007                    [(store (sub (loadi8 addr:$dst), imm:$src2), addr:$dst)]>;
2008   def SUB16mi  : Ii16<0x81, MRM5m, (outs), (ins i16mem:$dst, i16imm:$src2), 
2009                       "sub{w}\t{$src2, $dst|$dst, $src2}",
2010                   [(store (sub (loadi16 addr:$dst), imm:$src2), addr:$dst)]>,
2011                  OpSize;
2012   def SUB32mi  : Ii32<0x81, MRM5m, (outs), (ins i32mem:$dst, i32imm:$src2), 
2013                       "sub{l}\t{$src2, $dst|$dst, $src2}",
2014                   [(store (sub (loadi32 addr:$dst), imm:$src2), addr:$dst)]>;
2015   def SUB16mi8 : Ii8<0x83, MRM5m, (outs), (ins i16mem:$dst, i16i8imm :$src2), 
2016                      "sub{w}\t{$src2, $dst|$dst, $src2}",
2017                 [(store (sub (load addr:$dst), i16immSExt8:$src2), addr:$dst)]>,
2018                  OpSize;
2019   def SUB32mi8 : Ii8<0x83, MRM5m, (outs), (ins i32mem:$dst, i32i8imm :$src2), 
2020                      "sub{l}\t{$src2, $dst|$dst, $src2}",
2021                 [(store (sub (load addr:$dst), i32immSExt8:$src2), addr:$dst)]>;
2022 }
2023
2024 let Uses = [EFLAGS] in {
2025 def SBB32rr    : I<0x19, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
2026                   "sbb{l}\t{$src2, $dst|$dst, $src2}",
2027                  [(set GR32:$dst, (sube GR32:$src1, GR32:$src2))]>;
2028
2029 let isTwoAddress = 0 in {
2030   def SBB32mr  : I<0x19, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src2), 
2031                    "sbb{l}\t{$src2, $dst|$dst, $src2}",
2032                    [(store (sube (load addr:$dst), GR32:$src2), addr:$dst)]>;
2033   def SBB8mi  : Ii32<0x80, MRM3m, (outs), (ins i8mem:$dst, i8imm:$src2), 
2034                       "sbb{b}\t{$src2, $dst|$dst, $src2}",
2035                    [(store (sube (loadi8 addr:$dst), imm:$src2), addr:$dst)]>;
2036   def SBB32mi  : Ii32<0x81, MRM3m, (outs), (ins i32mem:$dst, i32imm:$src2), 
2037                       "sbb{l}\t{$src2, $dst|$dst, $src2}",
2038                   [(store (sube (loadi32 addr:$dst), imm:$src2), addr:$dst)]>;
2039   def SBB32mi8 : Ii8<0x83, MRM3m, (outs), (ins i32mem:$dst, i32i8imm :$src2), 
2040                      "sbb{l}\t{$src2, $dst|$dst, $src2}",
2041                [(store (sube (load addr:$dst), i32immSExt8:$src2), addr:$dst)]>;
2042 }
2043 def SBB32rm  : I<0x1B, MRMSrcMem, (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
2044                     "sbb{l}\t{$src2, $dst|$dst, $src2}",
2045                     [(set GR32:$dst, (sube GR32:$src1, (load addr:$src2)))]>;
2046 def SBB32ri  : Ii32<0x81, MRM3r, (outs GR32:$dst), (ins GR32:$src1, i32imm:$src2),
2047                     "sbb{l}\t{$src2, $dst|$dst, $src2}",
2048                     [(set GR32:$dst, (sube GR32:$src1, imm:$src2))]>;
2049 def SBB32ri8 : Ii8<0x83, MRM3r, (outs GR32:$dst), (ins GR32:$src1, i32i8imm:$src2),
2050                    "sbb{l}\t{$src2, $dst|$dst, $src2}",
2051                    [(set GR32:$dst, (sube GR32:$src1, i32immSExt8:$src2))]>;
2052 } // Uses = [EFLAGS]
2053 } // Defs = [EFLAGS]
2054
2055 let Defs = [EFLAGS] in {
2056 let isCommutable = 1 in {  // X = IMUL Y, Z --> X = IMUL Z, Y
2057 def IMUL16rr : I<0xAF, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
2058                  "imul{w}\t{$src2, $dst|$dst, $src2}",
2059                  [(set GR16:$dst, (mul GR16:$src1, GR16:$src2))]>, TB, OpSize;
2060 def IMUL32rr : I<0xAF, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
2061                  "imul{l}\t{$src2, $dst|$dst, $src2}",
2062                  [(set GR32:$dst, (mul GR32:$src1, GR32:$src2))]>, TB;
2063 }
2064 def IMUL16rm : I<0xAF, MRMSrcMem, (outs GR16:$dst), (ins GR16:$src1, i16mem:$src2),
2065                  "imul{w}\t{$src2, $dst|$dst, $src2}",
2066                  [(set GR16:$dst, (mul GR16:$src1, (load addr:$src2)))]>,
2067                  TB, OpSize;
2068 def IMUL32rm : I<0xAF, MRMSrcMem, (outs GR32:$dst), (ins GR32:$src1, i32mem:$src2),
2069                  "imul{l}\t{$src2, $dst|$dst, $src2}",
2070                  [(set GR32:$dst, (mul GR32:$src1, (load addr:$src2)))]>, TB;
2071 } // Defs = [EFLAGS]
2072 } // end Two Address instructions
2073
2074 // Suprisingly enough, these are not two address instructions!
2075 let Defs = [EFLAGS] in {
2076 def IMUL16rri  : Ii16<0x69, MRMSrcReg,                      // GR16 = GR16*I16
2077                       (outs GR16:$dst), (ins GR16:$src1, i16imm:$src2),
2078                       "imul{w}\t{$src2, $src1, $dst|$dst, $src1, $src2}",
2079                       [(set GR16:$dst, (mul GR16:$src1, imm:$src2))]>, OpSize;
2080 def IMUL32rri  : Ii32<0x69, MRMSrcReg,                      // GR32 = GR32*I32
2081                       (outs GR32:$dst), (ins GR32:$src1, i32imm:$src2),
2082                       "imul{l}\t{$src2, $src1, $dst|$dst, $src1, $src2}",
2083                       [(set GR32:$dst, (mul GR32:$src1, imm:$src2))]>;
2084 def IMUL16rri8 : Ii8<0x6B, MRMSrcReg,                       // GR16 = GR16*I8
2085                      (outs GR16:$dst), (ins GR16:$src1, i16i8imm:$src2),
2086                      "imul{w}\t{$src2, $src1, $dst|$dst, $src1, $src2}",
2087                      [(set GR16:$dst, (mul GR16:$src1, i16immSExt8:$src2))]>,
2088                      OpSize;
2089 def IMUL32rri8 : Ii8<0x6B, MRMSrcReg,                       // GR32 = GR32*I8
2090                      (outs GR32:$dst), (ins GR32:$src1, i32i8imm:$src2),
2091                      "imul{l}\t{$src2, $src1, $dst|$dst, $src1, $src2}",
2092                      [(set GR32:$dst, (mul GR32:$src1, i32immSExt8:$src2))]>;
2093
2094 def IMUL16rmi  : Ii16<0x69, MRMSrcMem,                      // GR16 = [mem16]*I16
2095                       (outs GR16:$dst), (ins i16mem:$src1, i16imm:$src2),
2096                       "imul{w}\t{$src2, $src1, $dst|$dst, $src1, $src2}",
2097                       [(set GR16:$dst, (mul (load addr:$src1), imm:$src2))]>,
2098                       OpSize;
2099 def IMUL32rmi  : Ii32<0x69, MRMSrcMem,                      // GR32 = [mem32]*I32
2100                       (outs GR32:$dst), (ins i32mem:$src1, i32imm:$src2),
2101                       "imul{l}\t{$src2, $src1, $dst|$dst, $src1, $src2}",
2102                       [(set GR32:$dst, (mul (load addr:$src1), imm:$src2))]>;
2103 def IMUL16rmi8 : Ii8<0x6B, MRMSrcMem,                       // GR16 = [mem16]*I8
2104                      (outs GR16:$dst), (ins i16mem:$src1, i16i8imm :$src2),
2105                      "imul{w}\t{$src2, $src1, $dst|$dst, $src1, $src2}",
2106                   [(set GR16:$dst, (mul (load addr:$src1), i16immSExt8:$src2))]>,
2107                      OpSize;
2108 def IMUL32rmi8 : Ii8<0x6B, MRMSrcMem,                       // GR32 = [mem32]*I8
2109                      (outs GR32:$dst), (ins i32mem:$src1, i32i8imm: $src2),
2110                      "imul{l}\t{$src2, $src1, $dst|$dst, $src1, $src2}",
2111                   [(set GR32:$dst, (mul (load addr:$src1), i32immSExt8:$src2))]>;
2112 } // Defs = [EFLAGS]
2113
2114 //===----------------------------------------------------------------------===//
2115 // Test instructions are just like AND, except they don't generate a result.
2116 //
2117 let Defs = [EFLAGS] in {
2118 let isCommutable = 1 in {   // TEST X, Y   --> TEST Y, X
2119 def TEST8rr  : I<0x84, MRMDestReg, (outs),  (ins GR8:$src1, GR8:$src2),
2120                      "test{b}\t{$src2, $src1|$src1, $src2}",
2121                      [(X86cmp (and_su GR8:$src1, GR8:$src2), 0),
2122                       (implicit EFLAGS)]>;
2123 def TEST16rr : I<0x85, MRMDestReg, (outs),  (ins GR16:$src1, GR16:$src2),
2124                      "test{w}\t{$src2, $src1|$src1, $src2}",
2125                      [(X86cmp (and_su GR16:$src1, GR16:$src2), 0),
2126                       (implicit EFLAGS)]>,
2127                  OpSize;
2128 def TEST32rr : I<0x85, MRMDestReg, (outs),  (ins GR32:$src1, GR32:$src2),
2129                      "test{l}\t{$src2, $src1|$src1, $src2}",
2130                      [(X86cmp (and_su GR32:$src1, GR32:$src2), 0),
2131                       (implicit EFLAGS)]>;
2132 }
2133
2134 def TEST8rm  : I<0x84, MRMSrcMem, (outs),  (ins GR8 :$src1, i8mem :$src2),
2135                      "test{b}\t{$src2, $src1|$src1, $src2}",
2136                      [(X86cmp (and GR8:$src1, (loadi8 addr:$src2)), 0),
2137                       (implicit EFLAGS)]>;
2138 def TEST16rm : I<0x85, MRMSrcMem, (outs),  (ins GR16:$src1, i16mem:$src2),
2139                      "test{w}\t{$src2, $src1|$src1, $src2}",
2140                      [(X86cmp (and GR16:$src1, (loadi16 addr:$src2)), 0),
2141                       (implicit EFLAGS)]>, OpSize;
2142 def TEST32rm : I<0x85, MRMSrcMem, (outs),  (ins GR32:$src1, i32mem:$src2),
2143                      "test{l}\t{$src2, $src1|$src1, $src2}",
2144                      [(X86cmp (and GR32:$src1, (loadi32 addr:$src2)), 0),
2145                       (implicit EFLAGS)]>;
2146
2147 def TEST8ri  : Ii8 <0xF6, MRM0r,                     // flags = GR8  & imm8
2148                     (outs),  (ins GR8:$src1, i8imm:$src2),
2149                     "test{b}\t{$src2, $src1|$src1, $src2}",
2150                     [(X86cmp (and_su GR8:$src1, imm:$src2), 0),
2151                      (implicit EFLAGS)]>;
2152 def TEST16ri : Ii16<0xF7, MRM0r,                     // flags = GR16 & imm16
2153                     (outs),  (ins GR16:$src1, i16imm:$src2),
2154                     "test{w}\t{$src2, $src1|$src1, $src2}",
2155                     [(X86cmp (and_su GR16:$src1, imm:$src2), 0),
2156                      (implicit EFLAGS)]>, OpSize;
2157 def TEST32ri : Ii32<0xF7, MRM0r,                     // flags = GR32 & imm32
2158                     (outs),  (ins GR32:$src1, i32imm:$src2),
2159                     "test{l}\t{$src2, $src1|$src1, $src2}",
2160                     [(X86cmp (and_su GR32:$src1, imm:$src2), 0),
2161                      (implicit EFLAGS)]>;
2162
2163 def TEST8mi  : Ii8 <0xF6, MRM0m,                   // flags = [mem8]  & imm8
2164                     (outs), (ins i8mem:$src1, i8imm:$src2),
2165                     "test{b}\t{$src2, $src1|$src1, $src2}",
2166                     [(X86cmp (and (loadi8 addr:$src1), imm:$src2), 0),
2167                      (implicit EFLAGS)]>;
2168 def TEST16mi : Ii16<0xF7, MRM0m,                   // flags = [mem16] & imm16
2169                     (outs), (ins i16mem:$src1, i16imm:$src2),
2170                     "test{w}\t{$src2, $src1|$src1, $src2}",
2171                     [(X86cmp (and (loadi16 addr:$src1), imm:$src2), 0),
2172                      (implicit EFLAGS)]>, OpSize;
2173 def TEST32mi : Ii32<0xF7, MRM0m,                   // flags = [mem32] & imm32
2174                     (outs), (ins i32mem:$src1, i32imm:$src2),
2175                     "test{l}\t{$src2, $src1|$src1, $src2}",
2176                     [(X86cmp (and (loadi32 addr:$src1), imm:$src2), 0),
2177                      (implicit EFLAGS)]>;
2178 } // Defs = [EFLAGS]
2179
2180
2181 // Condition code ops, incl. set if equal/not equal/...
2182 let Defs = [EFLAGS], Uses = [AH], neverHasSideEffects = 1 in
2183 def SAHF     : I<0x9E, RawFrm, (outs),  (ins), "sahf", []>;  // flags = AH
2184 let Defs = [AH], Uses = [EFLAGS], neverHasSideEffects = 1 in
2185 def LAHF     : I<0x9F, RawFrm, (outs),  (ins), "lahf", []>;  // AH = flags
2186
2187 let Uses = [EFLAGS] in {
2188 def SETEr    : I<0x94, MRM0r, 
2189                  (outs GR8   :$dst), (ins),
2190                  "sete\t$dst",
2191                  [(set GR8:$dst, (X86setcc X86_COND_E, EFLAGS))]>,
2192                TB;                        // GR8 = ==
2193 def SETEm    : I<0x94, MRM0m, 
2194                  (outs), (ins i8mem:$dst),
2195                  "sete\t$dst",
2196                  [(store (X86setcc X86_COND_E, EFLAGS), addr:$dst)]>,
2197                TB;                        // [mem8] = ==
2198 def SETNEr   : I<0x95, MRM0r, 
2199                  (outs GR8   :$dst), (ins),
2200                  "setne\t$dst",
2201                  [(set GR8:$dst, (X86setcc X86_COND_NE, EFLAGS))]>,
2202                TB;                        // GR8 = !=
2203 def SETNEm   : I<0x95, MRM0m, 
2204                  (outs), (ins i8mem:$dst),
2205                  "setne\t$dst",
2206                  [(store (X86setcc X86_COND_NE, EFLAGS), addr:$dst)]>,
2207                TB;                        // [mem8] = !=
2208 def SETLr    : I<0x9C, MRM0r, 
2209                  (outs GR8   :$dst), (ins),
2210                  "setl\t$dst",
2211                  [(set GR8:$dst, (X86setcc X86_COND_L, EFLAGS))]>,
2212                TB;                        // GR8 = <  signed
2213 def SETLm    : I<0x9C, MRM0m, 
2214                  (outs), (ins i8mem:$dst),
2215                  "setl\t$dst",
2216                  [(store (X86setcc X86_COND_L, EFLAGS), addr:$dst)]>,
2217                TB;                        // [mem8] = <  signed
2218 def SETGEr   : I<0x9D, MRM0r, 
2219                  (outs GR8   :$dst), (ins),
2220                  "setge\t$dst",
2221                  [(set GR8:$dst, (X86setcc X86_COND_GE, EFLAGS))]>,
2222                TB;                        // GR8 = >= signed
2223 def SETGEm   : I<0x9D, MRM0m, 
2224                  (outs), (ins i8mem:$dst),
2225                  "setge\t$dst",
2226                  [(store (X86setcc X86_COND_GE, EFLAGS), addr:$dst)]>,
2227                TB;                        // [mem8] = >= signed
2228 def SETLEr   : I<0x9E, MRM0r, 
2229                  (outs GR8   :$dst), (ins),
2230                  "setle\t$dst",
2231                  [(set GR8:$dst, (X86setcc X86_COND_LE, EFLAGS))]>,
2232                TB;                        // GR8 = <= signed
2233 def SETLEm   : I<0x9E, MRM0m, 
2234                  (outs), (ins i8mem:$dst),
2235                  "setle\t$dst",
2236                  [(store (X86setcc X86_COND_LE, EFLAGS), addr:$dst)]>,
2237                TB;                        // [mem8] = <= signed
2238 def SETGr    : I<0x9F, MRM0r, 
2239                  (outs GR8   :$dst), (ins),
2240                  "setg\t$dst",
2241                  [(set GR8:$dst, (X86setcc X86_COND_G, EFLAGS))]>,
2242                TB;                        // GR8 = >  signed
2243 def SETGm    : I<0x9F, MRM0m, 
2244                  (outs), (ins i8mem:$dst),
2245                  "setg\t$dst",
2246                  [(store (X86setcc X86_COND_G, EFLAGS), addr:$dst)]>,
2247                TB;                        // [mem8] = >  signed
2248
2249 def SETBr    : I<0x92, MRM0r,
2250                  (outs GR8   :$dst), (ins),
2251                  "setb\t$dst",
2252                  [(set GR8:$dst, (X86setcc X86_COND_B, EFLAGS))]>,
2253                TB;                        // GR8 = <  unsign
2254 def SETBm    : I<0x92, MRM0m,
2255                  (outs), (ins i8mem:$dst),
2256                  "setb\t$dst",
2257                  [(store (X86setcc X86_COND_B, EFLAGS), addr:$dst)]>,
2258                TB;                        // [mem8] = <  unsign
2259 def SETAEr   : I<0x93, MRM0r, 
2260                  (outs GR8   :$dst), (ins),
2261                  "setae\t$dst",
2262                  [(set GR8:$dst, (X86setcc X86_COND_AE, EFLAGS))]>,
2263                TB;                        // GR8 = >= unsign
2264 def SETAEm   : I<0x93, MRM0m, 
2265                  (outs), (ins i8mem:$dst),
2266                  "setae\t$dst",
2267                  [(store (X86setcc X86_COND_AE, EFLAGS), addr:$dst)]>,
2268                TB;                        // [mem8] = >= unsign
2269 def SETBEr   : I<0x96, MRM0r, 
2270                  (outs GR8   :$dst), (ins),
2271                  "setbe\t$dst",
2272                  [(set GR8:$dst, (X86setcc X86_COND_BE, EFLAGS))]>,
2273                TB;                        // GR8 = <= unsign
2274 def SETBEm   : I<0x96, MRM0m, 
2275                  (outs), (ins i8mem:$dst),
2276                  "setbe\t$dst",
2277                  [(store (X86setcc X86_COND_BE, EFLAGS), addr:$dst)]>,
2278                TB;                        // [mem8] = <= unsign
2279 def SETAr    : I<0x97, MRM0r, 
2280                  (outs GR8   :$dst), (ins),
2281                  "seta\t$dst",
2282                  [(set GR8:$dst, (X86setcc X86_COND_A, EFLAGS))]>,
2283                TB;                        // GR8 = >  signed
2284 def SETAm    : I<0x97, MRM0m, 
2285                  (outs), (ins i8mem:$dst),
2286                  "seta\t$dst",
2287                  [(store (X86setcc X86_COND_A, EFLAGS), addr:$dst)]>,
2288                TB;                        // [mem8] = >  signed
2289
2290 def SETSr    : I<0x98, MRM0r, 
2291                  (outs GR8   :$dst), (ins),
2292                  "sets\t$dst",
2293                  [(set GR8:$dst, (X86setcc X86_COND_S, EFLAGS))]>,
2294                TB;                        // GR8 = <sign bit>
2295 def SETSm    : I<0x98, MRM0m, 
2296                  (outs), (ins i8mem:$dst),
2297                  "sets\t$dst",
2298                  [(store (X86setcc X86_COND_S, EFLAGS), addr:$dst)]>,
2299                TB;                        // [mem8] = <sign bit>
2300 def SETNSr   : I<0x99, MRM0r, 
2301                  (outs GR8   :$dst), (ins),
2302                  "setns\t$dst",
2303                  [(set GR8:$dst, (X86setcc X86_COND_NS, EFLAGS))]>,
2304                TB;                        // GR8 = !<sign bit>
2305 def SETNSm   : I<0x99, MRM0m, 
2306                  (outs), (ins i8mem:$dst),
2307                  "setns\t$dst",
2308                  [(store (X86setcc X86_COND_NS, EFLAGS), addr:$dst)]>,
2309                TB;                        // [mem8] = !<sign bit>
2310 def SETPr    : I<0x9A, MRM0r, 
2311                  (outs GR8   :$dst), (ins),
2312                  "setp\t$dst",
2313                  [(set GR8:$dst, (X86setcc X86_COND_P, EFLAGS))]>,
2314                TB;                        // GR8 = parity
2315 def SETPm    : I<0x9A, MRM0m, 
2316                  (outs), (ins i8mem:$dst),
2317                  "setp\t$dst",
2318                  [(store (X86setcc X86_COND_P, EFLAGS), addr:$dst)]>,
2319                TB;                        // [mem8] = parity
2320 def SETNPr   : I<0x9B, MRM0r, 
2321                  (outs GR8   :$dst), (ins),
2322                  "setnp\t$dst",
2323                  [(set GR8:$dst, (X86setcc X86_COND_NP, EFLAGS))]>,
2324                TB;                        // GR8 = not parity
2325 def SETNPm   : I<0x9B, MRM0m, 
2326                  (outs), (ins i8mem:$dst),
2327                  "setnp\t$dst",
2328                  [(store (X86setcc X86_COND_NP, EFLAGS), addr:$dst)]>,
2329                TB;                        // [mem8] = not parity
2330 } // Uses = [EFLAGS]
2331
2332
2333 // Integer comparisons
2334 let Defs = [EFLAGS] in {
2335 def CMP8rr  : I<0x38, MRMDestReg,
2336                 (outs), (ins GR8 :$src1, GR8 :$src2),
2337                 "cmp{b}\t{$src2, $src1|$src1, $src2}",
2338                 [(X86cmp GR8:$src1, GR8:$src2), (implicit EFLAGS)]>;
2339 def CMP16rr : I<0x39, MRMDestReg,
2340                 (outs), (ins GR16:$src1, GR16:$src2),
2341                 "cmp{w}\t{$src2, $src1|$src1, $src2}",
2342                 [(X86cmp GR16:$src1, GR16:$src2), (implicit EFLAGS)]>, OpSize;
2343 def CMP32rr : I<0x39, MRMDestReg,
2344                 (outs), (ins GR32:$src1, GR32:$src2),
2345                 "cmp{l}\t{$src2, $src1|$src1, $src2}",
2346                 [(X86cmp GR32:$src1, GR32:$src2), (implicit EFLAGS)]>;
2347 def CMP8mr  : I<0x38, MRMDestMem,
2348                 (outs), (ins i8mem :$src1, GR8 :$src2),
2349                 "cmp{b}\t{$src2, $src1|$src1, $src2}",
2350                 [(X86cmp (loadi8 addr:$src1), GR8:$src2),
2351                  (implicit EFLAGS)]>;
2352 def CMP16mr : I<0x39, MRMDestMem,
2353                 (outs), (ins i16mem:$src1, GR16:$src2),
2354                 "cmp{w}\t{$src2, $src1|$src1, $src2}",
2355                 [(X86cmp (loadi16 addr:$src1), GR16:$src2),
2356                  (implicit EFLAGS)]>, OpSize;
2357 def CMP32mr : I<0x39, MRMDestMem,
2358                 (outs), (ins i32mem:$src1, GR32:$src2),
2359                 "cmp{l}\t{$src2, $src1|$src1, $src2}",
2360                 [(X86cmp (loadi32 addr:$src1), GR32:$src2),
2361                  (implicit EFLAGS)]>;
2362 def CMP8rm  : I<0x3A, MRMSrcMem,
2363                 (outs), (ins GR8 :$src1, i8mem :$src2),
2364                 "cmp{b}\t{$src2, $src1|$src1, $src2}",
2365                 [(X86cmp GR8:$src1, (loadi8 addr:$src2)),
2366                  (implicit EFLAGS)]>;
2367 def CMP16rm : I<0x3B, MRMSrcMem,
2368                 (outs), (ins GR16:$src1, i16mem:$src2),
2369                 "cmp{w}\t{$src2, $src1|$src1, $src2}",
2370                 [(X86cmp GR16:$src1, (loadi16 addr:$src2)),
2371                  (implicit EFLAGS)]>, OpSize;
2372 def CMP32rm : I<0x3B, MRMSrcMem,
2373                 (outs), (ins GR32:$src1, i32mem:$src2),
2374                 "cmp{l}\t{$src2, $src1|$src1, $src2}",
2375                 [(X86cmp GR32:$src1, (loadi32 addr:$src2)),
2376                  (implicit EFLAGS)]>;
2377 def CMP8ri  : Ii8<0x80, MRM7r,
2378                   (outs), (ins GR8:$src1, i8imm:$src2),
2379                   "cmp{b}\t{$src2, $src1|$src1, $src2}",
2380                   [(X86cmp GR8:$src1, imm:$src2), (implicit EFLAGS)]>;
2381 def CMP16ri : Ii16<0x81, MRM7r,
2382                    (outs), (ins GR16:$src1, i16imm:$src2),
2383                    "cmp{w}\t{$src2, $src1|$src1, $src2}",
2384                    [(X86cmp GR16:$src1, imm:$src2),
2385                     (implicit EFLAGS)]>, OpSize;
2386 def CMP32ri : Ii32<0x81, MRM7r,
2387                    (outs), (ins GR32:$src1, i32imm:$src2),
2388                    "cmp{l}\t{$src2, $src1|$src1, $src2}",
2389                    [(X86cmp GR32:$src1, imm:$src2), (implicit EFLAGS)]>;
2390 def CMP8mi  : Ii8 <0x80, MRM7m,
2391                    (outs), (ins i8mem :$src1, i8imm :$src2),
2392                    "cmp{b}\t{$src2, $src1|$src1, $src2}",
2393                    [(X86cmp (loadi8 addr:$src1), imm:$src2),
2394                     (implicit EFLAGS)]>;
2395 def CMP16mi : Ii16<0x81, MRM7m,
2396                    (outs), (ins i16mem:$src1, i16imm:$src2),
2397                    "cmp{w}\t{$src2, $src1|$src1, $src2}",
2398                    [(X86cmp (loadi16 addr:$src1), imm:$src2),
2399                     (implicit EFLAGS)]>, OpSize;
2400 def CMP32mi : Ii32<0x81, MRM7m,
2401                    (outs), (ins i32mem:$src1, i32imm:$src2),
2402                    "cmp{l}\t{$src2, $src1|$src1, $src2}",
2403                    [(X86cmp (loadi32 addr:$src1), imm:$src2),
2404                     (implicit EFLAGS)]>;
2405 def CMP16ri8 : Ii8<0x83, MRM7r,
2406                    (outs), (ins GR16:$src1, i16i8imm:$src2),
2407                    "cmp{w}\t{$src2, $src1|$src1, $src2}",
2408                    [(X86cmp GR16:$src1, i16immSExt8:$src2),
2409                     (implicit EFLAGS)]>, OpSize;
2410 def CMP16mi8 : Ii8<0x83, MRM7m,
2411                    (outs), (ins i16mem:$src1, i16i8imm:$src2),
2412                    "cmp{w}\t{$src2, $src1|$src1, $src2}",
2413                    [(X86cmp (loadi16 addr:$src1), i16immSExt8:$src2),
2414                     (implicit EFLAGS)]>, OpSize;
2415 def CMP32mi8 : Ii8<0x83, MRM7m,
2416                    (outs), (ins i32mem:$src1, i32i8imm:$src2),
2417                    "cmp{l}\t{$src2, $src1|$src1, $src2}",
2418                    [(X86cmp (loadi32 addr:$src1), i32immSExt8:$src2),
2419                     (implicit EFLAGS)]>;
2420 def CMP32ri8 : Ii8<0x83, MRM7r,
2421                    (outs), (ins GR32:$src1, i32i8imm:$src2),
2422                    "cmp{l}\t{$src2, $src1|$src1, $src2}",
2423                    [(X86cmp GR32:$src1, i32immSExt8:$src2),
2424                     (implicit EFLAGS)]>;
2425 } // Defs = [EFLAGS]
2426
2427 // Sign/Zero extenders
2428 def MOVSX16rr8 : I<0xBE, MRMSrcReg, (outs GR16:$dst), (ins GR8 :$src),
2429                    "movs{bw|x}\t{$src, $dst|$dst, $src}",
2430                    [(set GR16:$dst, (sext GR8:$src))]>, TB, OpSize;
2431 def MOVSX16rm8 : I<0xBE, MRMSrcMem, (outs GR16:$dst), (ins i8mem :$src),
2432                    "movs{bw|x}\t{$src, $dst|$dst, $src}",
2433                    [(set GR16:$dst, (sextloadi16i8 addr:$src))]>, TB, OpSize;
2434 def MOVSX32rr8 : I<0xBE, MRMSrcReg, (outs GR32:$dst), (ins GR8 :$src),
2435                    "movs{bl|x}\t{$src, $dst|$dst, $src}",
2436                    [(set GR32:$dst, (sext GR8:$src))]>, TB;
2437 def MOVSX32rm8 : I<0xBE, MRMSrcMem, (outs GR32:$dst), (ins i8mem :$src),
2438                    "movs{bl|x}\t{$src, $dst|$dst, $src}",
2439                    [(set GR32:$dst, (sextloadi32i8 addr:$src))]>, TB;
2440 def MOVSX32rr16: I<0xBF, MRMSrcReg, (outs GR32:$dst), (ins GR16:$src),
2441                    "movs{wl|x}\t{$src, $dst|$dst, $src}",
2442                    [(set GR32:$dst, (sext GR16:$src))]>, TB;
2443 def MOVSX32rm16: I<0xBF, MRMSrcMem, (outs GR32:$dst), (ins i16mem:$src),
2444                    "movs{wl|x}\t{$src, $dst|$dst, $src}",
2445                    [(set GR32:$dst, (sextloadi32i16 addr:$src))]>, TB;
2446
2447 def MOVZX16rr8 : I<0xB6, MRMSrcReg, (outs GR16:$dst), (ins GR8 :$src),
2448                    "movz{bw|x}\t{$src, $dst|$dst, $src}",
2449                    [(set GR16:$dst, (zext GR8:$src))]>, TB, OpSize;
2450 def MOVZX16rm8 : I<0xB6, MRMSrcMem, (outs GR16:$dst), (ins i8mem :$src),
2451                    "movz{bw|x}\t{$src, $dst|$dst, $src}",
2452                    [(set GR16:$dst, (zextloadi16i8 addr:$src))]>, TB, OpSize;
2453 def MOVZX32rr8 : I<0xB6, MRMSrcReg, (outs GR32:$dst), (ins GR8 :$src),
2454                    "movz{bl|x}\t{$src, $dst|$dst, $src}",
2455                    [(set GR32:$dst, (zext GR8:$src))]>, TB;
2456 def MOVZX32rm8 : I<0xB6, MRMSrcMem, (outs GR32:$dst), (ins i8mem :$src),
2457                    "movz{bl|x}\t{$src, $dst|$dst, $src}",
2458                    [(set GR32:$dst, (zextloadi32i8 addr:$src))]>, TB;
2459 def MOVZX32rr16: I<0xB7, MRMSrcReg, (outs GR32:$dst), (ins GR16:$src),
2460                    "movz{wl|x}\t{$src, $dst|$dst, $src}",
2461                    [(set GR32:$dst, (zext GR16:$src))]>, TB;
2462 def MOVZX32rm16: I<0xB7, MRMSrcMem, (outs GR32:$dst), (ins i16mem:$src),
2463                    "movz{wl|x}\t{$src, $dst|$dst, $src}",
2464                    [(set GR32:$dst, (zextloadi32i16 addr:$src))]>, TB;
2465
2466 let neverHasSideEffects = 1 in {
2467   let Defs = [AX], Uses = [AL] in
2468   def CBW : I<0x98, RawFrm, (outs), (ins),
2469               "{cbtw|cbw}", []>, OpSize;   // AX = signext(AL)
2470   let Defs = [EAX], Uses = [AX] in
2471   def CWDE : I<0x98, RawFrm, (outs), (ins),
2472               "{cwtl|cwde}", []>;   // EAX = signext(AX)
2473
2474   let Defs = [AX,DX], Uses = [AX] in
2475   def CWD : I<0x99, RawFrm, (outs), (ins),
2476               "{cwtd|cwd}", []>, OpSize; // DX:AX = signext(AX)
2477   let Defs = [EAX,EDX], Uses = [EAX] in
2478   def CDQ : I<0x99, RawFrm, (outs), (ins),
2479               "{cltd|cdq}", []>; // EDX:EAX = signext(EAX)
2480 }
2481
2482 //===----------------------------------------------------------------------===//
2483 // Alias Instructions
2484 //===----------------------------------------------------------------------===//
2485
2486 // Alias instructions that map movr0 to xor.
2487 // FIXME: remove when we can teach regalloc that xor reg, reg is ok.
2488 let Defs = [EFLAGS], isReMaterializable = 1, isAsCheapAsAMove = 1 in {
2489 def MOV8r0   : I<0x30, MRMInitReg, (outs GR8 :$dst), (ins),
2490                  "xor{b}\t$dst, $dst",
2491                  [(set GR8:$dst, 0)]>;
2492 def MOV16r0  : I<0x31, MRMInitReg,  (outs GR16:$dst), (ins),
2493                  "xor{w}\t$dst, $dst",
2494                  [(set GR16:$dst, 0)]>, OpSize;
2495 def MOV32r0  : I<0x31, MRMInitReg,  (outs GR32:$dst), (ins),
2496                  "xor{l}\t$dst, $dst",
2497                  [(set GR32:$dst, 0)]>;
2498 }
2499
2500 // Basic operations on GR16 / GR32 subclasses GR16_ and GR32_ which contains only
2501 // those registers that have GR8 sub-registers (i.e. AX - DX, EAX - EDX).
2502 let neverHasSideEffects = 1 in {
2503 def MOV16to16_ : I<0x89, MRMDestReg, (outs GR16_:$dst), (ins GR16:$src),
2504                 "mov{w}\t{$src, $dst|$dst, $src}", []>, OpSize;
2505 def MOV32to32_ : I<0x89, MRMDestReg, (outs GR32_:$dst), (ins GR32:$src),
2506                 "mov{l}\t{$src, $dst|$dst, $src}", []>;
2507                 
2508 def MOV16_rr : I<0x89, MRMDestReg, (outs GR16_:$dst), (ins GR16_:$src),
2509                 "mov{w}\t{$src, $dst|$dst, $src}", []>, OpSize;
2510 def MOV32_rr : I<0x89, MRMDestReg, (outs GR32_:$dst), (ins GR32_:$src),
2511                 "mov{l}\t{$src, $dst|$dst, $src}", []>;
2512 } // neverHasSideEffects
2513
2514 let isSimpleLoad = 1, mayLoad = 1, isReMaterializable = 1, mayHaveSideEffects = 1 in {
2515 def MOV16_rm : I<0x8B, MRMSrcMem, (outs GR16_:$dst), (ins i16mem:$src),
2516                 "mov{w}\t{$src, $dst|$dst, $src}", []>, OpSize;
2517 def MOV32_rm : I<0x8B, MRMSrcMem, (outs GR32_:$dst), (ins i32mem:$src),
2518                 "mov{l}\t{$src, $dst|$dst, $src}", []>;
2519 }
2520 let mayStore = 1, neverHasSideEffects = 1 in {
2521 def MOV16_mr : I<0x89, MRMDestMem, (outs), (ins i16mem:$dst, GR16_:$src),
2522                 "mov{w}\t{$src, $dst|$dst, $src}", []>, OpSize;
2523 def MOV32_mr : I<0x89, MRMDestMem, (outs), (ins i32mem:$dst, GR32_:$src),
2524                 "mov{l}\t{$src, $dst|$dst, $src}", []>;
2525 }
2526
2527 //===----------------------------------------------------------------------===//
2528 // Thread Local Storage Instructions
2529 //
2530
2531 let Uses = [EBX] in
2532 def TLS_addr32 : I<0, Pseudo, (outs GR32:$dst), (ins i32imm:$sym),
2533                   "leal\t${sym:mem}(,%ebx,1), $dst",
2534                   [(set GR32:$dst, (X86tlsaddr tglobaltlsaddr:$sym))]>;
2535
2536 let AddedComplexity = 10 in
2537 def TLS_gs_rr  : I<0, Pseudo, (outs GR32:$dst), (ins GR32:$src),
2538                   "movl\t%gs:($src), $dst",
2539                   [(set GR32:$dst, (load (add X86TLStp, GR32:$src)))]>;
2540
2541 let AddedComplexity = 15 in
2542 def TLS_gs_ri : I<0, Pseudo, (outs GR32:$dst), (ins i32imm:$src),
2543                   "movl\t%gs:${src:mem}, $dst",
2544                   [(set GR32:$dst,
2545                     (load (add X86TLStp, (X86Wrapper tglobaltlsaddr:$src))))]>;
2546
2547 def TLS_tp : I<0, Pseudo, (outs GR32:$dst), (ins),
2548                "movl\t%gs:0, $dst",
2549                [(set GR32:$dst, X86TLStp)]>;
2550
2551 //===----------------------------------------------------------------------===//
2552 // DWARF Pseudo Instructions
2553 //
2554
2555 def DWARF_LOC   : I<0, Pseudo, (outs),
2556                     (ins i32imm:$line, i32imm:$col, i32imm:$file),
2557                     ".loc\t${file:debug} ${line:debug} ${col:debug}",
2558                     [(dwarf_loc (i32 imm:$line), (i32 imm:$col),
2559                       (i32 imm:$file))]>;
2560
2561 //===----------------------------------------------------------------------===//
2562 // EH Pseudo Instructions
2563 //
2564 let isTerminator = 1, isReturn = 1, isBarrier = 1,
2565     hasCtrlDep = 1 in {
2566 def EH_RETURN   : I<0xC3, RawFrm, (outs), (ins GR32:$addr),
2567                     "ret\t#eh_return, addr: $addr",
2568                     [(X86ehret GR32:$addr)]>;
2569
2570 }
2571
2572 //===----------------------------------------------------------------------===//
2573 // Atomic support
2574 //
2575
2576 // Atomic swap. These are just normal xchg instructions. But since a memory
2577 // operand is referenced, the atomicity is ensured.
2578 let Constraints = "$val = $dst", Defs = [EFLAGS] in {
2579 def XCHG32rm : I<0x87, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$ptr, GR32:$val),
2580                "xchg{l}\t{$val, $ptr|$ptr, $val}", 
2581                [(set GR32:$dst, (atomic_swap_32 addr:$ptr, GR32:$val))]>;
2582 def XCHG16rm : I<0x87, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$ptr, GR16:$val),
2583                "xchg{w}\t{$val, $ptr|$ptr, $val}", 
2584                [(set GR16:$dst, (atomic_swap_16 addr:$ptr, GR16:$val))]>, 
2585                 OpSize;
2586 def XCHG8rm  : I<0x86, MRMSrcMem, (outs GR8:$dst), (ins i8mem:$ptr, GR8:$val),
2587                "xchg{b}\t{$val, $ptr|$ptr, $val}", 
2588                [(set GR8:$dst, (atomic_swap_8 addr:$ptr, GR8:$val))]>;
2589 }
2590
2591 // Atomic compare and swap.
2592 let Defs = [EAX, EFLAGS], Uses = [EAX] in {
2593 def LCMPXCHG32 : I<0xB1, MRMDestMem, (outs), (ins i32mem:$ptr, GR32:$swap),
2594                "lock cmpxchg{l}\t{$swap, $ptr|$ptr, $swap}",
2595                [(X86cas addr:$ptr, GR32:$swap, 4)]>, TB, LOCK;
2596 }
2597 let Defs = [EAX, EBX, ECX, EDX, EFLAGS], Uses = [EAX, EBX, ECX, EDX] in {
2598 def LCMPXCHG8B : I<0xC7, MRMDestMem, (outs), (ins i32mem:$ptr),
2599                "lock cmpxchg8b\t$ptr",
2600                [(X86cas8 addr:$ptr)]>, TB, LOCK;
2601 }
2602
2603 let Defs = [AX, EFLAGS], Uses = [AX] in {
2604 def LCMPXCHG16 : I<0xB1, MRMDestMem, (outs), (ins i16mem:$ptr, GR16:$swap),
2605                "lock cmpxchg{w}\t{$swap, $ptr|$ptr, $swap}",
2606                [(X86cas addr:$ptr, GR16:$swap, 2)]>, TB, OpSize, LOCK;
2607 }
2608 let Defs = [AL, EFLAGS], Uses = [AL] in {
2609 def LCMPXCHG8 : I<0xB0, MRMDestMem, (outs), (ins i8mem:$ptr, GR8:$swap),
2610                "lock cmpxchg{b}\t{$swap, $ptr|$ptr, $swap}",
2611                [(X86cas addr:$ptr, GR8:$swap, 1)]>, TB, LOCK;
2612 }
2613
2614 // Atomic exchange and add
2615 let Constraints = "$val = $dst", Defs = [EFLAGS] in {
2616 def LXADD32 : I<0xC1, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$ptr, GR32:$val),
2617                "lock xadd{l}\t{$val, $ptr|$ptr, $val}", 
2618                [(set GR32:$dst, (atomic_las_32 addr:$ptr, GR32:$val))]>,
2619                 TB, LOCK;
2620 def LXADD16 : I<0xC1, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$ptr, GR16:$val),
2621                "lock xadd{w}\t{$val, $ptr|$ptr, $val}", 
2622                [(set GR16:$dst, (atomic_las_16 addr:$ptr, GR16:$val))]>,
2623                 TB, OpSize, LOCK;
2624 def LXADD8  : I<0xC0, MRMSrcMem, (outs GR8:$dst), (ins i8mem:$ptr, GR8:$val),
2625                "lock xadd{b}\t{$val, $ptr|$ptr, $val}", 
2626                [(set GR8:$dst, (atomic_las_8 addr:$ptr, GR8:$val))]>,
2627                 TB, LOCK;
2628 }
2629
2630 // Atomic exchange and and, or, xor
2631 let Constraints = "$val = $dst", Defs = [EFLAGS],
2632                   usesCustomDAGSchedInserter = 1 in {
2633 def ATOMAND32 : I<0, Pseudo, (outs GR32:$dst),(ins i32mem:$ptr, GR32:$val),
2634                "#ATOMAND32 PSUEDO!", 
2635                [(set GR32:$dst, (atomic_load_and addr:$ptr, GR32:$val))]>;
2636 }
2637
2638 let Constraints = "$val = $dst", Defs = [EFLAGS],
2639                   usesCustomDAGSchedInserter = 1 in {
2640 def ATOMOR32 : I<0, Pseudo, (outs GR32:$dst),(ins i32mem:$ptr, GR32:$val),
2641                "#ATOMOR32 PSUEDO!", 
2642                [(set GR32:$dst, (atomic_load_or addr:$ptr, GR32:$val))]>;
2643 }
2644
2645 let Constraints = "$val = $dst", Defs = [EFLAGS],
2646                   usesCustomDAGSchedInserter = 1 in {
2647 def ATOMXOR32 : I<0, Pseudo,(outs GR32:$dst),(ins i32mem:$ptr, GR32:$val),
2648                "#ATOMXOR32 PSUEDO!", 
2649                [(set GR32:$dst, (atomic_load_xor addr:$ptr, GR32:$val))]>;
2650 }
2651
2652 let Constraints = "$val = $dst", Defs = [EFLAGS],
2653                   usesCustomDAGSchedInserter = 1 in {
2654 def ATOMMIN32: I<0, Pseudo, (outs GR32:$dst), (ins i32mem:$ptr, GR32:$val),
2655                "#ATOMMIN32 PSUEDO!", 
2656                [(set GR32:$dst, (atomic_load_min addr:$ptr, GR32:$val))]>;
2657 }
2658
2659 let Constraints = "$val = $dst", Defs = [EFLAGS],
2660                   usesCustomDAGSchedInserter = 1 in {
2661 def ATOMMAX32: I<0, Pseudo, (outs GR32:$dst),(ins i32mem:$ptr, GR32:$val),
2662                "#ATOMMAX32 PSUEDO!", 
2663                [(set GR32:$dst, (atomic_load_max addr:$ptr, GR32:$val))]>;
2664 }
2665
2666 let Constraints = "$val = $dst", Defs = [EFLAGS],
2667                   usesCustomDAGSchedInserter = 1 in {
2668 def ATOMUMIN32: I<0, Pseudo, (outs GR32:$dst),(ins i32mem:$ptr, GR32:$val),
2669                "#ATOMUMIN32 PSUEDO!", 
2670                [(set GR32:$dst, (atomic_load_umin addr:$ptr, GR32:$val))]>;
2671 }
2672
2673 let Constraints = "$val = $dst", Defs = [EFLAGS],
2674                   usesCustomDAGSchedInserter = 1 in {
2675 def ATOMUMAX32: I<0, Pseudo, (outs GR32:$dst),(ins i32mem:$ptr, GR32:$val),
2676                "#ATOMUMAX32 PSUEDO!", 
2677                [(set GR32:$dst, (atomic_load_umax addr:$ptr, GR32:$val))]>;
2678 }
2679
2680 //===----------------------------------------------------------------------===//
2681 // Non-Instruction Patterns
2682 //===----------------------------------------------------------------------===//
2683
2684 // ConstantPool GlobalAddress, ExternalSymbol, and JumpTable
2685 def : Pat<(i32 (X86Wrapper tconstpool  :$dst)), (MOV32ri tconstpool  :$dst)>;
2686 def : Pat<(i32 (X86Wrapper tjumptable  :$dst)), (MOV32ri tjumptable  :$dst)>;
2687 def : Pat<(i32 (X86Wrapper tglobaltlsaddr:$dst)),(MOV32ri tglobaltlsaddr:$dst)>;
2688 def : Pat<(i32 (X86Wrapper tglobaladdr :$dst)), (MOV32ri tglobaladdr :$dst)>;
2689 def : Pat<(i32 (X86Wrapper texternalsym:$dst)), (MOV32ri texternalsym:$dst)>;
2690
2691 def : Pat<(add GR32:$src1, (X86Wrapper tconstpool:$src2)),
2692           (ADD32ri GR32:$src1, tconstpool:$src2)>;
2693 def : Pat<(add GR32:$src1, (X86Wrapper tjumptable:$src2)),
2694           (ADD32ri GR32:$src1, tjumptable:$src2)>;
2695 def : Pat<(add GR32:$src1, (X86Wrapper tglobaladdr :$src2)),
2696           (ADD32ri GR32:$src1, tglobaladdr:$src2)>;
2697 def : Pat<(add GR32:$src1, (X86Wrapper texternalsym:$src2)),
2698           (ADD32ri GR32:$src1, texternalsym:$src2)>;
2699
2700 def : Pat<(store (i32 (X86Wrapper tglobaladdr:$src)), addr:$dst),
2701           (MOV32mi addr:$dst, tglobaladdr:$src)>;
2702 def : Pat<(store (i32 (X86Wrapper texternalsym:$src)), addr:$dst),
2703           (MOV32mi addr:$dst, texternalsym:$src)>;
2704
2705 // Calls
2706 // tailcall stuff
2707 def : Pat<(X86tailcall GR32:$dst),
2708           (TAILCALL)>;
2709
2710 def : Pat<(X86tailcall (i32 tglobaladdr:$dst)),
2711           (TAILCALL)>;
2712 def : Pat<(X86tailcall (i32 texternalsym:$dst)),
2713           (TAILCALL)>;
2714
2715 def : Pat<(X86tcret GR32:$dst, imm:$off),
2716           (TCRETURNri GR32:$dst, imm:$off)>;
2717
2718 def : Pat<(X86tcret (i32 tglobaladdr:$dst), imm:$off),
2719           (TCRETURNdi texternalsym:$dst, imm:$off)>;
2720
2721 def : Pat<(X86tcret (i32 texternalsym:$dst), imm:$off),
2722           (TCRETURNdi texternalsym:$dst, imm:$off)>;
2723
2724 def : Pat<(X86call (i32 tglobaladdr:$dst)),
2725           (CALLpcrel32 tglobaladdr:$dst)>;
2726 def : Pat<(X86call (i32 texternalsym:$dst)),
2727           (CALLpcrel32 texternalsym:$dst)>;
2728
2729 // X86 specific add which produces a flag.
2730 def : Pat<(addc GR32:$src1, GR32:$src2),
2731           (ADD32rr GR32:$src1, GR32:$src2)>;
2732 def : Pat<(addc GR32:$src1, (load addr:$src2)),
2733           (ADD32rm GR32:$src1, addr:$src2)>;
2734 def : Pat<(addc GR32:$src1, imm:$src2),
2735           (ADD32ri GR32:$src1, imm:$src2)>;
2736 def : Pat<(addc GR32:$src1, i32immSExt8:$src2),
2737           (ADD32ri8 GR32:$src1, i32immSExt8:$src2)>;
2738
2739 def : Pat<(subc GR32:$src1, GR32:$src2),
2740           (SUB32rr GR32:$src1, GR32:$src2)>;
2741 def : Pat<(subc GR32:$src1, (load addr:$src2)),
2742           (SUB32rm GR32:$src1, addr:$src2)>;
2743 def : Pat<(subc GR32:$src1, imm:$src2),
2744           (SUB32ri GR32:$src1, imm:$src2)>;
2745 def : Pat<(subc GR32:$src1, i32immSExt8:$src2),
2746           (SUB32ri8 GR32:$src1, i32immSExt8:$src2)>;
2747
2748 // Comparisons.
2749
2750 // TEST R,R is smaller than CMP R,0
2751 def : Pat<(parallel (X86cmp GR8:$src1, 0), (implicit EFLAGS)),
2752           (TEST8rr GR8:$src1, GR8:$src1)>;
2753 def : Pat<(parallel (X86cmp GR16:$src1, 0), (implicit EFLAGS)),
2754           (TEST16rr GR16:$src1, GR16:$src1)>;
2755 def : Pat<(parallel (X86cmp GR32:$src1, 0), (implicit EFLAGS)),
2756           (TEST32rr GR32:$src1, GR32:$src1)>;
2757
2758 // zextload bool -> zextload byte
2759 def : Pat<(zextloadi8i1  addr:$src), (MOV8rm     addr:$src)>;
2760 def : Pat<(zextloadi16i1 addr:$src), (MOVZX16rm8 addr:$src)>;
2761 def : Pat<(zextloadi32i1 addr:$src), (MOVZX32rm8 addr:$src)>;
2762
2763 // extload bool -> extload byte
2764 def : Pat<(extloadi8i1 addr:$src),   (MOV8rm      addr:$src)>;
2765 def : Pat<(extloadi16i1 addr:$src),  (MOVZX16rm8  addr:$src)>;
2766 def : Pat<(extloadi32i1 addr:$src),  (MOVZX32rm8  addr:$src)>;
2767 def : Pat<(extloadi16i8 addr:$src),  (MOVZX16rm8  addr:$src)>;
2768 def : Pat<(extloadi32i8 addr:$src),  (MOVZX32rm8  addr:$src)>;
2769 def : Pat<(extloadi32i16 addr:$src), (MOVZX32rm16 addr:$src)>;
2770
2771 // anyext -> zext
2772 def : Pat<(i16 (anyext GR8 :$src)), (MOVZX16rr8  GR8 :$src)>;
2773 def : Pat<(i32 (anyext GR8 :$src)), (MOVZX32rr8  GR8 :$src)>;
2774 def : Pat<(i32 (anyext GR16:$src)), (MOVZX32rr16 GR16:$src)>;
2775 def : Pat<(i16 (anyext (loadi8  addr:$src))), (MOVZX16rm8  addr:$src)>;
2776 def : Pat<(i32 (anyext (loadi8  addr:$src))), (MOVZX32rm8  addr:$src)>;
2777 def : Pat<(i32 (anyext (loadi16 addr:$src))), (MOVZX32rm16 addr:$src)>;
2778
2779 // (and (i32 load), 255) -> (zextload i8)
2780 def : Pat<(i32 (and (loadi32 addr:$src), (i32 255))), (MOVZX32rm8 addr:$src)>;
2781 def : Pat<(i32 (and (loadi32 addr:$src), (i32 65535))),(MOVZX32rm16 addr:$src)>;
2782
2783 //===----------------------------------------------------------------------===//
2784 // Some peepholes
2785 //===----------------------------------------------------------------------===//
2786
2787 // (shl x, 1) ==> (add x, x)
2788 def : Pat<(shl GR8 :$src1, (i8 1)), (ADD8rr  GR8 :$src1, GR8 :$src1)>;
2789 def : Pat<(shl GR16:$src1, (i8 1)), (ADD16rr GR16:$src1, GR16:$src1)>;
2790 def : Pat<(shl GR32:$src1, (i8 1)), (ADD32rr GR32:$src1, GR32:$src1)>;
2791
2792 // (or (x >> c) | (y << (32 - c))) ==> (shrd32 x, y, c)
2793 def : Pat<(or (srl GR32:$src1, CL:$amt),
2794               (shl GR32:$src2, (sub 32, CL:$amt))),
2795           (SHRD32rrCL GR32:$src1, GR32:$src2)>;
2796
2797 def : Pat<(store (or (srl (loadi32 addr:$dst), CL:$amt),
2798                      (shl GR32:$src2, (sub 32, CL:$amt))), addr:$dst),
2799           (SHRD32mrCL addr:$dst, GR32:$src2)>;
2800
2801 // (or (x << c) | (y >> (32 - c))) ==> (shld32 x, y, c)
2802 def : Pat<(or (shl GR32:$src1, CL:$amt),
2803               (srl GR32:$src2, (sub 32, CL:$amt))),
2804           (SHLD32rrCL GR32:$src1, GR32:$src2)>;
2805
2806 def : Pat<(store (or (shl (loadi32 addr:$dst), CL:$amt),
2807                      (srl GR32:$src2, (sub 32, CL:$amt))), addr:$dst),
2808           (SHLD32mrCL addr:$dst, GR32:$src2)>;
2809
2810 // (or (x >> c) | (y << (16 - c))) ==> (shrd16 x, y, c)
2811 def : Pat<(or (srl GR16:$src1, CL:$amt),
2812               (shl GR16:$src2, (sub 16, CL:$amt))),
2813           (SHRD16rrCL GR16:$src1, GR16:$src2)>;
2814
2815 def : Pat<(store (or (srl (loadi16 addr:$dst), CL:$amt),
2816                      (shl GR16:$src2, (sub 16, CL:$amt))), addr:$dst),
2817           (SHRD16mrCL addr:$dst, GR16:$src2)>;
2818
2819 // (or (x << c) | (y >> (16 - c))) ==> (shld16 x, y, c)
2820 def : Pat<(or (shl GR16:$src1, CL:$amt),
2821               (srl GR16:$src2, (sub 16, CL:$amt))),
2822           (SHLD16rrCL GR16:$src1, GR16:$src2)>;
2823
2824 def : Pat<(store (or (shl (loadi16 addr:$dst), CL:$amt),
2825                      (srl GR16:$src2, (sub 16, CL:$amt))), addr:$dst),
2826           (SHLD16mrCL addr:$dst, GR16:$src2)>;
2827
2828 //===----------------------------------------------------------------------===//
2829 // Floating Point Stack Support
2830 //===----------------------------------------------------------------------===//
2831
2832 include "X86InstrFPStack.td"
2833
2834 //===----------------------------------------------------------------------===//
2835 // X86-64 Support
2836 //===----------------------------------------------------------------------===//
2837
2838 include "X86Instr64bit.td"
2839
2840 //===----------------------------------------------------------------------===//
2841 // XMM Floating point support (requires SSE / SSE2)
2842 //===----------------------------------------------------------------------===//
2843
2844 include "X86InstrSSE.td"
2845
2846 //===----------------------------------------------------------------------===//
2847 // MMX and XMM Packed Integer support (requires MMX, SSE, and SSE2)
2848 //===----------------------------------------------------------------------===//
2849
2850 include "X86InstrMMX.td"