blob: 829ea2792012824be5e049d1c56d13209210e8c5 [file] [log] [blame]
Chris Lattner87be16a2010-10-05 06:04:14 +00001//===- X86InstrCompiler.td - Compiler Pseudos and Patterns -*- tablegen -*-===//
Michael J. Spencer6e56b182010-10-20 23:40:27 +00002//
Chris Lattner87be16a2010-10-05 06:04:14 +00003// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Michael J. Spencer6e56b182010-10-20 23:40:27 +00007//
Chris Lattner87be16a2010-10-05 06:04:14 +00008//===----------------------------------------------------------------------===//
9//
10// This file describes the various pseudo instructions used by the compiler,
11// as well as Pat patterns used during instruction selection.
12//
13//===----------------------------------------------------------------------===//
14
Chris Lattner41efbfa2010-10-05 06:37:31 +000015//===----------------------------------------------------------------------===//
16// Pattern Matching Support
17
18def GetLo32XForm : SDNodeXForm<imm, [{
19 // Transformation function: get the low 32 bits.
20 return getI32Imm((unsigned)N->getZExtValue());
21}]>;
22
Rafael Espindoladba81cf2010-10-13 13:31:20 +000023def GetLo8XForm : SDNodeXForm<imm, [{
24 // Transformation function: get the low 8 bits.
25 return getI8Imm((uint8_t)N->getZExtValue());
26}]>;
27
Chris Lattner41efbfa2010-10-05 06:37:31 +000028
29//===----------------------------------------------------------------------===//
30// Random Pseudo Instructions.
31
Chris Lattner8af88ef2010-10-05 06:10:16 +000032// PIC base construction. This expands to code that looks like this:
33// call $next_inst
34// popl %destreg"
35let neverHasSideEffects = 1, isNotDuplicable = 1, Uses = [ESP] in
36 def MOVPC32r : Ii32<0xE8, Pseudo, (outs GR32:$reg), (ins i32imm:$label),
37 "", []>;
38
39
40// ADJCALLSTACKDOWN/UP implicitly use/def ESP because they may be expanded into
41// a stack adjustment and the codegen must know that they may modify the stack
42// pointer before prolog-epilog rewriting occurs.
43// Pessimistically assume ADJCALLSTACKDOWN / ADJCALLSTACKUP will become
44// sub / add which can clobber EFLAGS.
45let Defs = [ESP, EFLAGS], Uses = [ESP] in {
46def ADJCALLSTACKDOWN32 : I<0, Pseudo, (outs), (ins i32imm:$amt),
47 "#ADJCALLSTACKDOWN",
48 [(X86callseq_start timm:$amt)]>,
49 Requires<[In32BitMode]>;
50def ADJCALLSTACKUP32 : I<0, Pseudo, (outs), (ins i32imm:$amt1, i32imm:$amt2),
51 "#ADJCALLSTACKUP",
52 [(X86callseq_end timm:$amt1, timm:$amt2)]>,
53 Requires<[In32BitMode]>;
54}
55
56// ADJCALLSTACKDOWN/UP implicitly use/def RSP because they may be expanded into
57// a stack adjustment and the codegen must know that they may modify the stack
58// pointer before prolog-epilog rewriting occurs.
59// Pessimistically assume ADJCALLSTACKDOWN / ADJCALLSTACKUP will become
60// sub / add which can clobber EFLAGS.
61let Defs = [RSP, EFLAGS], Uses = [RSP] in {
62def ADJCALLSTACKDOWN64 : I<0, Pseudo, (outs), (ins i32imm:$amt),
63 "#ADJCALLSTACKDOWN",
64 [(X86callseq_start timm:$amt)]>,
65 Requires<[In64BitMode]>;
66def ADJCALLSTACKUP64 : I<0, Pseudo, (outs), (ins i32imm:$amt1, i32imm:$amt2),
67 "#ADJCALLSTACKUP",
68 [(X86callseq_end timm:$amt1, timm:$amt2)]>,
69 Requires<[In64BitMode]>;
70}
71
72
73
74// x86-64 va_start lowering magic.
75let usesCustomInserter = 1 in {
76def VASTART_SAVE_XMM_REGS : I<0, Pseudo,
77 (outs),
78 (ins GR8:$al,
79 i64imm:$regsavefi, i64imm:$offset,
80 variable_ops),
81 "#VASTART_SAVE_XMM_REGS $al, $regsavefi, $offset",
82 [(X86vastart_save_xmm_regs GR8:$al,
83 imm:$regsavefi,
84 imm:$offset)]>;
85
Dan Gohman320afb82010-10-12 18:00:49 +000086// The VAARG_64 pseudo-instruction takes the address of the va_list,
87// and places the address of the next argument into a register.
88let Defs = [EFLAGS] in
89def VAARG_64 : I<0, Pseudo,
90 (outs GR64:$dst),
91 (ins i8mem:$ap, i32imm:$size, i8imm:$mode, i32imm:$align),
92 "#VAARG_64 $dst, $ap, $size, $mode, $align",
93 [(set GR64:$dst,
94 (X86vaarg64 addr:$ap, imm:$size, imm:$mode, imm:$align)),
95 (implicit EFLAGS)]>;
96
Michael J. Spencere9c253e2010-10-21 01:41:01 +000097// Dynamic stack allocation yields a _chkstk or _alloca call for all Windows
98// targets. These calls are needed to probe the stack when allocating more than
99// 4k bytes in one go. Touching the stack at 4K increments is necessary to
100// ensure that the guard pages used by the OS virtual memory manager are
101// allocated in correct sequence.
Chris Lattner8af88ef2010-10-05 06:10:16 +0000102// The main point of having separate instruction are extra unmodelled effects
103// (compared to ordinary calls) like stack pointer change.
104
105let Defs = [EAX, ESP, EFLAGS], Uses = [ESP] in
Michael J. Spencere9c253e2010-10-21 01:41:01 +0000106 def WIN_ALLOCA : I<0, Pseudo, (outs), (ins),
107 "# dynamic stack allocation",
108 [(X86WinAlloca)]>;
Chris Lattner8af88ef2010-10-05 06:10:16 +0000109}
110
111
Chris Lattner87be16a2010-10-05 06:04:14 +0000112
113//===----------------------------------------------------------------------===//
114// EH Pseudo Instructions
115//
116let isTerminator = 1, isReturn = 1, isBarrier = 1,
117 hasCtrlDep = 1, isCodeGenOnly = 1 in {
118def EH_RETURN : I<0xC3, RawFrm, (outs), (ins GR32:$addr),
119 "ret\t#eh_return, addr: $addr",
120 [(X86ehret GR32:$addr)]>;
121
122}
123
124let isTerminator = 1, isReturn = 1, isBarrier = 1,
125 hasCtrlDep = 1, isCodeGenOnly = 1 in {
126def EH_RETURN64 : I<0xC3, RawFrm, (outs), (ins GR64:$addr),
127 "ret\t#eh_return, addr: $addr",
128 [(X86ehret GR64:$addr)]>;
129
130}
131
Chris Lattner8af88ef2010-10-05 06:10:16 +0000132//===----------------------------------------------------------------------===//
133// Alias Instructions
134//===----------------------------------------------------------------------===//
135
136// Alias instructions that map movr0 to xor.
137// FIXME: remove when we can teach regalloc that xor reg, reg is ok.
138// FIXME: Set encoding to pseudo.
139let Defs = [EFLAGS], isReMaterializable = 1, isAsCheapAsAMove = 1,
140 isCodeGenOnly = 1 in {
141def MOV8r0 : I<0x30, MRMInitReg, (outs GR8 :$dst), (ins), "",
142 [(set GR8:$dst, 0)]>;
143
144// We want to rewrite MOV16r0 in terms of MOV32r0, because it's a smaller
145// encoding and avoids a partial-register update sometimes, but doing so
146// at isel time interferes with rematerialization in the current register
147// allocator. For now, this is rewritten when the instruction is lowered
148// to an MCInst.
149def MOV16r0 : I<0x31, MRMInitReg, (outs GR16:$dst), (ins),
150 "",
151 [(set GR16:$dst, 0)]>, OpSize;
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000152
Chris Lattner8af88ef2010-10-05 06:10:16 +0000153// FIXME: Set encoding to pseudo.
154def MOV32r0 : I<0x31, MRMInitReg, (outs GR32:$dst), (ins), "",
155 [(set GR32:$dst, 0)]>;
156}
157
Chris Lattner010496c2010-10-05 06:22:35 +0000158// We want to rewrite MOV64r0 in terms of MOV32r0, because it's sometimes a
159// smaller encoding, but doing so at isel time interferes with rematerialization
160// in the current register allocator. For now, this is rewritten when the
161// instruction is lowered to an MCInst.
162// FIXME: AddedComplexity gives this a higher priority than MOV64ri32. Remove
163// when we have a better way to specify isel priority.
Chris Lattnera4a3a5e2010-10-31 19:15:18 +0000164let Defs = [EFLAGS], isCodeGenOnly=1,
Chris Lattner010496c2010-10-05 06:22:35 +0000165 AddedComplexity = 1, isReMaterializable = 1, isAsCheapAsAMove = 1 in
166def MOV64r0 : I<0x31, MRMInitReg, (outs GR64:$dst), (ins), "",
167 [(set GR64:$dst, 0)]>;
168
169// Materialize i64 constant where top 32-bits are zero. This could theoretically
170// use MOV32ri with a SUBREG_TO_REG to represent the zero-extension, however
171// that would make it more difficult to rematerialize.
Chris Lattnera4a3a5e2010-10-31 19:15:18 +0000172let AddedComplexity = 1, isReMaterializable = 1, isAsCheapAsAMove = 1,
173 isCodeGenOnly = 1 in
Chris Lattner010496c2010-10-05 06:22:35 +0000174def MOV64ri64i32 : Ii32<0xB8, AddRegFrm, (outs GR64:$dst), (ins i64i32imm:$src),
175 "", [(set GR64:$dst, i64immZExt32:$src)]>;
176
Chris Lattner2c383d82010-10-05 21:18:04 +0000177// Use sbb to materialize carry bit.
178let Uses = [EFLAGS], Defs = [EFLAGS], isCodeGenOnly = 1 in {
179// FIXME: These are pseudo ops that should be replaced with Pat<> patterns.
Chris Lattner35649fc2010-10-05 06:33:16 +0000180// However, Pat<> can't replicate the destination reg into the inputs of the
181// result.
Chris Lattner2c383d82010-10-05 21:18:04 +0000182// FIXME: Change these to have encoding Pseudo when X86MCCodeEmitter replaces
Chris Lattner35649fc2010-10-05 06:33:16 +0000183// X86CodeEmitter.
Chris Lattner2c383d82010-10-05 21:18:04 +0000184def SETB_C8r : I<0x18, MRMInitReg, (outs GR8:$dst), (ins), "",
185 [(set GR8:$dst, (X86setcc_c X86_COND_B, EFLAGS))]>;
186def SETB_C16r : I<0x19, MRMInitReg, (outs GR16:$dst), (ins), "",
187 [(set GR16:$dst, (X86setcc_c X86_COND_B, EFLAGS))]>,
188 OpSize;
189def SETB_C32r : I<0x19, MRMInitReg, (outs GR32:$dst), (ins), "",
190 [(set GR32:$dst, (X86setcc_c X86_COND_B, EFLAGS))]>;
Chris Lattner35649fc2010-10-05 06:33:16 +0000191def SETB_C64r : RI<0x19, MRMInitReg, (outs GR64:$dst), (ins), "",
192 [(set GR64:$dst, (X86setcc_c X86_COND_B, EFLAGS))]>;
Chris Lattner2c383d82010-10-05 21:18:04 +0000193} // isCodeGenOnly
194
Chris Lattner35649fc2010-10-05 06:33:16 +0000195
Chris Lattnerc19d1c32010-12-19 22:08:31 +0000196def : Pat<(i16 (anyext (i8 (X86setcc_c X86_COND_B, EFLAGS)))),
197 (SETB_C16r)>;
198def : Pat<(i32 (anyext (i8 (X86setcc_c X86_COND_B, EFLAGS)))),
199 (SETB_C32r)>;
Chris Lattner35649fc2010-10-05 06:33:16 +0000200def : Pat<(i64 (anyext (i8 (X86setcc_c X86_COND_B, EFLAGS)))),
201 (SETB_C64r)>;
202
Chris Lattnerc19d1c32010-12-19 22:08:31 +0000203def : Pat<(i16 (sext (i8 (X86setcc_c X86_COND_B, EFLAGS)))),
204 (SETB_C16r)>;
205def : Pat<(i32 (sext (i8 (X86setcc_c X86_COND_B, EFLAGS)))),
206 (SETB_C32r)>;
207def : Pat<(i64 (sext (i8 (X86setcc_c X86_COND_B, EFLAGS)))),
208 (SETB_C64r)>;
209
Chris Lattner39ffcb72010-12-20 01:16:03 +0000210// We canonicalize 'setb' to "(and (sbb reg,reg), 1)" on the hope that the and
211// will be eliminated and that the sbb can be extended up to a wider type. When
212// this happens, it is great. However, if we are left with an 8-bit sbb and an
213// and, we might as well just match it as a setb.
214def : Pat<(and (i8 (X86setcc_c X86_COND_B, EFLAGS)), 1),
215 (SETBr)>;
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000216
Benjamin Kramerf51190b2011-05-08 18:36:07 +0000217// (add OP, SETB) -> (adc OP, 0)
218def : Pat<(add (and (i8 (X86setcc_c X86_COND_B, EFLAGS)), 1), GR8:$op),
219 (ADC8ri GR8:$op, 0)>;
220def : Pat<(add (and (i32 (X86setcc_c X86_COND_B, EFLAGS)), 1), GR32:$op),
221 (ADC32ri8 GR32:$op, 0)>;
222def : Pat<(add (and (i64 (X86setcc_c X86_COND_B, EFLAGS)), 1), GR64:$op),
223 (ADC64ri8 GR64:$op, 0)>;
224
225// (sub OP, SETB) -> (sbb OP, 0)
226def : Pat<(sub GR8:$op, (and (i8 (X86setcc_c X86_COND_B, EFLAGS)), 1)),
227 (SBB8ri GR8:$op, 0)>;
228def : Pat<(sub GR32:$op, (and (i32 (X86setcc_c X86_COND_B, EFLAGS)), 1)),
229 (SBB32ri8 GR32:$op, 0)>;
230def : Pat<(sub GR64:$op, (and (i64 (X86setcc_c X86_COND_B, EFLAGS)), 1)),
231 (SBB64ri8 GR64:$op, 0)>;
232
233// (sub OP, SETCC_CARRY) -> (adc OP, 0)
234def : Pat<(sub GR8:$op, (i8 (X86setcc_c X86_COND_B, EFLAGS))),
235 (ADC8ri GR8:$op, 0)>;
236def : Pat<(sub GR32:$op, (i32 (X86setcc_c X86_COND_B, EFLAGS))),
237 (ADC32ri8 GR32:$op, 0)>;
238def : Pat<(sub GR64:$op, (i64 (X86setcc_c X86_COND_B, EFLAGS))),
239 (ADC64ri8 GR64:$op, 0)>;
240
Chris Lattnerd3f033d2010-10-05 06:27:48 +0000241//===----------------------------------------------------------------------===//
242// String Pseudo Instructions
243//
244let Defs = [ECX,EDI,ESI], Uses = [ECX,EDI,ESI], isCodeGenOnly = 1 in {
245def REP_MOVSB : I<0xA4, RawFrm, (outs), (ins), "{rep;movsb|rep movsb}",
246 [(X86rep_movs i8)]>, REP;
247def REP_MOVSW : I<0xA5, RawFrm, (outs), (ins), "{rep;movsw|rep movsw}",
248 [(X86rep_movs i16)]>, REP, OpSize;
249def REP_MOVSD : I<0xA5, RawFrm, (outs), (ins), "{rep;movsl|rep movsd}",
250 [(X86rep_movs i32)]>, REP;
251}
252
253let Defs = [RCX,RDI,RSI], Uses = [RCX,RDI,RSI], isCodeGenOnly = 1 in
254def REP_MOVSQ : RI<0xA5, RawFrm, (outs), (ins), "{rep;movsq|rep movsq}",
255 [(X86rep_movs i64)]>, REP;
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000256
Chris Lattnerd3f033d2010-10-05 06:27:48 +0000257
258// FIXME: Should use "(X86rep_stos AL)" as the pattern.
259let Defs = [ECX,EDI], Uses = [AL,ECX,EDI], isCodeGenOnly = 1 in
260def REP_STOSB : I<0xAA, RawFrm, (outs), (ins), "{rep;stosb|rep stosb}",
261 [(X86rep_stos i8)]>, REP;
262let Defs = [ECX,EDI], Uses = [AX,ECX,EDI], isCodeGenOnly = 1 in
263def REP_STOSW : I<0xAB, RawFrm, (outs), (ins), "{rep;stosw|rep stosw}",
264 [(X86rep_stos i16)]>, REP, OpSize;
265let Defs = [ECX,EDI], Uses = [EAX,ECX,EDI], isCodeGenOnly = 1 in
266def REP_STOSD : I<0xAB, RawFrm, (outs), (ins), "{rep;stosl|rep stosd}",
267 [(X86rep_stos i32)]>, REP;
268
269let Defs = [RCX,RDI], Uses = [RAX,RCX,RDI], isCodeGenOnly = 1 in
270def REP_STOSQ : RI<0xAB, RawFrm, (outs), (ins), "{rep;stosq|rep stosq}",
271 [(X86rep_stos i64)]>, REP;
Chris Lattner010496c2010-10-05 06:22:35 +0000272
273
Chris Lattner8af88ef2010-10-05 06:10:16 +0000274//===----------------------------------------------------------------------===//
275// Thread Local Storage Instructions
276//
277
278// ELF TLS Support
279// All calls clobber the non-callee saved registers. ESP is marked as
280// a use to prevent stack-pointer assignments that appear immediately
281// before calls from potentially appearing dead.
282let Defs = [EAX, ECX, EDX, FP0, FP1, FP2, FP3, FP4, FP5, FP6, ST0,
283 MM0, MM1, MM2, MM3, MM4, MM5, MM6, MM7,
284 XMM0, XMM1, XMM2, XMM3, XMM4, XMM5, XMM6, XMM7,
285 XMM8, XMM9, XMM10, XMM11, XMM12, XMM13, XMM14, XMM15, EFLAGS],
Rafael Espindolad652dbe2010-11-28 21:16:39 +0000286 Uses = [ESP] in
Chris Lattner8af88ef2010-10-05 06:10:16 +0000287def TLS_addr32 : I<0, Pseudo, (outs), (ins i32mem:$sym),
Rafael Espindola5bf7c532010-11-27 20:43:02 +0000288 "# TLS_addr32",
Chris Lattner8af88ef2010-10-05 06:10:16 +0000289 [(X86tlsaddr tls32addr:$sym)]>,
290 Requires<[In32BitMode]>;
291
292// All calls clobber the non-callee saved registers. RSP is marked as
293// a use to prevent stack-pointer assignments that appear immediately
294// before calls from potentially appearing dead.
295let Defs = [RAX, RCX, RDX, RSI, RDI, R8, R9, R10, R11,
296 FP0, FP1, FP2, FP3, FP4, FP5, FP6, ST0, ST1,
297 MM0, MM1, MM2, MM3, MM4, MM5, MM6, MM7,
298 XMM0, XMM1, XMM2, XMM3, XMM4, XMM5, XMM6, XMM7,
299 XMM8, XMM9, XMM10, XMM11, XMM12, XMM13, XMM14, XMM15, EFLAGS],
Rafael Espindolad652dbe2010-11-28 21:16:39 +0000300 Uses = [RSP] in
Chris Lattner8af88ef2010-10-05 06:10:16 +0000301def TLS_addr64 : I<0, Pseudo, (outs), (ins i64mem:$sym),
Rafael Espindola5bf7c532010-11-27 20:43:02 +0000302 "# TLS_addr64",
Chris Lattner8af88ef2010-10-05 06:10:16 +0000303 [(X86tlsaddr tls64addr:$sym)]>,
304 Requires<[In64BitMode]>;
305
306// Darwin TLS Support
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000307// For i386, the address of the thunk is passed on the stack, on return the
308// address of the variable is in %eax. %ecx is trashed during the function
Chris Lattner8af88ef2010-10-05 06:10:16 +0000309// call. All other registers are preserved.
Eric Christophercdfe3c32011-01-18 01:37:20 +0000310let Defs = [EAX, ECX, EFLAGS],
Chris Lattner8af88ef2010-10-05 06:10:16 +0000311 Uses = [ESP],
312 usesCustomInserter = 1 in
313def TLSCall_32 : I<0, Pseudo, (outs), (ins i32mem:$sym),
314 "# TLSCall_32",
315 [(X86TLSCall addr:$sym)]>,
316 Requires<[In32BitMode]>;
317
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000318// For x86_64, the address of the thunk is passed in %rdi, on return
Chris Lattner8af88ef2010-10-05 06:10:16 +0000319// the address of the variable is in %rax. All other registers are preserved.
Eric Christophercdfe3c32011-01-18 01:37:20 +0000320let Defs = [RAX, EFLAGS],
Eric Christopher28717682010-12-09 00:26:41 +0000321 Uses = [RSP, RDI],
Chris Lattner8af88ef2010-10-05 06:10:16 +0000322 usesCustomInserter = 1 in
323def TLSCall_64 : I<0, Pseudo, (outs), (ins i64mem:$sym),
324 "# TLSCall_64",
325 [(X86TLSCall addr:$sym)]>,
326 Requires<[In64BitMode]>;
Chris Lattner87be16a2010-10-05 06:04:14 +0000327
Chris Lattner6dbbff92010-10-05 23:09:10 +0000328
329//===----------------------------------------------------------------------===//
330// Conditional Move Pseudo Instructions
331
332let Constraints = "$src1 = $dst" in {
333
334// Conditional moves
335let Uses = [EFLAGS] in {
336
337// X86 doesn't have 8-bit conditional moves. Use a customInserter to
338// emit control flow. An alternative to this is to mark i8 SELECT as Promote,
339// however that requires promoting the operands, and can induce additional
340// i8 register pressure. Note that CMOV_GR8 is conservatively considered to
341// clobber EFLAGS, because if one of the operands is zero, the expansion
342// could involve an xor.
343let usesCustomInserter = 1, Constraints = "", Defs = [EFLAGS] in {
344def CMOV_GR8 : I<0, Pseudo,
345 (outs GR8:$dst), (ins GR8:$src1, GR8:$src2, i8imm:$cond),
346 "#CMOV_GR8 PSEUDO!",
347 [(set GR8:$dst, (X86cmov GR8:$src1, GR8:$src2,
348 imm:$cond, EFLAGS))]>;
349
350let Predicates = [NoCMov] in {
351def CMOV_GR32 : I<0, Pseudo,
352 (outs GR32:$dst), (ins GR32:$src1, GR32:$src2, i8imm:$cond),
353 "#CMOV_GR32* PSEUDO!",
354 [(set GR32:$dst,
355 (X86cmov GR32:$src1, GR32:$src2, imm:$cond, EFLAGS))]>;
356def CMOV_GR16 : I<0, Pseudo,
357 (outs GR16:$dst), (ins GR16:$src1, GR16:$src2, i8imm:$cond),
358 "#CMOV_GR16* PSEUDO!",
359 [(set GR16:$dst,
360 (X86cmov GR16:$src1, GR16:$src2, imm:$cond, EFLAGS))]>;
361def CMOV_RFP32 : I<0, Pseudo,
362 (outs RFP32:$dst),
363 (ins RFP32:$src1, RFP32:$src2, i8imm:$cond),
364 "#CMOV_RFP32 PSEUDO!",
365 [(set RFP32:$dst,
366 (X86cmov RFP32:$src1, RFP32:$src2, imm:$cond,
367 EFLAGS))]>;
368def CMOV_RFP64 : I<0, Pseudo,
369 (outs RFP64:$dst),
370 (ins RFP64:$src1, RFP64:$src2, i8imm:$cond),
371 "#CMOV_RFP64 PSEUDO!",
372 [(set RFP64:$dst,
373 (X86cmov RFP64:$src1, RFP64:$src2, imm:$cond,
374 EFLAGS))]>;
375def CMOV_RFP80 : I<0, Pseudo,
376 (outs RFP80:$dst),
377 (ins RFP80:$src1, RFP80:$src2, i8imm:$cond),
378 "#CMOV_RFP80 PSEUDO!",
379 [(set RFP80:$dst,
380 (X86cmov RFP80:$src1, RFP80:$src2, imm:$cond,
381 EFLAGS))]>;
382} // Predicates = [NoCMov]
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000383} // UsesCustomInserter = 1, Constraints = "", Defs = [EFLAGS]
Chris Lattner6dbbff92010-10-05 23:09:10 +0000384} // Uses = [EFLAGS]
385
386} // Constraints = "$src1 = $dst" in
387
388
Chris Lattner87be16a2010-10-05 06:04:14 +0000389//===----------------------------------------------------------------------===//
Chris Lattner010496c2010-10-05 06:22:35 +0000390// Atomic Instruction Pseudo Instructions
391//===----------------------------------------------------------------------===//
392
393// Atomic exchange, and, or, xor
394let Constraints = "$val = $dst", Defs = [EFLAGS],
395 usesCustomInserter = 1 in {
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000396
Chris Lattner010496c2010-10-05 06:22:35 +0000397def ATOMAND8 : I<0, Pseudo, (outs GR8:$dst),(ins i8mem:$ptr, GR8:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000398 "#ATOMAND8 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000399 [(set GR8:$dst, (atomic_load_and_8 addr:$ptr, GR8:$val))]>;
400def ATOMOR8 : I<0, Pseudo, (outs GR8:$dst),(ins i8mem:$ptr, GR8:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000401 "#ATOMOR8 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000402 [(set GR8:$dst, (atomic_load_or_8 addr:$ptr, GR8:$val))]>;
403def ATOMXOR8 : I<0, Pseudo,(outs GR8:$dst),(ins i8mem:$ptr, GR8:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000404 "#ATOMXOR8 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000405 [(set GR8:$dst, (atomic_load_xor_8 addr:$ptr, GR8:$val))]>;
406def ATOMNAND8 : I<0, Pseudo,(outs GR8:$dst),(ins i8mem:$ptr, GR8:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000407 "#ATOMNAND8 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000408 [(set GR8:$dst, (atomic_load_nand_8 addr:$ptr, GR8:$val))]>;
409
410def ATOMAND16 : I<0, Pseudo, (outs GR16:$dst),(ins i16mem:$ptr, GR16:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000411 "#ATOMAND16 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000412 [(set GR16:$dst, (atomic_load_and_16 addr:$ptr, GR16:$val))]>;
413def ATOMOR16 : I<0, Pseudo, (outs GR16:$dst),(ins i16mem:$ptr, GR16:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000414 "#ATOMOR16 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000415 [(set GR16:$dst, (atomic_load_or_16 addr:$ptr, GR16:$val))]>;
416def ATOMXOR16 : I<0, Pseudo,(outs GR16:$dst),(ins i16mem:$ptr, GR16:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000417 "#ATOMXOR16 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000418 [(set GR16:$dst, (atomic_load_xor_16 addr:$ptr, GR16:$val))]>;
419def ATOMNAND16 : I<0, Pseudo,(outs GR16:$dst),(ins i16mem:$ptr, GR16:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000420 "#ATOMNAND16 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000421 [(set GR16:$dst, (atomic_load_nand_16 addr:$ptr, GR16:$val))]>;
422def ATOMMIN16: I<0, Pseudo, (outs GR16:$dst), (ins i16mem:$ptr, GR16:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000423 "#ATOMMIN16 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000424 [(set GR16:$dst, (atomic_load_min_16 addr:$ptr, GR16:$val))]>;
425def ATOMMAX16: I<0, Pseudo, (outs GR16:$dst),(ins i16mem:$ptr, GR16:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000426 "#ATOMMAX16 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000427 [(set GR16:$dst, (atomic_load_max_16 addr:$ptr, GR16:$val))]>;
428def ATOMUMIN16: I<0, Pseudo, (outs GR16:$dst),(ins i16mem:$ptr, GR16:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000429 "#ATOMUMIN16 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000430 [(set GR16:$dst, (atomic_load_umin_16 addr:$ptr, GR16:$val))]>;
431def ATOMUMAX16: I<0, Pseudo, (outs GR16:$dst),(ins i16mem:$ptr, GR16:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000432 "#ATOMUMAX16 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000433 [(set GR16:$dst, (atomic_load_umax_16 addr:$ptr, GR16:$val))]>;
434
435
436def ATOMAND32 : I<0, Pseudo, (outs GR32:$dst),(ins i32mem:$ptr, GR32:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000437 "#ATOMAND32 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000438 [(set GR32:$dst, (atomic_load_and_32 addr:$ptr, GR32:$val))]>;
439def ATOMOR32 : I<0, Pseudo, (outs GR32:$dst),(ins i32mem:$ptr, GR32:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000440 "#ATOMOR32 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000441 [(set GR32:$dst, (atomic_load_or_32 addr:$ptr, GR32:$val))]>;
442def ATOMXOR32 : I<0, Pseudo,(outs GR32:$dst),(ins i32mem:$ptr, GR32:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000443 "#ATOMXOR32 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000444 [(set GR32:$dst, (atomic_load_xor_32 addr:$ptr, GR32:$val))]>;
445def ATOMNAND32 : I<0, Pseudo,(outs GR32:$dst),(ins i32mem:$ptr, GR32:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000446 "#ATOMNAND32 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000447 [(set GR32:$dst, (atomic_load_nand_32 addr:$ptr, GR32:$val))]>;
448def ATOMMIN32: I<0, Pseudo, (outs GR32:$dst), (ins i32mem:$ptr, GR32:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000449 "#ATOMMIN32 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000450 [(set GR32:$dst, (atomic_load_min_32 addr:$ptr, GR32:$val))]>;
451def ATOMMAX32: I<0, Pseudo, (outs GR32:$dst),(ins i32mem:$ptr, GR32:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000452 "#ATOMMAX32 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000453 [(set GR32:$dst, (atomic_load_max_32 addr:$ptr, GR32:$val))]>;
454def ATOMUMIN32: I<0, Pseudo, (outs GR32:$dst),(ins i32mem:$ptr, GR32:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000455 "#ATOMUMIN32 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000456 [(set GR32:$dst, (atomic_load_umin_32 addr:$ptr, GR32:$val))]>;
457def ATOMUMAX32: I<0, Pseudo, (outs GR32:$dst),(ins i32mem:$ptr, GR32:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000458 "#ATOMUMAX32 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000459 [(set GR32:$dst, (atomic_load_umax_32 addr:$ptr, GR32:$val))]>;
460
461
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000462
Chris Lattner010496c2010-10-05 06:22:35 +0000463def ATOMAND64 : I<0, Pseudo, (outs GR64:$dst),(ins i64mem:$ptr, GR64:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000464 "#ATOMAND64 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000465 [(set GR64:$dst, (atomic_load_and_64 addr:$ptr, GR64:$val))]>;
466def ATOMOR64 : I<0, Pseudo, (outs GR64:$dst),(ins i64mem:$ptr, GR64:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000467 "#ATOMOR64 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000468 [(set GR64:$dst, (atomic_load_or_64 addr:$ptr, GR64:$val))]>;
469def ATOMXOR64 : I<0, Pseudo,(outs GR64:$dst),(ins i64mem:$ptr, GR64:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000470 "#ATOMXOR64 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000471 [(set GR64:$dst, (atomic_load_xor_64 addr:$ptr, GR64:$val))]>;
472def ATOMNAND64 : I<0, Pseudo,(outs GR64:$dst),(ins i64mem:$ptr, GR64:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000473 "#ATOMNAND64 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000474 [(set GR64:$dst, (atomic_load_nand_64 addr:$ptr, GR64:$val))]>;
475def ATOMMIN64: I<0, Pseudo, (outs GR64:$dst), (ins i64mem:$ptr, GR64:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000476 "#ATOMMIN64 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000477 [(set GR64:$dst, (atomic_load_min_64 addr:$ptr, GR64:$val))]>;
478def ATOMMAX64: I<0, Pseudo, (outs GR64:$dst),(ins i64mem:$ptr, GR64:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000479 "#ATOMMAX64 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000480 [(set GR64:$dst, (atomic_load_max_64 addr:$ptr, GR64:$val))]>;
481def ATOMUMIN64: I<0, Pseudo, (outs GR64:$dst),(ins i64mem:$ptr, GR64:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000482 "#ATOMUMIN64 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000483 [(set GR64:$dst, (atomic_load_umin_64 addr:$ptr, GR64:$val))]>;
484def ATOMUMAX64: I<0, Pseudo, (outs GR64:$dst),(ins i64mem:$ptr, GR64:$val),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000485 "#ATOMUMAX64 PSEUDO!",
Chris Lattner010496c2010-10-05 06:22:35 +0000486 [(set GR64:$dst, (atomic_load_umax_64 addr:$ptr, GR64:$val))]>;
487}
488
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000489let Constraints = "$val1 = $dst1, $val2 = $dst2",
Chris Lattner010496c2010-10-05 06:22:35 +0000490 Defs = [EFLAGS, EAX, EBX, ECX, EDX],
491 Uses = [EAX, EBX, ECX, EDX],
492 mayLoad = 1, mayStore = 1,
493 usesCustomInserter = 1 in {
494def ATOMAND6432 : I<0, Pseudo, (outs GR32:$dst1, GR32:$dst2),
495 (ins i64mem:$ptr, GR32:$val1, GR32:$val2),
496 "#ATOMAND6432 PSEUDO!", []>;
497def ATOMOR6432 : I<0, Pseudo, (outs GR32:$dst1, GR32:$dst2),
498 (ins i64mem:$ptr, GR32:$val1, GR32:$val2),
499 "#ATOMOR6432 PSEUDO!", []>;
500def ATOMXOR6432 : I<0, Pseudo, (outs GR32:$dst1, GR32:$dst2),
501 (ins i64mem:$ptr, GR32:$val1, GR32:$val2),
502 "#ATOMXOR6432 PSEUDO!", []>;
503def ATOMNAND6432 : I<0, Pseudo, (outs GR32:$dst1, GR32:$dst2),
504 (ins i64mem:$ptr, GR32:$val1, GR32:$val2),
505 "#ATOMNAND6432 PSEUDO!", []>;
506def ATOMADD6432 : I<0, Pseudo, (outs GR32:$dst1, GR32:$dst2),
507 (ins i64mem:$ptr, GR32:$val1, GR32:$val2),
508 "#ATOMADD6432 PSEUDO!", []>;
509def ATOMSUB6432 : I<0, Pseudo, (outs GR32:$dst1, GR32:$dst2),
510 (ins i64mem:$ptr, GR32:$val1, GR32:$val2),
511 "#ATOMSUB6432 PSEUDO!", []>;
512def ATOMSWAP6432 : I<0, Pseudo, (outs GR32:$dst1, GR32:$dst2),
513 (ins i64mem:$ptr, GR32:$val1, GR32:$val2),
514 "#ATOMSWAP6432 PSEUDO!", []>;
515}
516
517//===----------------------------------------------------------------------===//
518// Normal-Instructions-With-Lock-Prefix Pseudo Instructions
519//===----------------------------------------------------------------------===//
520
521// FIXME: Use normal instructions and add lock prefix dynamically.
522
523// Memory barriers
524
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000525// TODO: Get this to fold the constant into the instruction.
Chris Lattner4d1189f2010-11-01 00:46:16 +0000526let isCodeGenOnly = 1 in
Chris Lattner010496c2010-10-05 06:22:35 +0000527def OR32mrLocked : I<0x09, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$zero),
528 "lock\n\t"
529 "or{l}\t{$zero, $dst|$dst, $zero}",
530 []>, Requires<[In32BitMode]>, LOCK;
531
532let hasSideEffects = 1 in
533def Int_MemBarrier : I<0, Pseudo, (outs), (ins),
534 "#MEMBARRIER",
Eli Friedman84e7f7e2011-07-27 19:43:50 +0000535 [(X86MemBarrier)]>;
Chris Lattner010496c2010-10-05 06:22:35 +0000536
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000537// TODO: Get this to fold the constant into the instruction.
Chris Lattner4d1189f2010-11-01 00:46:16 +0000538let hasSideEffects = 1, Defs = [ESP], isCodeGenOnly = 1 in
Chris Lattner010496c2010-10-05 06:22:35 +0000539def Int_MemBarrierNoSSE64 : RI<0x09, MRM1r, (outs), (ins GR64:$zero),
540 "lock\n\t"
541 "or{q}\t{$zero, (%rsp)|(%rsp), $zero}",
542 [(X86MemBarrierNoSSE GR64:$zero)]>,
543 Requires<[In64BitMode]>, LOCK;
544
545
Eric Christopher988397d2011-05-10 18:36:16 +0000546// RegOpc corresponds to the mr version of the instruction
547// ImmOpc corresponds to the mi version of the instruction
548// ImmOpc8 corresponds to the mi8 version of the instruction
549// ImmMod corresponds to the instruction format of the mi and mi8 versions
550multiclass LOCK_ArithBinOp<bits<8> RegOpc, bits<8> ImmOpc, bits<8> ImmOpc8,
551 Format ImmMod, string mnemonic> {
552let Defs = [EFLAGS], mayLoad = 1, mayStore = 1, isCodeGenOnly = 1 in {
553
554def #NAME#8mr : I<{RegOpc{7}, RegOpc{6}, RegOpc{5}, RegOpc{4},
555 RegOpc{3}, RegOpc{2}, RegOpc{1}, 0 },
556 MRMDestMem, (outs), (ins i8mem:$dst, GR8:$src2),
557 !strconcat("lock\n\t", mnemonic, "{b}\t",
558 "{$src2, $dst|$dst, $src2}"),
559 []>, LOCK;
560def #NAME#16mr : I<{RegOpc{7}, RegOpc{6}, RegOpc{5}, RegOpc{4},
561 RegOpc{3}, RegOpc{2}, RegOpc{1}, 1 },
562 MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src2),
563 !strconcat("lock\n\t", mnemonic, "{w}\t",
564 "{$src2, $dst|$dst, $src2}"),
565 []>, OpSize, LOCK;
566def #NAME#32mr : I<{RegOpc{7}, RegOpc{6}, RegOpc{5}, RegOpc{4},
567 RegOpc{3}, RegOpc{2}, RegOpc{1}, 1 },
568 MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src2),
569 !strconcat("lock\n\t", mnemonic, "{l}\t",
570 "{$src2, $dst|$dst, $src2}"),
571 []>, LOCK;
572def #NAME#64mr : RI<{RegOpc{7}, RegOpc{6}, RegOpc{5}, RegOpc{4},
573 RegOpc{3}, RegOpc{2}, RegOpc{1}, 1 },
574 MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src2),
575 !strconcat("lock\n\t", mnemonic, "{q}\t",
576 "{$src2, $dst|$dst, $src2}"),
577 []>, LOCK;
578
579def #NAME#8mi : Ii8<{ImmOpc{7}, ImmOpc{6}, ImmOpc{5}, ImmOpc{4},
580 ImmOpc{3}, ImmOpc{2}, ImmOpc{1}, 0 },
581 ImmMod, (outs), (ins i8mem :$dst, i8imm :$src2),
582 !strconcat("lock\n\t", mnemonic, "{b}\t",
Eric Christopherb38fe4b2011-05-10 23:57:45 +0000583 "{$src2, $dst|$dst, $src2}"),
Eric Christopher988397d2011-05-10 18:36:16 +0000584 []>, LOCK;
585
586def #NAME#16mi : Ii16<{ImmOpc{7}, ImmOpc{6}, ImmOpc{5}, ImmOpc{4},
587 ImmOpc{3}, ImmOpc{2}, ImmOpc{1}, 1 },
588 ImmMod, (outs), (ins i16mem :$dst, i16imm :$src2),
589 !strconcat("lock\n\t", mnemonic, "{w}\t",
590 "{$src2, $dst|$dst, $src2}"),
591 []>, LOCK;
592
593def #NAME#32mi : Ii32<{ImmOpc{7}, ImmOpc{6}, ImmOpc{5}, ImmOpc{4},
594 ImmOpc{3}, ImmOpc{2}, ImmOpc{1}, 1 },
595 ImmMod, (outs), (ins i32mem :$dst, i32imm :$src2),
596 !strconcat("lock\n\t", mnemonic, "{l}\t",
597 "{$src2, $dst|$dst, $src2}"),
598 []>, LOCK;
599
600def #NAME#64mi32 : RIi32<{ImmOpc{7}, ImmOpc{6}, ImmOpc{5}, ImmOpc{4},
601 ImmOpc{3}, ImmOpc{2}, ImmOpc{1}, 1 },
602 ImmMod, (outs), (ins i64mem :$dst, i64i32imm :$src2),
603 !strconcat("lock\n\t", mnemonic, "{q}\t",
604 "{$src2, $dst|$dst, $src2}"),
605 []>, LOCK;
606
607def #NAME#16mi8 : Ii8<{ImmOpc8{7}, ImmOpc8{6}, ImmOpc8{5}, ImmOpc8{4},
608 ImmOpc8{3}, ImmOpc8{2}, ImmOpc8{1}, 1 },
609 ImmMod, (outs), (ins i16mem :$dst, i16i8imm :$src2),
610 !strconcat("lock\n\t", mnemonic, "{w}\t",
611 "{$src2, $dst|$dst, $src2}"),
612 []>, LOCK;
613def #NAME#32mi8 : Ii8<{ImmOpc8{7}, ImmOpc8{6}, ImmOpc8{5}, ImmOpc8{4},
614 ImmOpc8{3}, ImmOpc8{2}, ImmOpc8{1}, 1 },
615 ImmMod, (outs), (ins i32mem :$dst, i32i8imm :$src2),
616 !strconcat("lock\n\t", mnemonic, "{l}\t",
617 "{$src2, $dst|$dst, $src2}"),
618 []>, LOCK;
619def #NAME#64mi8 : RIi8<{ImmOpc8{7}, ImmOpc8{6}, ImmOpc8{5}, ImmOpc8{4},
620 ImmOpc8{3}, ImmOpc8{2}, ImmOpc8{1}, 1 },
621 ImmMod, (outs), (ins i64mem :$dst, i64i8imm :$src2),
622 !strconcat("lock\n\t", mnemonic, "{q}\t",
623 "{$src2, $dst|$dst, $src2}"),
624 []>, LOCK;
625
626}
627
628}
629
630defm LOCK_ADD : LOCK_ArithBinOp<0x00, 0x80, 0x83, MRM0m, "add">;
631defm LOCK_SUB : LOCK_ArithBinOp<0x28, 0x80, 0x83, MRM5m, "sub">;
Eric Christopherb38fe4b2011-05-10 23:57:45 +0000632defm LOCK_OR : LOCK_ArithBinOp<0x08, 0x80, 0x83, MRM1m, "or">;
Eli Friedmanfc430a62011-08-09 22:17:39 +0000633defm LOCK_AND : LOCK_ArithBinOp<0x20, 0x80, 0x83, MRM4m, "and">;
634defm LOCK_XOR : LOCK_ArithBinOp<0x30, 0x80, 0x83, MRM6m, "xor">;
Eric Christopher988397d2011-05-10 18:36:16 +0000635
Chris Lattner010496c2010-10-05 06:22:35 +0000636// Optimized codegen when the non-memory output is not used.
Chris Lattner4d1189f2010-11-01 00:46:16 +0000637let Defs = [EFLAGS], mayLoad = 1, mayStore = 1, isCodeGenOnly = 1 in {
Chris Lattner010496c2010-10-05 06:22:35 +0000638
639def LOCK_INC8m : I<0xFE, MRM0m, (outs), (ins i8mem :$dst),
640 "lock\n\t"
641 "inc{b}\t$dst", []>, LOCK;
642def LOCK_INC16m : I<0xFF, MRM0m, (outs), (ins i16mem:$dst),
643 "lock\n\t"
644 "inc{w}\t$dst", []>, OpSize, LOCK;
645def LOCK_INC32m : I<0xFF, MRM0m, (outs), (ins i32mem:$dst),
646 "lock\n\t"
647 "inc{l}\t$dst", []>, LOCK;
648def LOCK_INC64m : RI<0xFF, MRM0m, (outs), (ins i64mem:$dst),
649 "lock\n\t"
650 "inc{q}\t$dst", []>, LOCK;
651
652def LOCK_DEC8m : I<0xFE, MRM1m, (outs), (ins i8mem :$dst),
653 "lock\n\t"
654 "dec{b}\t$dst", []>, LOCK;
655def LOCK_DEC16m : I<0xFF, MRM1m, (outs), (ins i16mem:$dst),
656 "lock\n\t"
657 "dec{w}\t$dst", []>, OpSize, LOCK;
658def LOCK_DEC32m : I<0xFF, MRM1m, (outs), (ins i32mem:$dst),
659 "lock\n\t"
660 "dec{l}\t$dst", []>, LOCK;
661def LOCK_DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst),
662 "lock\n\t"
663 "dec{q}\t$dst", []>, LOCK;
664}
665
666// Atomic compare and swap.
Chris Lattner4d1189f2010-11-01 00:46:16 +0000667let Defs = [EAX, EDX, EFLAGS], Uses = [EAX, EBX, ECX, EDX],
Eli Friedman43f51ae2011-08-26 21:21:21 +0000668 isCodeGenOnly = 1 in
Chris Lattner010496c2010-10-05 06:22:35 +0000669def LCMPXCHG8B : I<0xC7, MRM1m, (outs), (ins i64mem:$ptr),
670 "lock\n\t"
671 "cmpxchg8b\t$ptr",
672 [(X86cas8 addr:$ptr)]>, TB, LOCK;
Eli Friedman43f51ae2011-08-26 21:21:21 +0000673
674let Defs = [RAX, RDX, EFLAGS], Uses = [RAX, RBX, RCX, RDX],
675 isCodeGenOnly = 1 in
676def LCMPXCHG16B : RI<0xC7, MRM1m, (outs), (ins i128mem:$ptr),
677 "lock\n\t"
678 "cmpxchg16b\t$ptr",
679 [(X86cas16 addr:$ptr)]>, TB, LOCK,
680 Requires<[HasCmpxchg16b]>;
681
Chris Lattner4d1189f2010-11-01 00:46:16 +0000682let Defs = [AL, EFLAGS], Uses = [AL], isCodeGenOnly = 1 in {
Chris Lattner010496c2010-10-05 06:22:35 +0000683def LCMPXCHG8 : I<0xB0, MRMDestMem, (outs), (ins i8mem:$ptr, GR8:$swap),
684 "lock\n\t"
685 "cmpxchg{b}\t{$swap, $ptr|$ptr, $swap}",
686 [(X86cas addr:$ptr, GR8:$swap, 1)]>, TB, LOCK;
687}
688
Chris Lattner4d1189f2010-11-01 00:46:16 +0000689let Defs = [AX, EFLAGS], Uses = [AX], isCodeGenOnly = 1 in {
Chris Lattner010496c2010-10-05 06:22:35 +0000690def LCMPXCHG16 : I<0xB1, MRMDestMem, (outs), (ins i16mem:$ptr, GR16:$swap),
691 "lock\n\t"
692 "cmpxchg{w}\t{$swap, $ptr|$ptr, $swap}",
693 [(X86cas addr:$ptr, GR16:$swap, 2)]>, TB, OpSize, LOCK;
694}
695
Chris Lattner4d1189f2010-11-01 00:46:16 +0000696let Defs = [EAX, EFLAGS], Uses = [EAX], isCodeGenOnly = 1 in {
Chris Lattner010496c2010-10-05 06:22:35 +0000697def LCMPXCHG32 : I<0xB1, MRMDestMem, (outs), (ins i32mem:$ptr, GR32:$swap),
698 "lock\n\t"
699 "cmpxchg{l}\t{$swap, $ptr|$ptr, $swap}",
700 [(X86cas addr:$ptr, GR32:$swap, 4)]>, TB, LOCK;
701}
702
Chris Lattner4d1189f2010-11-01 00:46:16 +0000703let Defs = [RAX, EFLAGS], Uses = [RAX], isCodeGenOnly = 1 in {
Chris Lattner010496c2010-10-05 06:22:35 +0000704def LCMPXCHG64 : RI<0xB1, MRMDestMem, (outs), (ins i64mem:$ptr, GR64:$swap),
705 "lock\n\t"
706 "cmpxchgq\t$swap,$ptr",
707 [(X86cas addr:$ptr, GR64:$swap, 8)]>, TB, LOCK;
708}
709
710// Atomic exchange and add
Chris Lattner4d1189f2010-11-01 00:46:16 +0000711let Constraints = "$val = $dst", Defs = [EFLAGS], isCodeGenOnly = 1 in {
Chris Lattner010496c2010-10-05 06:22:35 +0000712def LXADD8 : I<0xC0, MRMSrcMem, (outs GR8:$dst), (ins GR8:$val, i8mem:$ptr),
713 "lock\n\t"
714 "xadd{b}\t{$val, $ptr|$ptr, $val}",
715 [(set GR8:$dst, (atomic_load_add_8 addr:$ptr, GR8:$val))]>,
716 TB, LOCK;
717def LXADD16 : I<0xC1, MRMSrcMem, (outs GR16:$dst), (ins GR16:$val, i16mem:$ptr),
718 "lock\n\t"
719 "xadd{w}\t{$val, $ptr|$ptr, $val}",
720 [(set GR16:$dst, (atomic_load_add_16 addr:$ptr, GR16:$val))]>,
721 TB, OpSize, LOCK;
722def LXADD32 : I<0xC1, MRMSrcMem, (outs GR32:$dst), (ins GR32:$val, i32mem:$ptr),
723 "lock\n\t"
724 "xadd{l}\t{$val, $ptr|$ptr, $val}",
725 [(set GR32:$dst, (atomic_load_add_32 addr:$ptr, GR32:$val))]>,
726 TB, LOCK;
727def LXADD64 : RI<0xC1, MRMSrcMem, (outs GR64:$dst), (ins GR64:$val,i64mem:$ptr),
728 "lock\n\t"
729 "xadd\t$val, $ptr",
730 [(set GR64:$dst, (atomic_load_add_64 addr:$ptr, GR64:$val))]>,
731 TB, LOCK;
732}
733
Chris Lattner5673e1d2010-10-05 06:41:40 +0000734//===----------------------------------------------------------------------===//
735// Conditional Move Pseudo Instructions.
736//===----------------------------------------------------------------------===//
737
738
739// CMOV* - Used to implement the SSE SELECT DAG operation. Expanded after
740// instruction selection into a branch sequence.
741let Uses = [EFLAGS], usesCustomInserter = 1 in {
742 def CMOV_FR32 : I<0, Pseudo,
743 (outs FR32:$dst), (ins FR32:$t, FR32:$f, i8imm:$cond),
744 "#CMOV_FR32 PSEUDO!",
745 [(set FR32:$dst, (X86cmov FR32:$t, FR32:$f, imm:$cond,
746 EFLAGS))]>;
747 def CMOV_FR64 : I<0, Pseudo,
748 (outs FR64:$dst), (ins FR64:$t, FR64:$f, i8imm:$cond),
749 "#CMOV_FR64 PSEUDO!",
750 [(set FR64:$dst, (X86cmov FR64:$t, FR64:$f, imm:$cond,
751 EFLAGS))]>;
752 def CMOV_V4F32 : I<0, Pseudo,
753 (outs VR128:$dst), (ins VR128:$t, VR128:$f, i8imm:$cond),
754 "#CMOV_V4F32 PSEUDO!",
755 [(set VR128:$dst,
756 (v4f32 (X86cmov VR128:$t, VR128:$f, imm:$cond,
757 EFLAGS)))]>;
758 def CMOV_V2F64 : I<0, Pseudo,
759 (outs VR128:$dst), (ins VR128:$t, VR128:$f, i8imm:$cond),
760 "#CMOV_V2F64 PSEUDO!",
761 [(set VR128:$dst,
762 (v2f64 (X86cmov VR128:$t, VR128:$f, imm:$cond,
763 EFLAGS)))]>;
764 def CMOV_V2I64 : I<0, Pseudo,
765 (outs VR128:$dst), (ins VR128:$t, VR128:$f, i8imm:$cond),
766 "#CMOV_V2I64 PSEUDO!",
767 [(set VR128:$dst,
768 (v2i64 (X86cmov VR128:$t, VR128:$f, imm:$cond,
769 EFLAGS)))]>;
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +0000770 def CMOV_V8F32 : I<0, Pseudo,
771 (outs VR256:$dst), (ins VR256:$t, VR256:$f, i8imm:$cond),
772 "#CMOV_V8F32 PSEUDO!",
773 [(set VR256:$dst,
774 (v8f32 (X86cmov VR256:$t, VR256:$f, imm:$cond,
775 EFLAGS)))]>;
776 def CMOV_V4F64 : I<0, Pseudo,
777 (outs VR256:$dst), (ins VR256:$t, VR256:$f, i8imm:$cond),
778 "#CMOV_V4F64 PSEUDO!",
779 [(set VR256:$dst,
780 (v4f64 (X86cmov VR256:$t, VR256:$f, imm:$cond,
781 EFLAGS)))]>;
782 def CMOV_V4I64 : I<0, Pseudo,
783 (outs VR256:$dst), (ins VR256:$t, VR256:$f, i8imm:$cond),
784 "#CMOV_V4I64 PSEUDO!",
785 [(set VR256:$dst,
786 (v4i64 (X86cmov VR256:$t, VR256:$f, imm:$cond,
787 EFLAGS)))]>;
Chris Lattner5673e1d2010-10-05 06:41:40 +0000788}
789
Chris Lattner010496c2010-10-05 06:22:35 +0000790
791//===----------------------------------------------------------------------===//
792// DAG Pattern Matching Rules
Chris Lattner87be16a2010-10-05 06:04:14 +0000793//===----------------------------------------------------------------------===//
794
795// ConstantPool GlobalAddress, ExternalSymbol, and JumpTable
796def : Pat<(i32 (X86Wrapper tconstpool :$dst)), (MOV32ri tconstpool :$dst)>;
797def : Pat<(i32 (X86Wrapper tjumptable :$dst)), (MOV32ri tjumptable :$dst)>;
798def : Pat<(i32 (X86Wrapper tglobaltlsaddr:$dst)),(MOV32ri tglobaltlsaddr:$dst)>;
799def : Pat<(i32 (X86Wrapper tglobaladdr :$dst)), (MOV32ri tglobaladdr :$dst)>;
800def : Pat<(i32 (X86Wrapper texternalsym:$dst)), (MOV32ri texternalsym:$dst)>;
801def : Pat<(i32 (X86Wrapper tblockaddress:$dst)), (MOV32ri tblockaddress:$dst)>;
802
803def : Pat<(add GR32:$src1, (X86Wrapper tconstpool:$src2)),
804 (ADD32ri GR32:$src1, tconstpool:$src2)>;
805def : Pat<(add GR32:$src1, (X86Wrapper tjumptable:$src2)),
806 (ADD32ri GR32:$src1, tjumptable:$src2)>;
807def : Pat<(add GR32:$src1, (X86Wrapper tglobaladdr :$src2)),
808 (ADD32ri GR32:$src1, tglobaladdr:$src2)>;
809def : Pat<(add GR32:$src1, (X86Wrapper texternalsym:$src2)),
810 (ADD32ri GR32:$src1, texternalsym:$src2)>;
811def : Pat<(add GR32:$src1, (X86Wrapper tblockaddress:$src2)),
812 (ADD32ri GR32:$src1, tblockaddress:$src2)>;
813
814def : Pat<(store (i32 (X86Wrapper tglobaladdr:$src)), addr:$dst),
815 (MOV32mi addr:$dst, tglobaladdr:$src)>;
816def : Pat<(store (i32 (X86Wrapper texternalsym:$src)), addr:$dst),
817 (MOV32mi addr:$dst, texternalsym:$src)>;
818def : Pat<(store (i32 (X86Wrapper tblockaddress:$src)), addr:$dst),
819 (MOV32mi addr:$dst, tblockaddress:$src)>;
820
821
822
823// ConstantPool GlobalAddress, ExternalSymbol, and JumpTable when not in small
824// code model mode, should use 'movabs'. FIXME: This is really a hack, the
825// 'movabs' predicate should handle this sort of thing.
826def : Pat<(i64 (X86Wrapper tconstpool :$dst)),
827 (MOV64ri tconstpool :$dst)>, Requires<[FarData]>;
828def : Pat<(i64 (X86Wrapper tjumptable :$dst)),
829 (MOV64ri tjumptable :$dst)>, Requires<[FarData]>;
830def : Pat<(i64 (X86Wrapper tglobaladdr :$dst)),
831 (MOV64ri tglobaladdr :$dst)>, Requires<[FarData]>;
832def : Pat<(i64 (X86Wrapper texternalsym:$dst)),
833 (MOV64ri texternalsym:$dst)>, Requires<[FarData]>;
834def : Pat<(i64 (X86Wrapper tblockaddress:$dst)),
835 (MOV64ri tblockaddress:$dst)>, Requires<[FarData]>;
836
837// In static codegen with small code model, we can get the address of a label
838// into a register with 'movl'. FIXME: This is a hack, the 'imm' predicate of
839// the MOV64ri64i32 should accept these.
840def : Pat<(i64 (X86Wrapper tconstpool :$dst)),
841 (MOV64ri64i32 tconstpool :$dst)>, Requires<[SmallCode]>;
842def : Pat<(i64 (X86Wrapper tjumptable :$dst)),
843 (MOV64ri64i32 tjumptable :$dst)>, Requires<[SmallCode]>;
844def : Pat<(i64 (X86Wrapper tglobaladdr :$dst)),
845 (MOV64ri64i32 tglobaladdr :$dst)>, Requires<[SmallCode]>;
846def : Pat<(i64 (X86Wrapper texternalsym:$dst)),
847 (MOV64ri64i32 texternalsym:$dst)>, Requires<[SmallCode]>;
848def : Pat<(i64 (X86Wrapper tblockaddress:$dst)),
849 (MOV64ri64i32 tblockaddress:$dst)>, Requires<[SmallCode]>;
850
851// In kernel code model, we can get the address of a label
852// into a register with 'movq'. FIXME: This is a hack, the 'imm' predicate of
853// the MOV64ri32 should accept these.
854def : Pat<(i64 (X86Wrapper tconstpool :$dst)),
855 (MOV64ri32 tconstpool :$dst)>, Requires<[KernelCode]>;
856def : Pat<(i64 (X86Wrapper tjumptable :$dst)),
857 (MOV64ri32 tjumptable :$dst)>, Requires<[KernelCode]>;
858def : Pat<(i64 (X86Wrapper tglobaladdr :$dst)),
859 (MOV64ri32 tglobaladdr :$dst)>, Requires<[KernelCode]>;
860def : Pat<(i64 (X86Wrapper texternalsym:$dst)),
861 (MOV64ri32 texternalsym:$dst)>, Requires<[KernelCode]>;
862def : Pat<(i64 (X86Wrapper tblockaddress:$dst)),
863 (MOV64ri32 tblockaddress:$dst)>, Requires<[KernelCode]>;
864
865// If we have small model and -static mode, it is safe to store global addresses
866// directly as immediates. FIXME: This is really a hack, the 'imm' predicate
867// for MOV64mi32 should handle this sort of thing.
868def : Pat<(store (i64 (X86Wrapper tconstpool:$src)), addr:$dst),
869 (MOV64mi32 addr:$dst, tconstpool:$src)>,
870 Requires<[NearData, IsStatic]>;
871def : Pat<(store (i64 (X86Wrapper tjumptable:$src)), addr:$dst),
872 (MOV64mi32 addr:$dst, tjumptable:$src)>,
873 Requires<[NearData, IsStatic]>;
874def : Pat<(store (i64 (X86Wrapper tglobaladdr:$src)), addr:$dst),
875 (MOV64mi32 addr:$dst, tglobaladdr:$src)>,
876 Requires<[NearData, IsStatic]>;
877def : Pat<(store (i64 (X86Wrapper texternalsym:$src)), addr:$dst),
878 (MOV64mi32 addr:$dst, texternalsym:$src)>,
879 Requires<[NearData, IsStatic]>;
880def : Pat<(store (i64 (X86Wrapper tblockaddress:$src)), addr:$dst),
881 (MOV64mi32 addr:$dst, tblockaddress:$src)>,
882 Requires<[NearData, IsStatic]>;
883
884
885
886// Calls
887
888// tls has some funny stuff here...
889// This corresponds to movabs $foo@tpoff, %rax
890def : Pat<(i64 (X86Wrapper tglobaltlsaddr :$dst)),
891 (MOV64ri tglobaltlsaddr :$dst)>;
892// This corresponds to add $foo@tpoff, %rax
893def : Pat<(add GR64:$src1, (X86Wrapper tglobaltlsaddr :$dst)),
894 (ADD64ri32 GR64:$src1, tglobaltlsaddr :$dst)>;
895// This corresponds to mov foo@tpoff(%rbx), %eax
896def : Pat<(load (i64 (X86Wrapper tglobaltlsaddr :$dst))),
897 (MOV64rm tglobaltlsaddr :$dst)>;
898
899
900// Direct PC relative function call for small code model. 32-bit displacement
901// sign extended to 64-bit.
902def : Pat<(X86call (i64 tglobaladdr:$dst)),
903 (CALL64pcrel32 tglobaladdr:$dst)>, Requires<[NotWin64]>;
904def : Pat<(X86call (i64 texternalsym:$dst)),
905 (CALL64pcrel32 texternalsym:$dst)>, Requires<[NotWin64]>;
906
907def : Pat<(X86call (i64 tglobaladdr:$dst)),
908 (WINCALL64pcrel32 tglobaladdr:$dst)>, Requires<[IsWin64]>;
909def : Pat<(X86call (i64 texternalsym:$dst)),
910 (WINCALL64pcrel32 texternalsym:$dst)>, Requires<[IsWin64]>;
911
912// tailcall stuff
913def : Pat<(X86tcret GR32_TC:$dst, imm:$off),
914 (TCRETURNri GR32_TC:$dst, imm:$off)>,
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000915 Requires<[In32BitMode]>;
Chris Lattner87be16a2010-10-05 06:04:14 +0000916
917// FIXME: This is disabled for 32-bit PIC mode because the global base
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000918// register which is part of the address mode may be assigned a
Chris Lattner87be16a2010-10-05 06:04:14 +0000919// callee-saved register.
920def : Pat<(X86tcret (load addr:$dst), imm:$off),
921 (TCRETURNmi addr:$dst, imm:$off)>,
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000922 Requires<[In32BitMode, IsNotPIC]>;
Chris Lattner87be16a2010-10-05 06:04:14 +0000923
924def : Pat<(X86tcret (i32 tglobaladdr:$dst), imm:$off),
925 (TCRETURNdi texternalsym:$dst, imm:$off)>,
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000926 Requires<[In32BitMode]>;
Chris Lattner87be16a2010-10-05 06:04:14 +0000927
928def : Pat<(X86tcret (i32 texternalsym:$dst), imm:$off),
929 (TCRETURNdi texternalsym:$dst, imm:$off)>,
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000930 Requires<[In32BitMode]>;
Chris Lattner87be16a2010-10-05 06:04:14 +0000931
NAKAMURA Takumi7754f852011-01-26 02:04:09 +0000932def : Pat<(X86tcret ptr_rc_tailcall:$dst, imm:$off),
933 (TCRETURNri64 ptr_rc_tailcall:$dst, imm:$off)>,
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000934 Requires<[In64BitMode]>;
Chris Lattner87be16a2010-10-05 06:04:14 +0000935
936def : Pat<(X86tcret (load addr:$dst), imm:$off),
937 (TCRETURNmi64 addr:$dst, imm:$off)>,
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000938 Requires<[In64BitMode]>;
Chris Lattner87be16a2010-10-05 06:04:14 +0000939
940def : Pat<(X86tcret (i64 tglobaladdr:$dst), imm:$off),
941 (TCRETURNdi64 tglobaladdr:$dst, imm:$off)>,
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000942 Requires<[In64BitMode]>;
Chris Lattner87be16a2010-10-05 06:04:14 +0000943
944def : Pat<(X86tcret (i64 texternalsym:$dst), imm:$off),
945 (TCRETURNdi64 texternalsym:$dst, imm:$off)>,
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000946 Requires<[In64BitMode]>;
Chris Lattner87be16a2010-10-05 06:04:14 +0000947
948// Normal calls, with various flavors of addresses.
949def : Pat<(X86call (i32 tglobaladdr:$dst)),
950 (CALLpcrel32 tglobaladdr:$dst)>;
951def : Pat<(X86call (i32 texternalsym:$dst)),
952 (CALLpcrel32 texternalsym:$dst)>;
953def : Pat<(X86call (i32 imm:$dst)),
954 (CALLpcrel32 imm:$dst)>, Requires<[CallImmAddr]>;
955
Chris Lattner87be16a2010-10-05 06:04:14 +0000956// Comparisons.
957
958// TEST R,R is smaller than CMP R,0
959def : Pat<(X86cmp GR8:$src1, 0),
960 (TEST8rr GR8:$src1, GR8:$src1)>;
961def : Pat<(X86cmp GR16:$src1, 0),
962 (TEST16rr GR16:$src1, GR16:$src1)>;
963def : Pat<(X86cmp GR32:$src1, 0),
964 (TEST32rr GR32:$src1, GR32:$src1)>;
965def : Pat<(X86cmp GR64:$src1, 0),
966 (TEST64rr GR64:$src1, GR64:$src1)>;
967
968// Conditional moves with folded loads with operands swapped and conditions
969// inverted.
Chris Lattner286997c2010-10-05 22:42:54 +0000970multiclass CMOVmr<PatLeaf InvertedCond, Instruction Inst16, Instruction Inst32,
971 Instruction Inst64> {
972 def : Pat<(X86cmov (loadi16 addr:$src1), GR16:$src2, InvertedCond, EFLAGS),
973 (Inst16 GR16:$src2, addr:$src1)>;
974 def : Pat<(X86cmov (loadi32 addr:$src1), GR32:$src2, InvertedCond, EFLAGS),
975 (Inst32 GR32:$src2, addr:$src1)>;
976 def : Pat<(X86cmov (loadi64 addr:$src1), GR64:$src2, InvertedCond, EFLAGS),
977 (Inst64 GR64:$src2, addr:$src1)>;
978}
Chris Lattner87be16a2010-10-05 06:04:14 +0000979
Chris Lattnerdf72eae2010-10-05 22:51:56 +0000980defm : CMOVmr<X86_COND_B , CMOVAE16rm, CMOVAE32rm, CMOVAE64rm>;
981defm : CMOVmr<X86_COND_AE, CMOVB16rm , CMOVB32rm , CMOVB64rm>;
982defm : CMOVmr<X86_COND_E , CMOVNE16rm, CMOVNE32rm, CMOVNE64rm>;
983defm : CMOVmr<X86_COND_NE, CMOVE16rm , CMOVE32rm , CMOVE64rm>;
984defm : CMOVmr<X86_COND_BE, CMOVA16rm , CMOVA32rm , CMOVA64rm>;
Chris Lattner25cbf502010-10-05 23:00:14 +0000985defm : CMOVmr<X86_COND_A , CMOVBE16rm, CMOVBE32rm, CMOVBE64rm>;
Chris Lattnerdf72eae2010-10-05 22:51:56 +0000986defm : CMOVmr<X86_COND_L , CMOVGE16rm, CMOVGE32rm, CMOVGE64rm>;
987defm : CMOVmr<X86_COND_GE, CMOVL16rm , CMOVL32rm , CMOVL64rm>;
988defm : CMOVmr<X86_COND_LE, CMOVG16rm , CMOVG32rm , CMOVG64rm>;
989defm : CMOVmr<X86_COND_G , CMOVLE16rm, CMOVLE32rm, CMOVLE64rm>;
990defm : CMOVmr<X86_COND_P , CMOVNP16rm, CMOVNP32rm, CMOVNP64rm>;
991defm : CMOVmr<X86_COND_NP, CMOVP16rm , CMOVP32rm , CMOVP64rm>;
992defm : CMOVmr<X86_COND_S , CMOVNS16rm, CMOVNS32rm, CMOVNS64rm>;
993defm : CMOVmr<X86_COND_NS, CMOVS16rm , CMOVS32rm , CMOVS64rm>;
994defm : CMOVmr<X86_COND_O , CMOVNO16rm, CMOVNO32rm, CMOVNO64rm>;
995defm : CMOVmr<X86_COND_NO, CMOVO16rm , CMOVO32rm , CMOVO64rm>;
Chris Lattner87be16a2010-10-05 06:04:14 +0000996
997// zextload bool -> zextload byte
998def : Pat<(zextloadi8i1 addr:$src), (MOV8rm addr:$src)>;
999def : Pat<(zextloadi16i1 addr:$src), (MOVZX16rm8 addr:$src)>;
1000def : Pat<(zextloadi32i1 addr:$src), (MOVZX32rm8 addr:$src)>;
1001def : Pat<(zextloadi64i1 addr:$src), (MOVZX64rm8 addr:$src)>;
1002
1003// extload bool -> extload byte
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001004// When extloading from 16-bit and smaller memory locations into 64-bit
1005// registers, use zero-extending loads so that the entire 64-bit register is
Chris Lattner87be16a2010-10-05 06:04:14 +00001006// defined, avoiding partial-register updates.
1007
1008def : Pat<(extloadi8i1 addr:$src), (MOV8rm addr:$src)>;
1009def : Pat<(extloadi16i1 addr:$src), (MOVZX16rm8 addr:$src)>;
1010def : Pat<(extloadi32i1 addr:$src), (MOVZX32rm8 addr:$src)>;
1011def : Pat<(extloadi16i8 addr:$src), (MOVZX16rm8 addr:$src)>;
1012def : Pat<(extloadi32i8 addr:$src), (MOVZX32rm8 addr:$src)>;
1013def : Pat<(extloadi32i16 addr:$src), (MOVZX32rm16 addr:$src)>;
1014
1015def : Pat<(extloadi64i1 addr:$src), (MOVZX64rm8 addr:$src)>;
1016def : Pat<(extloadi64i8 addr:$src), (MOVZX64rm8 addr:$src)>;
1017def : Pat<(extloadi64i16 addr:$src), (MOVZX64rm16 addr:$src)>;
1018// For other extloads, use subregs, since the high contents of the register are
1019// defined after an extload.
1020def : Pat<(extloadi64i32 addr:$src),
1021 (SUBREG_TO_REG (i64 0), (MOV32rm addr:$src),
1022 sub_32bit)>;
1023
1024// anyext. Define these to do an explicit zero-extend to
1025// avoid partial-register updates.
Stuart Hastings0e29ed02011-05-20 19:04:40 +00001026def : Pat<(i16 (anyext GR8 :$src)), (EXTRACT_SUBREG
1027 (MOVZX32rr8 GR8 :$src), sub_16bit)>;
Chris Lattner87be16a2010-10-05 06:04:14 +00001028def : Pat<(i32 (anyext GR8 :$src)), (MOVZX32rr8 GR8 :$src)>;
1029
1030// Except for i16 -> i32 since isel expect i16 ops to be promoted to i32.
1031def : Pat<(i32 (anyext GR16:$src)),
1032 (INSERT_SUBREG (i32 (IMPLICIT_DEF)), GR16:$src, sub_16bit)>;
1033
1034def : Pat<(i64 (anyext GR8 :$src)), (MOVZX64rr8 GR8 :$src)>;
1035def : Pat<(i64 (anyext GR16:$src)), (MOVZX64rr16 GR16 :$src)>;
1036def : Pat<(i64 (anyext GR32:$src)),
1037 (SUBREG_TO_REG (i64 0), GR32:$src, sub_32bit)>;
1038
Chris Lattnerd8cc2722010-10-05 06:47:35 +00001039
1040// Any instruction that defines a 32-bit result leaves the high half of the
1041// register. Truncate can be lowered to EXTRACT_SUBREG. CopyFromReg may
1042// be copying from a truncate. And x86's cmov doesn't do anything if the
1043// condition is false. But any other 32-bit operation will zero-extend
1044// up to 64 bits.
1045def def32 : PatLeaf<(i32 GR32:$src), [{
1046 return N->getOpcode() != ISD::TRUNCATE &&
1047 N->getOpcode() != TargetOpcode::EXTRACT_SUBREG &&
1048 N->getOpcode() != ISD::CopyFromReg &&
1049 N->getOpcode() != X86ISD::CMOV;
1050}]>;
1051
1052// In the case of a 32-bit def that is known to implicitly zero-extend,
1053// we can use a SUBREG_TO_REG.
1054def : Pat<(i64 (zext def32:$src)),
1055 (SUBREG_TO_REG (i64 0), GR32:$src, sub_32bit)>;
1056
Chris Lattner87be16a2010-10-05 06:04:14 +00001057//===----------------------------------------------------------------------===//
Chris Lattner99ae6652010-10-08 03:54:52 +00001058// Pattern match OR as ADD
1059//===----------------------------------------------------------------------===//
1060
1061// If safe, we prefer to pattern match OR as ADD at isel time. ADD can be
1062// 3-addressified into an LEA instruction to avoid copies. However, we also
1063// want to finally emit these instructions as an or at the end of the code
1064// generator to make the generated code easier to read. To do this, we select
1065// into "disjoint bits" pseudo ops.
1066
1067// Treat an 'or' node is as an 'add' if the or'ed bits are known to be zero.
1068def or_is_add : PatFrag<(ops node:$lhs, node:$rhs), (or node:$lhs, node:$rhs),[{
1069 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N->getOperand(1)))
1070 return CurDAG->MaskedValueIsZero(N->getOperand(0), CN->getAPIntValue());
1071
1072 unsigned BitWidth = N->getValueType(0).getScalarType().getSizeInBits();
1073 APInt Mask = APInt::getAllOnesValue(BitWidth);
1074 APInt KnownZero0, KnownOne0;
1075 CurDAG->ComputeMaskedBits(N->getOperand(0), Mask, KnownZero0, KnownOne0, 0);
1076 APInt KnownZero1, KnownOne1;
1077 CurDAG->ComputeMaskedBits(N->getOperand(1), Mask, KnownZero1, KnownOne1, 0);
1078 return (~KnownZero0 & ~KnownZero1) == 0;
1079}]>;
1080
1081
1082// (or x1, x2) -> (add x1, x2) if two operands are known not to share bits.
1083let AddedComplexity = 5 in { // Try this before the selecting to OR
1084
Evan Chengf735f2d2010-12-15 22:57:36 +00001085let isConvertibleToThreeAddress = 1,
Chris Lattner99ae6652010-10-08 03:54:52 +00001086 Constraints = "$src1 = $dst", Defs = [EFLAGS] in {
Evan Chengf735f2d2010-12-15 22:57:36 +00001087let isCommutable = 1 in {
Chris Lattner99ae6652010-10-08 03:54:52 +00001088def ADD16rr_DB : I<0, Pseudo, (outs GR16:$dst), (ins GR16:$src1, GR16:$src2),
1089 "", // orw/addw REG, REG
1090 [(set GR16:$dst, (or_is_add GR16:$src1, GR16:$src2))]>;
1091def ADD32rr_DB : I<0, Pseudo, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
1092 "", // orl/addl REG, REG
1093 [(set GR32:$dst, (or_is_add GR32:$src1, GR32:$src2))]>;
1094def ADD64rr_DB : I<0, Pseudo, (outs GR64:$dst), (ins GR64:$src1, GR64:$src2),
1095 "", // orq/addq REG, REG
1096 [(set GR64:$dst, (or_is_add GR64:$src1, GR64:$src2))]>;
Evan Chengf735f2d2010-12-15 22:57:36 +00001097} // isCommutable
Rafael Espindola6d862802010-10-13 17:14:25 +00001098
1099// NOTE: These are order specific, we want the ri8 forms to be listed
1100// first so that they are slightly preferred to the ri forms.
1101
Chris Lattner15df55d2010-10-08 03:57:25 +00001102def ADD16ri8_DB : I<0, Pseudo,
1103 (outs GR16:$dst), (ins GR16:$src1, i16i8imm:$src2),
1104 "", // orw/addw REG, imm8
1105 [(set GR16:$dst,(or_is_add GR16:$src1,i16immSExt8:$src2))]>;
Rafael Espindola6d862802010-10-13 17:14:25 +00001106def ADD16ri_DB : I<0, Pseudo, (outs GR16:$dst), (ins GR16:$src1, i16imm:$src2),
1107 "", // orw/addw REG, imm
1108 [(set GR16:$dst, (or_is_add GR16:$src1, imm:$src2))]>;
1109
Chris Lattner15df55d2010-10-08 03:57:25 +00001110def ADD32ri8_DB : I<0, Pseudo,
1111 (outs GR32:$dst), (ins GR32:$src1, i32i8imm:$src2),
1112 "", // orl/addl REG, imm8
1113 [(set GR32:$dst,(or_is_add GR32:$src1,i32immSExt8:$src2))]>;
Rafael Espindola6d862802010-10-13 17:14:25 +00001114def ADD32ri_DB : I<0, Pseudo, (outs GR32:$dst), (ins GR32:$src1, i32imm:$src2),
1115 "", // orl/addl REG, imm
1116 [(set GR32:$dst, (or_is_add GR32:$src1, imm:$src2))]>;
1117
1118
Chris Lattner15df55d2010-10-08 03:57:25 +00001119def ADD64ri8_DB : I<0, Pseudo,
1120 (outs GR64:$dst), (ins GR64:$src1, i64i8imm:$src2),
1121 "", // orq/addq REG, imm8
1122 [(set GR64:$dst, (or_is_add GR64:$src1,
1123 i64immSExt8:$src2))]>;
Rafael Espindola6d862802010-10-13 17:14:25 +00001124def ADD64ri32_DB : I<0, Pseudo,
1125 (outs GR64:$dst), (ins GR64:$src1, i64i32imm:$src2),
1126 "", // orq/addq REG, imm
1127 [(set GR64:$dst, (or_is_add GR64:$src1,
1128 i64immSExt32:$src2))]>;
Chris Lattner99ae6652010-10-08 03:54:52 +00001129}
Chris Lattner99ae6652010-10-08 03:54:52 +00001130} // AddedComplexity
1131
1132
1133//===----------------------------------------------------------------------===//
Chris Lattner87be16a2010-10-05 06:04:14 +00001134// Some peepholes
1135//===----------------------------------------------------------------------===//
1136
1137// Odd encoding trick: -128 fits into an 8-bit immediate field while
1138// +128 doesn't, so in this special case use a sub instead of an add.
1139def : Pat<(add GR16:$src1, 128),
1140 (SUB16ri8 GR16:$src1, -128)>;
1141def : Pat<(store (add (loadi16 addr:$dst), 128), addr:$dst),
1142 (SUB16mi8 addr:$dst, -128)>;
1143
1144def : Pat<(add GR32:$src1, 128),
1145 (SUB32ri8 GR32:$src1, -128)>;
1146def : Pat<(store (add (loadi32 addr:$dst), 128), addr:$dst),
1147 (SUB32mi8 addr:$dst, -128)>;
1148
1149def : Pat<(add GR64:$src1, 128),
1150 (SUB64ri8 GR64:$src1, -128)>;
1151def : Pat<(store (add (loadi64 addr:$dst), 128), addr:$dst),
1152 (SUB64mi8 addr:$dst, -128)>;
1153
1154// The same trick applies for 32-bit immediate fields in 64-bit
1155// instructions.
1156def : Pat<(add GR64:$src1, 0x0000000080000000),
1157 (SUB64ri32 GR64:$src1, 0xffffffff80000000)>;
1158def : Pat<(store (add (loadi64 addr:$dst), 0x00000000800000000), addr:$dst),
1159 (SUB64mi32 addr:$dst, 0xffffffff80000000)>;
1160
Rafael Espindoladba81cf2010-10-13 13:31:20 +00001161// To avoid needing to materialize an immediate in a register, use a 32-bit and
1162// with implicit zero-extension instead of a 64-bit and if the immediate has at
1163// least 32 bits of leading zeros. If in addition the last 32 bits can be
1164// represented with a sign extension of a 8 bit constant, use that.
1165
1166def : Pat<(and GR64:$src, i64immZExt32SExt8:$imm),
1167 (SUBREG_TO_REG
1168 (i64 0),
1169 (AND32ri8
1170 (EXTRACT_SUBREG GR64:$src, sub_32bit),
1171 (i32 (GetLo8XForm imm:$imm))),
1172 sub_32bit)>;
1173
Chris Lattner87be16a2010-10-05 06:04:14 +00001174def : Pat<(and GR64:$src, i64immZExt32:$imm),
1175 (SUBREG_TO_REG
1176 (i64 0),
1177 (AND32ri
1178 (EXTRACT_SUBREG GR64:$src, sub_32bit),
1179 (i32 (GetLo32XForm imm:$imm))),
1180 sub_32bit)>;
1181
1182
1183// r & (2^16-1) ==> movz
1184def : Pat<(and GR32:$src1, 0xffff),
1185 (MOVZX32rr16 (EXTRACT_SUBREG GR32:$src1, sub_16bit))>;
1186// r & (2^8-1) ==> movz
1187def : Pat<(and GR32:$src1, 0xff),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001188 (MOVZX32rr8 (EXTRACT_SUBREG (i32 (COPY_TO_REGCLASS GR32:$src1,
Chris Lattner87be16a2010-10-05 06:04:14 +00001189 GR32_ABCD)),
1190 sub_8bit))>,
1191 Requires<[In32BitMode]>;
1192// r & (2^8-1) ==> movz
1193def : Pat<(and GR16:$src1, 0xff),
Stuart Hastings0e29ed02011-05-20 19:04:40 +00001194 (EXTRACT_SUBREG (MOVZX32rr8 (EXTRACT_SUBREG
1195 (i16 (COPY_TO_REGCLASS GR16:$src1, GR16_ABCD)), sub_8bit)),
1196 sub_16bit)>,
Chris Lattner87be16a2010-10-05 06:04:14 +00001197 Requires<[In32BitMode]>;
1198
1199// r & (2^32-1) ==> movz
1200def : Pat<(and GR64:$src, 0x00000000FFFFFFFF),
1201 (MOVZX64rr32 (EXTRACT_SUBREG GR64:$src, sub_32bit))>;
1202// r & (2^16-1) ==> movz
1203def : Pat<(and GR64:$src, 0xffff),
1204 (MOVZX64rr16 (i16 (EXTRACT_SUBREG GR64:$src, sub_16bit)))>;
1205// r & (2^8-1) ==> movz
1206def : Pat<(and GR64:$src, 0xff),
1207 (MOVZX64rr8 (i8 (EXTRACT_SUBREG GR64:$src, sub_8bit)))>;
1208// r & (2^8-1) ==> movz
1209def : Pat<(and GR32:$src1, 0xff),
1210 (MOVZX32rr8 (EXTRACT_SUBREG GR32:$src1, sub_8bit))>,
1211 Requires<[In64BitMode]>;
1212// r & (2^8-1) ==> movz
1213def : Pat<(and GR16:$src1, 0xff),
Stuart Hastings0e29ed02011-05-20 19:04:40 +00001214 (EXTRACT_SUBREG (MOVZX32rr8 (i8
1215 (EXTRACT_SUBREG GR16:$src1, sub_8bit))), sub_16bit)>,
Chris Lattner87be16a2010-10-05 06:04:14 +00001216 Requires<[In64BitMode]>;
1217
1218
1219// sext_inreg patterns
1220def : Pat<(sext_inreg GR32:$src, i16),
1221 (MOVSX32rr16 (EXTRACT_SUBREG GR32:$src, sub_16bit))>;
1222def : Pat<(sext_inreg GR32:$src, i8),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001223 (MOVSX32rr8 (EXTRACT_SUBREG (i32 (COPY_TO_REGCLASS GR32:$src,
Chris Lattner87be16a2010-10-05 06:04:14 +00001224 GR32_ABCD)),
1225 sub_8bit))>,
1226 Requires<[In32BitMode]>;
Stuart Hastings0e29ed02011-05-20 19:04:40 +00001227
Chris Lattner87be16a2010-10-05 06:04:14 +00001228def : Pat<(sext_inreg GR16:$src, i8),
Stuart Hastings0e29ed02011-05-20 19:04:40 +00001229 (EXTRACT_SUBREG (i32 (MOVSX32rr8 (EXTRACT_SUBREG
1230 (i32 (COPY_TO_REGCLASS GR16:$src, GR16_ABCD)), sub_8bit))),
1231 sub_16bit)>,
Chris Lattner87be16a2010-10-05 06:04:14 +00001232 Requires<[In32BitMode]>;
1233
1234def : Pat<(sext_inreg GR64:$src, i32),
1235 (MOVSX64rr32 (EXTRACT_SUBREG GR64:$src, sub_32bit))>;
1236def : Pat<(sext_inreg GR64:$src, i16),
1237 (MOVSX64rr16 (EXTRACT_SUBREG GR64:$src, sub_16bit))>;
1238def : Pat<(sext_inreg GR64:$src, i8),
1239 (MOVSX64rr8 (EXTRACT_SUBREG GR64:$src, sub_8bit))>;
1240def : Pat<(sext_inreg GR32:$src, i8),
1241 (MOVSX32rr8 (EXTRACT_SUBREG GR32:$src, sub_8bit))>,
1242 Requires<[In64BitMode]>;
1243def : Pat<(sext_inreg GR16:$src, i8),
Stuart Hastings0e29ed02011-05-20 19:04:40 +00001244 (EXTRACT_SUBREG (MOVSX32rr8
1245 (EXTRACT_SUBREG GR16:$src, sub_8bit)), sub_16bit)>,
Chris Lattner87be16a2010-10-05 06:04:14 +00001246 Requires<[In64BitMode]>;
1247
Stuart Hastings0e29ed02011-05-20 19:04:40 +00001248// sext, sext_load, zext, zext_load
1249def: Pat<(i16 (sext GR8:$src)),
1250 (EXTRACT_SUBREG (MOVSX32rr8 GR8:$src), sub_16bit)>;
1251def: Pat<(sextloadi16i8 addr:$src),
1252 (EXTRACT_SUBREG (MOVSX32rm8 addr:$src), sub_16bit)>;
1253def: Pat<(i16 (zext GR8:$src)),
1254 (EXTRACT_SUBREG (MOVZX32rr8 GR8:$src), sub_16bit)>;
1255def: Pat<(zextloadi16i8 addr:$src),
1256 (EXTRACT_SUBREG (MOVZX32rm8 addr:$src), sub_16bit)>;
Stuart Hastingsd22f0362011-05-19 17:54:42 +00001257
Chris Lattner87be16a2010-10-05 06:04:14 +00001258// trunc patterns
1259def : Pat<(i16 (trunc GR32:$src)),
1260 (EXTRACT_SUBREG GR32:$src, sub_16bit)>;
1261def : Pat<(i8 (trunc GR32:$src)),
1262 (EXTRACT_SUBREG (i32 (COPY_TO_REGCLASS GR32:$src, GR32_ABCD)),
1263 sub_8bit)>,
1264 Requires<[In32BitMode]>;
1265def : Pat<(i8 (trunc GR16:$src)),
1266 (EXTRACT_SUBREG (i16 (COPY_TO_REGCLASS GR16:$src, GR16_ABCD)),
1267 sub_8bit)>,
1268 Requires<[In32BitMode]>;
1269def : Pat<(i32 (trunc GR64:$src)),
1270 (EXTRACT_SUBREG GR64:$src, sub_32bit)>;
1271def : Pat<(i16 (trunc GR64:$src)),
1272 (EXTRACT_SUBREG GR64:$src, sub_16bit)>;
1273def : Pat<(i8 (trunc GR64:$src)),
1274 (EXTRACT_SUBREG GR64:$src, sub_8bit)>;
1275def : Pat<(i8 (trunc GR32:$src)),
1276 (EXTRACT_SUBREG GR32:$src, sub_8bit)>,
1277 Requires<[In64BitMode]>;
1278def : Pat<(i8 (trunc GR16:$src)),
1279 (EXTRACT_SUBREG GR16:$src, sub_8bit)>,
1280 Requires<[In64BitMode]>;
1281
1282// h-register tricks
1283def : Pat<(i8 (trunc (srl_su GR16:$src, (i8 8)))),
1284 (EXTRACT_SUBREG (i16 (COPY_TO_REGCLASS GR16:$src, GR16_ABCD)),
1285 sub_8bit_hi)>,
1286 Requires<[In32BitMode]>;
1287def : Pat<(i8 (trunc (srl_su GR32:$src, (i8 8)))),
1288 (EXTRACT_SUBREG (i32 (COPY_TO_REGCLASS GR32:$src, GR32_ABCD)),
1289 sub_8bit_hi)>,
1290 Requires<[In32BitMode]>;
1291def : Pat<(srl GR16:$src, (i8 8)),
1292 (EXTRACT_SUBREG
1293 (MOVZX32rr8
1294 (EXTRACT_SUBREG (i16 (COPY_TO_REGCLASS GR16:$src, GR16_ABCD)),
1295 sub_8bit_hi)),
1296 sub_16bit)>,
1297 Requires<[In32BitMode]>;
1298def : Pat<(i32 (zext (srl_su GR16:$src, (i8 8)))),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001299 (MOVZX32rr8 (EXTRACT_SUBREG (i16 (COPY_TO_REGCLASS GR16:$src,
Chris Lattner87be16a2010-10-05 06:04:14 +00001300 GR16_ABCD)),
1301 sub_8bit_hi))>,
1302 Requires<[In32BitMode]>;
1303def : Pat<(i32 (anyext (srl_su GR16:$src, (i8 8)))),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001304 (MOVZX32rr8 (EXTRACT_SUBREG (i16 (COPY_TO_REGCLASS GR16:$src,
Chris Lattner87be16a2010-10-05 06:04:14 +00001305 GR16_ABCD)),
1306 sub_8bit_hi))>,
1307 Requires<[In32BitMode]>;
1308def : Pat<(and (srl_su GR32:$src, (i8 8)), (i32 255)),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001309 (MOVZX32rr8 (EXTRACT_SUBREG (i32 (COPY_TO_REGCLASS GR32:$src,
Chris Lattner87be16a2010-10-05 06:04:14 +00001310 GR32_ABCD)),
1311 sub_8bit_hi))>,
1312 Requires<[In32BitMode]>;
1313def : Pat<(srl (and_su GR32:$src, 0xff00), (i8 8)),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001314 (MOVZX32rr8 (EXTRACT_SUBREG (i32 (COPY_TO_REGCLASS GR32:$src,
Chris Lattner87be16a2010-10-05 06:04:14 +00001315 GR32_ABCD)),
1316 sub_8bit_hi))>,
1317 Requires<[In32BitMode]>;
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001318
Chris Lattner87be16a2010-10-05 06:04:14 +00001319// h-register tricks.
1320// For now, be conservative on x86-64 and use an h-register extract only if the
1321// value is immediately zero-extended or stored, which are somewhat common
1322// cases. This uses a bunch of code to prevent a register requiring a REX prefix
1323// from being allocated in the same instruction as the h register, as there's
1324// currently no way to describe this requirement to the register allocator.
1325
1326// h-register extract and zero-extend.
1327def : Pat<(and (srl_su GR64:$src, (i8 8)), (i64 255)),
1328 (SUBREG_TO_REG
1329 (i64 0),
1330 (MOVZX32_NOREXrr8
1331 (EXTRACT_SUBREG (i64 (COPY_TO_REGCLASS GR64:$src, GR64_ABCD)),
1332 sub_8bit_hi)),
1333 sub_32bit)>;
1334def : Pat<(and (srl_su GR32:$src, (i8 8)), (i32 255)),
1335 (MOVZX32_NOREXrr8
1336 (EXTRACT_SUBREG (i32 (COPY_TO_REGCLASS GR32:$src, GR32_ABCD)),
1337 sub_8bit_hi))>,
1338 Requires<[In64BitMode]>;
1339def : Pat<(srl (and_su GR32:$src, 0xff00), (i8 8)),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001340 (MOVZX32_NOREXrr8 (EXTRACT_SUBREG (i32 (COPY_TO_REGCLASS GR32:$src,
Chris Lattner87be16a2010-10-05 06:04:14 +00001341 GR32_ABCD)),
1342 sub_8bit_hi))>,
1343 Requires<[In64BitMode]>;
1344def : Pat<(srl GR16:$src, (i8 8)),
1345 (EXTRACT_SUBREG
1346 (MOVZX32_NOREXrr8
1347 (EXTRACT_SUBREG (i16 (COPY_TO_REGCLASS GR16:$src, GR16_ABCD)),
1348 sub_8bit_hi)),
1349 sub_16bit)>,
1350 Requires<[In64BitMode]>;
1351def : Pat<(i32 (zext (srl_su GR16:$src, (i8 8)))),
1352 (MOVZX32_NOREXrr8
1353 (EXTRACT_SUBREG (i16 (COPY_TO_REGCLASS GR16:$src, GR16_ABCD)),
1354 sub_8bit_hi))>,
1355 Requires<[In64BitMode]>;
1356def : Pat<(i32 (anyext (srl_su GR16:$src, (i8 8)))),
1357 (MOVZX32_NOREXrr8
1358 (EXTRACT_SUBREG (i16 (COPY_TO_REGCLASS GR16:$src, GR16_ABCD)),
1359 sub_8bit_hi))>,
1360 Requires<[In64BitMode]>;
1361def : Pat<(i64 (zext (srl_su GR16:$src, (i8 8)))),
1362 (SUBREG_TO_REG
1363 (i64 0),
1364 (MOVZX32_NOREXrr8
1365 (EXTRACT_SUBREG (i16 (COPY_TO_REGCLASS GR16:$src, GR16_ABCD)),
1366 sub_8bit_hi)),
1367 sub_32bit)>;
1368def : Pat<(i64 (anyext (srl_su GR16:$src, (i8 8)))),
1369 (SUBREG_TO_REG
1370 (i64 0),
1371 (MOVZX32_NOREXrr8
1372 (EXTRACT_SUBREG (i16 (COPY_TO_REGCLASS GR16:$src, GR16_ABCD)),
1373 sub_8bit_hi)),
1374 sub_32bit)>;
1375
1376// h-register extract and store.
1377def : Pat<(store (i8 (trunc_su (srl_su GR64:$src, (i8 8)))), addr:$dst),
1378 (MOV8mr_NOREX
1379 addr:$dst,
1380 (EXTRACT_SUBREG (i64 (COPY_TO_REGCLASS GR64:$src, GR64_ABCD)),
1381 sub_8bit_hi))>;
1382def : Pat<(store (i8 (trunc_su (srl_su GR32:$src, (i8 8)))), addr:$dst),
1383 (MOV8mr_NOREX
1384 addr:$dst,
1385 (EXTRACT_SUBREG (i32 (COPY_TO_REGCLASS GR32:$src, GR32_ABCD)),
1386 sub_8bit_hi))>,
1387 Requires<[In64BitMode]>;
1388def : Pat<(store (i8 (trunc_su (srl_su GR16:$src, (i8 8)))), addr:$dst),
1389 (MOV8mr_NOREX
1390 addr:$dst,
1391 (EXTRACT_SUBREG (i16 (COPY_TO_REGCLASS GR16:$src, GR16_ABCD)),
1392 sub_8bit_hi))>,
1393 Requires<[In64BitMode]>;
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001394
1395
Chris Lattner87be16a2010-10-05 06:04:14 +00001396// (shl x, 1) ==> (add x, x)
Dan Gohmana0697a72011-06-16 15:55:48 +00001397// Note that if x is undef (immediate or otherwise), we could theoretically
1398// end up with the two uses of x getting different values, producing a result
1399// where the least significant bit is not 0. However, the probability of this
1400// happening is considered low enough that this is officially not a
1401// "real problem".
Chris Lattner87be16a2010-10-05 06:04:14 +00001402def : Pat<(shl GR8 :$src1, (i8 1)), (ADD8rr GR8 :$src1, GR8 :$src1)>;
1403def : Pat<(shl GR16:$src1, (i8 1)), (ADD16rr GR16:$src1, GR16:$src1)>;
1404def : Pat<(shl GR32:$src1, (i8 1)), (ADD32rr GR32:$src1, GR32:$src1)>;
1405def : Pat<(shl GR64:$src1, (i8 1)), (ADD64rr GR64:$src1, GR64:$src1)>;
1406
1407// (shl x (and y, 31)) ==> (shl x, y)
1408def : Pat<(shl GR8:$src1, (and CL, 31)),
1409 (SHL8rCL GR8:$src1)>;
1410def : Pat<(shl GR16:$src1, (and CL, 31)),
1411 (SHL16rCL GR16:$src1)>;
1412def : Pat<(shl GR32:$src1, (and CL, 31)),
1413 (SHL32rCL GR32:$src1)>;
1414def : Pat<(store (shl (loadi8 addr:$dst), (and CL, 31)), addr:$dst),
1415 (SHL8mCL addr:$dst)>;
1416def : Pat<(store (shl (loadi16 addr:$dst), (and CL, 31)), addr:$dst),
1417 (SHL16mCL addr:$dst)>;
1418def : Pat<(store (shl (loadi32 addr:$dst), (and CL, 31)), addr:$dst),
1419 (SHL32mCL addr:$dst)>;
1420
1421def : Pat<(srl GR8:$src1, (and CL, 31)),
1422 (SHR8rCL GR8:$src1)>;
1423def : Pat<(srl GR16:$src1, (and CL, 31)),
1424 (SHR16rCL GR16:$src1)>;
1425def : Pat<(srl GR32:$src1, (and CL, 31)),
1426 (SHR32rCL GR32:$src1)>;
1427def : Pat<(store (srl (loadi8 addr:$dst), (and CL, 31)), addr:$dst),
1428 (SHR8mCL addr:$dst)>;
1429def : Pat<(store (srl (loadi16 addr:$dst), (and CL, 31)), addr:$dst),
1430 (SHR16mCL addr:$dst)>;
1431def : Pat<(store (srl (loadi32 addr:$dst), (and CL, 31)), addr:$dst),
1432 (SHR32mCL addr:$dst)>;
1433
1434def : Pat<(sra GR8:$src1, (and CL, 31)),
1435 (SAR8rCL GR8:$src1)>;
1436def : Pat<(sra GR16:$src1, (and CL, 31)),
1437 (SAR16rCL GR16:$src1)>;
1438def : Pat<(sra GR32:$src1, (and CL, 31)),
1439 (SAR32rCL GR32:$src1)>;
1440def : Pat<(store (sra (loadi8 addr:$dst), (and CL, 31)), addr:$dst),
1441 (SAR8mCL addr:$dst)>;
1442def : Pat<(store (sra (loadi16 addr:$dst), (and CL, 31)), addr:$dst),
1443 (SAR16mCL addr:$dst)>;
1444def : Pat<(store (sra (loadi32 addr:$dst), (and CL, 31)), addr:$dst),
1445 (SAR32mCL addr:$dst)>;
1446
1447// (shl x (and y, 63)) ==> (shl x, y)
1448def : Pat<(shl GR64:$src1, (and CL, 63)),
1449 (SHL64rCL GR64:$src1)>;
1450def : Pat<(store (shl (loadi64 addr:$dst), (and CL, 63)), addr:$dst),
1451 (SHL64mCL addr:$dst)>;
1452
1453def : Pat<(srl GR64:$src1, (and CL, 63)),
1454 (SHR64rCL GR64:$src1)>;
1455def : Pat<(store (srl (loadi64 addr:$dst), (and CL, 63)), addr:$dst),
1456 (SHR64mCL addr:$dst)>;
1457
1458def : Pat<(sra GR64:$src1, (and CL, 63)),
1459 (SAR64rCL GR64:$src1)>;
1460def : Pat<(store (sra (loadi64 addr:$dst), (and CL, 63)), addr:$dst),
1461 (SAR64mCL addr:$dst)>;
1462
1463
1464// (anyext (setcc_carry)) -> (setcc_carry)
1465def : Pat<(i16 (anyext (i8 (X86setcc_c X86_COND_B, EFLAGS)))),
1466 (SETB_C16r)>;
1467def : Pat<(i32 (anyext (i8 (X86setcc_c X86_COND_B, EFLAGS)))),
1468 (SETB_C32r)>;
1469def : Pat<(i32 (anyext (i16 (X86setcc_c X86_COND_B, EFLAGS)))),
1470 (SETB_C32r)>;
1471
Chris Lattner99ae6652010-10-08 03:54:52 +00001472
1473
Chris Lattner87be16a2010-10-05 06:04:14 +00001474
1475//===----------------------------------------------------------------------===//
1476// EFLAGS-defining Patterns
1477//===----------------------------------------------------------------------===//
1478
1479// add reg, reg
1480def : Pat<(add GR8 :$src1, GR8 :$src2), (ADD8rr GR8 :$src1, GR8 :$src2)>;
1481def : Pat<(add GR16:$src1, GR16:$src2), (ADD16rr GR16:$src1, GR16:$src2)>;
1482def : Pat<(add GR32:$src1, GR32:$src2), (ADD32rr GR32:$src1, GR32:$src2)>;
1483
1484// add reg, mem
1485def : Pat<(add GR8:$src1, (loadi8 addr:$src2)),
1486 (ADD8rm GR8:$src1, addr:$src2)>;
1487def : Pat<(add GR16:$src1, (loadi16 addr:$src2)),
1488 (ADD16rm GR16:$src1, addr:$src2)>;
1489def : Pat<(add GR32:$src1, (loadi32 addr:$src2)),
1490 (ADD32rm GR32:$src1, addr:$src2)>;
1491
1492// add reg, imm
1493def : Pat<(add GR8 :$src1, imm:$src2), (ADD8ri GR8:$src1 , imm:$src2)>;
1494def : Pat<(add GR16:$src1, imm:$src2), (ADD16ri GR16:$src1, imm:$src2)>;
1495def : Pat<(add GR32:$src1, imm:$src2), (ADD32ri GR32:$src1, imm:$src2)>;
1496def : Pat<(add GR16:$src1, i16immSExt8:$src2),
1497 (ADD16ri8 GR16:$src1, i16immSExt8:$src2)>;
1498def : Pat<(add GR32:$src1, i32immSExt8:$src2),
1499 (ADD32ri8 GR32:$src1, i32immSExt8:$src2)>;
1500
1501// sub reg, reg
1502def : Pat<(sub GR8 :$src1, GR8 :$src2), (SUB8rr GR8 :$src1, GR8 :$src2)>;
1503def : Pat<(sub GR16:$src1, GR16:$src2), (SUB16rr GR16:$src1, GR16:$src2)>;
1504def : Pat<(sub GR32:$src1, GR32:$src2), (SUB32rr GR32:$src1, GR32:$src2)>;
1505
1506// sub reg, mem
1507def : Pat<(sub GR8:$src1, (loadi8 addr:$src2)),
1508 (SUB8rm GR8:$src1, addr:$src2)>;
1509def : Pat<(sub GR16:$src1, (loadi16 addr:$src2)),
1510 (SUB16rm GR16:$src1, addr:$src2)>;
1511def : Pat<(sub GR32:$src1, (loadi32 addr:$src2)),
1512 (SUB32rm GR32:$src1, addr:$src2)>;
1513
1514// sub reg, imm
1515def : Pat<(sub GR8:$src1, imm:$src2),
1516 (SUB8ri GR8:$src1, imm:$src2)>;
1517def : Pat<(sub GR16:$src1, imm:$src2),
1518 (SUB16ri GR16:$src1, imm:$src2)>;
1519def : Pat<(sub GR32:$src1, imm:$src2),
1520 (SUB32ri GR32:$src1, imm:$src2)>;
1521def : Pat<(sub GR16:$src1, i16immSExt8:$src2),
1522 (SUB16ri8 GR16:$src1, i16immSExt8:$src2)>;
1523def : Pat<(sub GR32:$src1, i32immSExt8:$src2),
1524 (SUB32ri8 GR32:$src1, i32immSExt8:$src2)>;
1525
1526// mul reg, reg
1527def : Pat<(mul GR16:$src1, GR16:$src2),
1528 (IMUL16rr GR16:$src1, GR16:$src2)>;
1529def : Pat<(mul GR32:$src1, GR32:$src2),
1530 (IMUL32rr GR32:$src1, GR32:$src2)>;
1531
1532// mul reg, mem
1533def : Pat<(mul GR16:$src1, (loadi16 addr:$src2)),
1534 (IMUL16rm GR16:$src1, addr:$src2)>;
1535def : Pat<(mul GR32:$src1, (loadi32 addr:$src2)),
1536 (IMUL32rm GR32:$src1, addr:$src2)>;
1537
1538// mul reg, imm
1539def : Pat<(mul GR16:$src1, imm:$src2),
1540 (IMUL16rri GR16:$src1, imm:$src2)>;
1541def : Pat<(mul GR32:$src1, imm:$src2),
1542 (IMUL32rri GR32:$src1, imm:$src2)>;
1543def : Pat<(mul GR16:$src1, i16immSExt8:$src2),
1544 (IMUL16rri8 GR16:$src1, i16immSExt8:$src2)>;
1545def : Pat<(mul GR32:$src1, i32immSExt8:$src2),
1546 (IMUL32rri8 GR32:$src1, i32immSExt8:$src2)>;
1547
1548// reg = mul mem, imm
1549def : Pat<(mul (loadi16 addr:$src1), imm:$src2),
1550 (IMUL16rmi addr:$src1, imm:$src2)>;
1551def : Pat<(mul (loadi32 addr:$src1), imm:$src2),
1552 (IMUL32rmi addr:$src1, imm:$src2)>;
1553def : Pat<(mul (loadi16 addr:$src1), i16immSExt8:$src2),
1554 (IMUL16rmi8 addr:$src1, i16immSExt8:$src2)>;
1555def : Pat<(mul (loadi32 addr:$src1), i32immSExt8:$src2),
1556 (IMUL32rmi8 addr:$src1, i32immSExt8:$src2)>;
1557
Chris Lattner87be16a2010-10-05 06:04:14 +00001558// Patterns for nodes that do not produce flags, for instructions that do.
1559
1560// addition
1561def : Pat<(add GR64:$src1, GR64:$src2),
1562 (ADD64rr GR64:$src1, GR64:$src2)>;
1563def : Pat<(add GR64:$src1, i64immSExt8:$src2),
1564 (ADD64ri8 GR64:$src1, i64immSExt8:$src2)>;
1565def : Pat<(add GR64:$src1, i64immSExt32:$src2),
1566 (ADD64ri32 GR64:$src1, i64immSExt32:$src2)>;
1567def : Pat<(add GR64:$src1, (loadi64 addr:$src2)),
1568 (ADD64rm GR64:$src1, addr:$src2)>;
1569
1570// subtraction
1571def : Pat<(sub GR64:$src1, GR64:$src2),
1572 (SUB64rr GR64:$src1, GR64:$src2)>;
1573def : Pat<(sub GR64:$src1, (loadi64 addr:$src2)),
1574 (SUB64rm GR64:$src1, addr:$src2)>;
1575def : Pat<(sub GR64:$src1, i64immSExt8:$src2),
1576 (SUB64ri8 GR64:$src1, i64immSExt8:$src2)>;
1577def : Pat<(sub GR64:$src1, i64immSExt32:$src2),
1578 (SUB64ri32 GR64:$src1, i64immSExt32:$src2)>;
1579
1580// Multiply
1581def : Pat<(mul GR64:$src1, GR64:$src2),
1582 (IMUL64rr GR64:$src1, GR64:$src2)>;
1583def : Pat<(mul GR64:$src1, (loadi64 addr:$src2)),
1584 (IMUL64rm GR64:$src1, addr:$src2)>;
1585def : Pat<(mul GR64:$src1, i64immSExt8:$src2),
1586 (IMUL64rri8 GR64:$src1, i64immSExt8:$src2)>;
1587def : Pat<(mul GR64:$src1, i64immSExt32:$src2),
1588 (IMUL64rri32 GR64:$src1, i64immSExt32:$src2)>;
1589def : Pat<(mul (loadi64 addr:$src1), i64immSExt8:$src2),
1590 (IMUL64rmi8 addr:$src1, i64immSExt8:$src2)>;
1591def : Pat<(mul (loadi64 addr:$src1), i64immSExt32:$src2),
1592 (IMUL64rmi32 addr:$src1, i64immSExt32:$src2)>;
1593
1594// Increment reg.
1595def : Pat<(add GR8 :$src, 1), (INC8r GR8 :$src)>;
1596def : Pat<(add GR16:$src, 1), (INC16r GR16:$src)>, Requires<[In32BitMode]>;
1597def : Pat<(add GR16:$src, 1), (INC64_16r GR16:$src)>, Requires<[In64BitMode]>;
1598def : Pat<(add GR32:$src, 1), (INC32r GR32:$src)>, Requires<[In32BitMode]>;
1599def : Pat<(add GR32:$src, 1), (INC64_32r GR32:$src)>, Requires<[In64BitMode]>;
1600def : Pat<(add GR64:$src, 1), (INC64r GR64:$src)>;
1601
1602// Decrement reg.
1603def : Pat<(add GR8 :$src, -1), (DEC8r GR8 :$src)>;
1604def : Pat<(add GR16:$src, -1), (DEC16r GR16:$src)>, Requires<[In32BitMode]>;
1605def : Pat<(add GR16:$src, -1), (DEC64_16r GR16:$src)>, Requires<[In64BitMode]>;
1606def : Pat<(add GR32:$src, -1), (DEC32r GR32:$src)>, Requires<[In32BitMode]>;
1607def : Pat<(add GR32:$src, -1), (DEC64_32r GR32:$src)>, Requires<[In64BitMode]>;
1608def : Pat<(add GR64:$src, -1), (DEC64r GR64:$src)>;
1609
1610// or reg/reg.
1611def : Pat<(or GR8 :$src1, GR8 :$src2), (OR8rr GR8 :$src1, GR8 :$src2)>;
1612def : Pat<(or GR16:$src1, GR16:$src2), (OR16rr GR16:$src1, GR16:$src2)>;
1613def : Pat<(or GR32:$src1, GR32:$src2), (OR32rr GR32:$src1, GR32:$src2)>;
1614def : Pat<(or GR64:$src1, GR64:$src2), (OR64rr GR64:$src1, GR64:$src2)>;
1615
1616// or reg/mem
1617def : Pat<(or GR8:$src1, (loadi8 addr:$src2)),
1618 (OR8rm GR8:$src1, addr:$src2)>;
1619def : Pat<(or GR16:$src1, (loadi16 addr:$src2)),
1620 (OR16rm GR16:$src1, addr:$src2)>;
1621def : Pat<(or GR32:$src1, (loadi32 addr:$src2)),
1622 (OR32rm GR32:$src1, addr:$src2)>;
1623def : Pat<(or GR64:$src1, (loadi64 addr:$src2)),
1624 (OR64rm GR64:$src1, addr:$src2)>;
1625
1626// or reg/imm
1627def : Pat<(or GR8:$src1 , imm:$src2), (OR8ri GR8 :$src1, imm:$src2)>;
1628def : Pat<(or GR16:$src1, imm:$src2), (OR16ri GR16:$src1, imm:$src2)>;
1629def : Pat<(or GR32:$src1, imm:$src2), (OR32ri GR32:$src1, imm:$src2)>;
1630def : Pat<(or GR16:$src1, i16immSExt8:$src2),
1631 (OR16ri8 GR16:$src1, i16immSExt8:$src2)>;
1632def : Pat<(or GR32:$src1, i32immSExt8:$src2),
1633 (OR32ri8 GR32:$src1, i32immSExt8:$src2)>;
1634def : Pat<(or GR64:$src1, i64immSExt8:$src2),
1635 (OR64ri8 GR64:$src1, i64immSExt8:$src2)>;
1636def : Pat<(or GR64:$src1, i64immSExt32:$src2),
1637 (OR64ri32 GR64:$src1, i64immSExt32:$src2)>;
1638
1639// xor reg/reg
1640def : Pat<(xor GR8 :$src1, GR8 :$src2), (XOR8rr GR8 :$src1, GR8 :$src2)>;
1641def : Pat<(xor GR16:$src1, GR16:$src2), (XOR16rr GR16:$src1, GR16:$src2)>;
1642def : Pat<(xor GR32:$src1, GR32:$src2), (XOR32rr GR32:$src1, GR32:$src2)>;
1643def : Pat<(xor GR64:$src1, GR64:$src2), (XOR64rr GR64:$src1, GR64:$src2)>;
1644
1645// xor reg/mem
1646def : Pat<(xor GR8:$src1, (loadi8 addr:$src2)),
1647 (XOR8rm GR8:$src1, addr:$src2)>;
1648def : Pat<(xor GR16:$src1, (loadi16 addr:$src2)),
1649 (XOR16rm GR16:$src1, addr:$src2)>;
1650def : Pat<(xor GR32:$src1, (loadi32 addr:$src2)),
1651 (XOR32rm GR32:$src1, addr:$src2)>;
1652def : Pat<(xor GR64:$src1, (loadi64 addr:$src2)),
1653 (XOR64rm GR64:$src1, addr:$src2)>;
1654
1655// xor reg/imm
1656def : Pat<(xor GR8:$src1, imm:$src2),
1657 (XOR8ri GR8:$src1, imm:$src2)>;
1658def : Pat<(xor GR16:$src1, imm:$src2),
1659 (XOR16ri GR16:$src1, imm:$src2)>;
1660def : Pat<(xor GR32:$src1, imm:$src2),
1661 (XOR32ri GR32:$src1, imm:$src2)>;
1662def : Pat<(xor GR16:$src1, i16immSExt8:$src2),
1663 (XOR16ri8 GR16:$src1, i16immSExt8:$src2)>;
1664def : Pat<(xor GR32:$src1, i32immSExt8:$src2),
1665 (XOR32ri8 GR32:$src1, i32immSExt8:$src2)>;
1666def : Pat<(xor GR64:$src1, i64immSExt8:$src2),
1667 (XOR64ri8 GR64:$src1, i64immSExt8:$src2)>;
1668def : Pat<(xor GR64:$src1, i64immSExt32:$src2),
1669 (XOR64ri32 GR64:$src1, i64immSExt32:$src2)>;
1670
1671// and reg/reg
1672def : Pat<(and GR8 :$src1, GR8 :$src2), (AND8rr GR8 :$src1, GR8 :$src2)>;
1673def : Pat<(and GR16:$src1, GR16:$src2), (AND16rr GR16:$src1, GR16:$src2)>;
1674def : Pat<(and GR32:$src1, GR32:$src2), (AND32rr GR32:$src1, GR32:$src2)>;
1675def : Pat<(and GR64:$src1, GR64:$src2), (AND64rr GR64:$src1, GR64:$src2)>;
1676
1677// and reg/mem
1678def : Pat<(and GR8:$src1, (loadi8 addr:$src2)),
1679 (AND8rm GR8:$src1, addr:$src2)>;
1680def : Pat<(and GR16:$src1, (loadi16 addr:$src2)),
1681 (AND16rm GR16:$src1, addr:$src2)>;
1682def : Pat<(and GR32:$src1, (loadi32 addr:$src2)),
1683 (AND32rm GR32:$src1, addr:$src2)>;
1684def : Pat<(and GR64:$src1, (loadi64 addr:$src2)),
1685 (AND64rm GR64:$src1, addr:$src2)>;
1686
1687// and reg/imm
1688def : Pat<(and GR8:$src1, imm:$src2),
1689 (AND8ri GR8:$src1, imm:$src2)>;
1690def : Pat<(and GR16:$src1, imm:$src2),
1691 (AND16ri GR16:$src1, imm:$src2)>;
1692def : Pat<(and GR32:$src1, imm:$src2),
1693 (AND32ri GR32:$src1, imm:$src2)>;
1694def : Pat<(and GR16:$src1, i16immSExt8:$src2),
1695 (AND16ri8 GR16:$src1, i16immSExt8:$src2)>;
1696def : Pat<(and GR32:$src1, i32immSExt8:$src2),
1697 (AND32ri8 GR32:$src1, i32immSExt8:$src2)>;
1698def : Pat<(and GR64:$src1, i64immSExt8:$src2),
1699 (AND64ri8 GR64:$src1, i64immSExt8:$src2)>;
1700def : Pat<(and GR64:$src1, i64immSExt32:$src2),
1701 (AND64ri32 GR64:$src1, i64immSExt32:$src2)>;
Eli Friedman327236c2011-08-24 20:50:09 +00001702
1703def : Pat<(atomic_load_8 addr:$src), (MOV8rm addr:$src)>;
1704def : Pat<(atomic_load_16 addr:$src), (MOV16rm addr:$src)>;
1705def : Pat<(atomic_load_32 addr:$src), (MOV32rm addr:$src)>;
1706def : Pat<(atomic_load_64 addr:$src), (MOV64rm addr:$src)>;
1707
1708def : Pat<(atomic_store_8 addr:$ptr, GR8:$val),
1709 (MOV8mr addr:$ptr, GR8:$val)>;
1710def : Pat<(atomic_store_16 addr:$ptr, GR16:$val),
1711 (MOV16mr addr:$ptr, GR16:$val)>;
1712def : Pat<(atomic_store_32 addr:$ptr, GR32:$val),
1713 (MOV32mr addr:$ptr, GR32:$val)>;
1714def : Pat<(atomic_store_64 addr:$ptr, GR64:$val),
1715 (MOV64mr addr:$ptr, GR64:$val)>;