blob: dc98a2e30995ade6b2255231e49eea5a38675350 [file] [log] [blame]
Chris Lattner2de8d2b2008-01-10 05:50:42 +00001//====- X86Instr64bit.td - Describe X86-64 Instructions ----*- tablegen -*-===//
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file describes the X86-64 instruction set, defining the instructions,
11// and properties of the instructions which are needed for code generation,
12// machine code emission, and analysis.
13//
14//===----------------------------------------------------------------------===//
15
16//===----------------------------------------------------------------------===//
Chris Lattner2de8d2b2008-01-10 05:50:42 +000017// Operand Definitions.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000018//
19
20// 64-bits but only 32 bits are significant.
21def i64i32imm : Operand<i64>;
Chris Lattner357a0ca2009-06-20 19:34:09 +000022
23// 64-bits but only 32 bits are significant, and those bits are treated as being
24// pc relative.
25def i64i32imm_pcrel : Operand<i64> {
26 let PrintMethod = "print_pcrel_imm";
27}
28
29
Dan Gohmanf17a25c2007-07-18 16:29:46 +000030// 64-bits but only 8 bits are significant.
Daniel Dunbaraa097b62009-08-10 21:06:41 +000031def i64i8imm : Operand<i64> {
32 let ParserMatchClass = ImmSExt8AsmOperand;
33}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000034
35def lea64mem : Operand<i64> {
Rafael Espindolabca99f72009-04-08 21:14:34 +000036 let PrintMethod = "printlea64mem";
Dan Gohmanefbd3bc2009-08-05 17:40:24 +000037 let MIOperandInfo = (ops GR64, i8imm, GR64_NOSP, i32imm);
Daniel Dunbar0f10cbf2009-08-10 18:41:10 +000038 let ParserMatchClass = X86MemAsmOperand;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000039}
40
41def lea64_32mem : Operand<i32> {
42 let PrintMethod = "printlea64_32mem";
Chris Lattnerf5da5902009-06-20 07:03:18 +000043 let AsmOperandLowerMethod = "lower_lea64_32mem";
Dan Gohmanefbd3bc2009-08-05 17:40:24 +000044 let MIOperandInfo = (ops GR32, i8imm, GR32_NOSP, i32imm);
Daniel Dunbar0f10cbf2009-08-10 18:41:10 +000045 let ParserMatchClass = X86MemAsmOperand;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000046}
47
48//===----------------------------------------------------------------------===//
Chris Lattner2de8d2b2008-01-10 05:50:42 +000049// Complex Pattern Definitions.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000050//
51def lea64addr : ComplexPattern<i64, 4, "SelectLEAAddr",
Dan Gohman0c0d7412009-08-02 16:09:17 +000052 [add, sub, mul, X86mul_imm, shl, or, frameindex,
Chris Lattnerc04cd042009-07-11 23:17:29 +000053 X86WrapperRIP], []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054
Chris Lattnerf1940742009-06-20 20:38:48 +000055def tls64addr : ComplexPattern<i64, 4, "SelectTLSADDRAddr",
56 [tglobaltlsaddr], []>;
57
Dan Gohmanf17a25c2007-07-18 16:29:46 +000058//===----------------------------------------------------------------------===//
Chris Lattner2de8d2b2008-01-10 05:50:42 +000059// Pattern fragments.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000060//
61
Dan Gohmand16fdc02008-12-19 18:25:21 +000062def i64immSExt8 : PatLeaf<(i64 imm), [{
63 // i64immSExt8 predicate - True if the 64-bit immediate fits in a 8-bit
64 // sign extended field.
65 return (int64_t)N->getZExtValue() == (int8_t)N->getZExtValue();
66}]>;
67
Dan Gohmanf17a25c2007-07-18 16:29:46 +000068def i64immSExt32 : PatLeaf<(i64 imm), [{
69 // i64immSExt32 predicate - True if the 64-bit immediate fits in a 32-bit
70 // sign extended field.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +000071 return (int64_t)N->getZExtValue() == (int32_t)N->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000072}]>;
73
74def i64immZExt32 : PatLeaf<(i64 imm), [{
75 // i64immZExt32 predicate - True if the 64-bit immediate fits in a 32-bit
76 // unsignedsign extended field.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +000077 return (uint64_t)N->getZExtValue() == (uint32_t)N->getZExtValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000078}]>;
79
Dan Gohmanf17a25c2007-07-18 16:29:46 +000080def sextloadi64i8 : PatFrag<(ops node:$ptr), (i64 (sextloadi8 node:$ptr))>;
81def sextloadi64i16 : PatFrag<(ops node:$ptr), (i64 (sextloadi16 node:$ptr))>;
82def sextloadi64i32 : PatFrag<(ops node:$ptr), (i64 (sextloadi32 node:$ptr))>;
83
84def zextloadi64i1 : PatFrag<(ops node:$ptr), (i64 (zextloadi1 node:$ptr))>;
85def zextloadi64i8 : PatFrag<(ops node:$ptr), (i64 (zextloadi8 node:$ptr))>;
86def zextloadi64i16 : PatFrag<(ops node:$ptr), (i64 (zextloadi16 node:$ptr))>;
87def zextloadi64i32 : PatFrag<(ops node:$ptr), (i64 (zextloadi32 node:$ptr))>;
88
89def extloadi64i1 : PatFrag<(ops node:$ptr), (i64 (extloadi1 node:$ptr))>;
90def extloadi64i8 : PatFrag<(ops node:$ptr), (i64 (extloadi8 node:$ptr))>;
91def extloadi64i16 : PatFrag<(ops node:$ptr), (i64 (extloadi16 node:$ptr))>;
92def extloadi64i32 : PatFrag<(ops node:$ptr), (i64 (extloadi32 node:$ptr))>;
93
94//===----------------------------------------------------------------------===//
95// Instruction list...
96//
97
Dan Gohman01c9f772008-10-01 18:28:06 +000098// ADJCALLSTACKDOWN/UP implicitly use/def RSP because they may be expanded into
99// a stack adjustment and the codegen must know that they may modify the stack
100// pointer before prolog-epilog rewriting occurs.
101// Pessimistically assume ADJCALLSTACKDOWN / ADJCALLSTACKUP will become
102// sub / add which can clobber EFLAGS.
103let Defs = [RSP, EFLAGS], Uses = [RSP] in {
104def ADJCALLSTACKDOWN64 : I<0, Pseudo, (outs), (ins i32imm:$amt),
105 "#ADJCALLSTACKDOWN",
Chris Lattnerfe5d4022008-10-11 22:08:30 +0000106 [(X86callseq_start timm:$amt)]>,
Dan Gohman01c9f772008-10-01 18:28:06 +0000107 Requires<[In64BitMode]>;
108def ADJCALLSTACKUP64 : I<0, Pseudo, (outs), (ins i32imm:$amt1, i32imm:$amt2),
109 "#ADJCALLSTACKUP",
Chris Lattnerfe5d4022008-10-11 22:08:30 +0000110 [(X86callseq_end timm:$amt1, timm:$amt2)]>,
Dan Gohman01c9f772008-10-01 18:28:06 +0000111 Requires<[In64BitMode]>;
112}
113
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000114//===----------------------------------------------------------------------===//
115// Call Instructions...
116//
Evan Cheng37e7c752007-07-21 00:34:19 +0000117let isCall = 1 in
Dan Gohman01c9f772008-10-01 18:28:06 +0000118 // All calls clobber the non-callee saved registers. RSP is marked as
119 // a use to prevent stack-pointer assignments that appear immediately
120 // before calls from potentially appearing dead. Uses for argument
121 // registers are added manually.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000122 let Defs = [RAX, RCX, RDX, RSI, RDI, R8, R9, R10, R11,
Evan Cheng931a8f42008-01-29 19:34:22 +0000123 FP0, FP1, FP2, FP3, FP4, FP5, FP6, ST0, ST1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000124 MM0, MM1, MM2, MM3, MM4, MM5, MM6, MM7,
125 XMM0, XMM1, XMM2, XMM3, XMM4, XMM5, XMM6, XMM7,
Dan Gohman9499cfe2008-10-01 04:14:30 +0000126 XMM8, XMM9, XMM10, XMM11, XMM12, XMM13, XMM14, XMM15, EFLAGS],
127 Uses = [RSP] in {
Chris Lattner79552392009-03-18 00:43:52 +0000128
129 // NOTE: this pattern doesn't match "X86call imm", because we do not know
130 // that the offset between an arbitrary immediate and the call will fit in
131 // the 32-bit pcrel field that we have.
Evan Chengfa4b3bd2009-06-16 19:44:27 +0000132 def CALL64pcrel32 : Ii32<0xE8, RawFrm,
Chris Lattner357a0ca2009-06-20 19:34:09 +0000133 (outs), (ins i64i32imm_pcrel:$dst, variable_ops),
134 "call\t$dst", []>,
Anton Korobeynikov2cbcdb72009-08-03 08:12:53 +0000135 Requires<[In64BitMode, NotWin64]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000136 def CALL64r : I<0xFF, MRM2r, (outs), (ins GR64:$dst, variable_ops),
Anton Korobeynikov2cbcdb72009-08-03 08:12:53 +0000137 "call\t{*}$dst", [(X86call GR64:$dst)]>,
138 Requires<[NotWin64]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000139 def CALL64m : I<0xFF, MRM2m, (outs), (ins i64mem:$dst, variable_ops),
Anton Korobeynikov2cbcdb72009-08-03 08:12:53 +0000140 "call\t{*}$dst", [(X86call (loadi64 addr:$dst))]>,
141 Requires<[NotWin64]>;
Sean Callanan66fdfa02009-09-03 00:04:47 +0000142
143 def FARCALL64 : RI<0xFF, MRM3m, (outs), (ins opaque80mem:$dst),
144 "lcall{q}\t{*}$dst", []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000145 }
146
Anton Korobeynikov2cbcdb72009-08-03 08:12:53 +0000147 // FIXME: We need to teach codegen about single list of call-clobbered registers.
148let isCall = 1 in
149 // All calls clobber the non-callee saved registers. RSP is marked as
150 // a use to prevent stack-pointer assignments that appear immediately
151 // before calls from potentially appearing dead. Uses for argument
152 // registers are added manually.
153 let Defs = [RAX, RCX, RDX, R8, R9, R10, R11,
154 FP0, FP1, FP2, FP3, FP4, FP5, FP6, ST0, ST1,
155 MM0, MM1, MM2, MM3, MM4, MM5, MM6, MM7,
156 XMM0, XMM1, XMM2, XMM3, XMM4, XMM5, EFLAGS],
157 Uses = [RSP] in {
158 def WINCALL64pcrel32 : I<0xE8, RawFrm,
Anton Korobeynikov1c95afc2009-08-07 23:59:21 +0000159 (outs), (ins i64i32imm_pcrel:$dst, variable_ops),
160 "call\t$dst", []>,
Anton Korobeynikov2cbcdb72009-08-03 08:12:53 +0000161 Requires<[IsWin64]>;
162 def WINCALL64r : I<0xFF, MRM2r, (outs), (ins GR64:$dst, variable_ops),
163 "call\t{*}$dst",
164 [(X86call GR64:$dst)]>, Requires<[IsWin64]>;
165 def WINCALL64m : I<0xFF, MRM2m, (outs), (ins i64mem:$dst, variable_ops),
166 "call\t{*}$dst",
167 [(X86call (loadi64 addr:$dst))]>, Requires<[IsWin64]>;
168 }
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000169
170
171let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in
Evan Chengbd780d22009-02-10 21:39:44 +0000172def TCRETURNdi64 : I<0, Pseudo, (outs), (ins i64imm:$dst, i32imm:$offset,
173 variable_ops),
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000174 "#TC_RETURN $dst $offset",
175 []>;
176
177let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in
Evan Chengbd780d22009-02-10 21:39:44 +0000178def TCRETURNri64 : I<0, Pseudo, (outs), (ins GR64:$dst, i32imm:$offset,
179 variable_ops),
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000180 "#TC_RETURN $dst $offset",
181 []>;
182
183
184let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in
Evan Chengbd780d22009-02-10 21:39:44 +0000185 def TAILJMPr64 : I<0xFF, MRM4r, (outs), (ins GR64:$dst),
186 "jmp{q}\t{*}$dst # TAILCALL",
187 []>;
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +0000188
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000189// Branches
Owen Andersonf8053082007-11-12 07:39:39 +0000190let isBranch = 1, isTerminator = 1, isBarrier = 1, isIndirectBranch = 1 in {
Dan Gohman91888f02007-07-31 20:11:57 +0000191 def JMP64r : I<0xFF, MRM4r, (outs), (ins GR64:$dst), "jmp{q}\t{*}$dst",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000192 [(brind GR64:$dst)]>;
Dan Gohman91888f02007-07-31 20:11:57 +0000193 def JMP64m : I<0xFF, MRM4m, (outs), (ins i64mem:$dst), "jmp{q}\t{*}$dst",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000194 [(brind (loadi64 addr:$dst))]>;
Sean Callanan66fdfa02009-09-03 00:04:47 +0000195 def FARJMP64 : RI<0xFF, MRM5m, (outs), (ins opaque80mem:$dst),
196 "ljmp{q}\t{*}$dst", []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000197}
198
199//===----------------------------------------------------------------------===//
Anton Korobeynikov1ec04ee2008-09-08 21:12:47 +0000200// EH Pseudo Instructions
201//
202let isTerminator = 1, isReturn = 1, isBarrier = 1,
203 hasCtrlDep = 1 in {
204def EH_RETURN64 : I<0xC3, RawFrm, (outs), (ins GR64:$addr),
205 "ret\t#eh_return, addr: $addr",
206 [(X86ehret GR64:$addr)]>;
207
208}
209
210//===----------------------------------------------------------------------===//
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000211// Miscellaneous Instructions...
212//
Chris Lattnerc90ee9c2008-01-10 07:59:24 +0000213let Defs = [RBP,RSP], Uses = [RBP,RSP], mayLoad = 1, neverHasSideEffects = 1 in
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000214def LEAVE64 : I<0xC9, RawFrm,
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000215 (outs), (ins), "leave", []>;
Chris Lattnerc90ee9c2008-01-10 07:59:24 +0000216let Defs = [RSP], Uses = [RSP], neverHasSideEffects=1 in {
Sean Callanan9f3c3f52009-09-10 18:29:13 +0000217let mayLoad = 1 in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000218def POP64r : I<0x58, AddRegFrm,
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000219 (outs GR64:$reg), (ins), "pop{q}\t$reg", []>;
Sean Callanan9f3c3f52009-09-10 18:29:13 +0000220def POP64rmr: I<0x8F, MRM0r, (outs GR64:$reg), (ins), "pop{q}\t$reg", []>;
221def POP64rmm: I<0x8F, MRM0m, (outs i64mem:$dst), (ins), "pop{q}\t$dst", []>;
222}
223let mayStore = 1 in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000224def PUSH64r : I<0x50, AddRegFrm,
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000225 (outs), (ins GR64:$reg), "push{q}\t$reg", []>;
Sean Callanan9f3c3f52009-09-10 18:29:13 +0000226def PUSH64rmr: I<0xFF, MRM6r, (outs), (ins GR64:$reg), "push{q}\t$reg", []>;
227def PUSH64rmm: I<0xFF, MRM6m, (outs), (ins i64mem:$src), "push{q}\t$src", []>;
228}
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000229}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000230
Bill Wendling4c2638c2009-06-15 19:39:04 +0000231let Defs = [RSP], Uses = [RSP], neverHasSideEffects = 1, mayStore = 1 in {
232def PUSH64i8 : Ii8<0x6a, RawFrm, (outs), (ins i8imm:$imm),
Bill Wendling0b0437f2009-06-15 20:59:31 +0000233 "push{q}\t$imm", []>;
Bill Wendling4c2638c2009-06-15 19:39:04 +0000234def PUSH64i16 : Ii16<0x68, RawFrm, (outs), (ins i16imm:$imm),
Bill Wendling0b0437f2009-06-15 20:59:31 +0000235 "push{q}\t$imm", []>;
Bill Wendling4c2638c2009-06-15 19:39:04 +0000236def PUSH64i32 : Ii32<0x68, RawFrm, (outs), (ins i32imm:$imm),
Bill Wendling0b0437f2009-06-15 20:59:31 +0000237 "push{q}\t$imm", []>;
Bill Wendling4c2638c2009-06-15 19:39:04 +0000238}
239
Chris Lattnerc90ee9c2008-01-10 07:59:24 +0000240let Defs = [RSP, EFLAGS], Uses = [RSP], mayLoad = 1 in
Evan Chengf1341312007-09-26 21:28:00 +0000241def POPFQ : I<0x9D, RawFrm, (outs), (ins), "popf", []>, REX_W;
Chris Lattnerc90ee9c2008-01-10 07:59:24 +0000242let Defs = [RSP], Uses = [RSP, EFLAGS], mayStore = 1 in
Evan Chengf1341312007-09-26 21:28:00 +0000243def PUSHFQ : I<0x9C, RawFrm, (outs), (ins), "pushf", []>;
Evan Chengd8434332007-09-26 01:29:06 +0000244
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000245def LEA64_32r : I<0x8D, MRMSrcMem,
Evan Chengb783fa32007-07-19 01:14:50 +0000246 (outs GR32:$dst), (ins lea64_32mem:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000247 "lea{l}\t{$src|$dst}, {$dst|$src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000248 [(set GR32:$dst, lea32addr:$src)]>, Requires<[In64BitMode]>;
249
Evan Cheng1ea8e6b2008-03-27 01:41:09 +0000250let isReMaterializable = 1 in
Evan Chengb783fa32007-07-19 01:14:50 +0000251def LEA64r : RI<0x8D, MRMSrcMem, (outs GR64:$dst), (ins lea64mem:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000252 "lea{q}\t{$src|$dst}, {$dst|$src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000253 [(set GR64:$dst, lea64addr:$src)]>;
254
255let isTwoAddress = 1 in
Evan Chengb783fa32007-07-19 01:14:50 +0000256def BSWAP64r : RI<0xC8, AddRegFrm, (outs GR64:$dst), (ins GR64:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000257 "bswap{q}\t$dst",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000258 [(set GR64:$dst, (bswap GR64:$src))]>, TB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000259
Evan Cheng48679f42007-12-14 02:13:44 +0000260// Bit scan instructions.
261let Defs = [EFLAGS] in {
Evan Cheng4e33de92007-12-14 18:49:43 +0000262def BSF64rr : RI<0xBC, MRMSrcReg, (outs GR64:$dst), (ins GR64:$src),
Dan Gohmancdb54c62007-12-14 15:10:00 +0000263 "bsf{q}\t{$src, $dst|$dst, $src}",
Evan Cheng9a8ffd52007-12-14 18:25:34 +0000264 [(set GR64:$dst, (X86bsf GR64:$src)), (implicit EFLAGS)]>, TB;
Evan Cheng48679f42007-12-14 02:13:44 +0000265def BSF64rm : RI<0xBC, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
Dan Gohmancdb54c62007-12-14 15:10:00 +0000266 "bsf{q}\t{$src, $dst|$dst, $src}",
Evan Cheng9a8ffd52007-12-14 18:25:34 +0000267 [(set GR64:$dst, (X86bsf (loadi64 addr:$src))),
268 (implicit EFLAGS)]>, TB;
Evan Cheng48679f42007-12-14 02:13:44 +0000269
Evan Cheng4e33de92007-12-14 18:49:43 +0000270def BSR64rr : RI<0xBD, MRMSrcReg, (outs GR64:$dst), (ins GR64:$src),
Dan Gohmancdb54c62007-12-14 15:10:00 +0000271 "bsr{q}\t{$src, $dst|$dst, $src}",
Evan Cheng9a8ffd52007-12-14 18:25:34 +0000272 [(set GR64:$dst, (X86bsr GR64:$src)), (implicit EFLAGS)]>, TB;
Evan Cheng48679f42007-12-14 02:13:44 +0000273def BSR64rm : RI<0xBD, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
Dan Gohmancdb54c62007-12-14 15:10:00 +0000274 "bsr{q}\t{$src, $dst|$dst, $src}",
Evan Cheng9a8ffd52007-12-14 18:25:34 +0000275 [(set GR64:$dst, (X86bsr (loadi64 addr:$src))),
276 (implicit EFLAGS)]>, TB;
Evan Cheng48679f42007-12-14 02:13:44 +0000277} // Defs = [EFLAGS]
278
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000279// Repeat string ops
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000280let Defs = [RCX,RDI,RSI], Uses = [RCX,RDI,RSI] in
Evan Chengb783fa32007-07-19 01:14:50 +0000281def REP_MOVSQ : RI<0xA5, RawFrm, (outs), (ins), "{rep;movsq|rep movsq}",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000282 [(X86rep_movs i64)]>, REP;
283let Defs = [RCX,RDI], Uses = [RAX,RCX,RDI] in
Evan Chengb783fa32007-07-19 01:14:50 +0000284def REP_STOSQ : RI<0xAB, RawFrm, (outs), (ins), "{rep;stosq|rep stosq}",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000285 [(X86rep_stos i64)]>, REP;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000286
Sean Callanan481f06d2009-09-12 00:37:19 +0000287def SCAS64 : RI<0xAF, RawFrm, (outs), (ins), "scas{q}", []>;
288
Sean Callanan25220d62009-09-12 02:25:20 +0000289def CMPS64 : RI<0xA7, RawFrm, (outs), (ins), "cmps{q}", []>;
290
Bill Wendlinga7431ad2009-07-21 01:07:24 +0000291// Fast system-call instructions
Bill Wendlinga7431ad2009-07-21 01:07:24 +0000292def SYSEXIT64 : RI<0x35, RawFrm,
293 (outs), (ins), "sysexit", []>, TB;
Bill Wendlinga7431ad2009-07-21 01:07:24 +0000294
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000295//===----------------------------------------------------------------------===//
296// Move Instructions...
297//
298
Chris Lattnerc90ee9c2008-01-10 07:59:24 +0000299let neverHasSideEffects = 1 in
Evan Chengb783fa32007-07-19 01:14:50 +0000300def MOV64rr : RI<0x89, MRMDestReg, (outs GR64:$dst), (ins GR64:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000301 "mov{q}\t{$src, $dst|$dst, $src}", []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000302
Evan Chengd2b9d302008-06-25 01:16:38 +0000303let isReMaterializable = 1, isAsCheapAsAMove = 1 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000304def MOV64ri : RIi64<0xB8, AddRegFrm, (outs GR64:$dst), (ins i64imm:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000305 "movabs{q}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000306 [(set GR64:$dst, imm:$src)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000307def MOV64ri32 : RIi32<0xC7, MRM0r, (outs GR64:$dst), (ins i64i32imm:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000308 "mov{q}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000309 [(set GR64:$dst, i64immSExt32:$src)]>;
Dan Gohman8aef09b2007-09-07 21:32:51 +0000310}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000311
Dan Gohman5574cc72008-12-03 18:15:48 +0000312let canFoldAsLoad = 1 in
Evan Chengb783fa32007-07-19 01:14:50 +0000313def MOV64rm : RI<0x8B, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000314 "mov{q}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000315 [(set GR64:$dst, (load addr:$src))]>;
316
Evan Chengb783fa32007-07-19 01:14:50 +0000317def MOV64mr : RI<0x89, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000318 "mov{q}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000319 [(store GR64:$src, addr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000320def MOV64mi32 : RIi32<0xC7, MRM0m, (outs), (ins i64mem:$dst, i64i32imm:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000321 "mov{q}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000322 [(store i64immSExt32:$src, addr:$dst)]>;
323
Sean Callanan70953a52009-09-10 18:33:42 +0000324def MOV64o8a : RIi8<0xA0, RawFrm, (outs), (ins i8imm:$src),
325 "mov{q}\t{$src, %rax|%rax, $src}", []>;
326def MOV64o32a : RIi32<0xA1, RawFrm, (outs), (ins i32imm:$src),
327 "mov{q}\t{$src, %rax|%rax, $src}", []>;
328def MOV64ao8 : RIi8<0xA2, RawFrm, (outs i8imm:$dst), (ins),
329 "mov{q}\t{%rax, $dst|$dst, %rax}", []>;
330def MOV64ao32 : RIi32<0xA3, RawFrm, (outs i32imm:$dst), (ins),
331 "mov{q}\t{%rax, $dst|$dst, %rax}", []>;
332
Sean Callananad87a3a2009-09-15 18:47:29 +0000333// Moves to and from segment registers
334def MOV64rs : RI<0x8C, MRMDestReg, (outs GR64:$dst), (ins SEGMENT_REG:$src),
335 "mov{w}\t{$src, $dst|$dst, $src}", []>;
336def MOV64ms : RI<0x8C, MRMDestMem, (outs i64mem:$dst), (ins SEGMENT_REG:$src),
337 "mov{w}\t{$src, $dst|$dst, $src}", []>;
338def MOV64sr : RI<0x8E, MRMSrcReg, (outs SEGMENT_REG:$dst), (ins GR64:$src),
339 "mov{w}\t{$src, $dst|$dst, $src}", []>;
340def MOV64sm : RI<0x8E, MRMSrcMem, (outs SEGMENT_REG:$dst), (ins i64mem:$src),
341 "mov{w}\t{$src, $dst|$dst, $src}", []>;
342
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000343// Sign/Zero extenders
344
Dan Gohmanedde1992009-04-13 15:13:28 +0000345// MOVSX64rr8 always has a REX prefix and it has an 8-bit register
346// operand, which makes it a rare instruction with an 8-bit register
347// operand that can never access an h register. If support for h registers
348// were generalized, this would require a special register class.
Evan Chengb783fa32007-07-19 01:14:50 +0000349def MOVSX64rr8 : RI<0xBE, MRMSrcReg, (outs GR64:$dst), (ins GR8 :$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000350 "movs{bq|x}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000351 [(set GR64:$dst, (sext GR8:$src))]>, TB;
Evan Chengb783fa32007-07-19 01:14:50 +0000352def MOVSX64rm8 : RI<0xBE, MRMSrcMem, (outs GR64:$dst), (ins i8mem :$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000353 "movs{bq|x}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000354 [(set GR64:$dst, (sextloadi64i8 addr:$src))]>, TB;
Evan Chengb783fa32007-07-19 01:14:50 +0000355def MOVSX64rr16: RI<0xBF, MRMSrcReg, (outs GR64:$dst), (ins GR16:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000356 "movs{wq|x}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000357 [(set GR64:$dst, (sext GR16:$src))]>, TB;
Evan Chengb783fa32007-07-19 01:14:50 +0000358def MOVSX64rm16: RI<0xBF, MRMSrcMem, (outs GR64:$dst), (ins i16mem:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000359 "movs{wq|x}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000360 [(set GR64:$dst, (sextloadi64i16 addr:$src))]>, TB;
Evan Chengb783fa32007-07-19 01:14:50 +0000361def MOVSX64rr32: RI<0x63, MRMSrcReg, (outs GR64:$dst), (ins GR32:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000362 "movs{lq|xd}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000363 [(set GR64:$dst, (sext GR32:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000364def MOVSX64rm32: RI<0x63, MRMSrcMem, (outs GR64:$dst), (ins i32mem:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000365 "movs{lq|xd}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000366 [(set GR64:$dst, (sextloadi64i32 addr:$src))]>;
367
Dan Gohman9203ab42008-07-30 18:09:17 +0000368// Use movzbl instead of movzbq when the destination is a register; it's
369// equivalent due to implicit zero-extending, and it has a smaller encoding.
370def MOVZX64rr8 : I<0xB6, MRMSrcReg, (outs GR64:$dst), (ins GR8 :$src),
371 "movz{bl|x}\t{$src, ${dst:subreg32}|${dst:subreg32}, $src}",
372 [(set GR64:$dst, (zext GR8:$src))]>, TB;
373def MOVZX64rm8 : I<0xB6, MRMSrcMem, (outs GR64:$dst), (ins i8mem :$src),
374 "movz{bl|x}\t{$src, ${dst:subreg32}|${dst:subreg32}, $src}",
375 [(set GR64:$dst, (zextloadi64i8 addr:$src))]>, TB;
376// Use movzwl instead of movzwq when the destination is a register; it's
377// equivalent due to implicit zero-extending, and it has a smaller encoding.
378def MOVZX64rr16: I<0xB7, MRMSrcReg, (outs GR64:$dst), (ins GR16:$src),
379 "movz{wl|x}\t{$src, ${dst:subreg32}|${dst:subreg32}, $src}",
380 [(set GR64:$dst, (zext GR16:$src))]>, TB;
381def MOVZX64rm16: I<0xB7, MRMSrcMem, (outs GR64:$dst), (ins i16mem:$src),
382 "movz{wl|x}\t{$src, ${dst:subreg32}|${dst:subreg32}, $src}",
383 [(set GR64:$dst, (zextloadi64i16 addr:$src))]>, TB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000384
Dan Gohman47a419d2008-08-07 02:54:50 +0000385// There's no movzlq instruction, but movl can be used for this purpose, using
Dan Gohman4cedb1c2009-04-08 00:15:30 +0000386// implicit zero-extension. The preferred way to do 32-bit-to-64-bit zero
387// extension on x86-64 is to use a SUBREG_TO_REG to utilize implicit
388// zero-extension, however this isn't possible when the 32-bit value is
389// defined by a truncate or is copied from something where the high bits aren't
390// necessarily all zero. In such cases, we fall back to these explicit zext
391// instructions.
Dan Gohman47a419d2008-08-07 02:54:50 +0000392def MOVZX64rr32 : I<0x89, MRMDestReg, (outs GR64:$dst), (ins GR32:$src),
393 "mov{l}\t{$src, ${dst:subreg32}|${dst:subreg32}, $src}",
394 [(set GR64:$dst, (zext GR32:$src))]>;
395def MOVZX64rm32 : I<0x8B, MRMSrcMem, (outs GR64:$dst), (ins i32mem:$src),
396 "mov{l}\t{$src, ${dst:subreg32}|${dst:subreg32}, $src}",
397 [(set GR64:$dst, (zextloadi64i32 addr:$src))]>;
398
Dan Gohman4cedb1c2009-04-08 00:15:30 +0000399// Any instruction that defines a 32-bit result leaves the high half of the
Dan Gohman5d38ee42009-09-15 00:14:11 +0000400// register. Truncate can be lowered to EXTRACT_SUBREG. CopyFromReg may
401// be copying from a truncate. And x86's cmov doesn't do anything if the
402// condition is false. But any other 32-bit operation will zero-extend
Dan Gohman4cedb1c2009-04-08 00:15:30 +0000403// up to 64 bits.
404def def32 : PatLeaf<(i32 GR32:$src), [{
405 return N->getOpcode() != ISD::TRUNCATE &&
406 N->getOpcode() != TargetInstrInfo::EXTRACT_SUBREG &&
Dan Gohman5d38ee42009-09-15 00:14:11 +0000407 N->getOpcode() != ISD::CopyFromReg &&
408 N->getOpcode() != X86ISD::CMOV;
Dan Gohman4cedb1c2009-04-08 00:15:30 +0000409}]>;
410
411// In the case of a 32-bit def that is known to implicitly zero-extend,
412// we can use a SUBREG_TO_REG.
413def : Pat<(i64 (zext def32:$src)),
414 (SUBREG_TO_REG (i64 0), GR32:$src, x86_subreg_32bit)>;
415
Chris Lattnerc90ee9c2008-01-10 07:59:24 +0000416let neverHasSideEffects = 1 in {
417 let Defs = [RAX], Uses = [EAX] in
418 def CDQE : RI<0x98, RawFrm, (outs), (ins),
419 "{cltq|cdqe}", []>; // RAX = signext(EAX)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000420
Chris Lattnerc90ee9c2008-01-10 07:59:24 +0000421 let Defs = [RAX,RDX], Uses = [RAX] in
422 def CQO : RI<0x99, RawFrm, (outs), (ins),
423 "{cqto|cqo}", []>; // RDX:RAX = signext(RAX)
424}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000425
426//===----------------------------------------------------------------------===//
427// Arithmetic Instructions...
428//
429
Evan Cheng55687072007-09-14 21:48:26 +0000430let Defs = [EFLAGS] in {
Sean Callanan251676e2009-09-02 00:55:49 +0000431
432def ADD64i32 : RI<0x05, RawFrm, (outs), (ins i32imm:$src),
433 "add{q}\t{$src, %rax|%rax, $src}", []>;
434
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000435let isTwoAddress = 1 in {
436let isConvertibleToThreeAddress = 1 in {
437let isCommutable = 1 in
Bill Wendlingae034ed2008-12-12 00:56:36 +0000438// Register-Register Addition
439def ADD64rr : RI<0x01, MRMDestReg, (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
440 "add{q}\t{$src2, $dst|$dst, $src2}",
Bill Wendlingf5399032008-12-12 21:15:41 +0000441 [(set GR64:$dst, (add GR64:$src1, GR64:$src2)),
Bill Wendlingae034ed2008-12-12 00:56:36 +0000442 (implicit EFLAGS)]>;
443
444// Register-Integer Addition
Bill Wendlingae034ed2008-12-12 00:56:36 +0000445def ADD64ri8 : RIi8<0x83, MRM0r, (outs GR64:$dst), (ins GR64:$src1, i64i8imm:$src2),
446 "add{q}\t{$src2, $dst|$dst, $src2}",
Bill Wendlingf5399032008-12-12 21:15:41 +0000447 [(set GR64:$dst, (add GR64:$src1, i64immSExt8:$src2)),
448 (implicit EFLAGS)]>;
Dan Gohmand16fdc02008-12-19 18:25:21 +0000449def ADD64ri32 : RIi32<0x81, MRM0r, (outs GR64:$dst), (ins GR64:$src1, i64i32imm:$src2),
450 "add{q}\t{$src2, $dst|$dst, $src2}",
451 [(set GR64:$dst, (add GR64:$src1, i64immSExt32:$src2)),
452 (implicit EFLAGS)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000453} // isConvertibleToThreeAddress
454
Bill Wendlingae034ed2008-12-12 00:56:36 +0000455// Register-Memory Addition
456def ADD64rm : RI<0x03, MRMSrcMem, (outs GR64:$dst), (ins GR64:$src1, i64mem:$src2),
457 "add{q}\t{$src2, $dst|$dst, $src2}",
Bill Wendlingf5399032008-12-12 21:15:41 +0000458 [(set GR64:$dst, (add GR64:$src1, (load addr:$src2))),
Bill Wendlingae034ed2008-12-12 00:56:36 +0000459 (implicit EFLAGS)]>;
Sean Callanan7e7df0e2009-09-15 20:53:57 +0000460
Sean Callanan84df9312009-09-15 21:43:27 +0000461// Register-Register Addition - Equivalent to the normal rr form (ADD64rr), but
462// differently encoded.
Sean Callanan7e7df0e2009-09-15 20:53:57 +0000463def ADD64mrmrr : RI<0x03, MRMSrcReg, (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
464 "add{l}\t{$src2, $dst|$dst, $src2}", []>;
465
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000466} // isTwoAddress
467
Bill Wendlingae034ed2008-12-12 00:56:36 +0000468// Memory-Register Addition
Evan Chengb783fa32007-07-19 01:14:50 +0000469def ADD64mr : RI<0x01, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000470 "add{q}\t{$src2, $dst|$dst, $src2}",
Bill Wendlingf5399032008-12-12 21:15:41 +0000471 [(store (add (load addr:$dst), GR64:$src2), addr:$dst),
472 (implicit EFLAGS)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000473def ADD64mi8 : RIi8<0x83, MRM0m, (outs), (ins i64mem:$dst, i64i8imm :$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000474 "add{q}\t{$src2, $dst|$dst, $src2}",
Bill Wendlingf5399032008-12-12 21:15:41 +0000475 [(store (add (load addr:$dst), i64immSExt8:$src2), addr:$dst),
476 (implicit EFLAGS)]>;
Dan Gohmand16fdc02008-12-19 18:25:21 +0000477def ADD64mi32 : RIi32<0x81, MRM0m, (outs), (ins i64mem:$dst, i64i32imm :$src2),
478 "add{q}\t{$src2, $dst|$dst, $src2}",
479 [(store (add (load addr:$dst), i64immSExt32:$src2), addr:$dst),
480 (implicit EFLAGS)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000481
Evan Cheng259471d2007-10-05 17:59:57 +0000482let Uses = [EFLAGS] in {
Sean Callanan8562bef2009-09-11 19:01:56 +0000483
484def ADC64i32 : RI<0x15, RawFrm, (outs), (ins i32imm:$src),
485 "adc{q}\t{$src, %rax|%rax, $src}", []>;
486
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000487let isTwoAddress = 1 in {
488let isCommutable = 1 in
Dale Johannesen747fe522009-06-02 03:12:52 +0000489def ADC64rr : RI<0x11, MRMDestReg, (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000490 "adc{q}\t{$src2, $dst|$dst, $src2}",
Dale Johannesen747fe522009-06-02 03:12:52 +0000491 [(set GR64:$dst, (adde GR64:$src1, GR64:$src2))]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000492
Dale Johannesen747fe522009-06-02 03:12:52 +0000493def ADC64rm : RI<0x13, MRMSrcMem , (outs GR64:$dst), (ins GR64:$src1, i64mem:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000494 "adc{q}\t{$src2, $dst|$dst, $src2}",
Dale Johannesen747fe522009-06-02 03:12:52 +0000495 [(set GR64:$dst, (adde GR64:$src1, (load addr:$src2)))]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000496
Dale Johannesen747fe522009-06-02 03:12:52 +0000497def ADC64ri8 : RIi8<0x83, MRM2r, (outs GR64:$dst), (ins GR64:$src1, i64i8imm:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000498 "adc{q}\t{$src2, $dst|$dst, $src2}",
Dale Johannesen747fe522009-06-02 03:12:52 +0000499 [(set GR64:$dst, (adde GR64:$src1, i64immSExt8:$src2))]>;
500def ADC64ri32 : RIi32<0x81, MRM2r, (outs GR64:$dst), (ins GR64:$src1, i64i32imm:$src2),
Dan Gohmand16fdc02008-12-19 18:25:21 +0000501 "adc{q}\t{$src2, $dst|$dst, $src2}",
Dale Johannesen747fe522009-06-02 03:12:52 +0000502 [(set GR64:$dst, (adde GR64:$src1, i64immSExt32:$src2))]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000503} // isTwoAddress
504
Evan Chengb783fa32007-07-19 01:14:50 +0000505def ADC64mr : RI<0x11, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000506 "adc{q}\t{$src2, $dst|$dst, $src2}",
Dale Johannesen747fe522009-06-02 03:12:52 +0000507 [(store (adde (load addr:$dst), GR64:$src2), addr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000508def ADC64mi8 : RIi8<0x83, MRM2m, (outs), (ins i64mem:$dst, i64i8imm :$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000509 "adc{q}\t{$src2, $dst|$dst, $src2}",
Dale Johannesen747fe522009-06-02 03:12:52 +0000510 [(store (adde (load addr:$dst), i64immSExt8:$src2), addr:$dst)]>;
Dan Gohmand16fdc02008-12-19 18:25:21 +0000511def ADC64mi32 : RIi32<0x81, MRM2m, (outs), (ins i64mem:$dst, i64i32imm:$src2),
512 "adc{q}\t{$src2, $dst|$dst, $src2}",
Dale Johannesen747fe522009-06-02 03:12:52 +0000513 [(store (adde (load addr:$dst), i64immSExt8:$src2), addr:$dst)]>;
Evan Cheng259471d2007-10-05 17:59:57 +0000514} // Uses = [EFLAGS]
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000515
516let isTwoAddress = 1 in {
Bill Wendlingae034ed2008-12-12 00:56:36 +0000517// Register-Register Subtraction
Evan Chengb783fa32007-07-19 01:14:50 +0000518def SUB64rr : RI<0x29, MRMDestReg, (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000519 "sub{q}\t{$src2, $dst|$dst, $src2}",
Bill Wendlingf5399032008-12-12 21:15:41 +0000520 [(set GR64:$dst, (sub GR64:$src1, GR64:$src2)),
521 (implicit EFLAGS)]>;
Bill Wendlingae034ed2008-12-12 00:56:36 +0000522
523// Register-Memory Subtraction
Evan Chengb783fa32007-07-19 01:14:50 +0000524def SUB64rm : RI<0x2B, MRMSrcMem, (outs GR64:$dst), (ins GR64:$src1, i64mem:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000525 "sub{q}\t{$src2, $dst|$dst, $src2}",
Bill Wendlingf5399032008-12-12 21:15:41 +0000526 [(set GR64:$dst, (sub GR64:$src1, (load addr:$src2))),
527 (implicit EFLAGS)]>;
Bill Wendlingae034ed2008-12-12 00:56:36 +0000528
529// Register-Integer Subtraction
Bill Wendlingae034ed2008-12-12 00:56:36 +0000530def SUB64ri8 : RIi8<0x83, MRM5r, (outs GR64:$dst),
531 (ins GR64:$src1, i64i8imm:$src2),
532 "sub{q}\t{$src2, $dst|$dst, $src2}",
Bill Wendlingf5399032008-12-12 21:15:41 +0000533 [(set GR64:$dst, (sub GR64:$src1, i64immSExt8:$src2)),
534 (implicit EFLAGS)]>;
Dan Gohmand16fdc02008-12-19 18:25:21 +0000535def SUB64ri32 : RIi32<0x81, MRM5r, (outs GR64:$dst),
536 (ins GR64:$src1, i64i32imm:$src2),
537 "sub{q}\t{$src2, $dst|$dst, $src2}",
538 [(set GR64:$dst, (sub GR64:$src1, i64immSExt32:$src2)),
539 (implicit EFLAGS)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000540} // isTwoAddress
541
Sean Callanan8562bef2009-09-11 19:01:56 +0000542def SUB64i32 : RI<0x2D, RawFrm, (outs), (ins i32imm:$src),
543 "sub{q}\t{$src, %rax|%rax, $src}", []>;
544
Bill Wendlingae034ed2008-12-12 00:56:36 +0000545// Memory-Register Subtraction
Evan Chengb783fa32007-07-19 01:14:50 +0000546def SUB64mr : RI<0x29, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000547 "sub{q}\t{$src2, $dst|$dst, $src2}",
Bill Wendlingf5399032008-12-12 21:15:41 +0000548 [(store (sub (load addr:$dst), GR64:$src2), addr:$dst),
549 (implicit EFLAGS)]>;
Bill Wendlingae034ed2008-12-12 00:56:36 +0000550
551// Memory-Integer Subtraction
Evan Chengb783fa32007-07-19 01:14:50 +0000552def SUB64mi8 : RIi8<0x83, MRM5m, (outs), (ins i64mem:$dst, i64i8imm :$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000553 "sub{q}\t{$src2, $dst|$dst, $src2}",
Bill Wendlingae034ed2008-12-12 00:56:36 +0000554 [(store (sub (load addr:$dst), i64immSExt8:$src2),
Bill Wendlingf5399032008-12-12 21:15:41 +0000555 addr:$dst),
556 (implicit EFLAGS)]>;
Dan Gohmand16fdc02008-12-19 18:25:21 +0000557def SUB64mi32 : RIi32<0x81, MRM5m, (outs), (ins i64mem:$dst, i64i32imm:$src2),
558 "sub{q}\t{$src2, $dst|$dst, $src2}",
559 [(store (sub (load addr:$dst), i64immSExt32:$src2),
560 addr:$dst),
561 (implicit EFLAGS)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000562
Evan Cheng259471d2007-10-05 17:59:57 +0000563let Uses = [EFLAGS] in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000564let isTwoAddress = 1 in {
Dale Johannesen747fe522009-06-02 03:12:52 +0000565def SBB64rr : RI<0x19, MRMDestReg, (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000566 "sbb{q}\t{$src2, $dst|$dst, $src2}",
Dale Johannesen747fe522009-06-02 03:12:52 +0000567 [(set GR64:$dst, (sube GR64:$src1, GR64:$src2))]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000568
Dale Johannesen747fe522009-06-02 03:12:52 +0000569def SBB64rm : RI<0x1B, MRMSrcMem, (outs GR64:$dst), (ins GR64:$src1, i64mem:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000570 "sbb{q}\t{$src2, $dst|$dst, $src2}",
Dale Johannesen747fe522009-06-02 03:12:52 +0000571 [(set GR64:$dst, (sube GR64:$src1, (load addr:$src2)))]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000572
Dale Johannesen747fe522009-06-02 03:12:52 +0000573def SBB64ri8 : RIi8<0x83, MRM3r, (outs GR64:$dst), (ins GR64:$src1, i64i8imm:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000574 "sbb{q}\t{$src2, $dst|$dst, $src2}",
Dale Johannesen747fe522009-06-02 03:12:52 +0000575 [(set GR64:$dst, (sube GR64:$src1, i64immSExt8:$src2))]>;
576def SBB64ri32 : RIi32<0x81, MRM3r, (outs GR64:$dst), (ins GR64:$src1, i64i32imm:$src2),
Dan Gohmand16fdc02008-12-19 18:25:21 +0000577 "sbb{q}\t{$src2, $dst|$dst, $src2}",
Dale Johannesen747fe522009-06-02 03:12:52 +0000578 [(set GR64:$dst, (sube GR64:$src1, i64immSExt32:$src2))]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000579} // isTwoAddress
580
Sean Callanan8562bef2009-09-11 19:01:56 +0000581def SBB64i32 : RI<0x1D, RawFrm, (outs), (ins i32imm:$src),
582 "sbb{q}\t{$src, %rax|%rax, $src}", []>;
583
Evan Chengb783fa32007-07-19 01:14:50 +0000584def SBB64mr : RI<0x19, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000585 "sbb{q}\t{$src2, $dst|$dst, $src2}",
Dale Johannesen747fe522009-06-02 03:12:52 +0000586 [(store (sube (load addr:$dst), GR64:$src2), addr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000587def SBB64mi8 : RIi8<0x83, MRM3m, (outs), (ins i64mem:$dst, i64i8imm :$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000588 "sbb{q}\t{$src2, $dst|$dst, $src2}",
Dale Johannesen747fe522009-06-02 03:12:52 +0000589 [(store (sube (load addr:$dst), i64immSExt8:$src2), addr:$dst)]>;
Dan Gohmand16fdc02008-12-19 18:25:21 +0000590def SBB64mi32 : RIi32<0x81, MRM3m, (outs), (ins i64mem:$dst, i64i32imm:$src2),
591 "sbb{q}\t{$src2, $dst|$dst, $src2}",
Dale Johannesen747fe522009-06-02 03:12:52 +0000592 [(store (sube (load addr:$dst), i64immSExt32:$src2), addr:$dst)]>;
Evan Cheng259471d2007-10-05 17:59:57 +0000593} // Uses = [EFLAGS]
Evan Cheng55687072007-09-14 21:48:26 +0000594} // Defs = [EFLAGS]
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000595
596// Unsigned multiplication
Chris Lattnerc90ee9c2008-01-10 07:59:24 +0000597let Defs = [RAX,RDX,EFLAGS], Uses = [RAX], neverHasSideEffects = 1 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000598def MUL64r : RI<0xF7, MRM4r, (outs), (ins GR64:$src),
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000599 "mul{q}\t$src", []>; // RAX,RDX = RAX*GR64
Chris Lattnerc90ee9c2008-01-10 07:59:24 +0000600let mayLoad = 1 in
Evan Chengb783fa32007-07-19 01:14:50 +0000601def MUL64m : RI<0xF7, MRM4m, (outs), (ins i64mem:$src),
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000602 "mul{q}\t$src", []>; // RAX,RDX = RAX*[mem64]
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000603
604// Signed multiplication
Evan Chengb783fa32007-07-19 01:14:50 +0000605def IMUL64r : RI<0xF7, MRM5r, (outs), (ins GR64:$src),
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000606 "imul{q}\t$src", []>; // RAX,RDX = RAX*GR64
Chris Lattnerc90ee9c2008-01-10 07:59:24 +0000607let mayLoad = 1 in
Evan Chengb783fa32007-07-19 01:14:50 +0000608def IMUL64m : RI<0xF7, MRM5m, (outs), (ins i64mem:$src),
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000609 "imul{q}\t$src", []>; // RAX,RDX = RAX*[mem64]
610}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000611
Evan Cheng55687072007-09-14 21:48:26 +0000612let Defs = [EFLAGS] in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000613let isTwoAddress = 1 in {
614let isCommutable = 1 in
Bill Wendlingf5399032008-12-12 21:15:41 +0000615// Register-Register Signed Integer Multiplication
Bill Wendlingae034ed2008-12-12 00:56:36 +0000616def IMUL64rr : RI<0xAF, MRMSrcReg, (outs GR64:$dst),
617 (ins GR64:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000618 "imul{q}\t{$src2, $dst|$dst, $src2}",
Bill Wendlingf5399032008-12-12 21:15:41 +0000619 [(set GR64:$dst, (mul GR64:$src1, GR64:$src2)),
620 (implicit EFLAGS)]>, TB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000621
Bill Wendlingf5399032008-12-12 21:15:41 +0000622// Register-Memory Signed Integer Multiplication
Bill Wendlingae034ed2008-12-12 00:56:36 +0000623def IMUL64rm : RI<0xAF, MRMSrcMem, (outs GR64:$dst),
624 (ins GR64:$src1, i64mem:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000625 "imul{q}\t{$src2, $dst|$dst, $src2}",
Bill Wendlingf5399032008-12-12 21:15:41 +0000626 [(set GR64:$dst, (mul GR64:$src1, (load addr:$src2))),
627 (implicit EFLAGS)]>, TB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000628} // isTwoAddress
629
630// Suprisingly enough, these are not two address instructions!
Bill Wendlingae034ed2008-12-12 00:56:36 +0000631
Bill Wendlingf5399032008-12-12 21:15:41 +0000632// Register-Integer Signed Integer Multiplication
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000633def IMUL64rri8 : RIi8<0x6B, MRMSrcReg, // GR64 = GR64*I8
Evan Chengb783fa32007-07-19 01:14:50 +0000634 (outs GR64:$dst), (ins GR64:$src1, i64i8imm:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000635 "imul{q}\t{$src2, $src1, $dst|$dst, $src1, $src2}",
Bill Wendlingf5399032008-12-12 21:15:41 +0000636 [(set GR64:$dst, (mul GR64:$src1, i64immSExt8:$src2)),
637 (implicit EFLAGS)]>;
Dan Gohmand16fdc02008-12-19 18:25:21 +0000638def IMUL64rri32 : RIi32<0x69, MRMSrcReg, // GR64 = GR64*I32
639 (outs GR64:$dst), (ins GR64:$src1, i64i32imm:$src2),
640 "imul{q}\t{$src2, $src1, $dst|$dst, $src1, $src2}",
641 [(set GR64:$dst, (mul GR64:$src1, i64immSExt32:$src2)),
642 (implicit EFLAGS)]>;
Bill Wendlingae034ed2008-12-12 00:56:36 +0000643
Bill Wendlingf5399032008-12-12 21:15:41 +0000644// Memory-Integer Signed Integer Multiplication
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000645def IMUL64rmi8 : RIi8<0x6B, MRMSrcMem, // GR64 = [mem64]*I8
Evan Chengb783fa32007-07-19 01:14:50 +0000646 (outs GR64:$dst), (ins i64mem:$src1, i64i8imm: $src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000647 "imul{q}\t{$src2, $src1, $dst|$dst, $src1, $src2}",
Bill Wendlingae034ed2008-12-12 00:56:36 +0000648 [(set GR64:$dst, (mul (load addr:$src1),
Bill Wendlingf5399032008-12-12 21:15:41 +0000649 i64immSExt8:$src2)),
650 (implicit EFLAGS)]>;
Dan Gohmand16fdc02008-12-19 18:25:21 +0000651def IMUL64rmi32 : RIi32<0x69, MRMSrcMem, // GR64 = [mem64]*I32
652 (outs GR64:$dst), (ins i64mem:$src1, i64i32imm:$src2),
653 "imul{q}\t{$src2, $src1, $dst|$dst, $src1, $src2}",
654 [(set GR64:$dst, (mul (load addr:$src1),
655 i64immSExt32:$src2)),
656 (implicit EFLAGS)]>;
Evan Cheng55687072007-09-14 21:48:26 +0000657} // Defs = [EFLAGS]
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000658
659// Unsigned division / remainder
Evan Cheng55687072007-09-14 21:48:26 +0000660let Defs = [RAX,RDX,EFLAGS], Uses = [RAX,RDX] in {
Evan Chengb783fa32007-07-19 01:14:50 +0000661def DIV64r : RI<0xF7, MRM6r, (outs), (ins GR64:$src), // RDX:RAX/r64 = RAX,RDX
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000662 "div{q}\t$src", []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000663// Signed division / remainder
Evan Chengb783fa32007-07-19 01:14:50 +0000664def IDIV64r: RI<0xF7, MRM7r, (outs), (ins GR64:$src), // RDX:RAX/r64 = RAX,RDX
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000665 "idiv{q}\t$src", []>;
Chris Lattnerc90ee9c2008-01-10 07:59:24 +0000666let mayLoad = 1 in {
667def DIV64m : RI<0xF7, MRM6m, (outs), (ins i64mem:$src), // RDX:RAX/[mem64] = RAX,RDX
668 "div{q}\t$src", []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000669def IDIV64m: RI<0xF7, MRM7m, (outs), (ins i64mem:$src), // RDX:RAX/[mem64] = RAX,RDX
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000670 "idiv{q}\t$src", []>;
671}
Chris Lattnerc90ee9c2008-01-10 07:59:24 +0000672}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000673
674// Unary instructions
Evan Cheng55687072007-09-14 21:48:26 +0000675let Defs = [EFLAGS], CodeSize = 2 in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000676let isTwoAddress = 1 in
Dan Gohman91888f02007-07-31 20:11:57 +0000677def NEG64r : RI<0xF7, MRM3r, (outs GR64:$dst), (ins GR64:$src), "neg{q}\t$dst",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000678 [(set GR64:$dst, (ineg GR64:$src)),
679 (implicit EFLAGS)]>;
Dan Gohman91888f02007-07-31 20:11:57 +0000680def NEG64m : RI<0xF7, MRM3m, (outs), (ins i64mem:$dst), "neg{q}\t$dst",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000681 [(store (ineg (loadi64 addr:$dst)), addr:$dst),
682 (implicit EFLAGS)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000683
684let isTwoAddress = 1, isConvertibleToThreeAddress = 1 in
Dan Gohman91888f02007-07-31 20:11:57 +0000685def INC64r : RI<0xFF, MRM0r, (outs GR64:$dst), (ins GR64:$src), "inc{q}\t$dst",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000686 [(set GR64:$dst, (add GR64:$src, 1)),
687 (implicit EFLAGS)]>;
Dan Gohman91888f02007-07-31 20:11:57 +0000688def INC64m : RI<0xFF, MRM0m, (outs), (ins i64mem:$dst), "inc{q}\t$dst",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000689 [(store (add (loadi64 addr:$dst), 1), addr:$dst),
690 (implicit EFLAGS)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000691
692let isTwoAddress = 1, isConvertibleToThreeAddress = 1 in
Dan Gohman91888f02007-07-31 20:11:57 +0000693def DEC64r : RI<0xFF, MRM1r, (outs GR64:$dst), (ins GR64:$src), "dec{q}\t$dst",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000694 [(set GR64:$dst, (add GR64:$src, -1)),
695 (implicit EFLAGS)]>;
Dan Gohman91888f02007-07-31 20:11:57 +0000696def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000697 [(store (add (loadi64 addr:$dst), -1), addr:$dst),
698 (implicit EFLAGS)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000699
700// In 64-bit mode, single byte INC and DEC cannot be encoded.
701let isTwoAddress = 1, isConvertibleToThreeAddress = 1 in {
702// Can transform into LEA.
Dan Gohman91888f02007-07-31 20:11:57 +0000703def INC64_16r : I<0xFF, MRM0r, (outs GR16:$dst), (ins GR16:$src), "inc{w}\t$dst",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000704 [(set GR16:$dst, (add GR16:$src, 1)),
705 (implicit EFLAGS)]>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000706 OpSize, Requires<[In64BitMode]>;
Dan Gohman91888f02007-07-31 20:11:57 +0000707def INC64_32r : I<0xFF, MRM0r, (outs GR32:$dst), (ins GR32:$src), "inc{l}\t$dst",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000708 [(set GR32:$dst, (add GR32:$src, 1)),
709 (implicit EFLAGS)]>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000710 Requires<[In64BitMode]>;
Dan Gohman91888f02007-07-31 20:11:57 +0000711def DEC64_16r : I<0xFF, MRM1r, (outs GR16:$dst), (ins GR16:$src), "dec{w}\t$dst",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000712 [(set GR16:$dst, (add GR16:$src, -1)),
713 (implicit EFLAGS)]>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000714 OpSize, Requires<[In64BitMode]>;
Dan Gohman91888f02007-07-31 20:11:57 +0000715def DEC64_32r : I<0xFF, MRM1r, (outs GR32:$dst), (ins GR32:$src), "dec{l}\t$dst",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000716 [(set GR32:$dst, (add GR32:$src, -1)),
717 (implicit EFLAGS)]>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000718 Requires<[In64BitMode]>;
719} // isConvertibleToThreeAddress
Evan Cheng4a7e72f2007-10-19 21:23:22 +0000720
721// These are duplicates of their 32-bit counterparts. Only needed so X86 knows
722// how to unfold them.
723let isTwoAddress = 0, CodeSize = 2 in {
724 def INC64_16m : I<0xFF, MRM0m, (outs), (ins i16mem:$dst), "inc{w}\t$dst",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000725 [(store (add (loadi16 addr:$dst), 1), addr:$dst),
726 (implicit EFLAGS)]>,
Evan Cheng4a7e72f2007-10-19 21:23:22 +0000727 OpSize, Requires<[In64BitMode]>;
728 def INC64_32m : I<0xFF, MRM0m, (outs), (ins i32mem:$dst), "inc{l}\t$dst",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000729 [(store (add (loadi32 addr:$dst), 1), addr:$dst),
730 (implicit EFLAGS)]>,
Evan Cheng4a7e72f2007-10-19 21:23:22 +0000731 Requires<[In64BitMode]>;
732 def DEC64_16m : I<0xFF, MRM1m, (outs), (ins i16mem:$dst), "dec{w}\t$dst",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000733 [(store (add (loadi16 addr:$dst), -1), addr:$dst),
734 (implicit EFLAGS)]>,
Evan Cheng4a7e72f2007-10-19 21:23:22 +0000735 OpSize, Requires<[In64BitMode]>;
736 def DEC64_32m : I<0xFF, MRM1m, (outs), (ins i32mem:$dst), "dec{l}\t$dst",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000737 [(store (add (loadi32 addr:$dst), -1), addr:$dst),
738 (implicit EFLAGS)]>,
Evan Cheng4a7e72f2007-10-19 21:23:22 +0000739 Requires<[In64BitMode]>;
740}
Evan Cheng55687072007-09-14 21:48:26 +0000741} // Defs = [EFLAGS], CodeSize
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000742
743
Evan Cheng55687072007-09-14 21:48:26 +0000744let Defs = [EFLAGS] in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000745// Shift instructions
746let isTwoAddress = 1 in {
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000747let Uses = [CL] in
Evan Chengb783fa32007-07-19 01:14:50 +0000748def SHL64rCL : RI<0xD3, MRM4r, (outs GR64:$dst), (ins GR64:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000749 "shl{q}\t{%cl, $dst|$dst, %CL}",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000750 [(set GR64:$dst, (shl GR64:$src, CL))]>;
Evan Chenga98f6272007-10-05 18:20:36 +0000751let isConvertibleToThreeAddress = 1 in // Can transform into LEA.
Evan Chengb783fa32007-07-19 01:14:50 +0000752def SHL64ri : RIi8<0xC1, MRM4r, (outs GR64:$dst), (ins GR64:$src1, i8imm:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000753 "shl{q}\t{$src2, $dst|$dst, $src2}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000754 [(set GR64:$dst, (shl GR64:$src1, (i8 imm:$src2)))]>;
Chris Lattnerf4005a82008-01-11 18:00:50 +0000755// NOTE: We don't use shifts of a register by one, because 'add reg,reg' is
756// cheaper.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000757} // isTwoAddress
758
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000759let Uses = [CL] in
Evan Chengb783fa32007-07-19 01:14:50 +0000760def SHL64mCL : RI<0xD3, MRM4m, (outs), (ins i64mem:$dst),
Dan Gohman91888f02007-07-31 20:11:57 +0000761 "shl{q}\t{%cl, $dst|$dst, %CL}",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000762 [(store (shl (loadi64 addr:$dst), CL), addr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000763def SHL64mi : RIi8<0xC1, MRM4m, (outs), (ins i64mem:$dst, i8imm:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000764 "shl{q}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000765 [(store (shl (loadi64 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000766def SHL64m1 : RI<0xD1, MRM4m, (outs), (ins i64mem:$dst),
Dan Gohman91888f02007-07-31 20:11:57 +0000767 "shl{q}\t$dst",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000768 [(store (shl (loadi64 addr:$dst), (i8 1)), addr:$dst)]>;
769
770let isTwoAddress = 1 in {
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000771let Uses = [CL] in
Evan Chengb783fa32007-07-19 01:14:50 +0000772def SHR64rCL : RI<0xD3, MRM5r, (outs GR64:$dst), (ins GR64:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000773 "shr{q}\t{%cl, $dst|$dst, %CL}",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000774 [(set GR64:$dst, (srl GR64:$src, CL))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000775def SHR64ri : RIi8<0xC1, MRM5r, (outs GR64:$dst), (ins GR64:$src1, i8imm:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000776 "shr{q}\t{$src2, $dst|$dst, $src2}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000777 [(set GR64:$dst, (srl GR64:$src1, (i8 imm:$src2)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000778def SHR64r1 : RI<0xD1, MRM5r, (outs GR64:$dst), (ins GR64:$src1),
Dan Gohman91888f02007-07-31 20:11:57 +0000779 "shr{q}\t$dst",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000780 [(set GR64:$dst, (srl GR64:$src1, (i8 1)))]>;
781} // isTwoAddress
782
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000783let Uses = [CL] in
Evan Chengb783fa32007-07-19 01:14:50 +0000784def SHR64mCL : RI<0xD3, MRM5m, (outs), (ins i64mem:$dst),
Dan Gohman91888f02007-07-31 20:11:57 +0000785 "shr{q}\t{%cl, $dst|$dst, %CL}",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000786 [(store (srl (loadi64 addr:$dst), CL), addr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000787def SHR64mi : RIi8<0xC1, MRM5m, (outs), (ins i64mem:$dst, i8imm:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000788 "shr{q}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000789 [(store (srl (loadi64 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000790def SHR64m1 : RI<0xD1, MRM5m, (outs), (ins i64mem:$dst),
Dan Gohman91888f02007-07-31 20:11:57 +0000791 "shr{q}\t$dst",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000792 [(store (srl (loadi64 addr:$dst), (i8 1)), addr:$dst)]>;
793
794let isTwoAddress = 1 in {
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000795let Uses = [CL] in
Evan Chengb783fa32007-07-19 01:14:50 +0000796def SAR64rCL : RI<0xD3, MRM7r, (outs GR64:$dst), (ins GR64:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000797 "sar{q}\t{%cl, $dst|$dst, %CL}",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000798 [(set GR64:$dst, (sra GR64:$src, CL))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000799def SAR64ri : RIi8<0xC1, MRM7r, (outs GR64:$dst), (ins GR64:$src1, i8imm:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000800 "sar{q}\t{$src2, $dst|$dst, $src2}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000801 [(set GR64:$dst, (sra GR64:$src1, (i8 imm:$src2)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000802def SAR64r1 : RI<0xD1, MRM7r, (outs GR64:$dst), (ins GR64:$src1),
Dan Gohman91888f02007-07-31 20:11:57 +0000803 "sar{q}\t$dst",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000804 [(set GR64:$dst, (sra GR64:$src1, (i8 1)))]>;
805} // isTwoAddress
806
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000807let Uses = [CL] in
Evan Chengb783fa32007-07-19 01:14:50 +0000808def SAR64mCL : RI<0xD3, MRM7m, (outs), (ins i64mem:$dst),
Dan Gohman91888f02007-07-31 20:11:57 +0000809 "sar{q}\t{%cl, $dst|$dst, %CL}",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000810 [(store (sra (loadi64 addr:$dst), CL), addr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000811def SAR64mi : RIi8<0xC1, MRM7m, (outs), (ins i64mem:$dst, i8imm:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000812 "sar{q}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000813 [(store (sra (loadi64 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000814def SAR64m1 : RI<0xD1, MRM7m, (outs), (ins i64mem:$dst),
Dan Gohman91888f02007-07-31 20:11:57 +0000815 "sar{q}\t$dst",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000816 [(store (sra (loadi64 addr:$dst), (i8 1)), addr:$dst)]>;
817
818// Rotate instructions
819let isTwoAddress = 1 in {
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000820let Uses = [CL] in
Evan Chengb783fa32007-07-19 01:14:50 +0000821def ROL64rCL : RI<0xD3, MRM0r, (outs GR64:$dst), (ins GR64:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000822 "rol{q}\t{%cl, $dst|$dst, %CL}",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000823 [(set GR64:$dst, (rotl GR64:$src, CL))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000824def ROL64ri : RIi8<0xC1, MRM0r, (outs GR64:$dst), (ins GR64:$src1, i8imm:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000825 "rol{q}\t{$src2, $dst|$dst, $src2}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000826 [(set GR64:$dst, (rotl GR64:$src1, (i8 imm:$src2)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000827def ROL64r1 : RI<0xD1, MRM0r, (outs GR64:$dst), (ins GR64:$src1),
Dan Gohman91888f02007-07-31 20:11:57 +0000828 "rol{q}\t$dst",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000829 [(set GR64:$dst, (rotl GR64:$src1, (i8 1)))]>;
830} // isTwoAddress
831
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000832let Uses = [CL] in
Evan Chengb783fa32007-07-19 01:14:50 +0000833def ROL64mCL : I<0xD3, MRM0m, (outs), (ins i64mem:$dst),
Dan Gohman91888f02007-07-31 20:11:57 +0000834 "rol{q}\t{%cl, $dst|$dst, %CL}",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000835 [(store (rotl (loadi64 addr:$dst), CL), addr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000836def ROL64mi : RIi8<0xC1, MRM0m, (outs), (ins i64mem:$dst, i8imm:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000837 "rol{q}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000838 [(store (rotl (loadi64 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000839def ROL64m1 : RI<0xD1, MRM0m, (outs), (ins i64mem:$dst),
Dan Gohman91888f02007-07-31 20:11:57 +0000840 "rol{q}\t$dst",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000841 [(store (rotl (loadi64 addr:$dst), (i8 1)), addr:$dst)]>;
842
843let isTwoAddress = 1 in {
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000844let Uses = [CL] in
Evan Chengb783fa32007-07-19 01:14:50 +0000845def ROR64rCL : RI<0xD3, MRM1r, (outs GR64:$dst), (ins GR64:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000846 "ror{q}\t{%cl, $dst|$dst, %CL}",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000847 [(set GR64:$dst, (rotr GR64:$src, CL))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000848def ROR64ri : RIi8<0xC1, MRM1r, (outs GR64:$dst), (ins GR64:$src1, i8imm:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000849 "ror{q}\t{$src2, $dst|$dst, $src2}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000850 [(set GR64:$dst, (rotr GR64:$src1, (i8 imm:$src2)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000851def ROR64r1 : RI<0xD1, MRM1r, (outs GR64:$dst), (ins GR64:$src1),
Dan Gohman91888f02007-07-31 20:11:57 +0000852 "ror{q}\t$dst",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000853 [(set GR64:$dst, (rotr GR64:$src1, (i8 1)))]>;
854} // isTwoAddress
855
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000856let Uses = [CL] in
Evan Chengb783fa32007-07-19 01:14:50 +0000857def ROR64mCL : RI<0xD3, MRM1m, (outs), (ins i64mem:$dst),
Dan Gohman91888f02007-07-31 20:11:57 +0000858 "ror{q}\t{%cl, $dst|$dst, %CL}",
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000859 [(store (rotr (loadi64 addr:$dst), CL), addr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000860def ROR64mi : RIi8<0xC1, MRM1m, (outs), (ins i64mem:$dst, i8imm:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000861 "ror{q}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000862 [(store (rotr (loadi64 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000863def ROR64m1 : RI<0xD1, MRM1m, (outs), (ins i64mem:$dst),
Dan Gohman91888f02007-07-31 20:11:57 +0000864 "ror{q}\t$dst",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000865 [(store (rotr (loadi64 addr:$dst), (i8 1)), addr:$dst)]>;
866
867// Double shift instructions (generalizations of rotate)
868let isTwoAddress = 1 in {
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000869let Uses = [CL] in {
Evan Chengb783fa32007-07-19 01:14:50 +0000870def SHLD64rrCL : RI<0xA5, MRMDestReg, (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
Dan Gohman4d9fc4a2007-09-14 23:17:45 +0000871 "shld{q}\t{%cl, $src2, $dst|$dst, $src2, %CL}",
872 [(set GR64:$dst, (X86shld GR64:$src1, GR64:$src2, CL))]>, TB;
Evan Chengb783fa32007-07-19 01:14:50 +0000873def SHRD64rrCL : RI<0xAD, MRMDestReg, (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
Dan Gohman4d9fc4a2007-09-14 23:17:45 +0000874 "shrd{q}\t{%cl, $src2, $dst|$dst, $src2, %CL}",
875 [(set GR64:$dst, (X86shrd GR64:$src1, GR64:$src2, CL))]>, TB;
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000876}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000877
878let isCommutable = 1 in { // FIXME: Update X86InstrInfo::commuteInstruction
879def SHLD64rri8 : RIi8<0xA4, MRMDestReg,
Evan Chengb783fa32007-07-19 01:14:50 +0000880 (outs GR64:$dst), (ins GR64:$src1, GR64:$src2, i8imm:$src3),
Dan Gohman4d9fc4a2007-09-14 23:17:45 +0000881 "shld{q}\t{$src3, $src2, $dst|$dst, $src2, $src3}",
882 [(set GR64:$dst, (X86shld GR64:$src1, GR64:$src2,
883 (i8 imm:$src3)))]>,
884 TB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000885def SHRD64rri8 : RIi8<0xAC, MRMDestReg,
Evan Chengb783fa32007-07-19 01:14:50 +0000886 (outs GR64:$dst), (ins GR64:$src1, GR64:$src2, i8imm:$src3),
Dan Gohman4d9fc4a2007-09-14 23:17:45 +0000887 "shrd{q}\t{$src3, $src2, $dst|$dst, $src2, $src3}",
888 [(set GR64:$dst, (X86shrd GR64:$src1, GR64:$src2,
889 (i8 imm:$src3)))]>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000890 TB;
891} // isCommutable
892} // isTwoAddress
893
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000894let Uses = [CL] in {
Evan Chengb783fa32007-07-19 01:14:50 +0000895def SHLD64mrCL : RI<0xA5, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src2),
Dan Gohman4d9fc4a2007-09-14 23:17:45 +0000896 "shld{q}\t{%cl, $src2, $dst|$dst, $src2, %CL}",
897 [(store (X86shld (loadi64 addr:$dst), GR64:$src2, CL),
898 addr:$dst)]>, TB;
Evan Chengb783fa32007-07-19 01:14:50 +0000899def SHRD64mrCL : RI<0xAD, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src2),
Dan Gohman4d9fc4a2007-09-14 23:17:45 +0000900 "shrd{q}\t{%cl, $src2, $dst|$dst, $src2, %CL}",
901 [(store (X86shrd (loadi64 addr:$dst), GR64:$src2, CL),
902 addr:$dst)]>, TB;
Evan Cheng6e4d1d92007-09-11 19:55:27 +0000903}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000904def SHLD64mri8 : RIi8<0xA4, MRMDestMem,
Evan Chengb783fa32007-07-19 01:14:50 +0000905 (outs), (ins i64mem:$dst, GR64:$src2, i8imm:$src3),
Dan Gohman4d9fc4a2007-09-14 23:17:45 +0000906 "shld{q}\t{$src3, $src2, $dst|$dst, $src2, $src3}",
907 [(store (X86shld (loadi64 addr:$dst), GR64:$src2,
908 (i8 imm:$src3)), addr:$dst)]>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000909 TB;
910def SHRD64mri8 : RIi8<0xAC, MRMDestMem,
Evan Chengb783fa32007-07-19 01:14:50 +0000911 (outs), (ins i64mem:$dst, GR64:$src2, i8imm:$src3),
Dan Gohman4d9fc4a2007-09-14 23:17:45 +0000912 "shrd{q}\t{$src3, $src2, $dst|$dst, $src2, $src3}",
913 [(store (X86shrd (loadi64 addr:$dst), GR64:$src2,
914 (i8 imm:$src3)), addr:$dst)]>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000915 TB;
Evan Cheng55687072007-09-14 21:48:26 +0000916} // Defs = [EFLAGS]
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000917
918//===----------------------------------------------------------------------===//
919// Logical Instructions...
920//
921
Evan Cheng5b51c242009-01-21 19:45:31 +0000922let isTwoAddress = 1 , AddedComplexity = 15 in
Dan Gohman91888f02007-07-31 20:11:57 +0000923def NOT64r : RI<0xF7, MRM2r, (outs GR64:$dst), (ins GR64:$src), "not{q}\t$dst",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000924 [(set GR64:$dst, (not GR64:$src))]>;
Dan Gohman91888f02007-07-31 20:11:57 +0000925def NOT64m : RI<0xF7, MRM2m, (outs), (ins i64mem:$dst), "not{q}\t$dst",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000926 [(store (not (loadi64 addr:$dst)), addr:$dst)]>;
927
Evan Cheng55687072007-09-14 21:48:26 +0000928let Defs = [EFLAGS] in {
Sean Callanan251676e2009-09-02 00:55:49 +0000929def AND64i32 : RI<0x25, RawFrm, (outs), (ins i32imm:$src),
930 "and{q}\t{$src, %rax|%rax, $src}", []>;
931
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000932let isTwoAddress = 1 in {
933let isCommutable = 1 in
934def AND64rr : RI<0x21, MRMDestReg,
Evan Chengb783fa32007-07-19 01:14:50 +0000935 (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000936 "and{q}\t{$src2, $dst|$dst, $src2}",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000937 [(set GR64:$dst, (and GR64:$src1, GR64:$src2)),
938 (implicit EFLAGS)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000939def AND64rm : RI<0x23, MRMSrcMem,
Evan Chengb783fa32007-07-19 01:14:50 +0000940 (outs GR64:$dst), (ins GR64:$src1, i64mem:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000941 "and{q}\t{$src2, $dst|$dst, $src2}",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000942 [(set GR64:$dst, (and GR64:$src1, (load addr:$src2))),
943 (implicit EFLAGS)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000944def AND64ri8 : RIi8<0x83, MRM4r,
Evan Chengb783fa32007-07-19 01:14:50 +0000945 (outs GR64:$dst), (ins GR64:$src1, i64i8imm:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000946 "and{q}\t{$src2, $dst|$dst, $src2}",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000947 [(set GR64:$dst, (and GR64:$src1, i64immSExt8:$src2)),
948 (implicit EFLAGS)]>;
Dan Gohmand16fdc02008-12-19 18:25:21 +0000949def AND64ri32 : RIi32<0x81, MRM4r,
950 (outs GR64:$dst), (ins GR64:$src1, i64i32imm:$src2),
951 "and{q}\t{$src2, $dst|$dst, $src2}",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000952 [(set GR64:$dst, (and GR64:$src1, i64immSExt32:$src2)),
953 (implicit EFLAGS)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000954} // isTwoAddress
955
956def AND64mr : RI<0x21, MRMDestMem,
Evan Chengb783fa32007-07-19 01:14:50 +0000957 (outs), (ins i64mem:$dst, GR64:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000958 "and{q}\t{$src, $dst|$dst, $src}",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000959 [(store (and (load addr:$dst), GR64:$src), addr:$dst),
960 (implicit EFLAGS)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000961def AND64mi8 : RIi8<0x83, MRM4m,
Evan Chengb783fa32007-07-19 01:14:50 +0000962 (outs), (ins i64mem:$dst, i64i8imm :$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000963 "and{q}\t{$src, $dst|$dst, $src}",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000964 [(store (and (load addr:$dst), i64immSExt8:$src), addr:$dst),
965 (implicit EFLAGS)]>;
Dan Gohmand16fdc02008-12-19 18:25:21 +0000966def AND64mi32 : RIi32<0x81, MRM4m,
967 (outs), (ins i64mem:$dst, i64i32imm:$src),
968 "and{q}\t{$src, $dst|$dst, $src}",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000969 [(store (and (loadi64 addr:$dst), i64immSExt32:$src), addr:$dst),
970 (implicit EFLAGS)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000971
972let isTwoAddress = 1 in {
973let isCommutable = 1 in
Evan Chengb783fa32007-07-19 01:14:50 +0000974def OR64rr : RI<0x09, MRMDestReg, (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000975 "or{q}\t{$src2, $dst|$dst, $src2}",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000976 [(set GR64:$dst, (or GR64:$src1, GR64:$src2)),
977 (implicit EFLAGS)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000978def OR64rm : RI<0x0B, MRMSrcMem , (outs GR64:$dst), (ins GR64:$src1, i64mem:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000979 "or{q}\t{$src2, $dst|$dst, $src2}",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000980 [(set GR64:$dst, (or GR64:$src1, (load addr:$src2))),
981 (implicit EFLAGS)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000982def OR64ri8 : RIi8<0x83, MRM1r, (outs GR64:$dst), (ins GR64:$src1, i64i8imm:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +0000983 "or{q}\t{$src2, $dst|$dst, $src2}",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000984 [(set GR64:$dst, (or GR64:$src1, i64immSExt8:$src2)),
985 (implicit EFLAGS)]>;
Dan Gohmand16fdc02008-12-19 18:25:21 +0000986def OR64ri32 : RIi32<0x81, MRM1r, (outs GR64:$dst), (ins GR64:$src1, i64i32imm:$src2),
987 "or{q}\t{$src2, $dst|$dst, $src2}",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000988 [(set GR64:$dst, (or GR64:$src1, i64immSExt32:$src2)),
989 (implicit EFLAGS)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000990} // isTwoAddress
991
Evan Chengb783fa32007-07-19 01:14:50 +0000992def OR64mr : RI<0x09, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000993 "or{q}\t{$src, $dst|$dst, $src}",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000994 [(store (or (load addr:$dst), GR64:$src), addr:$dst),
995 (implicit EFLAGS)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000996def OR64mi8 : RIi8<0x83, MRM1m, (outs), (ins i64mem:$dst, i64i8imm:$src),
Dan Gohman91888f02007-07-31 20:11:57 +0000997 "or{q}\t{$src, $dst|$dst, $src}",
Dan Gohman7b93f1c2009-03-03 19:53:46 +0000998 [(store (or (load addr:$dst), i64immSExt8:$src), addr:$dst),
999 (implicit EFLAGS)]>;
Dan Gohmand16fdc02008-12-19 18:25:21 +00001000def OR64mi32 : RIi32<0x81, MRM1m, (outs), (ins i64mem:$dst, i64i32imm:$src),
1001 "or{q}\t{$src, $dst|$dst, $src}",
Dan Gohman7b93f1c2009-03-03 19:53:46 +00001002 [(store (or (loadi64 addr:$dst), i64immSExt32:$src), addr:$dst),
1003 (implicit EFLAGS)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001004
Sean Callanan8562bef2009-09-11 19:01:56 +00001005def OR64i32 : RIi32<0x0D, RawFrm, (outs), (ins i32imm:$src),
1006 "or{q}\t{$src, %rax|%rax, $src}", []>;
1007
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001008let isTwoAddress = 1 in {
Evan Cheng0685efa2008-08-30 08:54:22 +00001009let isCommutable = 1 in
Evan Chengb783fa32007-07-19 01:14:50 +00001010def XOR64rr : RI<0x31, MRMDestReg, (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001011 "xor{q}\t{$src2, $dst|$dst, $src2}",
Dan Gohman7b93f1c2009-03-03 19:53:46 +00001012 [(set GR64:$dst, (xor GR64:$src1, GR64:$src2)),
1013 (implicit EFLAGS)]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001014def XOR64rm : RI<0x33, MRMSrcMem, (outs GR64:$dst), (ins GR64:$src1, i64mem:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001015 "xor{q}\t{$src2, $dst|$dst, $src2}",
Dan Gohman7b93f1c2009-03-03 19:53:46 +00001016 [(set GR64:$dst, (xor GR64:$src1, (load addr:$src2))),
1017 (implicit EFLAGS)]>;
Dan Gohmand16fdc02008-12-19 18:25:21 +00001018def XOR64ri8 : RIi8<0x83, MRM6r, (outs GR64:$dst), (ins GR64:$src1, i64i8imm:$src2),
1019 "xor{q}\t{$src2, $dst|$dst, $src2}",
Dan Gohman7b93f1c2009-03-03 19:53:46 +00001020 [(set GR64:$dst, (xor GR64:$src1, i64immSExt8:$src2)),
1021 (implicit EFLAGS)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001022def XOR64ri32 : RIi32<0x81, MRM6r,
Evan Chengb783fa32007-07-19 01:14:50 +00001023 (outs GR64:$dst), (ins GR64:$src1, i64i32imm:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001024 "xor{q}\t{$src2, $dst|$dst, $src2}",
Dan Gohman7b93f1c2009-03-03 19:53:46 +00001025 [(set GR64:$dst, (xor GR64:$src1, i64immSExt32:$src2)),
1026 (implicit EFLAGS)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001027} // isTwoAddress
1028
Evan Chengb783fa32007-07-19 01:14:50 +00001029def XOR64mr : RI<0x31, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src),
Dan Gohman91888f02007-07-31 20:11:57 +00001030 "xor{q}\t{$src, $dst|$dst, $src}",
Dan Gohman7b93f1c2009-03-03 19:53:46 +00001031 [(store (xor (load addr:$dst), GR64:$src), addr:$dst),
1032 (implicit EFLAGS)]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001033def XOR64mi8 : RIi8<0x83, MRM6m, (outs), (ins i64mem:$dst, i64i8imm :$src),
Dan Gohman91888f02007-07-31 20:11:57 +00001034 "xor{q}\t{$src, $dst|$dst, $src}",
Dan Gohman7b93f1c2009-03-03 19:53:46 +00001035 [(store (xor (load addr:$dst), i64immSExt8:$src), addr:$dst),
1036 (implicit EFLAGS)]>;
Dan Gohmand16fdc02008-12-19 18:25:21 +00001037def XOR64mi32 : RIi32<0x81, MRM6m, (outs), (ins i64mem:$dst, i64i32imm:$src),
1038 "xor{q}\t{$src, $dst|$dst, $src}",
Dan Gohman7b93f1c2009-03-03 19:53:46 +00001039 [(store (xor (loadi64 addr:$dst), i64immSExt32:$src), addr:$dst),
1040 (implicit EFLAGS)]>;
Sean Callanan794457a2009-09-10 19:52:26 +00001041
1042def XOR64i32 : RIi32<0x35, RawFrm, (outs), (ins i32imm:$src),
1043 "xor{q}\t{$src, %rax|%rax, $src}", []>;
1044
Evan Cheng55687072007-09-14 21:48:26 +00001045} // Defs = [EFLAGS]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001046
1047//===----------------------------------------------------------------------===//
1048// Comparison Instructions...
1049//
1050
1051// Integer comparison
Evan Cheng55687072007-09-14 21:48:26 +00001052let Defs = [EFLAGS] in {
Sean Callanan3e4b1a32009-09-01 18:14:18 +00001053def TEST64i32 : RI<0xa9, RawFrm, (outs), (ins i32imm:$src),
1054 "test{q}\t{$src, %rax|%rax, $src}", []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001055let isCommutable = 1 in
Evan Chengb783fa32007-07-19 01:14:50 +00001056def TEST64rr : RI<0x85, MRMDestReg, (outs), (ins GR64:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001057 "test{q}\t{$src2, $src1|$src1, $src2}",
Evan Cheng621216e2007-09-29 00:00:36 +00001058 [(X86cmp (and GR64:$src1, GR64:$src2), 0),
1059 (implicit EFLAGS)]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001060def TEST64rm : RI<0x85, MRMSrcMem, (outs), (ins GR64:$src1, i64mem:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001061 "test{q}\t{$src2, $src1|$src1, $src2}",
Evan Cheng621216e2007-09-29 00:00:36 +00001062 [(X86cmp (and GR64:$src1, (loadi64 addr:$src2)), 0),
1063 (implicit EFLAGS)]>;
1064def TEST64ri32 : RIi32<0xF7, MRM0r, (outs),
1065 (ins GR64:$src1, i64i32imm:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001066 "test{q}\t{$src2, $src1|$src1, $src2}",
Evan Cheng621216e2007-09-29 00:00:36 +00001067 [(X86cmp (and GR64:$src1, i64immSExt32:$src2), 0),
1068 (implicit EFLAGS)]>;
1069def TEST64mi32 : RIi32<0xF7, MRM0m, (outs),
1070 (ins i64mem:$src1, i64i32imm:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001071 "test{q}\t{$src2, $src1|$src1, $src2}",
Evan Cheng621216e2007-09-29 00:00:36 +00001072 [(X86cmp (and (loadi64 addr:$src1), i64immSExt32:$src2), 0),
1073 (implicit EFLAGS)]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001074
Sean Callanan251676e2009-09-02 00:55:49 +00001075
1076def CMP64i32 : RI<0x3D, RawFrm, (outs), (ins i32imm:$src),
1077 "cmp{q}\t{$src, %rax|%rax, $src}", []>;
Evan Chengb783fa32007-07-19 01:14:50 +00001078def CMP64rr : RI<0x39, MRMDestReg, (outs), (ins GR64:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001079 "cmp{q}\t{$src2, $src1|$src1, $src2}",
Evan Cheng621216e2007-09-29 00:00:36 +00001080 [(X86cmp GR64:$src1, GR64:$src2),
1081 (implicit EFLAGS)]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001082def CMP64mr : RI<0x39, MRMDestMem, (outs), (ins i64mem:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001083 "cmp{q}\t{$src2, $src1|$src1, $src2}",
Evan Cheng621216e2007-09-29 00:00:36 +00001084 [(X86cmp (loadi64 addr:$src1), GR64:$src2),
1085 (implicit EFLAGS)]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001086def CMP64rm : RI<0x3B, MRMSrcMem, (outs), (ins GR64:$src1, i64mem:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001087 "cmp{q}\t{$src2, $src1|$src1, $src2}",
Evan Cheng621216e2007-09-29 00:00:36 +00001088 [(X86cmp GR64:$src1, (loadi64 addr:$src2)),
1089 (implicit EFLAGS)]>;
Dan Gohmand16fdc02008-12-19 18:25:21 +00001090def CMP64ri8 : RIi8<0x83, MRM7r, (outs), (ins GR64:$src1, i64i8imm:$src2),
1091 "cmp{q}\t{$src2, $src1|$src1, $src2}",
1092 [(X86cmp GR64:$src1, i64immSExt8:$src2),
1093 (implicit EFLAGS)]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001094def CMP64ri32 : RIi32<0x81, MRM7r, (outs), (ins GR64:$src1, i64i32imm:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001095 "cmp{q}\t{$src2, $src1|$src1, $src2}",
Evan Cheng621216e2007-09-29 00:00:36 +00001096 [(X86cmp GR64:$src1, i64immSExt32:$src2),
Evan Cheng950aac02007-09-25 01:57:46 +00001097 (implicit EFLAGS)]>;
Evan Cheng621216e2007-09-29 00:00:36 +00001098def CMP64mi8 : RIi8<0x83, MRM7m, (outs), (ins i64mem:$src1, i64i8imm:$src2),
Evan Cheng950aac02007-09-25 01:57:46 +00001099 "cmp{q}\t{$src2, $src1|$src1, $src2}",
Evan Cheng621216e2007-09-29 00:00:36 +00001100 [(X86cmp (loadi64 addr:$src1), i64immSExt8:$src2),
Evan Cheng950aac02007-09-25 01:57:46 +00001101 (implicit EFLAGS)]>;
Dan Gohmand16fdc02008-12-19 18:25:21 +00001102def CMP64mi32 : RIi32<0x81, MRM7m, (outs),
1103 (ins i64mem:$src1, i64i32imm:$src2),
1104 "cmp{q}\t{$src2, $src1|$src1, $src2}",
1105 [(X86cmp (loadi64 addr:$src1), i64immSExt32:$src2),
1106 (implicit EFLAGS)]>;
Evan Cheng950aac02007-09-25 01:57:46 +00001107} // Defs = [EFLAGS]
1108
Dan Gohman7fe9b7f2008-12-23 22:45:23 +00001109// Bit tests.
Dan Gohman7fe9b7f2008-12-23 22:45:23 +00001110// TODO: BTC, BTR, and BTS
1111let Defs = [EFLAGS] in {
Chris Lattner5a95cde2008-12-25 01:32:49 +00001112def BT64rr : RI<0xA3, MRMDestReg, (outs), (ins GR64:$src1, GR64:$src2),
Dan Gohman7fe9b7f2008-12-23 22:45:23 +00001113 "bt{q}\t{$src2, $src1|$src1, $src2}",
1114 [(X86bt GR64:$src1, GR64:$src2),
Chris Lattner5a95cde2008-12-25 01:32:49 +00001115 (implicit EFLAGS)]>, TB;
Dan Gohman85a228c2009-01-13 23:23:30 +00001116
1117// Unlike with the register+register form, the memory+register form of the
1118// bt instruction does not ignore the high bits of the index. From ISel's
1119// perspective, this is pretty bizarre. Disable these instructions for now.
1120//def BT64mr : RI<0xA3, MRMDestMem, (outs), (ins i64mem:$src1, GR64:$src2),
1121// "bt{q}\t{$src2, $src1|$src1, $src2}",
1122// [(X86bt (loadi64 addr:$src1), GR64:$src2),
1123// (implicit EFLAGS)]>, TB;
Dan Gohman46fb1cf2009-01-13 20:33:23 +00001124
1125def BT64ri8 : Ii8<0xBA, MRM4r, (outs), (ins GR64:$src1, i64i8imm:$src2),
1126 "bt{q}\t{$src2, $src1|$src1, $src2}",
1127 [(X86bt GR64:$src1, i64immSExt8:$src2),
1128 (implicit EFLAGS)]>, TB;
1129// Note that these instructions don't need FastBTMem because that
1130// only applies when the other operand is in a register. When it's
1131// an immediate, bt is still fast.
1132def BT64mi8 : Ii8<0xBA, MRM4m, (outs), (ins i64mem:$src1, i64i8imm:$src2),
1133 "bt{q}\t{$src2, $src1|$src1, $src2}",
1134 [(X86bt (loadi64 addr:$src1), i64immSExt8:$src2),
1135 (implicit EFLAGS)]>, TB;
Dan Gohman7fe9b7f2008-12-23 22:45:23 +00001136} // Defs = [EFLAGS]
1137
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001138// Conditional moves
Evan Cheng950aac02007-09-25 01:57:46 +00001139let Uses = [EFLAGS], isTwoAddress = 1 in {
Evan Cheng926658c2007-10-05 23:13:21 +00001140let isCommutable = 1 in {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001141def CMOVB64rr : RI<0x42, MRMSrcReg, // if <u, GR64 = GR64
Evan Chengb783fa32007-07-19 01:14:50 +00001142 (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001143 "cmovb\t{$src2, $dst|$dst, $src2}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001144 [(set GR64:$dst, (X86cmov GR64:$src1, GR64:$src2,
Evan Cheng621216e2007-09-29 00:00:36 +00001145 X86_COND_B, EFLAGS))]>, TB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001146def CMOVAE64rr: RI<0x43, MRMSrcReg, // if >=u, GR64 = GR64
Evan Chengb783fa32007-07-19 01:14:50 +00001147 (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001148 "cmovae\t{$src2, $dst|$dst, $src2}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001149 [(set GR64:$dst, (X86cmov GR64:$src1, GR64:$src2,
Evan Cheng621216e2007-09-29 00:00:36 +00001150 X86_COND_AE, EFLAGS))]>, TB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001151def CMOVE64rr : RI<0x44, MRMSrcReg, // if ==, GR64 = GR64
Evan Chengb783fa32007-07-19 01:14:50 +00001152 (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001153 "cmove\t{$src2, $dst|$dst, $src2}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001154 [(set GR64:$dst, (X86cmov GR64:$src1, GR64:$src2,
Evan Cheng621216e2007-09-29 00:00:36 +00001155 X86_COND_E, EFLAGS))]>, TB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001156def CMOVNE64rr: RI<0x45, MRMSrcReg, // if !=, GR64 = GR64
Evan Chengb783fa32007-07-19 01:14:50 +00001157 (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001158 "cmovne\t{$src2, $dst|$dst, $src2}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001159 [(set GR64:$dst, (X86cmov GR64:$src1, GR64:$src2,
Evan Cheng621216e2007-09-29 00:00:36 +00001160 X86_COND_NE, EFLAGS))]>, TB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001161def CMOVBE64rr: RI<0x46, MRMSrcReg, // if <=u, GR64 = GR64
Evan Chengb783fa32007-07-19 01:14:50 +00001162 (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001163 "cmovbe\t{$src2, $dst|$dst, $src2}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001164 [(set GR64:$dst, (X86cmov GR64:$src1, GR64:$src2,
Evan Cheng621216e2007-09-29 00:00:36 +00001165 X86_COND_BE, EFLAGS))]>, TB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001166def CMOVA64rr : RI<0x47, MRMSrcReg, // if >u, GR64 = GR64
Evan Chengb783fa32007-07-19 01:14:50 +00001167 (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001168 "cmova\t{$src2, $dst|$dst, $src2}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001169 [(set GR64:$dst, (X86cmov GR64:$src1, GR64:$src2,
Evan Cheng621216e2007-09-29 00:00:36 +00001170 X86_COND_A, EFLAGS))]>, TB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001171def CMOVL64rr : RI<0x4C, MRMSrcReg, // if <s, GR64 = GR64
Evan Chengb783fa32007-07-19 01:14:50 +00001172 (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001173 "cmovl\t{$src2, $dst|$dst, $src2}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001174 [(set GR64:$dst, (X86cmov GR64:$src1, GR64:$src2,
Evan Cheng621216e2007-09-29 00:00:36 +00001175 X86_COND_L, EFLAGS))]>, TB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001176def CMOVGE64rr: RI<0x4D, MRMSrcReg, // if >=s, GR64 = GR64
Evan Chengb783fa32007-07-19 01:14:50 +00001177 (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001178 "cmovge\t{$src2, $dst|$dst, $src2}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001179 [(set GR64:$dst, (X86cmov GR64:$src1, GR64:$src2,
Evan Cheng621216e2007-09-29 00:00:36 +00001180 X86_COND_GE, EFLAGS))]>, TB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001181def CMOVLE64rr: RI<0x4E, MRMSrcReg, // if <=s, GR64 = GR64
Evan Chengb783fa32007-07-19 01:14:50 +00001182 (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001183 "cmovle\t{$src2, $dst|$dst, $src2}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001184 [(set GR64:$dst, (X86cmov GR64:$src1, GR64:$src2,
Evan Cheng621216e2007-09-29 00:00:36 +00001185 X86_COND_LE, EFLAGS))]>, TB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001186def CMOVG64rr : RI<0x4F, MRMSrcReg, // if >s, GR64 = GR64
Evan Chengb783fa32007-07-19 01:14:50 +00001187 (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001188 "cmovg\t{$src2, $dst|$dst, $src2}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001189 [(set GR64:$dst, (X86cmov GR64:$src1, GR64:$src2,
Evan Cheng621216e2007-09-29 00:00:36 +00001190 X86_COND_G, EFLAGS))]>, TB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001191def CMOVS64rr : RI<0x48, MRMSrcReg, // if signed, GR64 = GR64
Evan Chengb783fa32007-07-19 01:14:50 +00001192 (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001193 "cmovs\t{$src2, $dst|$dst, $src2}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001194 [(set GR64:$dst, (X86cmov GR64:$src1, GR64:$src2,
Evan Cheng621216e2007-09-29 00:00:36 +00001195 X86_COND_S, EFLAGS))]>, TB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001196def CMOVNS64rr: RI<0x49, MRMSrcReg, // if !signed, GR64 = GR64
Evan Chengb783fa32007-07-19 01:14:50 +00001197 (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001198 "cmovns\t{$src2, $dst|$dst, $src2}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001199 [(set GR64:$dst, (X86cmov GR64:$src1, GR64:$src2,
Evan Cheng621216e2007-09-29 00:00:36 +00001200 X86_COND_NS, EFLAGS))]>, TB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001201def CMOVP64rr : RI<0x4A, MRMSrcReg, // if parity, GR64 = GR64
Evan Chengb783fa32007-07-19 01:14:50 +00001202 (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001203 "cmovp\t{$src2, $dst|$dst, $src2}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001204 [(set GR64:$dst, (X86cmov GR64:$src1, GR64:$src2,
Evan Cheng621216e2007-09-29 00:00:36 +00001205 X86_COND_P, EFLAGS))]>, TB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001206def CMOVNP64rr : RI<0x4B, MRMSrcReg, // if !parity, GR64 = GR64
Evan Chengb783fa32007-07-19 01:14:50 +00001207 (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001208 "cmovnp\t{$src2, $dst|$dst, $src2}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001209 [(set GR64:$dst, (X86cmov GR64:$src1, GR64:$src2,
Evan Cheng621216e2007-09-29 00:00:36 +00001210 X86_COND_NP, EFLAGS))]>, TB;
Dan Gohman12fd4d72009-01-07 00:35:10 +00001211def CMOVO64rr : RI<0x40, MRMSrcReg, // if overflow, GR64 = GR64
1212 (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
1213 "cmovo\t{$src2, $dst|$dst, $src2}",
1214 [(set GR64:$dst, (X86cmov GR64:$src1, GR64:$src2,
1215 X86_COND_O, EFLAGS))]>, TB;
1216def CMOVNO64rr : RI<0x41, MRMSrcReg, // if !overflow, GR64 = GR64
1217 (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
1218 "cmovno\t{$src2, $dst|$dst, $src2}",
1219 [(set GR64:$dst, (X86cmov GR64:$src1, GR64:$src2,
1220 X86_COND_NO, EFLAGS))]>, TB;
Evan Cheng926658c2007-10-05 23:13:21 +00001221} // isCommutable = 1
1222
1223def CMOVB64rm : RI<0x42, MRMSrcMem, // if <u, GR64 = [mem64]
1224 (outs GR64:$dst), (ins GR64:$src1, i64mem:$src2),
1225 "cmovb\t{$src2, $dst|$dst, $src2}",
1226 [(set GR64:$dst, (X86cmov GR64:$src1, (loadi64 addr:$src2),
1227 X86_COND_B, EFLAGS))]>, TB;
1228def CMOVAE64rm: RI<0x43, MRMSrcMem, // if >=u, GR64 = [mem64]
1229 (outs GR64:$dst), (ins GR64:$src1, i64mem:$src2),
1230 "cmovae\t{$src2, $dst|$dst, $src2}",
1231 [(set GR64:$dst, (X86cmov GR64:$src1, (loadi64 addr:$src2),
1232 X86_COND_AE, EFLAGS))]>, TB;
1233def CMOVE64rm : RI<0x44, MRMSrcMem, // if ==, GR64 = [mem64]
1234 (outs GR64:$dst), (ins GR64:$src1, i64mem:$src2),
1235 "cmove\t{$src2, $dst|$dst, $src2}",
1236 [(set GR64:$dst, (X86cmov GR64:$src1, (loadi64 addr:$src2),
1237 X86_COND_E, EFLAGS))]>, TB;
1238def CMOVNE64rm: RI<0x45, MRMSrcMem, // if !=, GR64 = [mem64]
1239 (outs GR64:$dst), (ins GR64:$src1, i64mem:$src2),
1240 "cmovne\t{$src2, $dst|$dst, $src2}",
1241 [(set GR64:$dst, (X86cmov GR64:$src1, (loadi64 addr:$src2),
1242 X86_COND_NE, EFLAGS))]>, TB;
1243def CMOVBE64rm: RI<0x46, MRMSrcMem, // if <=u, GR64 = [mem64]
1244 (outs GR64:$dst), (ins GR64:$src1, i64mem:$src2),
1245 "cmovbe\t{$src2, $dst|$dst, $src2}",
1246 [(set GR64:$dst, (X86cmov GR64:$src1, (loadi64 addr:$src2),
1247 X86_COND_BE, EFLAGS))]>, TB;
1248def CMOVA64rm : RI<0x47, MRMSrcMem, // if >u, GR64 = [mem64]
1249 (outs GR64:$dst), (ins GR64:$src1, i64mem:$src2),
1250 "cmova\t{$src2, $dst|$dst, $src2}",
1251 [(set GR64:$dst, (X86cmov GR64:$src1, (loadi64 addr:$src2),
1252 X86_COND_A, EFLAGS))]>, TB;
1253def CMOVL64rm : RI<0x4C, MRMSrcMem, // if <s, GR64 = [mem64]
1254 (outs GR64:$dst), (ins GR64:$src1, i64mem:$src2),
1255 "cmovl\t{$src2, $dst|$dst, $src2}",
1256 [(set GR64:$dst, (X86cmov GR64:$src1, (loadi64 addr:$src2),
1257 X86_COND_L, EFLAGS))]>, TB;
1258def CMOVGE64rm: RI<0x4D, MRMSrcMem, // if >=s, GR64 = [mem64]
1259 (outs GR64:$dst), (ins GR64:$src1, i64mem:$src2),
1260 "cmovge\t{$src2, $dst|$dst, $src2}",
1261 [(set GR64:$dst, (X86cmov GR64:$src1, (loadi64 addr:$src2),
1262 X86_COND_GE, EFLAGS))]>, TB;
1263def CMOVLE64rm: RI<0x4E, MRMSrcMem, // if <=s, GR64 = [mem64]
1264 (outs GR64:$dst), (ins GR64:$src1, i64mem:$src2),
1265 "cmovle\t{$src2, $dst|$dst, $src2}",
1266 [(set GR64:$dst, (X86cmov GR64:$src1, (loadi64 addr:$src2),
1267 X86_COND_LE, EFLAGS))]>, TB;
1268def CMOVG64rm : RI<0x4F, MRMSrcMem, // if >s, GR64 = [mem64]
1269 (outs GR64:$dst), (ins GR64:$src1, i64mem:$src2),
1270 "cmovg\t{$src2, $dst|$dst, $src2}",
1271 [(set GR64:$dst, (X86cmov GR64:$src1, (loadi64 addr:$src2),
1272 X86_COND_G, EFLAGS))]>, TB;
1273def CMOVS64rm : RI<0x48, MRMSrcMem, // if signed, GR64 = [mem64]
1274 (outs GR64:$dst), (ins GR64:$src1, i64mem:$src2),
1275 "cmovs\t{$src2, $dst|$dst, $src2}",
1276 [(set GR64:$dst, (X86cmov GR64:$src1, (loadi64 addr:$src2),
1277 X86_COND_S, EFLAGS))]>, TB;
1278def CMOVNS64rm: RI<0x49, MRMSrcMem, // if !signed, GR64 = [mem64]
1279 (outs GR64:$dst), (ins GR64:$src1, i64mem:$src2),
1280 "cmovns\t{$src2, $dst|$dst, $src2}",
1281 [(set GR64:$dst, (X86cmov GR64:$src1, (loadi64 addr:$src2),
1282 X86_COND_NS, EFLAGS))]>, TB;
1283def CMOVP64rm : RI<0x4A, MRMSrcMem, // if parity, GR64 = [mem64]
1284 (outs GR64:$dst), (ins GR64:$src1, i64mem:$src2),
1285 "cmovp\t{$src2, $dst|$dst, $src2}",
1286 [(set GR64:$dst, (X86cmov GR64:$src1, (loadi64 addr:$src2),
1287 X86_COND_P, EFLAGS))]>, TB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001288def CMOVNP64rm : RI<0x4B, MRMSrcMem, // if !parity, GR64 = [mem64]
Evan Chengb783fa32007-07-19 01:14:50 +00001289 (outs GR64:$dst), (ins GR64:$src1, i64mem:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001290 "cmovnp\t{$src2, $dst|$dst, $src2}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001291 [(set GR64:$dst, (X86cmov GR64:$src1, (loadi64 addr:$src2),
Evan Cheng950aac02007-09-25 01:57:46 +00001292 X86_COND_NP, EFLAGS))]>, TB;
Dan Gohman12fd4d72009-01-07 00:35:10 +00001293def CMOVO64rm : RI<0x40, MRMSrcMem, // if overflow, GR64 = [mem64]
1294 (outs GR64:$dst), (ins GR64:$src1, i64mem:$src2),
1295 "cmovo\t{$src2, $dst|$dst, $src2}",
1296 [(set GR64:$dst, (X86cmov GR64:$src1, (loadi64 addr:$src2),
1297 X86_COND_O, EFLAGS))]>, TB;
1298def CMOVNO64rm : RI<0x41, MRMSrcMem, // if !overflow, GR64 = [mem64]
1299 (outs GR64:$dst), (ins GR64:$src1, i64mem:$src2),
1300 "cmovno\t{$src2, $dst|$dst, $src2}",
1301 [(set GR64:$dst, (X86cmov GR64:$src1, (loadi64 addr:$src2),
1302 X86_COND_NO, EFLAGS))]>, TB;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001303} // isTwoAddress
1304
1305//===----------------------------------------------------------------------===//
1306// Conversion Instructions...
1307//
1308
1309// f64 -> signed i64
Evan Chengb783fa32007-07-19 01:14:50 +00001310def Int_CVTSD2SI64rr: RSDI<0x2D, MRMSrcReg, (outs GR64:$dst), (ins VR128:$src),
Dan Gohman91888f02007-07-31 20:11:57 +00001311 "cvtsd2si{q}\t{$src, $dst|$dst, $src}",
Bill Wendling6227d462007-07-23 03:07:27 +00001312 [(set GR64:$dst,
1313 (int_x86_sse2_cvtsd2si64 VR128:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001314def Int_CVTSD2SI64rm: RSDI<0x2D, MRMSrcMem, (outs GR64:$dst), (ins f128mem:$src),
Dan Gohman91888f02007-07-31 20:11:57 +00001315 "cvtsd2si{q}\t{$src, $dst|$dst, $src}",
Bill Wendling6227d462007-07-23 03:07:27 +00001316 [(set GR64:$dst, (int_x86_sse2_cvtsd2si64
1317 (load addr:$src)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001318def CVTTSD2SI64rr: RSDI<0x2C, MRMSrcReg, (outs GR64:$dst), (ins FR64:$src),
Dan Gohman91888f02007-07-31 20:11:57 +00001319 "cvttsd2si{q}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001320 [(set GR64:$dst, (fp_to_sint FR64:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001321def CVTTSD2SI64rm: RSDI<0x2C, MRMSrcMem, (outs GR64:$dst), (ins f64mem:$src),
Dan Gohman91888f02007-07-31 20:11:57 +00001322 "cvttsd2si{q}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001323 [(set GR64:$dst, (fp_to_sint (loadf64 addr:$src)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001324def Int_CVTTSD2SI64rr: RSDI<0x2C, MRMSrcReg, (outs GR64:$dst), (ins VR128:$src),
Dan Gohman91888f02007-07-31 20:11:57 +00001325 "cvttsd2si{q}\t{$src, $dst|$dst, $src}",
Bill Wendling6227d462007-07-23 03:07:27 +00001326 [(set GR64:$dst,
1327 (int_x86_sse2_cvttsd2si64 VR128:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001328def Int_CVTTSD2SI64rm: RSDI<0x2C, MRMSrcMem, (outs GR64:$dst), (ins f128mem:$src),
Dan Gohman91888f02007-07-31 20:11:57 +00001329 "cvttsd2si{q}\t{$src, $dst|$dst, $src}",
Bill Wendling6227d462007-07-23 03:07:27 +00001330 [(set GR64:$dst,
1331 (int_x86_sse2_cvttsd2si64
1332 (load addr:$src)))]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001333
1334// Signed i64 -> f64
Evan Chengb783fa32007-07-19 01:14:50 +00001335def CVTSI2SD64rr: RSDI<0x2A, MRMSrcReg, (outs FR64:$dst), (ins GR64:$src),
Dan Gohman91888f02007-07-31 20:11:57 +00001336 "cvtsi2sd{q}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001337 [(set FR64:$dst, (sint_to_fp GR64:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001338def CVTSI2SD64rm: RSDI<0x2A, MRMSrcMem, (outs FR64:$dst), (ins i64mem:$src),
Dan Gohman91888f02007-07-31 20:11:57 +00001339 "cvtsi2sd{q}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001340 [(set FR64:$dst, (sint_to_fp (loadi64 addr:$src)))]>;
Evan Cheng1d5832e2008-01-11 07:37:44 +00001341
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001342let isTwoAddress = 1 in {
1343def Int_CVTSI2SD64rr: RSDI<0x2A, MRMSrcReg,
Evan Chengb783fa32007-07-19 01:14:50 +00001344 (outs VR128:$dst), (ins VR128:$src1, GR64:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001345 "cvtsi2sd{q}\t{$src2, $dst|$dst, $src2}",
Bill Wendling6227d462007-07-23 03:07:27 +00001346 [(set VR128:$dst,
1347 (int_x86_sse2_cvtsi642sd VR128:$src1,
1348 GR64:$src2))]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001349def Int_CVTSI2SD64rm: RSDI<0x2A, MRMSrcMem,
Evan Chengb783fa32007-07-19 01:14:50 +00001350 (outs VR128:$dst), (ins VR128:$src1, i64mem:$src2),
Dan Gohman91888f02007-07-31 20:11:57 +00001351 "cvtsi2sd{q}\t{$src2, $dst|$dst, $src2}",
Bill Wendling6227d462007-07-23 03:07:27 +00001352 [(set VR128:$dst,
1353 (int_x86_sse2_cvtsi642sd VR128:$src1,
1354 (loadi64 addr:$src2)))]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001355} // isTwoAddress
1356
1357// Signed i64 -> f32
Evan Chengb783fa32007-07-19 01:14:50 +00001358def CVTSI2SS64rr: RSSI<0x2A, MRMSrcReg, (outs FR32:$dst), (ins GR64:$src),
Dan Gohman91888f02007-07-31 20:11:57 +00001359 "cvtsi2ss{q}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001360 [(set FR32:$dst, (sint_to_fp GR64:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001361def CVTSI2SS64rm: RSSI<0x2A, MRMSrcMem, (outs FR32:$dst), (ins i64mem:$src),
Dan Gohman91888f02007-07-31 20:11:57 +00001362 "cvtsi2ss{q}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001363 [(set FR32:$dst, (sint_to_fp (loadi64 addr:$src)))]>;
Evan Cheng1d5832e2008-01-11 07:37:44 +00001364
1365let isTwoAddress = 1 in {
1366 def Int_CVTSI2SS64rr : RSSI<0x2A, MRMSrcReg,
1367 (outs VR128:$dst), (ins VR128:$src1, GR64:$src2),
1368 "cvtsi2ss{q}\t{$src2, $dst|$dst, $src2}",
1369 [(set VR128:$dst,
1370 (int_x86_sse_cvtsi642ss VR128:$src1,
1371 GR64:$src2))]>;
1372 def Int_CVTSI2SS64rm : RSSI<0x2A, MRMSrcMem,
1373 (outs VR128:$dst), (ins VR128:$src1, i64mem:$src2),
1374 "cvtsi2ss{q}\t{$src2, $dst|$dst, $src2}",
1375 [(set VR128:$dst,
1376 (int_x86_sse_cvtsi642ss VR128:$src1,
1377 (loadi64 addr:$src2)))]>;
1378}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001379
1380// f32 -> signed i64
Evan Chengb783fa32007-07-19 01:14:50 +00001381def Int_CVTSS2SI64rr: RSSI<0x2D, MRMSrcReg, (outs GR64:$dst), (ins VR128:$src),
Dan Gohman91888f02007-07-31 20:11:57 +00001382 "cvtss2si{q}\t{$src, $dst|$dst, $src}",
Bill Wendling6227d462007-07-23 03:07:27 +00001383 [(set GR64:$dst,
1384 (int_x86_sse_cvtss2si64 VR128:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001385def Int_CVTSS2SI64rm: RSSI<0x2D, MRMSrcMem, (outs GR64:$dst), (ins f32mem:$src),
Dan Gohman91888f02007-07-31 20:11:57 +00001386 "cvtss2si{q}\t{$src, $dst|$dst, $src}",
Bill Wendling6227d462007-07-23 03:07:27 +00001387 [(set GR64:$dst, (int_x86_sse_cvtss2si64
1388 (load addr:$src)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001389def CVTTSS2SI64rr: RSSI<0x2C, MRMSrcReg, (outs GR64:$dst), (ins FR32:$src),
Dan Gohman91888f02007-07-31 20:11:57 +00001390 "cvttss2si{q}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001391 [(set GR64:$dst, (fp_to_sint FR32:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001392def CVTTSS2SI64rm: RSSI<0x2C, MRMSrcMem, (outs GR64:$dst), (ins f32mem:$src),
Dan Gohman91888f02007-07-31 20:11:57 +00001393 "cvttss2si{q}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001394 [(set GR64:$dst, (fp_to_sint (loadf32 addr:$src)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001395def Int_CVTTSS2SI64rr: RSSI<0x2C, MRMSrcReg, (outs GR64:$dst), (ins VR128:$src),
Dan Gohman91888f02007-07-31 20:11:57 +00001396 "cvttss2si{q}\t{$src, $dst|$dst, $src}",
Bill Wendling6227d462007-07-23 03:07:27 +00001397 [(set GR64:$dst,
1398 (int_x86_sse_cvttss2si64 VR128:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00001399def Int_CVTTSS2SI64rm: RSSI<0x2C, MRMSrcMem, (outs GR64:$dst), (ins f32mem:$src),
Dan Gohman91888f02007-07-31 20:11:57 +00001400 "cvttss2si{q}\t{$src, $dst|$dst, $src}",
Bill Wendling6227d462007-07-23 03:07:27 +00001401 [(set GR64:$dst,
1402 (int_x86_sse_cvttss2si64 (load addr:$src)))]>;
1403
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001404//===----------------------------------------------------------------------===//
1405// Alias Instructions
1406//===----------------------------------------------------------------------===//
1407
Dan Gohman027cd112007-09-17 14:55:08 +00001408// Alias instructions that map movr0 to xor. Use xorl instead of xorq; it's
1409// equivalent due to implicit zero-extending, and it sometimes has a smaller
1410// encoding.
Chris Lattner17f62252009-07-14 20:19:57 +00001411// FIXME: AddedComplexity gives this a higher priority than MOV64ri32. Remove
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001412// when we have a better way to specify isel priority.
Chris Lattner17f62252009-07-14 20:19:57 +00001413let AddedComplexity = 1 in
1414def : Pat<(i64 0),
Chris Lattner3e6fe062009-07-16 06:31:37 +00001415 (SUBREG_TO_REG (i64 0), (MOV32r0), x86_subreg_32bit)>;
Chris Lattner17f62252009-07-14 20:19:57 +00001416
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001417
1418// Materialize i64 constant where top 32-bits are zero.
Evan Chengbd0ca9c2009-02-05 08:42:55 +00001419let AddedComplexity = 1, isReMaterializable = 1, isAsCheapAsAMove = 1 in
Evan Chengb783fa32007-07-19 01:14:50 +00001420def MOV64ri64i32 : Ii32<0xB8, AddRegFrm, (outs GR64:$dst), (ins i64i32imm:$src),
Dan Gohman91888f02007-07-31 20:11:57 +00001421 "mov{l}\t{$src, ${dst:subreg32}|${dst:subreg32}, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001422 [(set GR64:$dst, i64immZExt32:$src)]>;
1423
Anton Korobeynikov4fbf00b2008-05-04 21:36:32 +00001424//===----------------------------------------------------------------------===//
1425// Thread Local Storage Instructions
1426//===----------------------------------------------------------------------===//
1427
Rafael Espindola7fc4b8d2009-04-24 12:59:40 +00001428// All calls clobber the non-callee saved registers. RSP is marked as
1429// a use to prevent stack-pointer assignments that appear immediately
1430// before calls from potentially appearing dead.
1431let Defs = [RAX, RCX, RDX, RSI, RDI, R8, R9, R10, R11,
1432 FP0, FP1, FP2, FP3, FP4, FP5, FP6, ST0, ST1,
1433 MM0, MM1, MM2, MM3, MM4, MM5, MM6, MM7,
1434 XMM0, XMM1, XMM2, XMM3, XMM4, XMM5, XMM6, XMM7,
1435 XMM8, XMM9, XMM10, XMM11, XMM12, XMM13, XMM14, XMM15, EFLAGS],
1436 Uses = [RSP] in
Chris Lattnerf1940742009-06-20 20:38:48 +00001437def TLS_addr64 : I<0, Pseudo, (outs), (ins lea64mem:$sym),
Dan Gohman70a8a112009-04-27 15:13:28 +00001438 ".byte\t0x66; "
Chris Lattnerf1940742009-06-20 20:38:48 +00001439 "leaq\t$sym(%rip), %rdi; "
Dan Gohman70a8a112009-04-27 15:13:28 +00001440 ".word\t0x6666; "
1441 "rex64; "
1442 "call\t__tls_get_addr@PLT",
Chris Lattnerf1940742009-06-20 20:38:48 +00001443 [(X86tlsaddr tls64addr:$sym)]>,
Rafael Espindolaaf759ab2009-04-17 14:35:58 +00001444 Requires<[In64BitMode]>;
Andrew Lenharthbd7d3262008-03-04 21:13:33 +00001445
Daniel Dunbar75a07302009-08-11 22:24:40 +00001446let AddedComplexity = 5, isCodeGenOnly = 1 in
sampo9cc09a32009-01-26 01:24:32 +00001447def MOV64GSrm : RI<0x8B, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
1448 "movq\t%gs:$src, $dst",
1449 [(set GR64:$dst, (gsload addr:$src))]>, SegGS;
1450
Daniel Dunbar75a07302009-08-11 22:24:40 +00001451let AddedComplexity = 5, isCodeGenOnly = 1 in
Chris Lattnera7c2d8a2009-05-05 18:52:19 +00001452def MOV64FSrm : RI<0x8B, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
1453 "movq\t%fs:$src, $dst",
1454 [(set GR64:$dst, (fsload addr:$src))]>, SegFS;
1455
Andrew Lenharthbd7d3262008-03-04 21:13:33 +00001456//===----------------------------------------------------------------------===//
1457// Atomic Instructions
1458//===----------------------------------------------------------------------===//
1459
Andrew Lenharthbd7d3262008-03-04 21:13:33 +00001460let Defs = [RAX, EFLAGS], Uses = [RAX] in {
Evan Chengd49dbb82008-04-18 20:55:36 +00001461def LCMPXCHG64 : RI<0xB1, MRMDestMem, (outs), (ins i64mem:$ptr, GR64:$swap),
Dan Gohman70a8a112009-04-27 15:13:28 +00001462 "lock\n\t"
1463 "cmpxchgq\t$swap,$ptr",
Andrew Lenharthbd7d3262008-03-04 21:13:33 +00001464 [(X86cas addr:$ptr, GR64:$swap, 8)]>, TB, LOCK;
1465}
1466
Dan Gohmana41a1c092008-08-06 15:52:50 +00001467let Constraints = "$val = $dst" in {
1468let Defs = [EFLAGS] in
Evan Chengd49dbb82008-04-18 20:55:36 +00001469def LXADD64 : RI<0xC1, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$ptr,GR64:$val),
Dan Gohman70a8a112009-04-27 15:13:28 +00001470 "lock\n\t"
1471 "xadd\t$val, $ptr",
Mon P Wang6bde9ec2008-06-25 08:15:39 +00001472 [(set GR64:$dst, (atomic_load_add_64 addr:$ptr, GR64:$val))]>,
Andrew Lenharthbd7d3262008-03-04 21:13:33 +00001473 TB, LOCK;
Evan Chengb723fb52009-07-30 08:33:02 +00001474
Evan Chenga1e80602008-04-19 02:05:42 +00001475def XCHG64rm : RI<0x87, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$ptr,GR64:$val),
Bill Wendling6f189e22008-08-19 23:09:18 +00001476 "xchg\t$val, $ptr",
Evan Chenga1e80602008-04-19 02:05:42 +00001477 [(set GR64:$dst, (atomic_swap_64 addr:$ptr, GR64:$val))]>;
Andrew Lenharthbd7d3262008-03-04 21:13:33 +00001478}
1479
Evan Chengb723fb52009-07-30 08:33:02 +00001480// Optimized codegen when the non-memory output is not used.
1481// FIXME: Use normal add / sub instructions and add lock prefix dynamically.
1482def LOCK_ADD64mr : RI<0x03, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src2),
1483 "lock\n\t"
1484 "add{q}\t{$src2, $dst|$dst, $src2}", []>, LOCK;
1485def LOCK_ADD64mi8 : RIi8<0x83, MRM0m, (outs),
1486 (ins i64mem:$dst, i64i8imm :$src2),
1487 "lock\n\t"
1488 "add{q}\t{$src2, $dst|$dst, $src2}", []>, LOCK;
1489def LOCK_ADD64mi32 : RIi32<0x81, MRM0m, (outs),
1490 (ins i64mem:$dst, i64i32imm :$src2),
1491 "lock\n\t"
1492 "add{q}\t{$src2, $dst|$dst, $src2}", []>, LOCK;
1493def LOCK_SUB64mr : RI<0x29, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src2),
1494 "lock\n\t"
1495 "sub{q}\t{$src2, $dst|$dst, $src2}", []>, LOCK;
1496def LOCK_SUB64mi8 : RIi8<0x83, MRM5m, (outs),
1497 (ins i64mem:$dst, i64i8imm :$src2),
1498 "lock\n\t"
1499 "sub{q}\t{$src2, $dst|$dst, $src2}", []>, LOCK;
1500def LOCK_SUB64mi32 : RIi32<0x81, MRM5m, (outs),
1501 (ins i64mem:$dst, i64i32imm:$src2),
1502 "lock\n\t"
1503 "sub{q}\t{$src2, $dst|$dst, $src2}", []>, LOCK;
1504def LOCK_INC64m : RI<0xFF, MRM0m, (outs), (ins i64mem:$dst),
1505 "lock\n\t"
1506 "inc{q}\t$dst", []>, LOCK;
1507def LOCK_DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst),
1508 "lock\n\t"
1509 "dec{q}\t$dst", []>, LOCK;
1510
Dale Johannesen6b60eca2008-08-20 00:48:50 +00001511// Atomic exchange, and, or, xor
1512let Constraints = "$val = $dst", Defs = [EFLAGS],
1513 usesCustomDAGSchedInserter = 1 in {
1514def ATOMAND64 : I<0, Pseudo, (outs GR64:$dst),(ins i64mem:$ptr, GR64:$val),
Nick Lewyckybfb9fd22008-12-07 03:49:52 +00001515 "#ATOMAND64 PSEUDO!",
Dale Johannesenbc187662008-08-28 02:44:49 +00001516 [(set GR64:$dst, (atomic_load_and_64 addr:$ptr, GR64:$val))]>;
Dale Johannesen6b60eca2008-08-20 00:48:50 +00001517def ATOMOR64 : I<0, Pseudo, (outs GR64:$dst),(ins i64mem:$ptr, GR64:$val),
Nick Lewyckybfb9fd22008-12-07 03:49:52 +00001518 "#ATOMOR64 PSEUDO!",
Dale Johannesenbc187662008-08-28 02:44:49 +00001519 [(set GR64:$dst, (atomic_load_or_64 addr:$ptr, GR64:$val))]>;
Dale Johannesen6b60eca2008-08-20 00:48:50 +00001520def ATOMXOR64 : I<0, Pseudo,(outs GR64:$dst),(ins i64mem:$ptr, GR64:$val),
Nick Lewyckybfb9fd22008-12-07 03:49:52 +00001521 "#ATOMXOR64 PSEUDO!",
Dale Johannesenbc187662008-08-28 02:44:49 +00001522 [(set GR64:$dst, (atomic_load_xor_64 addr:$ptr, GR64:$val))]>;
Dale Johannesen6b60eca2008-08-20 00:48:50 +00001523def ATOMNAND64 : I<0, Pseudo,(outs GR64:$dst),(ins i64mem:$ptr, GR64:$val),
Nick Lewyckybfb9fd22008-12-07 03:49:52 +00001524 "#ATOMNAND64 PSEUDO!",
Dale Johannesenbc187662008-08-28 02:44:49 +00001525 [(set GR64:$dst, (atomic_load_nand_64 addr:$ptr, GR64:$val))]>;
Dale Johannesen6b60eca2008-08-20 00:48:50 +00001526def ATOMMIN64: I<0, Pseudo, (outs GR64:$dst), (ins i64mem:$ptr, GR64:$val),
Nick Lewyckybfb9fd22008-12-07 03:49:52 +00001527 "#ATOMMIN64 PSEUDO!",
Dale Johannesenbc187662008-08-28 02:44:49 +00001528 [(set GR64:$dst, (atomic_load_min_64 addr:$ptr, GR64:$val))]>;
Dale Johannesen6b60eca2008-08-20 00:48:50 +00001529def ATOMMAX64: I<0, Pseudo, (outs GR64:$dst),(ins i64mem:$ptr, GR64:$val),
Nick Lewyckybfb9fd22008-12-07 03:49:52 +00001530 "#ATOMMAX64 PSEUDO!",
Dale Johannesenbc187662008-08-28 02:44:49 +00001531 [(set GR64:$dst, (atomic_load_max_64 addr:$ptr, GR64:$val))]>;
Dale Johannesen6b60eca2008-08-20 00:48:50 +00001532def ATOMUMIN64: I<0, Pseudo, (outs GR64:$dst),(ins i64mem:$ptr, GR64:$val),
Nick Lewyckybfb9fd22008-12-07 03:49:52 +00001533 "#ATOMUMIN64 PSEUDO!",
Dale Johannesenbc187662008-08-28 02:44:49 +00001534 [(set GR64:$dst, (atomic_load_umin_64 addr:$ptr, GR64:$val))]>;
Dale Johannesen6b60eca2008-08-20 00:48:50 +00001535def ATOMUMAX64: I<0, Pseudo, (outs GR64:$dst),(ins i64mem:$ptr, GR64:$val),
Nick Lewyckybfb9fd22008-12-07 03:49:52 +00001536 "#ATOMUMAX64 PSEUDO!",
Dale Johannesenbc187662008-08-28 02:44:49 +00001537 [(set GR64:$dst, (atomic_load_umax_64 addr:$ptr, GR64:$val))]>;
Dale Johannesen6b60eca2008-08-20 00:48:50 +00001538}
Andrew Lenharthbd7d3262008-03-04 21:13:33 +00001539
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001540//===----------------------------------------------------------------------===//
1541// Non-Instruction Patterns
1542//===----------------------------------------------------------------------===//
1543
Chris Lattner0d2dad62009-07-11 22:50:33 +00001544// ConstantPool GlobalAddress, ExternalSymbol, and JumpTable when not in small
1545// code model mode, should use 'movabs'. FIXME: This is really a hack, the
1546// 'movabs' predicate should handle this sort of thing.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001547def : Pat<(i64 (X86Wrapper tconstpool :$dst)),
Anton Korobeynikov68d4eca2009-08-06 11:23:24 +00001548 (MOV64ri tconstpool :$dst)>, Requires<[FarData]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001549def : Pat<(i64 (X86Wrapper tjumptable :$dst)),
Anton Korobeynikov68d4eca2009-08-06 11:23:24 +00001550 (MOV64ri tjumptable :$dst)>, Requires<[FarData]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001551def : Pat<(i64 (X86Wrapper tglobaladdr :$dst)),
Anton Korobeynikov68d4eca2009-08-06 11:23:24 +00001552 (MOV64ri tglobaladdr :$dst)>, Requires<[FarData]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001553def : Pat<(i64 (X86Wrapper texternalsym:$dst)),
Anton Korobeynikov68d4eca2009-08-06 11:23:24 +00001554 (MOV64ri texternalsym:$dst)>, Requires<[FarData]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001555
Chris Lattnerc04cd042009-07-11 23:17:29 +00001556// In static codegen with small code model, we can get the address of a label
1557// into a register with 'movl'. FIXME: This is a hack, the 'imm' predicate of
1558// the MOV64ri64i32 should accept these.
1559def : Pat<(i64 (X86Wrapper tconstpool :$dst)),
1560 (MOV64ri64i32 tconstpool :$dst)>, Requires<[SmallCode]>;
1561def : Pat<(i64 (X86Wrapper tjumptable :$dst)),
1562 (MOV64ri64i32 tjumptable :$dst)>, Requires<[SmallCode]>;
1563def : Pat<(i64 (X86Wrapper tglobaladdr :$dst)),
1564 (MOV64ri64i32 tglobaladdr :$dst)>, Requires<[SmallCode]>;
1565def : Pat<(i64 (X86Wrapper texternalsym:$dst)),
1566 (MOV64ri64i32 texternalsym:$dst)>, Requires<[SmallCode]>;
1567
Anton Korobeynikov68d4eca2009-08-06 11:23:24 +00001568// In kernel code model, we can get the address of a label
1569// into a register with 'movq'. FIXME: This is a hack, the 'imm' predicate of
1570// the MOV64ri32 should accept these.
1571def : Pat<(i64 (X86Wrapper tconstpool :$dst)),
1572 (MOV64ri32 tconstpool :$dst)>, Requires<[KernelCode]>;
1573def : Pat<(i64 (X86Wrapper tjumptable :$dst)),
1574 (MOV64ri32 tjumptable :$dst)>, Requires<[KernelCode]>;
1575def : Pat<(i64 (X86Wrapper tglobaladdr :$dst)),
1576 (MOV64ri32 tglobaladdr :$dst)>, Requires<[KernelCode]>;
1577def : Pat<(i64 (X86Wrapper texternalsym:$dst)),
1578 (MOV64ri32 texternalsym:$dst)>, Requires<[KernelCode]>;
Chris Lattnerc04cd042009-07-11 23:17:29 +00001579
Chris Lattnerdc6fc472009-06-27 04:16:01 +00001580// If we have small model and -static mode, it is safe to store global addresses
1581// directly as immediates. FIXME: This is really a hack, the 'imm' predicate
Chris Lattner0d2dad62009-07-11 22:50:33 +00001582// for MOV64mi32 should handle this sort of thing.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001583def : Pat<(store (i64 (X86Wrapper tconstpool:$src)), addr:$dst),
1584 (MOV64mi32 addr:$dst, tconstpool:$src)>,
Anton Korobeynikov68d4eca2009-08-06 11:23:24 +00001585 Requires<[NearData, IsStatic]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001586def : Pat<(store (i64 (X86Wrapper tjumptable:$src)), addr:$dst),
1587 (MOV64mi32 addr:$dst, tjumptable:$src)>,
Anton Korobeynikov68d4eca2009-08-06 11:23:24 +00001588 Requires<[NearData, IsStatic]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001589def : Pat<(store (i64 (X86Wrapper tglobaladdr:$src)), addr:$dst),
1590 (MOV64mi32 addr:$dst, tglobaladdr:$src)>,
Anton Korobeynikov68d4eca2009-08-06 11:23:24 +00001591 Requires<[NearData, IsStatic]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001592def : Pat<(store (i64 (X86Wrapper texternalsym:$src)), addr:$dst),
1593 (MOV64mi32 addr:$dst, texternalsym:$src)>,
Anton Korobeynikov68d4eca2009-08-06 11:23:24 +00001594 Requires<[NearData, IsStatic]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001595
1596// Calls
1597// Direct PC relative function call for small code model. 32-bit displacement
1598// sign extended to 64-bit.
1599def : Pat<(X86call (i64 tglobaladdr:$dst)),
Anton Korobeynikov2cbcdb72009-08-03 08:12:53 +00001600 (CALL64pcrel32 tglobaladdr:$dst)>, Requires<[NotWin64]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001601def : Pat<(X86call (i64 texternalsym:$dst)),
Anton Korobeynikov2cbcdb72009-08-03 08:12:53 +00001602 (CALL64pcrel32 texternalsym:$dst)>, Requires<[NotWin64]>;
1603
1604def : Pat<(X86call (i64 tglobaladdr:$dst)),
1605 (WINCALL64pcrel32 tglobaladdr:$dst)>, Requires<[IsWin64]>;
1606def : Pat<(X86call (i64 texternalsym:$dst)),
1607 (WINCALL64pcrel32 texternalsym:$dst)>, Requires<[IsWin64]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001608
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001609// tailcall stuff
Arnold Schwaighofere2d6bbb2007-10-11 19:40:01 +00001610def : Pat<(X86tcret GR64:$dst, imm:$off),
1611 (TCRETURNri64 GR64:$dst, imm:$off)>;
1612
1613def : Pat<(X86tcret (i64 tglobaladdr:$dst), imm:$off),
1614 (TCRETURNdi64 texternalsym:$dst, imm:$off)>;
1615
1616def : Pat<(X86tcret (i64 texternalsym:$dst), imm:$off),
1617 (TCRETURNdi64 texternalsym:$dst, imm:$off)>;
1618
Dan Gohmanec596042007-09-17 14:35:24 +00001619// Comparisons.
1620
1621// TEST R,R is smaller than CMP R,0
Evan Cheng621216e2007-09-29 00:00:36 +00001622def : Pat<(parallel (X86cmp GR64:$src1, 0), (implicit EFLAGS)),
Dan Gohmanec596042007-09-17 14:35:24 +00001623 (TEST64rr GR64:$src1, GR64:$src1)>;
1624
Dan Gohman0a3c5222009-01-07 01:00:24 +00001625// Conditional moves with folded loads with operands swapped and conditions
1626// inverted.
1627def : Pat<(X86cmov (loadi64 addr:$src1), GR64:$src2, X86_COND_B, EFLAGS),
1628 (CMOVAE64rm GR64:$src2, addr:$src1)>;
1629def : Pat<(X86cmov (loadi64 addr:$src1), GR64:$src2, X86_COND_AE, EFLAGS),
1630 (CMOVB64rm GR64:$src2, addr:$src1)>;
1631def : Pat<(X86cmov (loadi64 addr:$src1), GR64:$src2, X86_COND_E, EFLAGS),
1632 (CMOVNE64rm GR64:$src2, addr:$src1)>;
1633def : Pat<(X86cmov (loadi64 addr:$src1), GR64:$src2, X86_COND_NE, EFLAGS),
1634 (CMOVE64rm GR64:$src2, addr:$src1)>;
1635def : Pat<(X86cmov (loadi64 addr:$src1), GR64:$src2, X86_COND_BE, EFLAGS),
1636 (CMOVA64rm GR64:$src2, addr:$src1)>;
1637def : Pat<(X86cmov (loadi64 addr:$src1), GR64:$src2, X86_COND_A, EFLAGS),
1638 (CMOVBE64rm GR64:$src2, addr:$src1)>;
1639def : Pat<(X86cmov (loadi64 addr:$src1), GR64:$src2, X86_COND_L, EFLAGS),
1640 (CMOVGE64rm GR64:$src2, addr:$src1)>;
1641def : Pat<(X86cmov (loadi64 addr:$src1), GR64:$src2, X86_COND_GE, EFLAGS),
1642 (CMOVL64rm GR64:$src2, addr:$src1)>;
1643def : Pat<(X86cmov (loadi64 addr:$src1), GR64:$src2, X86_COND_LE, EFLAGS),
1644 (CMOVG64rm GR64:$src2, addr:$src1)>;
1645def : Pat<(X86cmov (loadi64 addr:$src1), GR64:$src2, X86_COND_G, EFLAGS),
1646 (CMOVLE64rm GR64:$src2, addr:$src1)>;
1647def : Pat<(X86cmov (loadi64 addr:$src1), GR64:$src2, X86_COND_P, EFLAGS),
1648 (CMOVNP64rm GR64:$src2, addr:$src1)>;
1649def : Pat<(X86cmov (loadi64 addr:$src1), GR64:$src2, X86_COND_NP, EFLAGS),
1650 (CMOVP64rm GR64:$src2, addr:$src1)>;
1651def : Pat<(X86cmov (loadi64 addr:$src1), GR64:$src2, X86_COND_S, EFLAGS),
1652 (CMOVNS64rm GR64:$src2, addr:$src1)>;
1653def : Pat<(X86cmov (loadi64 addr:$src1), GR64:$src2, X86_COND_NS, EFLAGS),
1654 (CMOVS64rm GR64:$src2, addr:$src1)>;
1655def : Pat<(X86cmov (loadi64 addr:$src1), GR64:$src2, X86_COND_O, EFLAGS),
1656 (CMOVNO64rm GR64:$src2, addr:$src1)>;
1657def : Pat<(X86cmov (loadi64 addr:$src1), GR64:$src2, X86_COND_NO, EFLAGS),
1658 (CMOVO64rm GR64:$src2, addr:$src1)>;
Christopher Lambb371e032008-03-13 05:47:01 +00001659
Duncan Sands082524c2008-01-23 20:39:46 +00001660// zextload bool -> zextload byte
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001661def : Pat<(zextloadi64i1 addr:$src), (MOVZX64rm8 addr:$src)>;
1662
1663// extload
Dan Gohmanab460da2008-08-27 17:33:15 +00001664// When extloading from 16-bit and smaller memory locations into 64-bit registers,
1665// use zero-extending loads so that the entire 64-bit register is defined, avoiding
1666// partial-register updates.
1667def : Pat<(extloadi64i1 addr:$src), (MOVZX64rm8 addr:$src)>;
1668def : Pat<(extloadi64i8 addr:$src), (MOVZX64rm8 addr:$src)>;
1669def : Pat<(extloadi64i16 addr:$src), (MOVZX64rm16 addr:$src)>;
1670// For other extloads, use subregs, since the high contents of the register are
1671// defined after an extload.
Dan Gohmandd612bb2008-08-20 21:27:32 +00001672def : Pat<(extloadi64i32 addr:$src),
Dan Gohman9959b052009-08-26 14:59:13 +00001673 (SUBREG_TO_REG (i64 0), (MOV32rm addr:$src),
Dan Gohmandd612bb2008-08-20 21:27:32 +00001674 x86_subreg_32bit)>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001675
Dan Gohman9959b052009-08-26 14:59:13 +00001676// anyext. Define these to do an explicit zero-extend to
1677// avoid partial-register updates.
1678def : Pat<(i64 (anyext GR8 :$src)), (MOVZX64rr8 GR8 :$src)>;
1679def : Pat<(i64 (anyext GR16:$src)), (MOVZX64rr16 GR16 :$src)>;
1680def : Pat<(i64 (anyext GR32:$src)),
1681 (SUBREG_TO_REG (i64 0), GR32:$src, x86_subreg_32bit)>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001682
1683//===----------------------------------------------------------------------===//
1684// Some peepholes
1685//===----------------------------------------------------------------------===//
1686
Dan Gohman5a5e6e92008-10-17 01:33:43 +00001687// Odd encoding trick: -128 fits into an 8-bit immediate field while
1688// +128 doesn't, so in this special case use a sub instead of an add.
1689def : Pat<(add GR64:$src1, 128),
1690 (SUB64ri8 GR64:$src1, -128)>;
1691def : Pat<(store (add (loadi64 addr:$dst), 128), addr:$dst),
1692 (SUB64mi8 addr:$dst, -128)>;
1693
1694// The same trick applies for 32-bit immediate fields in 64-bit
1695// instructions.
1696def : Pat<(add GR64:$src1, 0x0000000080000000),
1697 (SUB64ri32 GR64:$src1, 0xffffffff80000000)>;
1698def : Pat<(store (add (loadi64 addr:$dst), 0x00000000800000000), addr:$dst),
1699 (SUB64mi32 addr:$dst, 0xffffffff80000000)>;
1700
Dan Gohman47a419d2008-08-07 02:54:50 +00001701// r & (2^32-1) ==> movz
Dan Gohman5a5e6e92008-10-17 01:33:43 +00001702def : Pat<(and GR64:$src, 0x00000000FFFFFFFF),
Dan Gohman744d4622009-04-13 16:09:41 +00001703 (MOVZX64rr32 (EXTRACT_SUBREG GR64:$src, x86_subreg_32bit))>;
Dan Gohman9203ab42008-07-30 18:09:17 +00001704// r & (2^16-1) ==> movz
1705def : Pat<(and GR64:$src, 0xffff),
1706 (MOVZX64rr16 (i16 (EXTRACT_SUBREG GR64:$src, x86_subreg_16bit)))>;
1707// r & (2^8-1) ==> movz
1708def : Pat<(and GR64:$src, 0xff),
1709 (MOVZX64rr8 (i8 (EXTRACT_SUBREG GR64:$src, x86_subreg_8bit)))>;
Dan Gohman9203ab42008-07-30 18:09:17 +00001710// r & (2^8-1) ==> movz
1711def : Pat<(and GR32:$src1, 0xff),
Dan Gohman744d4622009-04-13 16:09:41 +00001712 (MOVZX32rr8 (EXTRACT_SUBREG GR32:$src1, x86_subreg_8bit))>,
Dan Gohman9203ab42008-07-30 18:09:17 +00001713 Requires<[In64BitMode]>;
1714// r & (2^8-1) ==> movz
1715def : Pat<(and GR16:$src1, 0xff),
1716 (MOVZX16rr8 (i8 (EXTRACT_SUBREG GR16:$src1, x86_subreg_8bit)))>,
1717 Requires<[In64BitMode]>;
Christopher Lambb371e032008-03-13 05:47:01 +00001718
Dan Gohmandd612bb2008-08-20 21:27:32 +00001719// sext_inreg patterns
1720def : Pat<(sext_inreg GR64:$src, i32),
Dan Gohman744d4622009-04-13 16:09:41 +00001721 (MOVSX64rr32 (EXTRACT_SUBREG GR64:$src, x86_subreg_32bit))>;
Dan Gohmandd612bb2008-08-20 21:27:32 +00001722def : Pat<(sext_inreg GR64:$src, i16),
Dan Gohman744d4622009-04-13 16:09:41 +00001723 (MOVSX64rr16 (EXTRACT_SUBREG GR64:$src, x86_subreg_16bit))>;
Dan Gohmandd612bb2008-08-20 21:27:32 +00001724def : Pat<(sext_inreg GR64:$src, i8),
Dan Gohman744d4622009-04-13 16:09:41 +00001725 (MOVSX64rr8 (EXTRACT_SUBREG GR64:$src, x86_subreg_8bit))>;
Dan Gohmandd612bb2008-08-20 21:27:32 +00001726def : Pat<(sext_inreg GR32:$src, i8),
Dan Gohman744d4622009-04-13 16:09:41 +00001727 (MOVSX32rr8 (EXTRACT_SUBREG GR32:$src, x86_subreg_8bit))>,
Dan Gohmandd612bb2008-08-20 21:27:32 +00001728 Requires<[In64BitMode]>;
1729def : Pat<(sext_inreg GR16:$src, i8),
1730 (MOVSX16rr8 (i8 (EXTRACT_SUBREG GR16:$src, x86_subreg_8bit)))>,
1731 Requires<[In64BitMode]>;
1732
1733// trunc patterns
1734def : Pat<(i32 (trunc GR64:$src)),
Dan Gohman744d4622009-04-13 16:09:41 +00001735 (EXTRACT_SUBREG GR64:$src, x86_subreg_32bit)>;
Dan Gohmandd612bb2008-08-20 21:27:32 +00001736def : Pat<(i16 (trunc GR64:$src)),
Dan Gohman744d4622009-04-13 16:09:41 +00001737 (EXTRACT_SUBREG GR64:$src, x86_subreg_16bit)>;
Dan Gohmandd612bb2008-08-20 21:27:32 +00001738def : Pat<(i8 (trunc GR64:$src)),
Dan Gohman744d4622009-04-13 16:09:41 +00001739 (EXTRACT_SUBREG GR64:$src, x86_subreg_8bit)>;
Dan Gohmandd612bb2008-08-20 21:27:32 +00001740def : Pat<(i8 (trunc GR32:$src)),
Dan Gohman744d4622009-04-13 16:09:41 +00001741 (EXTRACT_SUBREG GR32:$src, x86_subreg_8bit)>,
Dan Gohmandd612bb2008-08-20 21:27:32 +00001742 Requires<[In64BitMode]>;
1743def : Pat<(i8 (trunc GR16:$src)),
Dan Gohman744d4622009-04-13 16:09:41 +00001744 (EXTRACT_SUBREG GR16:$src, x86_subreg_8bit)>,
1745 Requires<[In64BitMode]>;
1746
1747// h-register tricks.
Dan Gohman3aa0b182009-05-31 17:52:18 +00001748// For now, be conservative on x86-64 and use an h-register extract only if the
1749// value is immediately zero-extended or stored, which are somewhat common
1750// cases. This uses a bunch of code to prevent a register requiring a REX prefix
1751// from being allocated in the same instruction as the h register, as there's
1752// currently no way to describe this requirement to the register allocator.
Dan Gohman744d4622009-04-13 16:09:41 +00001753
1754// h-register extract and zero-extend.
1755def : Pat<(and (srl_su GR64:$src, (i8 8)), (i64 255)),
1756 (SUBREG_TO_REG
1757 (i64 0),
1758 (MOVZX32_NOREXrr8
Dan Gohman6e438702009-04-27 16:33:14 +00001759 (EXTRACT_SUBREG (COPY_TO_REGCLASS GR64:$src, GR64_ABCD),
Dan Gohman744d4622009-04-13 16:09:41 +00001760 x86_subreg_8bit_hi)),
1761 x86_subreg_32bit)>;
1762def : Pat<(and (srl_su GR32:$src, (i8 8)), (i32 255)),
1763 (MOVZX32_NOREXrr8
Dan Gohman6e438702009-04-27 16:33:14 +00001764 (EXTRACT_SUBREG (COPY_TO_REGCLASS GR32:$src, GR32_ABCD),
Dan Gohman744d4622009-04-13 16:09:41 +00001765 x86_subreg_8bit_hi))>,
1766 Requires<[In64BitMode]>;
1767def : Pat<(srl_su GR16:$src, (i8 8)),
1768 (EXTRACT_SUBREG
1769 (MOVZX32_NOREXrr8
Dan Gohman6e438702009-04-27 16:33:14 +00001770 (EXTRACT_SUBREG (COPY_TO_REGCLASS GR16:$src, GR16_ABCD),
Dan Gohman744d4622009-04-13 16:09:41 +00001771 x86_subreg_8bit_hi)),
1772 x86_subreg_16bit)>,
1773 Requires<[In64BitMode]>;
Evan Cheng957ca282009-05-29 01:44:43 +00001774def : Pat<(i32 (zext (srl_su GR16:$src, (i8 8)))),
1775 (MOVZX32_NOREXrr8
1776 (EXTRACT_SUBREG (COPY_TO_REGCLASS GR16:$src, GR16_ABCD),
1777 x86_subreg_8bit_hi))>,
1778 Requires<[In64BitMode]>;
Dan Gohman9959b052009-08-26 14:59:13 +00001779def : Pat<(i32 (anyext (srl_su GR16:$src, (i8 8)))),
1780 (MOVZX32_NOREXrr8
1781 (EXTRACT_SUBREG (COPY_TO_REGCLASS GR16:$src, GR16_ABCD),
1782 x86_subreg_8bit_hi))>,
1783 Requires<[In64BitMode]>;
Evan Cheng957ca282009-05-29 01:44:43 +00001784def : Pat<(i64 (zext (srl_su GR16:$src, (i8 8)))),
1785 (SUBREG_TO_REG
1786 (i64 0),
1787 (MOVZX32_NOREXrr8
1788 (EXTRACT_SUBREG (COPY_TO_REGCLASS GR16:$src, GR16_ABCD),
1789 x86_subreg_8bit_hi)),
1790 x86_subreg_32bit)>;
Dan Gohman9959b052009-08-26 14:59:13 +00001791def : Pat<(i64 (anyext (srl_su GR16:$src, (i8 8)))),
1792 (SUBREG_TO_REG
1793 (i64 0),
1794 (MOVZX32_NOREXrr8
1795 (EXTRACT_SUBREG (COPY_TO_REGCLASS GR16:$src, GR16_ABCD),
1796 x86_subreg_8bit_hi)),
1797 x86_subreg_32bit)>;
Dan Gohman744d4622009-04-13 16:09:41 +00001798
1799// h-register extract and store.
1800def : Pat<(store (i8 (trunc_su (srl_su GR64:$src, (i8 8)))), addr:$dst),
1801 (MOV8mr_NOREX
1802 addr:$dst,
Dan Gohman6e438702009-04-27 16:33:14 +00001803 (EXTRACT_SUBREG (COPY_TO_REGCLASS GR64:$src, GR64_ABCD),
Dan Gohman744d4622009-04-13 16:09:41 +00001804 x86_subreg_8bit_hi))>;
1805def : Pat<(store (i8 (trunc_su (srl_su GR32:$src, (i8 8)))), addr:$dst),
1806 (MOV8mr_NOREX
1807 addr:$dst,
Dan Gohman6e438702009-04-27 16:33:14 +00001808 (EXTRACT_SUBREG (COPY_TO_REGCLASS GR32:$src, GR32_ABCD),
Dan Gohman744d4622009-04-13 16:09:41 +00001809 x86_subreg_8bit_hi))>,
1810 Requires<[In64BitMode]>;
1811def : Pat<(store (i8 (trunc_su (srl_su GR16:$src, (i8 8)))), addr:$dst),
1812 (MOV8mr_NOREX
1813 addr:$dst,
Dan Gohman6e438702009-04-27 16:33:14 +00001814 (EXTRACT_SUBREG (COPY_TO_REGCLASS GR16:$src, GR16_ABCD),
Dan Gohman744d4622009-04-13 16:09:41 +00001815 x86_subreg_8bit_hi))>,
Dan Gohmandd612bb2008-08-20 21:27:32 +00001816 Requires<[In64BitMode]>;
1817
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001818// (shl x, 1) ==> (add x, x)
1819def : Pat<(shl GR64:$src1, (i8 1)), (ADD64rr GR64:$src1, GR64:$src1)>;
1820
Evan Cheng76a64c72008-08-30 02:03:58 +00001821// (shl x (and y, 63)) ==> (shl x, y)
1822def : Pat<(shl GR64:$src1, (and CL:$amt, 63)),
1823 (SHL64rCL GR64:$src1)>;
1824def : Pat<(store (shl (loadi64 addr:$dst), (and CL:$amt, 63)), addr:$dst),
1825 (SHL64mCL addr:$dst)>;
1826
1827def : Pat<(srl GR64:$src1, (and CL:$amt, 63)),
1828 (SHR64rCL GR64:$src1)>;
1829def : Pat<(store (srl (loadi64 addr:$dst), (and CL:$amt, 63)), addr:$dst),
1830 (SHR64mCL addr:$dst)>;
1831
1832def : Pat<(sra GR64:$src1, (and CL:$amt, 63)),
1833 (SAR64rCL GR64:$src1)>;
1834def : Pat<(store (sra (loadi64 addr:$dst), (and CL:$amt, 63)), addr:$dst),
1835 (SAR64mCL addr:$dst)>;
1836
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001837// (or (x >> c) | (y << (64 - c))) ==> (shrd64 x, y, c)
1838def : Pat<(or (srl GR64:$src1, CL:$amt),
1839 (shl GR64:$src2, (sub 64, CL:$amt))),
1840 (SHRD64rrCL GR64:$src1, GR64:$src2)>;
1841
1842def : Pat<(store (or (srl (loadi64 addr:$dst), CL:$amt),
1843 (shl GR64:$src2, (sub 64, CL:$amt))), addr:$dst),
1844 (SHRD64mrCL addr:$dst, GR64:$src2)>;
1845
Dan Gohman921581d2008-10-17 01:23:35 +00001846def : Pat<(or (srl GR64:$src1, (i8 (trunc RCX:$amt))),
1847 (shl GR64:$src2, (i8 (trunc (sub 64, RCX:$amt))))),
1848 (SHRD64rrCL GR64:$src1, GR64:$src2)>;
1849
1850def : Pat<(store (or (srl (loadi64 addr:$dst), (i8 (trunc RCX:$amt))),
1851 (shl GR64:$src2, (i8 (trunc (sub 64, RCX:$amt))))),
1852 addr:$dst),
1853 (SHRD64mrCL addr:$dst, GR64:$src2)>;
1854
1855def : Pat<(shrd GR64:$src1, (i8 imm:$amt1), GR64:$src2, (i8 imm:$amt2)),
1856 (SHRD64rri8 GR64:$src1, GR64:$src2, (i8 imm:$amt1))>;
1857
1858def : Pat<(store (shrd (loadi64 addr:$dst), (i8 imm:$amt1),
1859 GR64:$src2, (i8 imm:$amt2)), addr:$dst),
1860 (SHRD64mri8 addr:$dst, GR64:$src2, (i8 imm:$amt1))>;
1861
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001862// (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
1863def : Pat<(or (shl GR64:$src1, CL:$amt),
1864 (srl GR64:$src2, (sub 64, CL:$amt))),
1865 (SHLD64rrCL GR64:$src1, GR64:$src2)>;
1866
1867def : Pat<(store (or (shl (loadi64 addr:$dst), CL:$amt),
1868 (srl GR64:$src2, (sub 64, CL:$amt))), addr:$dst),
1869 (SHLD64mrCL addr:$dst, GR64:$src2)>;
1870
Dan Gohman921581d2008-10-17 01:23:35 +00001871def : Pat<(or (shl GR64:$src1, (i8 (trunc RCX:$amt))),
1872 (srl GR64:$src2, (i8 (trunc (sub 64, RCX:$amt))))),
1873 (SHLD64rrCL GR64:$src1, GR64:$src2)>;
1874
1875def : Pat<(store (or (shl (loadi64 addr:$dst), (i8 (trunc RCX:$amt))),
1876 (srl GR64:$src2, (i8 (trunc (sub 64, RCX:$amt))))),
1877 addr:$dst),
1878 (SHLD64mrCL addr:$dst, GR64:$src2)>;
1879
1880def : Pat<(shld GR64:$src1, (i8 imm:$amt1), GR64:$src2, (i8 imm:$amt2)),
1881 (SHLD64rri8 GR64:$src1, GR64:$src2, (i8 imm:$amt1))>;
1882
1883def : Pat<(store (shld (loadi64 addr:$dst), (i8 imm:$amt1),
1884 GR64:$src2, (i8 imm:$amt2)), addr:$dst),
1885 (SHLD64mri8 addr:$dst, GR64:$src2, (i8 imm:$amt1))>;
1886
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001887// X86 specific add which produces a flag.
1888def : Pat<(addc GR64:$src1, GR64:$src2),
1889 (ADD64rr GR64:$src1, GR64:$src2)>;
1890def : Pat<(addc GR64:$src1, (load addr:$src2)),
1891 (ADD64rm GR64:$src1, addr:$src2)>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001892def : Pat<(addc GR64:$src1, i64immSExt8:$src2),
1893 (ADD64ri8 GR64:$src1, i64immSExt8:$src2)>;
Dan Gohmand16fdc02008-12-19 18:25:21 +00001894def : Pat<(addc GR64:$src1, i64immSExt32:$src2),
1895 (ADD64ri32 GR64:$src1, imm:$src2)>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001896
1897def : Pat<(subc GR64:$src1, GR64:$src2),
1898 (SUB64rr GR64:$src1, GR64:$src2)>;
1899def : Pat<(subc GR64:$src1, (load addr:$src2)),
1900 (SUB64rm GR64:$src1, addr:$src2)>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001901def : Pat<(subc GR64:$src1, i64immSExt8:$src2),
1902 (SUB64ri8 GR64:$src1, i64immSExt8:$src2)>;
Dan Gohmand16fdc02008-12-19 18:25:21 +00001903def : Pat<(subc GR64:$src1, imm:$src2),
1904 (SUB64ri32 GR64:$src1, i64immSExt32:$src2)>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001905
Bill Wendlingf5399032008-12-12 21:15:41 +00001906//===----------------------------------------------------------------------===//
Dan Gohman99a12192009-03-04 19:44:21 +00001907// EFLAGS-defining Patterns
Bill Wendlingf5399032008-12-12 21:15:41 +00001908//===----------------------------------------------------------------------===//
1909
Dan Gohman99a12192009-03-04 19:44:21 +00001910// Register-Register Addition with EFLAGS result
1911def : Pat<(parallel (X86add_flag GR64:$src1, GR64:$src2),
Bill Wendlingf5399032008-12-12 21:15:41 +00001912 (implicit EFLAGS)),
1913 (ADD64rr GR64:$src1, GR64:$src2)>;
1914
Dan Gohman99a12192009-03-04 19:44:21 +00001915// Register-Integer Addition with EFLAGS result
1916def : Pat<(parallel (X86add_flag GR64:$src1, i64immSExt8:$src2),
Bill Wendlingf5399032008-12-12 21:15:41 +00001917 (implicit EFLAGS)),
1918 (ADD64ri8 GR64:$src1, i64immSExt8:$src2)>;
Dan Gohman99a12192009-03-04 19:44:21 +00001919def : Pat<(parallel (X86add_flag GR64:$src1, i64immSExt32:$src2),
Dan Gohmand16fdc02008-12-19 18:25:21 +00001920 (implicit EFLAGS)),
1921 (ADD64ri32 GR64:$src1, i64immSExt32:$src2)>;
Bill Wendlingf5399032008-12-12 21:15:41 +00001922
Dan Gohman99a12192009-03-04 19:44:21 +00001923// Register-Memory Addition with EFLAGS result
1924def : Pat<(parallel (X86add_flag GR64:$src1, (loadi64 addr:$src2)),
Bill Wendlingf5399032008-12-12 21:15:41 +00001925 (implicit EFLAGS)),
1926 (ADD64rm GR64:$src1, addr:$src2)>;
1927
Dan Gohman99a12192009-03-04 19:44:21 +00001928// Memory-Register Addition with EFLAGS result
1929def : Pat<(parallel (store (X86add_flag (loadi64 addr:$dst), GR64:$src2),
Bill Wendlingf5399032008-12-12 21:15:41 +00001930 addr:$dst),
1931 (implicit EFLAGS)),
1932 (ADD64mr addr:$dst, GR64:$src2)>;
Dan Gohman99a12192009-03-04 19:44:21 +00001933def : Pat<(parallel (store (X86add_flag (loadi64 addr:$dst), i64immSExt8:$src2),
Bill Wendlingf5399032008-12-12 21:15:41 +00001934 addr:$dst),
1935 (implicit EFLAGS)),
1936 (ADD64mi8 addr:$dst, i64immSExt8:$src2)>;
Dan Gohman99a12192009-03-04 19:44:21 +00001937def : Pat<(parallel (store (X86add_flag (loadi64 addr:$dst), i64immSExt32:$src2),
Dan Gohmand16fdc02008-12-19 18:25:21 +00001938 addr:$dst),
1939 (implicit EFLAGS)),
1940 (ADD64mi32 addr:$dst, i64immSExt32:$src2)>;
Bill Wendlingf5399032008-12-12 21:15:41 +00001941
Dan Gohman99a12192009-03-04 19:44:21 +00001942// Register-Register Subtraction with EFLAGS result
1943def : Pat<(parallel (X86sub_flag GR64:$src1, GR64:$src2),
Bill Wendlingf5399032008-12-12 21:15:41 +00001944 (implicit EFLAGS)),
1945 (SUB64rr GR64:$src1, GR64:$src2)>;
1946
Dan Gohman99a12192009-03-04 19:44:21 +00001947// Register-Memory Subtraction with EFLAGS result
1948def : Pat<(parallel (X86sub_flag GR64:$src1, (loadi64 addr:$src2)),
Bill Wendlingf5399032008-12-12 21:15:41 +00001949 (implicit EFLAGS)),
1950 (SUB64rm GR64:$src1, addr:$src2)>;
1951
Dan Gohman99a12192009-03-04 19:44:21 +00001952// Register-Integer Subtraction with EFLAGS result
1953def : Pat<(parallel (X86sub_flag GR64:$src1, i64immSExt8:$src2),
Bill Wendlingf5399032008-12-12 21:15:41 +00001954 (implicit EFLAGS)),
1955 (SUB64ri8 GR64:$src1, i64immSExt8:$src2)>;
Dan Gohman99a12192009-03-04 19:44:21 +00001956def : Pat<(parallel (X86sub_flag GR64:$src1, i64immSExt32:$src2),
Dan Gohmand16fdc02008-12-19 18:25:21 +00001957 (implicit EFLAGS)),
1958 (SUB64ri32 GR64:$src1, i64immSExt32:$src2)>;
Bill Wendlingf5399032008-12-12 21:15:41 +00001959
Dan Gohman99a12192009-03-04 19:44:21 +00001960// Memory-Register Subtraction with EFLAGS result
1961def : Pat<(parallel (store (X86sub_flag (loadi64 addr:$dst), GR64:$src2),
Bill Wendlingf5399032008-12-12 21:15:41 +00001962 addr:$dst),
1963 (implicit EFLAGS)),
1964 (SUB64mr addr:$dst, GR64:$src2)>;
1965
Dan Gohman99a12192009-03-04 19:44:21 +00001966// Memory-Integer Subtraction with EFLAGS result
1967def : Pat<(parallel (store (X86sub_flag (loadi64 addr:$dst), i64immSExt8:$src2),
Bill Wendlingf5399032008-12-12 21:15:41 +00001968 addr:$dst),
1969 (implicit EFLAGS)),
1970 (SUB64mi8 addr:$dst, i64immSExt8:$src2)>;
Dan Gohman99a12192009-03-04 19:44:21 +00001971def : Pat<(parallel (store (X86sub_flag (loadi64 addr:$dst), i64immSExt32:$src2),
Dan Gohmand16fdc02008-12-19 18:25:21 +00001972 addr:$dst),
1973 (implicit EFLAGS)),
1974 (SUB64mi32 addr:$dst, i64immSExt32:$src2)>;
Bill Wendlingf5399032008-12-12 21:15:41 +00001975
Dan Gohman99a12192009-03-04 19:44:21 +00001976// Register-Register Signed Integer Multiplication with EFLAGS result
1977def : Pat<(parallel (X86smul_flag GR64:$src1, GR64:$src2),
Bill Wendlingf5399032008-12-12 21:15:41 +00001978 (implicit EFLAGS)),
1979 (IMUL64rr GR64:$src1, GR64:$src2)>;
1980
Dan Gohman99a12192009-03-04 19:44:21 +00001981// Register-Memory Signed Integer Multiplication with EFLAGS result
1982def : Pat<(parallel (X86smul_flag GR64:$src1, (loadi64 addr:$src2)),
Bill Wendlingf5399032008-12-12 21:15:41 +00001983 (implicit EFLAGS)),
1984 (IMUL64rm GR64:$src1, addr:$src2)>;
1985
Dan Gohman99a12192009-03-04 19:44:21 +00001986// Register-Integer Signed Integer Multiplication with EFLAGS result
1987def : Pat<(parallel (X86smul_flag GR64:$src1, i64immSExt8:$src2),
Bill Wendlingf5399032008-12-12 21:15:41 +00001988 (implicit EFLAGS)),
1989 (IMUL64rri8 GR64:$src1, i64immSExt8:$src2)>;
Dan Gohman99a12192009-03-04 19:44:21 +00001990def : Pat<(parallel (X86smul_flag GR64:$src1, i64immSExt32:$src2),
Dan Gohmand16fdc02008-12-19 18:25:21 +00001991 (implicit EFLAGS)),
1992 (IMUL64rri32 GR64:$src1, i64immSExt32:$src2)>;
Bill Wendlingf5399032008-12-12 21:15:41 +00001993
Dan Gohman99a12192009-03-04 19:44:21 +00001994// Memory-Integer Signed Integer Multiplication with EFLAGS result
1995def : Pat<(parallel (X86smul_flag (loadi64 addr:$src1), i64immSExt8:$src2),
Bill Wendlingf5399032008-12-12 21:15:41 +00001996 (implicit EFLAGS)),
1997 (IMUL64rmi8 addr:$src1, i64immSExt8:$src2)>;
Dan Gohman99a12192009-03-04 19:44:21 +00001998def : Pat<(parallel (X86smul_flag (loadi64 addr:$src1), i64immSExt32:$src2),
Dan Gohmand16fdc02008-12-19 18:25:21 +00001999 (implicit EFLAGS)),
2000 (IMUL64rmi32 addr:$src1, i64immSExt32:$src2)>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002001
Dan Gohman99a12192009-03-04 19:44:21 +00002002// INC and DEC with EFLAGS result. Note that these do not set CF.
Dan Gohmaneebcac72009-03-05 21:32:23 +00002003def : Pat<(parallel (X86inc_flag GR16:$src), (implicit EFLAGS)),
2004 (INC64_16r GR16:$src)>, Requires<[In64BitMode]>;
2005def : Pat<(parallel (store (i16 (X86inc_flag (loadi16 addr:$dst))), addr:$dst),
2006 (implicit EFLAGS)),
2007 (INC64_16m addr:$dst)>, Requires<[In64BitMode]>;
2008def : Pat<(parallel (X86dec_flag GR16:$src), (implicit EFLAGS)),
2009 (DEC64_16r GR16:$src)>, Requires<[In64BitMode]>;
2010def : Pat<(parallel (store (i16 (X86dec_flag (loadi16 addr:$dst))), addr:$dst),
2011 (implicit EFLAGS)),
2012 (DEC64_16m addr:$dst)>, Requires<[In64BitMode]>;
2013
2014def : Pat<(parallel (X86inc_flag GR32:$src), (implicit EFLAGS)),
2015 (INC64_32r GR32:$src)>, Requires<[In64BitMode]>;
2016def : Pat<(parallel (store (i32 (X86inc_flag (loadi32 addr:$dst))), addr:$dst),
2017 (implicit EFLAGS)),
2018 (INC64_32m addr:$dst)>, Requires<[In64BitMode]>;
2019def : Pat<(parallel (X86dec_flag GR32:$src), (implicit EFLAGS)),
2020 (DEC64_32r GR32:$src)>, Requires<[In64BitMode]>;
2021def : Pat<(parallel (store (i32 (X86dec_flag (loadi32 addr:$dst))), addr:$dst),
2022 (implicit EFLAGS)),
2023 (DEC64_32m addr:$dst)>, Requires<[In64BitMode]>;
2024
Dan Gohman99a12192009-03-04 19:44:21 +00002025def : Pat<(parallel (X86inc_flag GR64:$src), (implicit EFLAGS)),
2026 (INC64r GR64:$src)>;
2027def : Pat<(parallel (store (i64 (X86inc_flag (loadi64 addr:$dst))), addr:$dst),
2028 (implicit EFLAGS)),
2029 (INC64m addr:$dst)>;
2030def : Pat<(parallel (X86dec_flag GR64:$src), (implicit EFLAGS)),
2031 (DEC64r GR64:$src)>;
2032def : Pat<(parallel (store (i64 (X86dec_flag (loadi64 addr:$dst))), addr:$dst),
2033 (implicit EFLAGS)),
2034 (DEC64m addr:$dst)>;
2035
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002036//===----------------------------------------------------------------------===//
2037// X86-64 SSE Instructions
2038//===----------------------------------------------------------------------===//
2039
2040// Move instructions...
2041
Evan Chengb783fa32007-07-19 01:14:50 +00002042def MOV64toPQIrr : RPDI<0x6E, MRMSrcReg, (outs VR128:$dst), (ins GR64:$src),
Dan Gohman91888f02007-07-31 20:11:57 +00002043 "mov{d|q}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002044 [(set VR128:$dst,
2045 (v2i64 (scalar_to_vector GR64:$src)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00002046def MOVPQIto64rr : RPDI<0x7E, MRMDestReg, (outs GR64:$dst), (ins VR128:$src),
Dan Gohman91888f02007-07-31 20:11:57 +00002047 "mov{d|q}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002048 [(set GR64:$dst, (vector_extract (v2i64 VR128:$src),
2049 (iPTR 0)))]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002050
Evan Chengb783fa32007-07-19 01:14:50 +00002051def MOV64toSDrr : RPDI<0x6E, MRMSrcReg, (outs FR64:$dst), (ins GR64:$src),
Dan Gohman91888f02007-07-31 20:11:57 +00002052 "mov{d|q}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002053 [(set FR64:$dst, (bitconvert GR64:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00002054def MOV64toSDrm : RPDI<0x6E, MRMSrcMem, (outs FR64:$dst), (ins i64mem:$src),
Evan Cheng69ca4da2008-08-25 04:11:42 +00002055 "movq\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002056 [(set FR64:$dst, (bitconvert (loadi64 addr:$src)))]>;
2057
Evan Chengb783fa32007-07-19 01:14:50 +00002058def MOVSDto64rr : RPDI<0x7E, MRMDestReg, (outs GR64:$dst), (ins FR64:$src),
Dan Gohman91888f02007-07-31 20:11:57 +00002059 "mov{d|q}\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002060 [(set GR64:$dst, (bitconvert FR64:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +00002061def MOVSDto64mr : RPDI<0x7E, MRMDestMem, (outs), (ins i64mem:$dst, FR64:$src),
Evan Cheng69ca4da2008-08-25 04:11:42 +00002062 "movq\t{$src, $dst|$dst, $src}",
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002063 [(store (i64 (bitconvert FR64:$src)), addr:$dst)]>;
Nate Begemanb2975562008-02-03 07:18:54 +00002064
2065//===----------------------------------------------------------------------===//
2066// X86-64 SSE4.1 Instructions
2067//===----------------------------------------------------------------------===//
2068
Nate Begeman4294c1f2008-02-12 22:51:28 +00002069/// SS41I_extract32 - SSE 4.1 extract 32 bits to int reg or memory destination
2070multiclass SS41I_extract64<bits<8> opc, string OpcodeStr> {
Nate Begeman0050ab52008-10-29 23:07:17 +00002071 def rr : SS4AIi8<opc, MRMDestReg, (outs GR64:$dst),
Nate Begeman4294c1f2008-02-12 22:51:28 +00002072 (ins VR128:$src1, i32i8imm:$src2),
2073 !strconcat(OpcodeStr,
2074 "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
2075 [(set GR64:$dst,
2076 (extractelt (v2i64 VR128:$src1), imm:$src2))]>, OpSize, REX_W;
Evan Cheng78d00612008-03-14 07:39:27 +00002077 def mr : SS4AIi8<opc, MRMDestMem, (outs),
Nate Begeman4294c1f2008-02-12 22:51:28 +00002078 (ins i64mem:$dst, VR128:$src1, i32i8imm:$src2),
2079 !strconcat(OpcodeStr,
2080 "\t{$src2, $src1, $dst|$dst, $src1, $src2}"),
2081 [(store (extractelt (v2i64 VR128:$src1), imm:$src2),
2082 addr:$dst)]>, OpSize, REX_W;
2083}
2084
2085defm PEXTRQ : SS41I_extract64<0x16, "pextrq">;
2086
2087let isTwoAddress = 1 in {
2088 multiclass SS41I_insert64<bits<8> opc, string OpcodeStr> {
Evan Cheng78d00612008-03-14 07:39:27 +00002089 def rr : SS4AIi8<opc, MRMSrcReg, (outs VR128:$dst),
Nate Begeman4294c1f2008-02-12 22:51:28 +00002090 (ins VR128:$src1, GR64:$src2, i32i8imm:$src3),
2091 !strconcat(OpcodeStr,
2092 "\t{$src3, $src2, $dst|$dst, $src2, $src3}"),
2093 [(set VR128:$dst,
2094 (v2i64 (insertelt VR128:$src1, GR64:$src2, imm:$src3)))]>,
2095 OpSize, REX_W;
Evan Cheng78d00612008-03-14 07:39:27 +00002096 def rm : SS4AIi8<opc, MRMSrcMem, (outs VR128:$dst),
Nate Begeman4294c1f2008-02-12 22:51:28 +00002097 (ins VR128:$src1, i64mem:$src2, i32i8imm:$src3),
2098 !strconcat(OpcodeStr,
2099 "\t{$src3, $src2, $dst|$dst, $src2, $src3}"),
2100 [(set VR128:$dst,
2101 (v2i64 (insertelt VR128:$src1, (loadi64 addr:$src2),
2102 imm:$src3)))]>, OpSize, REX_W;
2103 }
2104}
2105
2106defm PINSRQ : SS41I_insert64<0x22, "pinsrq">;
Dan Gohmane84197b2009-09-03 17:18:51 +00002107
2108// -disable-16bit support.
2109def : Pat<(truncstorei16 (i64 imm:$src), addr:$dst),
2110 (MOV16mi addr:$dst, imm:$src)>;
2111def : Pat<(truncstorei16 GR64:$src, addr:$dst),
2112 (MOV16mr addr:$dst, (EXTRACT_SUBREG GR64:$src, x86_subreg_16bit))>;
2113def : Pat<(i64 (sextloadi16 addr:$dst)),
2114 (MOVSX64rm16 addr:$dst)>;
2115def : Pat<(i64 (zextloadi16 addr:$dst)),
2116 (MOVZX64rm16 addr:$dst)>;
2117def : Pat<(i64 (extloadi16 addr:$dst)),
2118 (MOVZX64rm16 addr:$dst)>;