blob: 4748f130ed83d4ef1c33b7b44e97996c36465538 [file] [log] [blame]
Chris Lattner434c7cb2010-10-05 05:32:15 +00001//===- X86InstrInfo.td - Main X86 Instruction Definition ---*- tablegen -*-===//
Michael J. Spencer6e56b182010-10-20 23:40:27 +00002//
John Criswell856ba762003-10-21 15:17:13 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// 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//
John Criswell856ba762003-10-21 15:17:13 +00008//===----------------------------------------------------------------------===//
Chris Lattner1cca5e32003-08-03 21:54:21 +00009//
10// This file describes the X86 instruction set, defining the instructions, and
11// properties of the instructions which are needed for code generation, machine
12// code emission, and analysis.
13//
14//===----------------------------------------------------------------------===//
15
Evan Chengaed7c722005-12-17 01:24:02 +000016//===----------------------------------------------------------------------===//
17// X86 specific DAG Nodes.
18//
19
Evan Chenge3413162006-01-09 18:33:28 +000020def SDTIntShiftDOp: SDTypeProfile<1, 3,
21 [SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>,
22 SDTCisInt<0>, SDTCisInt<3>]>;
23
Chris Lattnere3486a42010-03-19 00:01:11 +000024def SDTX86CmpTest : SDTypeProfile<1, 2, [SDTCisVT<0, i32>, SDTCisSameAs<1, 2>]>;
Evan Chengaed7c722005-12-17 01:24:02 +000025
Evan Chenge5f62042007-09-29 00:00:36 +000026def SDTX86Cmov : SDTypeProfile<1, 4,
Evan Cheng0488db92007-09-25 01:57:46 +000027 [SDTCisSameAs<0, 1>, SDTCisSameAs<1, 2>,
28 SDTCisVT<3, i8>, SDTCisVT<4, i32>]>;
Evan Chengaed7c722005-12-17 01:24:02 +000029
Dan Gohman076aee32009-03-04 19:44:21 +000030// Unary and binary operator instructions that set EFLAGS as a side-effect.
Chris Lattner74c8d672010-03-24 00:47:47 +000031def SDTUnaryArithWithFlags : SDTypeProfile<2, 1,
32 [SDTCisInt<0>, SDTCisVT<1, i32>]>;
33
Chris Lattner1aec4d72010-03-24 00:49:29 +000034def SDTBinaryArithWithFlags : SDTypeProfile<2, 2,
35 [SDTCisSameAs<0, 2>,
36 SDTCisSameAs<0, 3>,
37 SDTCisInt<0>, SDTCisVT<1, i32>]>;
Chris Lattner5b856542010-12-20 00:59:46 +000038
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000039// SDTBinaryArithWithFlagsInOut - RES1, EFLAGS = op LHS, RHS, EFLAGS
Chris Lattner5b856542010-12-20 00:59:46 +000040def SDTBinaryArithWithFlagsInOut : SDTypeProfile<2, 3,
41 [SDTCisSameAs<0, 2>,
42 SDTCisSameAs<0, 3>,
43 SDTCisInt<0>,
44 SDTCisVT<1, i32>,
45 SDTCisVT<4, i32>]>;
Chris Lattnerb20e0b12010-12-05 07:30:36 +000046// RES1, RES2, FLAGS = op LHS, RHS
47def SDT2ResultBinaryArithWithFlags : SDTypeProfile<3, 2,
48 [SDTCisSameAs<0, 1>,
49 SDTCisSameAs<0, 2>,
50 SDTCisSameAs<0, 3>,
51 SDTCisInt<0>, SDTCisVT<1, i32>]>;
Evan Chenge5f62042007-09-29 00:00:36 +000052def SDTX86BrCond : SDTypeProfile<0, 3,
Evan Cheng0488db92007-09-25 01:57:46 +000053 [SDTCisVT<0, OtherVT>,
54 SDTCisVT<1, i8>, SDTCisVT<2, i32>]>;
Evan Chengaed7c722005-12-17 01:24:02 +000055
Evan Chenge5f62042007-09-29 00:00:36 +000056def SDTX86SetCC : SDTypeProfile<1, 2,
Evan Cheng0488db92007-09-25 01:57:46 +000057 [SDTCisVT<0, i8>,
58 SDTCisVT<1, i8>, SDTCisVT<2, i32>]>;
Evan Cheng2e489c42009-12-16 00:53:11 +000059def SDTX86SetCC_C : SDTypeProfile<1, 2,
60 [SDTCisInt<0>,
61 SDTCisVT<1, i8>, SDTCisVT<2, i32>]>;
Evan Chengd5781fc2005-12-21 20:21:51 +000062
Michael J. Spencer6e56b182010-10-20 23:40:27 +000063def SDTX86cas : SDTypeProfile<0, 3, [SDTCisPtrTy<0>, SDTCisInt<1>,
Andrew Lenharth26ed8692008-03-01 21:52:34 +000064 SDTCisVT<2, i8>]>;
Andrew Lenharthd19189e2008-03-05 01:15:49 +000065def SDTX86cas8 : SDTypeProfile<0, 1, [SDTCisPtrTy<0>]>;
Andrew Lenharth26ed8692008-03-01 21:52:34 +000066
Dale Johannesen48c1bc22008-10-02 18:53:47 +000067def SDTX86atomicBinary : SDTypeProfile<2, 3, [SDTCisInt<0>, SDTCisInt<1>,
68 SDTCisPtrTy<2>, SDTCisInt<3>,SDTCisInt<4>]>;
Chris Lattner447ff682008-03-11 03:23:40 +000069def SDTX86Ret : SDTypeProfile<0, -1, [SDTCisVT<0, i16>]>;
Evan Cheng898101c2005-12-19 23:12:38 +000070
Sean Callanan1c97ceb2009-06-23 23:25:37 +000071def SDT_X86CallSeqStart : SDCallSeqStart<[SDTCisVT<0, i32>]>;
72def SDT_X86CallSeqEnd : SDCallSeqEnd<[SDTCisVT<0, i32>,
73 SDTCisVT<1, i32>]>;
Evan Chenge3413162006-01-09 18:33:28 +000074
Dan Gohmand35121a2008-05-29 19:57:41 +000075def SDT_X86Call : SDTypeProfile<0, -1, [SDTCisVT<0, iPTR>]>;
Evan Chenge3413162006-01-09 18:33:28 +000076
Dan Gohmand6708ea2009-08-15 01:38:56 +000077def SDT_X86VASTART_SAVE_XMM_REGS : SDTypeProfile<0, -1, [SDTCisVT<0, i8>,
78 SDTCisVT<1, iPTR>,
79 SDTCisVT<2, iPTR>]>;
80
Dan Gohman320afb82010-10-12 18:00:49 +000081def SDT_X86VAARG_64 : SDTypeProfile<1, -1, [SDTCisPtrTy<0>,
82 SDTCisPtrTy<1>,
83 SDTCisVT<2, i32>,
84 SDTCisVT<3, i8>,
85 SDTCisVT<4, i32>]>;
86
Chris Lattnered52c8f2010-03-28 07:38:39 +000087def SDTX86RepStr : SDTypeProfile<0, 1, [SDTCisVT<0, OtherVT>]>;
88
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000089def SDTX86Void : SDTypeProfile<0, 0, []>;
Evan Chengd90eb7f2006-01-05 00:27:02 +000090
Evan Cheng71fb8342006-02-25 10:02:21 +000091def SDTX86Wrapper : SDTypeProfile<1, 1, [SDTCisSameAs<0, 1>, SDTCisPtrTy<0>]>;
92
Rafael Espindola2ee3db32009-04-17 14:35:58 +000093def SDT_X86TLSADDR : SDTypeProfile<0, 1, [SDTCisInt<0>]>;
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000094
Eric Christopherd8c05362010-12-09 06:25:53 +000095def SDT_X86TLSCALL : SDTypeProfile<0, 1, [SDTCisInt<0>]>;
Eric Christopher30ef0e52010-06-03 04:07:48 +000096
Anton Korobeynikov2365f512007-07-14 14:06:15 +000097def SDT_X86EHRET : SDTypeProfile<0, 1, [SDTCisInt<0>]>;
98
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +000099def SDT_X86TCRET : SDTypeProfile<0, 2, [SDTCisPtrTy<0>, SDTCisVT<1, i32>]>;
100
Eric Christopher9a9d2752010-07-22 02:48:34 +0000101def SDT_X86MEMBARRIER : SDTypeProfile<0, 0, []>;
102def SDT_X86MEMBARRIERNoSSE : SDTypeProfile<0, 1, [SDTCisInt<0>]>;
103
104def X86MemBarrier : SDNode<"X86ISD::MEMBARRIER", SDT_X86MEMBARRIER,
105 [SDNPHasChain]>;
106def X86MemBarrierNoSSE : SDNode<"X86ISD::MEMBARRIER", SDT_X86MEMBARRIERNoSSE,
107 [SDNPHasChain]>;
108def X86MFence : SDNode<"X86ISD::MFENCE", SDT_X86MEMBARRIER,
109 [SDNPHasChain]>;
110def X86SFence : SDNode<"X86ISD::SFENCE", SDT_X86MEMBARRIER,
111 [SDNPHasChain]>;
112def X86LFence : SDNode<"X86ISD::LFENCE", SDT_X86MEMBARRIER,
113 [SDNPHasChain]>;
114
115
Chris Lattnerd486d772010-03-28 05:07:17 +0000116def X86bsf : SDNode<"X86ISD::BSF", SDTUnaryArithWithFlags>;
117def X86bsr : SDNode<"X86ISD::BSR", SDTUnaryArithWithFlags>;
Evan Chenge3413162006-01-09 18:33:28 +0000118def X86shld : SDNode<"X86ISD::SHLD", SDTIntShiftDOp>;
119def X86shrd : SDNode<"X86ISD::SHRD", SDTIntShiftDOp>;
Evan Chengb077b842005-12-21 02:39:21 +0000120
Evan Chenge5f62042007-09-29 00:00:36 +0000121def X86cmp : SDNode<"X86ISD::CMP" , SDTX86CmpTest>;
Dan Gohmanc7a37d42008-12-23 22:45:23 +0000122def X86bt : SDNode<"X86ISD::BT", SDTX86CmpTest>;
123
Evan Chenge5f62042007-09-29 00:00:36 +0000124def X86cmov : SDNode<"X86ISD::CMOV", SDTX86Cmov>;
Evan Chenge3413162006-01-09 18:33:28 +0000125def X86brcond : SDNode<"X86ISD::BRCOND", SDTX86BrCond,
Evan Cheng0488db92007-09-25 01:57:46 +0000126 [SDNPHasChain]>;
Evan Chenge5f62042007-09-29 00:00:36 +0000127def X86setcc : SDNode<"X86ISD::SETCC", SDTX86SetCC>;
Evan Cheng2e489c42009-12-16 00:53:11 +0000128def X86setcc_c : SDNode<"X86ISD::SETCC_CARRY", SDTX86SetCC_C>;
Evan Chengb077b842005-12-21 02:39:21 +0000129
Andrew Lenharth26ed8692008-03-01 21:52:34 +0000130def X86cas : SDNode<"X86ISD::LCMPXCHG_DAG", SDTX86cas,
Chris Lattner036609b2010-12-23 18:28:41 +0000131 [SDNPHasChain, SDNPInGlue, SDNPOutGlue, SDNPMayStore,
Chris Lattner88641552010-09-22 00:34:38 +0000132 SDNPMayLoad, SDNPMemOperand]>;
Andrew Lenharthd19189e2008-03-05 01:15:49 +0000133def X86cas8 : SDNode<"X86ISD::LCMPXCHG8_DAG", SDTX86cas8,
Chris Lattner036609b2010-12-23 18:28:41 +0000134 [SDNPHasChain, SDNPInGlue, SDNPOutGlue, SDNPMayStore,
Chris Lattner88641552010-09-22 00:34:38 +0000135 SDNPMayLoad, SDNPMemOperand]>;
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000136def X86AtomAdd64 : SDNode<"X86ISD::ATOMADD64_DAG", SDTX86atomicBinary,
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000137 [SDNPHasChain, SDNPMayStore,
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000138 SDNPMayLoad, SDNPMemOperand]>;
139def X86AtomSub64 : SDNode<"X86ISD::ATOMSUB64_DAG", SDTX86atomicBinary,
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000140 [SDNPHasChain, SDNPMayStore,
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000141 SDNPMayLoad, SDNPMemOperand]>;
142def X86AtomOr64 : SDNode<"X86ISD::ATOMOR64_DAG", SDTX86atomicBinary,
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000143 [SDNPHasChain, SDNPMayStore,
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000144 SDNPMayLoad, SDNPMemOperand]>;
145def X86AtomXor64 : SDNode<"X86ISD::ATOMXOR64_DAG", SDTX86atomicBinary,
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000146 [SDNPHasChain, SDNPMayStore,
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000147 SDNPMayLoad, SDNPMemOperand]>;
148def X86AtomAnd64 : SDNode<"X86ISD::ATOMAND64_DAG", SDTX86atomicBinary,
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000149 [SDNPHasChain, SDNPMayStore,
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000150 SDNPMayLoad, SDNPMemOperand]>;
151def X86AtomNand64 : SDNode<"X86ISD::ATOMNAND64_DAG", SDTX86atomicBinary,
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000152 [SDNPHasChain, SDNPMayStore,
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000153 SDNPMayLoad, SDNPMemOperand]>;
Dale Johannesen880ae362008-10-03 22:25:52 +0000154def X86AtomSwap64 : SDNode<"X86ISD::ATOMSWAP64_DAG", SDTX86atomicBinary,
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000155 [SDNPHasChain, SDNPMayStore,
Dale Johannesen880ae362008-10-03 22:25:52 +0000156 SDNPMayLoad, SDNPMemOperand]>;
Evan Chenge3413162006-01-09 18:33:28 +0000157def X86retflag : SDNode<"X86ISD::RET_FLAG", SDTX86Ret,
Chris Lattner036609b2010-12-23 18:28:41 +0000158 [SDNPHasChain, SDNPOptInGlue, SDNPVariadic]>;
Evan Chengb077b842005-12-21 02:39:21 +0000159
Dan Gohmand6708ea2009-08-15 01:38:56 +0000160def X86vastart_save_xmm_regs :
161 SDNode<"X86ISD::VASTART_SAVE_XMM_REGS",
162 SDT_X86VASTART_SAVE_XMM_REGS,
Chris Lattnere8cabf32010-03-19 05:07:09 +0000163 [SDNPHasChain, SDNPVariadic]>;
Dan Gohman320afb82010-10-12 18:00:49 +0000164def X86vaarg64 :
165 SDNode<"X86ISD::VAARG_64", SDT_X86VAARG_64,
166 [SDNPHasChain, SDNPMayLoad, SDNPMayStore,
167 SDNPMemOperand]>;
Evan Chenge3413162006-01-09 18:33:28 +0000168def X86callseq_start :
169 SDNode<"ISD::CALLSEQ_START", SDT_X86CallSeqStart,
Chris Lattner036609b2010-12-23 18:28:41 +0000170 [SDNPHasChain, SDNPOutGlue]>;
Evan Chenge3413162006-01-09 18:33:28 +0000171def X86callseq_end :
172 SDNode<"ISD::CALLSEQ_END", SDT_X86CallSeqEnd,
Chris Lattner036609b2010-12-23 18:28:41 +0000173 [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>;
Evan Chengb077b842005-12-21 02:39:21 +0000174
Evan Chenge3413162006-01-09 18:33:28 +0000175def X86call : SDNode<"X86ISD::CALL", SDT_X86Call,
Chris Lattner036609b2010-12-23 18:28:41 +0000176 [SDNPHasChain, SDNPOutGlue, SDNPOptInGlue,
Chris Lattnere8cabf32010-03-19 05:07:09 +0000177 SDNPVariadic]>;
Evan Chengaed7c722005-12-17 01:24:02 +0000178
Chris Lattnered52c8f2010-03-28 07:38:39 +0000179def X86rep_stos: SDNode<"X86ISD::REP_STOS", SDTX86RepStr,
Chris Lattner036609b2010-12-23 18:28:41 +0000180 [SDNPHasChain, SDNPInGlue, SDNPOutGlue, SDNPMayStore]>;
Chris Lattnered52c8f2010-03-28 07:38:39 +0000181def X86rep_movs: SDNode<"X86ISD::REP_MOVS", SDTX86RepStr,
Chris Lattner036609b2010-12-23 18:28:41 +0000182 [SDNPHasChain, SDNPInGlue, SDNPOutGlue, SDNPMayStore,
Chris Lattner9b37aaf2008-01-10 05:12:37 +0000183 SDNPMayLoad]>;
Evan Cheng67f92a72006-01-11 22:15:48 +0000184
Anton Korobeynikov043f3c22010-03-06 19:32:29 +0000185def X86rdtsc : SDNode<"X86ISD::RDTSC_DAG", SDTX86Void,
Chris Lattner036609b2010-12-23 18:28:41 +0000186 [SDNPHasChain, SDNPOutGlue, SDNPSideEffect]>;
Evan Chengd90eb7f2006-01-05 00:27:02 +0000187
Evan Cheng0085a282006-11-30 21:55:46 +0000188def X86Wrapper : SDNode<"X86ISD::Wrapper", SDTX86Wrapper>;
189def X86WrapperRIP : SDNode<"X86ISD::WrapperRIP", SDTX86Wrapper>;
Evan Cheng71fb8342006-02-25 10:02:21 +0000190
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000191def X86tlsaddr : SDNode<"X86ISD::TLSADDR", SDT_X86TLSADDR,
Chris Lattner036609b2010-12-23 18:28:41 +0000192 [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>;
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000193
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000194def X86ehret : SDNode<"X86ISD::EH_RETURN", SDT_X86EHRET,
195 [SDNPHasChain]>;
196
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000197def X86tcret : SDNode<"X86ISD::TC_RETURN", SDT_X86TCRET,
Chris Lattner036609b2010-12-23 18:28:41 +0000198 [SDNPHasChain, SDNPOptInGlue, SDNPVariadic]>;
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000199
Dan Gohman43ffe672010-01-04 20:51:05 +0000200def X86add_flag : SDNode<"X86ISD::ADD", SDTBinaryArithWithFlags,
Dan Gohman4361bbf2010-01-05 00:44:20 +0000201 [SDNPCommutative]>;
Dan Gohman076aee32009-03-04 19:44:21 +0000202def X86sub_flag : SDNode<"X86ISD::SUB", SDTBinaryArithWithFlags>;
Dan Gohman43ffe672010-01-04 20:51:05 +0000203def X86smul_flag : SDNode<"X86ISD::SMUL", SDTBinaryArithWithFlags,
Dan Gohman4361bbf2010-01-05 00:44:20 +0000204 [SDNPCommutative]>;
Chris Lattnerb20e0b12010-12-05 07:30:36 +0000205def X86umul_flag : SDNode<"X86ISD::UMUL", SDT2ResultBinaryArithWithFlags,
Dan Gohman4361bbf2010-01-05 00:44:20 +0000206 [SDNPCommutative]>;
Chris Lattner5b856542010-12-20 00:59:46 +0000207def X86adc_flag : SDNode<"X86ISD::ADC", SDTBinaryArithWithFlagsInOut>;
208def X86sbb_flag : SDNode<"X86ISD::SBB", SDTBinaryArithWithFlagsInOut>;
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000209
Dan Gohman076aee32009-03-04 19:44:21 +0000210def X86inc_flag : SDNode<"X86ISD::INC", SDTUnaryArithWithFlags>;
211def X86dec_flag : SDNode<"X86ISD::DEC", SDTUnaryArithWithFlags>;
Dan Gohman43ffe672010-01-04 20:51:05 +0000212def X86or_flag : SDNode<"X86ISD::OR", SDTBinaryArithWithFlags,
Dan Gohman4361bbf2010-01-05 00:44:20 +0000213 [SDNPCommutative]>;
Dan Gohman43ffe672010-01-04 20:51:05 +0000214def X86xor_flag : SDNode<"X86ISD::XOR", SDTBinaryArithWithFlags,
Dan Gohman4361bbf2010-01-05 00:44:20 +0000215 [SDNPCommutative]>;
Dan Gohman43ffe672010-01-04 20:51:05 +0000216def X86and_flag : SDNode<"X86ISD::AND", SDTBinaryArithWithFlags,
Dan Gohman4361bbf2010-01-05 00:44:20 +0000217 [SDNPCommutative]>;
Bill Wendlingab55ebd2008-12-12 00:56:36 +0000218
Evan Cheng73f24c92009-03-30 21:36:47 +0000219def X86mul_imm : SDNode<"X86ISD::MUL_IMM", SDTIntBinOp>;
220
Michael J. Spencere9c253e2010-10-21 01:41:01 +0000221def X86WinAlloca : SDNode<"X86ISD::WIN_ALLOCA", SDTX86Void,
Chris Lattner036609b2010-12-23 18:28:41 +0000222 [SDNPHasChain, SDNPInGlue, SDNPOutGlue]>;
Michael J. Spencere9c253e2010-10-21 01:41:01 +0000223
Eric Christopher30ef0e52010-06-03 04:07:48 +0000224def X86TLSCall : SDNode<"X86ISD::TLSCALL", SDT_X86TLSCALL,
Chris Lattner036609b2010-12-23 18:28:41 +0000225 [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>;
Anton Korobeynikov043f3c22010-03-06 19:32:29 +0000226
Evan Chengaed7c722005-12-17 01:24:02 +0000227//===----------------------------------------------------------------------===//
228// X86 Operand Definitions.
229//
230
Dan Gohmana4714e02009-07-30 01:56:29 +0000231// A version of ptr_rc which excludes SP, ESP, and RSP. This is used for
232// the index operand of an address, to conform to x86 encoding restrictions.
233def ptr_rc_nosp : PointerLikeRegClass<1>;
Chris Lattner7680e732009-06-20 19:34:09 +0000234
Chris Lattner66fa1dc2004-08-11 02:25:00 +0000235// *mem - Operand definitions for the funky X86 addressing mode operands.
236//
Daniel Dunbar338825c2009-08-10 18:41:10 +0000237def X86MemAsmOperand : AsmOperandClass {
238 let Name = "Mem";
Daniel Dunbar54ddf3d2010-05-22 21:02:29 +0000239 let SuperClasses = [];
Daniel Dunbar338825c2009-08-10 18:41:10 +0000240}
Daniel Dunbarc26ae5a2010-05-06 22:39:14 +0000241def X86AbsMemAsmOperand : AsmOperandClass {
242 let Name = "AbsMem";
Chris Lattner599b5312010-07-08 23:46:44 +0000243 let SuperClasses = [X86MemAsmOperand];
Daniel Dunbarc26ae5a2010-05-06 22:39:14 +0000244}
Evan Chengaf78ef52006-05-17 21:21:41 +0000245class X86MemOperand<string printMethod> : Operand<iPTR> {
Nate Begeman391c5d22005-11-30 18:54:35 +0000246 let PrintMethod = printMethod;
Dan Gohmana4714e02009-07-30 01:56:29 +0000247 let MIOperandInfo = (ops ptr_rc, i8imm, ptr_rc_nosp, i32imm, i8imm);
Daniel Dunbar338825c2009-08-10 18:41:10 +0000248 let ParserMatchClass = X86MemAsmOperand;
Chris Lattner66fa1dc2004-08-11 02:25:00 +0000249}
Nate Begeman391c5d22005-11-30 18:54:35 +0000250
Sean Callanan9947bbb2009-09-03 00:04:47 +0000251def opaque32mem : X86MemOperand<"printopaquemem">;
252def opaque48mem : X86MemOperand<"printopaquemem">;
253def opaque80mem : X86MemOperand<"printopaquemem">;
Sean Callanan108934c2009-12-18 00:01:26 +0000254def opaque512mem : X86MemOperand<"printopaquemem">;
255
Chris Lattner45432512005-12-17 19:47:05 +0000256def i8mem : X86MemOperand<"printi8mem">;
257def i16mem : X86MemOperand<"printi16mem">;
258def i32mem : X86MemOperand<"printi32mem">;
259def i64mem : X86MemOperand<"printi64mem">;
Evan Cheng470a6ad2006-02-22 02:26:30 +0000260def i128mem : X86MemOperand<"printi128mem">;
Bruno Cardoso Lopes94143ee2010-07-19 23:32:44 +0000261def i256mem : X86MemOperand<"printi256mem">;
Chris Lattner45432512005-12-17 19:47:05 +0000262def f32mem : X86MemOperand<"printf32mem">;
263def f64mem : X86MemOperand<"printf64mem">;
Dale Johannesen59a58732007-08-05 18:49:15 +0000264def f80mem : X86MemOperand<"printf80mem">;
Evan Cheng223547a2006-01-31 22:28:30 +0000265def f128mem : X86MemOperand<"printf128mem">;
Bruno Cardoso Lopese86b01c2010-07-09 18:27:43 +0000266def f256mem : X86MemOperand<"printf256mem">;
Nate Begeman391c5d22005-11-30 18:54:35 +0000267
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000268// A version of i8mem for use on x86-64 that uses GR64_NOREX instead of
269// plain GR64, so that it doesn't potentially require a REX prefix.
270def i8mem_NOREX : Operand<i64> {
271 let PrintMethod = "printi8mem";
Dan Gohmana4714e02009-07-30 01:56:29 +0000272 let MIOperandInfo = (ops GR64_NOREX, i8imm, GR64_NOREX_NOSP, i32imm, i8imm);
Daniel Dunbar338825c2009-08-10 18:41:10 +0000273 let ParserMatchClass = X86MemAsmOperand;
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000274}
275
Evan Chengf48ef032010-03-14 03:48:46 +0000276// Special i32mem for addresses of load folding tail calls. These are not
277// allowed to use callee-saved registers since they must be scheduled
278// after callee-saved register are popped.
279def i32mem_TC : Operand<i32> {
280 let PrintMethod = "printi32mem";
281 let MIOperandInfo = (ops GR32_TC, i8imm, GR32_TC, i32imm, i8imm);
282 let ParserMatchClass = X86MemAsmOperand;
283}
284
Chris Lattner41efbfa2010-10-05 06:37:31 +0000285// Special i64mem for addresses of load folding tail calls. These are not
286// allowed to use callee-saved registers since they must be scheduled
287// after callee-saved register are popped.
288def i64mem_TC : Operand<i64> {
289 let PrintMethod = "printi64mem";
290 let MIOperandInfo = (ops GR64_TC, i8imm, GR64_TC, i32imm, i8imm);
291 let ParserMatchClass = X86MemAsmOperand;
292}
Evan Cheng25ab6902006-09-08 06:48:29 +0000293
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000294let ParserMatchClass = X86AbsMemAsmOperand,
295 PrintMethod = "print_pcrel_imm" in {
Daniel Dunbar728e5eb2010-01-30 00:24:12 +0000296def i32imm_pcrel : Operand<i32>;
Chris Lattner9fc05222010-07-07 22:27:31 +0000297def i16imm_pcrel : Operand<i16>;
Daniel Dunbar728e5eb2010-01-30 00:24:12 +0000298
299def offset8 : Operand<i64>;
300def offset16 : Operand<i64>;
301def offset32 : Operand<i64>;
302def offset64 : Operand<i64>;
303
304// Branch targets have OtherVT type and print as pc-relative values.
305def brtarget : Operand<OtherVT>;
306def brtarget8 : Operand<OtherVT>;
307
308}
309
Nate Begeman16b04f32005-07-15 00:38:55 +0000310def SSECC : Operand<i8> {
311 let PrintMethod = "printSSECC";
312}
Chris Lattner66fa1dc2004-08-11 02:25:00 +0000313
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000314class ImmSExtAsmOperandClass : AsmOperandClass {
Daniel Dunbar54ddf3d2010-05-22 21:02:29 +0000315 let SuperClasses = [ImmAsmOperand];
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000316 let RenderMethod = "addImmOperands";
Daniel Dunbar1fe591d2010-05-20 20:20:39 +0000317}
318
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000319// Sign-extended immediate classes. We don't need to define the full lattice
320// here because there is no instruction with an ambiguity between ImmSExti64i32
321// and ImmSExti32i8.
322//
323// The strange ranges come from the fact that the assembler always works with
324// 64-bit immediates, but for a 16-bit target value we want to accept both "-1"
325// (which will be a -1ULL), and "0xFF" (-1 in 16-bits).
326
Chris Lattner599b5312010-07-08 23:46:44 +0000327// [0, 0x7FFFFFFF] |
328// [0xFFFFFFFF80000000, 0xFFFFFFFFFFFFFFFF]
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000329def ImmSExti64i32AsmOperand : ImmSExtAsmOperandClass {
330 let Name = "ImmSExti64i32";
331}
332
Chris Lattner599b5312010-07-08 23:46:44 +0000333// [0, 0x0000007F] | [0x000000000000FF80, 0x000000000000FFFF] |
334// [0xFFFFFFFFFFFFFF80, 0xFFFFFFFFFFFFFFFF]
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000335def ImmSExti16i8AsmOperand : ImmSExtAsmOperandClass {
336 let Name = "ImmSExti16i8";
337 let SuperClasses = [ImmSExti64i32AsmOperand];
338}
339
Chris Lattner599b5312010-07-08 23:46:44 +0000340// [0, 0x0000007F] | [0x00000000FFFFFF80, 0x00000000FFFFFFFF] |
341// [0xFFFFFFFFFFFFFF80, 0xFFFFFFFFFFFFFFFF]
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000342def ImmSExti32i8AsmOperand : ImmSExtAsmOperandClass {
343 let Name = "ImmSExti32i8";
344}
345
Chris Lattner599b5312010-07-08 23:46:44 +0000346// [0, 0x0000007F] |
347// [0xFFFFFFFFFFFFFF80, 0xFFFFFFFFFFFFFFFF]
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000348def ImmSExti64i8AsmOperand : ImmSExtAsmOperandClass {
349 let Name = "ImmSExti64i8";
Chris Lattner599b5312010-07-08 23:46:44 +0000350 let SuperClasses = [ImmSExti16i8AsmOperand, ImmSExti32i8AsmOperand,
351 ImmSExti64i32AsmOperand];
Daniel Dunbar338825c2009-08-10 18:41:10 +0000352}
353
Chris Lattnerf124d5e2005-11-18 01:04:42 +0000354// A couple of more descriptive operand definitions.
355// 16-bits but only 8 bits are significant.
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000356def i16i8imm : Operand<i16> {
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000357 let ParserMatchClass = ImmSExti16i8AsmOperand;
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000358}
Chris Lattnerf124d5e2005-11-18 01:04:42 +0000359// 32-bits but only 8 bits are significant.
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000360def i32i8imm : Operand<i32> {
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000361 let ParserMatchClass = ImmSExti32i8AsmOperand;
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000362}
Chris Lattnerf124d5e2005-11-18 01:04:42 +0000363
Chris Lattner41efbfa2010-10-05 06:37:31 +0000364// 64-bits but only 32 bits are significant.
365def i64i32imm : Operand<i64> {
366 let ParserMatchClass = ImmSExti64i32AsmOperand;
367}
368
369// 64-bits but only 32 bits are significant, and those bits are treated as being
370// pc relative.
371def i64i32imm_pcrel : Operand<i64> {
372 let PrintMethod = "print_pcrel_imm";
373 let ParserMatchClass = X86AbsMemAsmOperand;
374}
375
376// 64-bits but only 8 bits are significant.
377def i64i8imm : Operand<i64> {
378 let ParserMatchClass = ImmSExti64i8AsmOperand;
379}
380
381def lea64_32mem : Operand<i32> {
382 let PrintMethod = "printi32mem";
383 let AsmOperandLowerMethod = "lower_lea64_32mem";
384 let MIOperandInfo = (ops GR32, i8imm, GR32_NOSP, i32imm, i8imm);
385 let ParserMatchClass = X86MemAsmOperand;
386}
387
388
Evan Chengaed7c722005-12-17 01:24:02 +0000389//===----------------------------------------------------------------------===//
390// X86 Complex Pattern Definitions.
391//
392
Evan Chengec693f72005-12-08 02:01:35 +0000393// Define X86 specific addressing mode.
Chris Lattnerb86faa12010-09-21 22:07:31 +0000394def addr : ComplexPattern<iPTR, 5, "SelectAddr", [], [SDNPWantParent]>;
Chris Lattner599b5312010-07-08 23:46:44 +0000395def lea32addr : ComplexPattern<i32, 5, "SelectLEAAddr",
Dan Gohmana98634b2009-08-02 16:09:17 +0000396 [add, sub, mul, X86mul_imm, shl, or, frameindex],
397 []>;
Chris Lattner599b5312010-07-08 23:46:44 +0000398def tls32addr : ComplexPattern<i32, 5, "SelectTLSADDRAddr",
Chris Lattner5c0b16d2009-06-20 20:38:48 +0000399 [tglobaltlsaddr], []>;
Evan Chengec693f72005-12-08 02:01:35 +0000400
Chris Lattner41efbfa2010-10-05 06:37:31 +0000401def lea64addr : ComplexPattern<i64, 5, "SelectLEAAddr",
402 [add, sub, mul, X86mul_imm, shl, or, frameindex,
403 X86WrapperRIP], []>;
404
405def tls64addr : ComplexPattern<i64, 5, "SelectTLSADDRAddr",
406 [tglobaltlsaddr], []>;
407
Evan Chengaed7c722005-12-17 01:24:02 +0000408//===----------------------------------------------------------------------===//
Evan Chengbbc8ddb2005-12-20 22:59:51 +0000409// X86 Instruction Predicate Definitions.
Chris Lattner314a1132010-03-14 18:31:44 +0000410def HasCMov : Predicate<"Subtarget->hasCMov()">;
411def NoCMov : Predicate<"!Subtarget->hasCMov()">;
Nate Begeman5812b102010-12-03 22:29:15 +0000412
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000413def HasMMX : Predicate<"Subtarget->hasMMX()">;
Chris Lattner548abfc2010-10-03 18:08:05 +0000414def Has3DNow : Predicate<"Subtarget->has3DNow()">;
415def Has3DNowA : Predicate<"Subtarget->has3DNowA()">;
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000416def HasSSE1 : Predicate<"Subtarget->hasSSE1()">;
417def HasSSE2 : Predicate<"Subtarget->hasSSE2()">;
418def HasSSE3 : Predicate<"Subtarget->hasSSE3()">;
419def HasSSSE3 : Predicate<"Subtarget->hasSSSE3()">;
420def HasSSE41 : Predicate<"Subtarget->hasSSE41()">;
421def HasSSE42 : Predicate<"Subtarget->hasSSE42()">;
422def HasSSE4A : Predicate<"Subtarget->hasSSE4A()">;
Nate Begeman5812b102010-12-03 22:29:15 +0000423
David Greene343dadb2009-06-26 22:46:54 +0000424def HasAVX : Predicate<"Subtarget->hasAVX()">;
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000425def HasXMMInt : Predicate<"Subtarget->hasXMMInt()">;
426
427def HasAES : Predicate<"Subtarget->hasAES()">;
Bruno Cardoso Lopescdae7e82010-07-23 01:17:51 +0000428def HasCLMUL : Predicate<"Subtarget->hasCLMUL()">;
David Greene343dadb2009-06-26 22:46:54 +0000429def HasFMA3 : Predicate<"Subtarget->hasFMA3()">;
430def HasFMA4 : Predicate<"Subtarget->hasFMA4()">;
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000431def FPStackf32 : Predicate<"!Subtarget->hasXMM()">;
432def FPStackf64 : Predicate<"!Subtarget->hasXMMInt()">;
Chris Lattner0f899c72010-10-30 19:38:20 +0000433def In32BitMode : Predicate<"!Subtarget->is64Bit()">, AssemblerPredicate;
434def In64BitMode : Predicate<"Subtarget->is64Bit()">, AssemblerPredicate;
Anton Korobeynikovcf6b7392009-08-03 08:12:53 +0000435def IsWin64 : Predicate<"Subtarget->isTargetWin64()">;
436def NotWin64 : Predicate<"!Subtarget->isTargetWin64()">;
Anton Korobeynikovd7697d02009-08-06 11:23:24 +0000437def SmallCode : Predicate<"TM.getCodeModel() == CodeModel::Small">;
438def KernelCode : Predicate<"TM.getCodeModel() == CodeModel::Kernel">;
439def FarData : Predicate<"TM.getCodeModel() != CodeModel::Small &&"
Anton Korobeynikov186fa1d2009-08-06 09:11:19 +0000440 "TM.getCodeModel() != CodeModel::Kernel">;
Anton Korobeynikovd7697d02009-08-06 11:23:24 +0000441def NearData : Predicate<"TM.getCodeModel() == CodeModel::Small ||"
442 "TM.getCodeModel() == CodeModel::Kernel">;
Evan Cheng28b514392006-12-05 19:50:18 +0000443def IsStatic : Predicate<"TM.getRelocationModel() == Reloc::Static">;
Evan Chengcb0f06e2010-03-25 00:10:31 +0000444def IsNotPIC : Predicate<"TM.getRelocationModel() != Reloc::PIC_">;
Evan Chengb1f49812009-12-22 17:47:23 +0000445def OptForSize : Predicate<"OptForSize">;
Evan Chengb7a75a52008-09-26 23:41:32 +0000446def OptForSpeed : Predicate<"!OptForSize">;
Evan Chengccb69762009-01-02 05:35:45 +0000447def FastBTMem : Predicate<"!Subtarget->isBTMemSlow()">;
Evan Chengd7f666a2009-05-20 04:53:57 +0000448def CallImmAddr : Predicate<"Subtarget->IsLegalToCallImmediateAddr(TM)">;
Evan Chengbbc8ddb2005-12-20 22:59:51 +0000449
450//===----------------------------------------------------------------------===//
Evan Chengc64a1a92007-07-31 08:04:03 +0000451// X86 Instruction Format Definitions.
Evan Chengaed7c722005-12-17 01:24:02 +0000452//
453
Evan Chengc64a1a92007-07-31 08:04:03 +0000454include "X86InstrFormats.td"
Chris Lattner1cca5e32003-08-03 21:54:21 +0000455
Alkis Evlogimenos5ab29b52004-02-28 22:02:05 +0000456//===----------------------------------------------------------------------===//
Chris Lattnerf124d5e2005-11-18 01:04:42 +0000457// Pattern fragments...
458//
Evan Chengd9558e02006-01-06 00:43:03 +0000459
460// X86 specific condition code. These correspond to CondCode in
Nate Begeman9a225302007-05-06 04:00:55 +0000461// X86InstrInfo.h. They must be kept in synch.
Dan Gohman653456c2009-01-07 00:15:08 +0000462def X86_COND_A : PatLeaf<(i8 0)>; // alt. COND_NBE
463def X86_COND_AE : PatLeaf<(i8 1)>; // alt. COND_NC
464def X86_COND_B : PatLeaf<(i8 2)>; // alt. COND_C
465def X86_COND_BE : PatLeaf<(i8 3)>; // alt. COND_NA
466def X86_COND_E : PatLeaf<(i8 4)>; // alt. COND_Z
467def X86_COND_G : PatLeaf<(i8 5)>; // alt. COND_NLE
468def X86_COND_GE : PatLeaf<(i8 6)>; // alt. COND_NL
469def X86_COND_L : PatLeaf<(i8 7)>; // alt. COND_NGE
470def X86_COND_LE : PatLeaf<(i8 8)>; // alt. COND_NG
471def X86_COND_NE : PatLeaf<(i8 9)>; // alt. COND_NZ
Evan Chengd9558e02006-01-06 00:43:03 +0000472def X86_COND_NO : PatLeaf<(i8 10)>;
Dan Gohman653456c2009-01-07 00:15:08 +0000473def X86_COND_NP : PatLeaf<(i8 11)>; // alt. COND_PO
Evan Chengd9558e02006-01-06 00:43:03 +0000474def X86_COND_NS : PatLeaf<(i8 12)>;
Dan Gohman653456c2009-01-07 00:15:08 +0000475def X86_COND_O : PatLeaf<(i8 13)>;
476def X86_COND_P : PatLeaf<(i8 14)>; // alt. COND_PE
477def X86_COND_S : PatLeaf<(i8 15)>;
Evan Chengd9558e02006-01-06 00:43:03 +0000478
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +0000479def immSext8 : PatLeaf<(imm), [{ return immSext8(N); }]>;
Chris Lattnerf124d5e2005-11-18 01:04:42 +0000480
Chris Lattner18409912010-03-03 01:45:01 +0000481def i16immSExt8 : PatLeaf<(i16 immSext8)>;
482def i32immSExt8 : PatLeaf<(i32 immSext8)>;
Chris Lattner41efbfa2010-10-05 06:37:31 +0000483def i64immSExt8 : PatLeaf<(i64 immSext8)>;
484def i64immSExt32 : PatLeaf<(i64 imm), [{ return i64immSExt32(N); }]>;
485def i64immZExt32 : PatLeaf<(i64 imm), [{
486 // i64immZExt32 predicate - True if the 64-bit immediate fits in a 32-bit
487 // unsignedsign extended field.
488 return (uint64_t)N->getZExtValue() == (uint32_t)N->getZExtValue();
489}]>;
Evan Chengb3558542005-12-13 00:01:09 +0000490
Rafael Espindoladba81cf2010-10-13 13:31:20 +0000491def i64immZExt32SExt8 : PatLeaf<(i64 imm), [{
492 uint64_t v = N->getZExtValue();
493 return v == (uint32_t)v && (int32_t)v == (int8_t)v;
494}]>;
495
Evan Cheng605c4152005-12-13 01:57:51 +0000496// Helper fragments for loads.
Evan Chengb6564432008-05-13 18:59:59 +0000497// It's always safe to treat a anyext i16 load as a i32 load if the i16 is
498// known to be 32-bit aligned or better. Ditto for i8 to i16.
Dan Gohman33586292008-10-15 06:50:19 +0000499def loadi16 : PatFrag<(ops node:$ptr), (i16 (unindexedload node:$ptr)), [{
Dan Gohman67ca6be2008-08-20 15:24:22 +0000500 LoadSDNode *LD = cast<LoadSDNode>(N);
Dan Gohman67ca6be2008-08-20 15:24:22 +0000501 ISD::LoadExtType ExtType = LD->getExtensionType();
502 if (ExtType == ISD::NON_EXTLOAD)
503 return true;
504 if (ExtType == ISD::EXTLOAD)
505 return LD->getAlignment() >= 2 && !LD->isVolatile();
Evan Chengfa7fd332008-05-13 00:54:02 +0000506 return false;
507}]>;
508
Chris Lattnerf85eff72010-03-03 01:52:59 +0000509def loadi16_anyext : PatFrag<(ops node:$ptr), (i32 (unindexedload node:$ptr)),[{
Evan Chengca57f782008-09-24 23:27:55 +0000510 LoadSDNode *LD = cast<LoadSDNode>(N);
Evan Chengca57f782008-09-24 23:27:55 +0000511 ISD::LoadExtType ExtType = LD->getExtensionType();
512 if (ExtType == ISD::EXTLOAD)
513 return LD->getAlignment() >= 2 && !LD->isVolatile();
514 return false;
515}]>;
516
Dan Gohman33586292008-10-15 06:50:19 +0000517def loadi32 : PatFrag<(ops node:$ptr), (i32 (unindexedload node:$ptr)), [{
Dan Gohman67ca6be2008-08-20 15:24:22 +0000518 LoadSDNode *LD = cast<LoadSDNode>(N);
Dan Gohman67ca6be2008-08-20 15:24:22 +0000519 ISD::LoadExtType ExtType = LD->getExtensionType();
520 if (ExtType == ISD::NON_EXTLOAD)
521 return true;
522 if (ExtType == ISD::EXTLOAD)
523 return LD->getAlignment() >= 4 && !LD->isVolatile();
Evan Chengfa7fd332008-05-13 00:54:02 +0000524 return false;
525}]>;
526
Chris Lattnerb86faa12010-09-21 22:07:31 +0000527def loadi8 : PatFrag<(ops node:$ptr), (i8 (load node:$ptr))>;
528def loadi64 : PatFrag<(ops node:$ptr), (i64 (load node:$ptr))>;
529def loadf32 : PatFrag<(ops node:$ptr), (f32 (load node:$ptr))>;
530def loadf64 : PatFrag<(ops node:$ptr), (f64 (load node:$ptr))>;
531def loadf80 : PatFrag<(ops node:$ptr), (f80 (load node:$ptr))>;
Evan Cheng7a7e8372005-12-14 02:22:27 +0000532
Evan Cheng466685d2006-10-09 20:57:25 +0000533def sextloadi16i8 : PatFrag<(ops node:$ptr), (i16 (sextloadi8 node:$ptr))>;
534def sextloadi32i8 : PatFrag<(ops node:$ptr), (i32 (sextloadi8 node:$ptr))>;
535def sextloadi32i16 : PatFrag<(ops node:$ptr), (i32 (sextloadi16 node:$ptr))>;
Chris Lattner41efbfa2010-10-05 06:37:31 +0000536def sextloadi64i8 : PatFrag<(ops node:$ptr), (i64 (sextloadi8 node:$ptr))>;
537def sextloadi64i16 : PatFrag<(ops node:$ptr), (i64 (sextloadi16 node:$ptr))>;
538def sextloadi64i32 : PatFrag<(ops node:$ptr), (i64 (sextloadi32 node:$ptr))>;
Evan Cheng7a7e8372005-12-14 02:22:27 +0000539
Evan Cheng466685d2006-10-09 20:57:25 +0000540def zextloadi8i1 : PatFrag<(ops node:$ptr), (i8 (zextloadi1 node:$ptr))>;
541def zextloadi16i1 : PatFrag<(ops node:$ptr), (i16 (zextloadi1 node:$ptr))>;
542def zextloadi32i1 : PatFrag<(ops node:$ptr), (i32 (zextloadi1 node:$ptr))>;
543def zextloadi16i8 : PatFrag<(ops node:$ptr), (i16 (zextloadi8 node:$ptr))>;
544def zextloadi32i8 : PatFrag<(ops node:$ptr), (i32 (zextloadi8 node:$ptr))>;
545def zextloadi32i16 : PatFrag<(ops node:$ptr), (i32 (zextloadi16 node:$ptr))>;
Chris Lattner41efbfa2010-10-05 06:37:31 +0000546def zextloadi64i1 : PatFrag<(ops node:$ptr), (i64 (zextloadi1 node:$ptr))>;
547def zextloadi64i8 : PatFrag<(ops node:$ptr), (i64 (zextloadi8 node:$ptr))>;
548def zextloadi64i16 : PatFrag<(ops node:$ptr), (i64 (zextloadi16 node:$ptr))>;
549def zextloadi64i32 : PatFrag<(ops node:$ptr), (i64 (zextloadi32 node:$ptr))>;
Evan Cheng7a7e8372005-12-14 02:22:27 +0000550
Evan Cheng466685d2006-10-09 20:57:25 +0000551def extloadi8i1 : PatFrag<(ops node:$ptr), (i8 (extloadi1 node:$ptr))>;
552def extloadi16i1 : PatFrag<(ops node:$ptr), (i16 (extloadi1 node:$ptr))>;
553def extloadi32i1 : PatFrag<(ops node:$ptr), (i32 (extloadi1 node:$ptr))>;
554def extloadi16i8 : PatFrag<(ops node:$ptr), (i16 (extloadi8 node:$ptr))>;
555def extloadi32i8 : PatFrag<(ops node:$ptr), (i32 (extloadi8 node:$ptr))>;
556def extloadi32i16 : PatFrag<(ops node:$ptr), (i32 (extloadi16 node:$ptr))>;
Chris Lattner41efbfa2010-10-05 06:37:31 +0000557def extloadi64i1 : PatFrag<(ops node:$ptr), (i64 (extloadi1 node:$ptr))>;
558def extloadi64i8 : PatFrag<(ops node:$ptr), (i64 (extloadi8 node:$ptr))>;
559def extloadi64i16 : PatFrag<(ops node:$ptr), (i64 (extloadi16 node:$ptr))>;
560def extloadi64i32 : PatFrag<(ops node:$ptr), (i64 (extloadi32 node:$ptr))>;
Evan Cheng747a90d2006-02-21 02:24:38 +0000561
Chris Lattnerce2bcc82008-02-19 17:37:35 +0000562
563// An 'and' node with a single use.
564def and_su : PatFrag<(ops node:$lhs, node:$rhs), (and node:$lhs, node:$rhs), [{
Evan Cheng07b7ea12008-03-04 00:40:35 +0000565 return N->hasOneUse();
Chris Lattnerce2bcc82008-02-19 17:37:35 +0000566}]>;
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000567// An 'srl' node with a single use.
568def srl_su : PatFrag<(ops node:$lhs, node:$rhs), (srl node:$lhs, node:$rhs), [{
569 return N->hasOneUse();
570}]>;
571// An 'trunc' node with a single use.
572def trunc_su : PatFrag<(ops node:$src), (trunc node:$src), [{
573 return N->hasOneUse();
574}]>;
Chris Lattnerce2bcc82008-02-19 17:37:35 +0000575
Chris Lattnerf124d5e2005-11-18 01:04:42 +0000576//===----------------------------------------------------------------------===//
Chris Lattner434c7cb2010-10-05 05:32:15 +0000577// Instruction list.
Chris Lattner1cca5e32003-08-03 21:54:21 +0000578//
579
Evan Cheng4a460802006-01-11 00:33:36 +0000580// Nop
Sean Callanan74e52102009-07-23 23:39:34 +0000581let neverHasSideEffects = 1 in {
Chris Lattnerba7e7562008-01-10 07:59:24 +0000582 def NOOP : I<0x90, RawFrm, (outs), (ins), "nop", []>;
Sean Callanan108934c2009-12-18 00:01:26 +0000583 def NOOPW : I<0x1f, MRM0m, (outs), (ins i16mem:$zero),
584 "nop{w}\t$zero", []>, TB, OpSize;
Sean Callanan74e52102009-07-23 23:39:34 +0000585 def NOOPL : I<0x1f, MRM0m, (outs), (ins i32mem:$zero),
Sean Callanan108934c2009-12-18 00:01:26 +0000586 "nop{l}\t$zero", []>, TB;
Sean Callanan74e52102009-07-23 23:39:34 +0000587}
Evan Cheng4a460802006-01-11 00:33:36 +0000588
Chris Lattner1cca5e32003-08-03 21:54:21 +0000589
Sean Callanan8d708542009-09-16 02:57:13 +0000590// Constructing a stack frame.
Chris Lattner40cc3f82010-09-17 18:02:29 +0000591def ENTER : Ii16<0xC8, RawFrmImm8, (outs), (ins i16imm:$len, i8imm:$lvl),
592 "enter\t$len, $lvl", []>;
Sean Callanan8d708542009-09-16 02:57:13 +0000593
Chris Lattnerba7e7562008-01-10 07:59:24 +0000594let Defs = [EBP, ESP], Uses = [EBP, ESP], mayLoad = 1, neverHasSideEffects=1 in
Chris Lattner30bf2d82004-08-10 20:17:41 +0000595def LEAVE : I<0xC9, RawFrm,
Daniel Dunbardf4c47b2010-07-19 07:21:01 +0000596 (outs), (ins), "leave", []>, Requires<[In32BitMode]>;
Evan Cheng071a2792007-09-11 19:55:27 +0000597
Chris Lattner5673e1d2010-10-05 06:41:40 +0000598let Defs = [RBP,RSP], Uses = [RBP,RSP], mayLoad = 1, neverHasSideEffects = 1 in
599def LEAVE64 : I<0xC9, RawFrm,
600 (outs), (ins), "leave", []>, Requires<[In64BitMode]>;
601
Chris Lattner87be16a2010-10-05 06:04:14 +0000602//===----------------------------------------------------------------------===//
Chris Lattner5673e1d2010-10-05 06:41:40 +0000603// Miscellaneous Instructions.
Chris Lattner87be16a2010-10-05 06:04:14 +0000604//
Sean Callanan108934c2009-12-18 00:01:26 +0000605
Chris Lattnerba7e7562008-01-10 07:59:24 +0000606let Defs = [ESP], Uses = [ESP], neverHasSideEffects=1 in {
Sean Callanan1f24e012009-09-10 18:29:13 +0000607let mayLoad = 1 in {
608def POP16r : I<0x58, AddRegFrm, (outs GR16:$reg), (ins), "pop{w}\t$reg", []>,
609 OpSize;
610def POP32r : I<0x58, AddRegFrm, (outs GR32:$reg), (ins), "pop{l}\t$reg", []>;
611def POP16rmr: I<0x8F, MRM0r, (outs GR16:$reg), (ins), "pop{w}\t$reg", []>,
612 OpSize;
613def POP16rmm: I<0x8F, MRM0m, (outs i16mem:$dst), (ins), "pop{w}\t$dst", []>,
614 OpSize;
615def POP32rmr: I<0x8F, MRM0r, (outs GR32:$reg), (ins), "pop{l}\t$reg", []>;
616def POP32rmm: I<0x8F, MRM0m, (outs i32mem:$dst), (ins), "pop{l}\t$dst", []>;
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000617
618def POPF16 : I<0x9D, RawFrm, (outs), (ins), "popf{w}", []>, OpSize;
619def POPF32 : I<0x9D, RawFrm, (outs), (ins), "popf{l|d}", []>,
620 Requires<[In32BitMode]>;
Sean Callanan1f24e012009-09-10 18:29:13 +0000621}
Chris Lattner1cca5e32003-08-03 21:54:21 +0000622
Sean Callanan1f24e012009-09-10 18:29:13 +0000623let mayStore = 1 in {
624def PUSH16r : I<0x50, AddRegFrm, (outs), (ins GR16:$reg), "push{w}\t$reg",[]>,
625 OpSize;
Evan Cheng2f245ba2007-09-26 01:29:06 +0000626def PUSH32r : I<0x50, AddRegFrm, (outs), (ins GR32:$reg), "push{l}\t$reg",[]>;
Sean Callanan1f24e012009-09-10 18:29:13 +0000627def PUSH16rmr: I<0xFF, MRM6r, (outs), (ins GR16:$reg), "push{w}\t$reg",[]>,
628 OpSize;
629def PUSH16rmm: I<0xFF, MRM6m, (outs), (ins i16mem:$src), "push{w}\t$src",[]>,
630 OpSize;
631def PUSH32rmr: I<0xFF, MRM6r, (outs), (ins GR32:$reg), "push{l}\t$reg",[]>;
632def PUSH32rmm: I<0xFF, MRM6m, (outs), (ins i32mem:$src), "push{l}\t$src",[]>;
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +0000633
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000634def PUSHi8 : Ii8<0x6a, RawFrm, (outs), (ins i32i8imm:$imm),
Bill Wendling927788c2009-06-15 20:59:31 +0000635 "push{l}\t$imm", []>;
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000636def PUSHi16 : Ii16<0x68, RawFrm, (outs), (ins i16imm:$imm),
Kevin Enderby3c979b02010-05-03 20:45:05 +0000637 "push{w}\t$imm", []>, OpSize;
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000638def PUSHi32 : Ii32<0x68, RawFrm, (outs), (ins i32imm:$imm),
Bill Wendling927788c2009-06-15 20:59:31 +0000639 "push{l}\t$imm", []>;
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000640
Dan Gohmane5e4ff92010-05-20 16:16:00 +0000641def PUSHF16 : I<0x9C, RawFrm, (outs), (ins), "pushf{w}", []>, OpSize;
642def PUSHF32 : I<0x9C, RawFrm, (outs), (ins), "pushf{l|d}", []>,
643 Requires<[In32BitMode]>;
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000644
Sean Callanan108934c2009-12-18 00:01:26 +0000645}
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000646}
647
648let Defs = [RSP], Uses = [RSP], neverHasSideEffects=1 in {
649let mayLoad = 1 in {
650def POP64r : I<0x58, AddRegFrm,
651 (outs GR64:$reg), (ins), "pop{q}\t$reg", []>;
652def POP64rmr: I<0x8F, MRM0r, (outs GR64:$reg), (ins), "pop{q}\t$reg", []>;
653def POP64rmm: I<0x8F, MRM0m, (outs i64mem:$dst), (ins), "pop{q}\t$dst", []>;
654}
655let mayStore = 1 in {
656def PUSH64r : I<0x50, AddRegFrm,
657 (outs), (ins GR64:$reg), "push{q}\t$reg", []>;
658def PUSH64rmr: I<0xFF, MRM6r, (outs), (ins GR64:$reg), "push{q}\t$reg", []>;
659def PUSH64rmm: I<0xFF, MRM6m, (outs), (ins i64mem:$src), "push{q}\t$src", []>;
660}
661}
662
663let Defs = [RSP], Uses = [RSP], neverHasSideEffects = 1, mayStore = 1 in {
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000664def PUSH64i8 : Ii8<0x6a, RawFrm, (outs), (ins i8imm:$imm),
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000665 "push{q}\t$imm", []>;
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000666def PUSH64i16 : Ii16<0x68, RawFrm, (outs), (ins i16imm:$imm),
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000667 "push{q}\t$imm", []>;
668def PUSH64i32 : Ii32<0x68, RawFrm, (outs), (ins i64i32imm:$imm),
669 "push{q}\t$imm", []>;
670}
671
672let Defs = [RSP, EFLAGS], Uses = [RSP], mayLoad = 1, neverHasSideEffects=1 in
673def POPF64 : I<0x9D, RawFrm, (outs), (ins), "popfq", []>,
674 Requires<[In64BitMode]>;
675let Defs = [RSP], Uses = [RSP, EFLAGS], mayStore = 1, neverHasSideEffects=1 in
676def PUSHF64 : I<0x9C, RawFrm, (outs), (ins), "pushfq", []>,
677 Requires<[In64BitMode]>;
678
679
Evan Cheng2f245ba2007-09-26 01:29:06 +0000680
Nico Weber50b9efc2010-06-23 20:00:58 +0000681let Defs = [EDI, ESI, EBP, EBX, EDX, ECX, EAX, ESP], Uses = [ESP],
682 mayLoad=1, neverHasSideEffects=1 in {
683def POPA32 : I<0x61, RawFrm, (outs), (ins), "popa{l}", []>,
684 Requires<[In32BitMode]>;
685}
686let Defs = [ESP], Uses = [EDI, ESI, EBP, EBX, EDX, ECX, EAX, ESP],
687 mayStore=1, neverHasSideEffects=1 in {
688def PUSHA32 : I<0x60, RawFrm, (outs), (ins), "pusha{l}", []>,
689 Requires<[In32BitMode]>;
690}
691
Chris Lattner8917cd32010-10-05 06:52:26 +0000692let Constraints = "$src = $dst" in { // GR32 = bswap GR32
693def BSWAP32r : I<0xC8, AddRegFrm,
694 (outs GR32:$dst), (ins GR32:$src),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000695 "bswap{l}\t$dst",
Chris Lattner8917cd32010-10-05 06:52:26 +0000696 [(set GR32:$dst, (bswap GR32:$src))]>, TB;
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000697
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000698def BSWAP64r : RI<0xC8, AddRegFrm, (outs GR64:$dst), (ins GR64:$src),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000699 "bswap{q}\t$dst",
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000700 [(set GR64:$dst, (bswap GR64:$src))]>, TB;
Chris Lattner8917cd32010-10-05 06:52:26 +0000701} // Constraints = "$src = $dst"
Chris Lattner1cca5e32003-08-03 21:54:21 +0000702
Evan Cheng18efe262007-12-14 02:13:44 +0000703// Bit scan instructions.
704let Defs = [EFLAGS] in {
Evan Chengfd9e4732007-12-14 18:49:43 +0000705def BSF16rr : I<0xBC, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src),
Dan Gohman1a8001e2007-12-14 15:10:00 +0000706 "bsf{w}\t{$src, $dst|$dst, $src}",
Kevin Enderby9ac72822010-04-28 23:20:40 +0000707 [(set GR16:$dst, EFLAGS, (X86bsf GR16:$src))]>, TB, OpSize;
Evan Cheng18efe262007-12-14 02:13:44 +0000708def BSF16rm : I<0xBC, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
Dan Gohman1a8001e2007-12-14 15:10:00 +0000709 "bsf{w}\t{$src, $dst|$dst, $src}",
Kevin Enderby9ac72822010-04-28 23:20:40 +0000710 [(set GR16:$dst, EFLAGS, (X86bsf (loadi16 addr:$src)))]>, TB,
711 OpSize;
Evan Chengfd9e4732007-12-14 18:49:43 +0000712def BSF32rr : I<0xBC, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
Dan Gohman1a8001e2007-12-14 15:10:00 +0000713 "bsf{l}\t{$src, $dst|$dst, $src}",
Chris Lattnerd486d772010-03-28 05:07:17 +0000714 [(set GR32:$dst, EFLAGS, (X86bsf GR32:$src))]>, TB;
Evan Cheng18efe262007-12-14 02:13:44 +0000715def BSF32rm : I<0xBC, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
Dan Gohman1a8001e2007-12-14 15:10:00 +0000716 "bsf{l}\t{$src, $dst|$dst, $src}",
Chris Lattnerd486d772010-03-28 05:07:17 +0000717 [(set GR32:$dst, EFLAGS, (X86bsf (loadi32 addr:$src)))]>, TB;
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000718def BSF64rr : RI<0xBC, MRMSrcReg, (outs GR64:$dst), (ins GR64:$src),
719 "bsf{q}\t{$src, $dst|$dst, $src}",
720 [(set GR64:$dst, EFLAGS, (X86bsf GR64:$src))]>, TB;
721def BSF64rm : RI<0xBC, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
722 "bsf{q}\t{$src, $dst|$dst, $src}",
723 [(set GR64:$dst, EFLAGS, (X86bsf (loadi64 addr:$src)))]>, TB;
Evan Cheng18efe262007-12-14 02:13:44 +0000724
Evan Chengfd9e4732007-12-14 18:49:43 +0000725def BSR16rr : I<0xBD, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src),
Dan Gohman1a8001e2007-12-14 15:10:00 +0000726 "bsr{w}\t{$src, $dst|$dst, $src}",
Kevin Enderby9ac72822010-04-28 23:20:40 +0000727 [(set GR16:$dst, EFLAGS, (X86bsr GR16:$src))]>, TB, OpSize;
Evan Cheng18efe262007-12-14 02:13:44 +0000728def BSR16rm : I<0xBD, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
Dan Gohman1a8001e2007-12-14 15:10:00 +0000729 "bsr{w}\t{$src, $dst|$dst, $src}",
Kevin Enderby9ac72822010-04-28 23:20:40 +0000730 [(set GR16:$dst, EFLAGS, (X86bsr (loadi16 addr:$src)))]>, TB,
731 OpSize;
Evan Chengfd9e4732007-12-14 18:49:43 +0000732def BSR32rr : I<0xBD, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
Dan Gohman1a8001e2007-12-14 15:10:00 +0000733 "bsr{l}\t{$src, $dst|$dst, $src}",
Chris Lattnerd486d772010-03-28 05:07:17 +0000734 [(set GR32:$dst, EFLAGS, (X86bsr GR32:$src))]>, TB;
Evan Cheng18efe262007-12-14 02:13:44 +0000735def BSR32rm : I<0xBD, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
Dan Gohman1a8001e2007-12-14 15:10:00 +0000736 "bsr{l}\t{$src, $dst|$dst, $src}",
Chris Lattnerd486d772010-03-28 05:07:17 +0000737 [(set GR32:$dst, EFLAGS, (X86bsr (loadi32 addr:$src)))]>, TB;
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000738def BSR64rr : RI<0xBD, MRMSrcReg, (outs GR64:$dst), (ins GR64:$src),
739 "bsr{q}\t{$src, $dst|$dst, $src}",
740 [(set GR64:$dst, EFLAGS, (X86bsr GR64:$src))]>, TB;
741def BSR64rm : RI<0xBD, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
742 "bsr{q}\t{$src, $dst|$dst, $src}",
743 [(set GR64:$dst, EFLAGS, (X86bsr (loadi64 addr:$src)))]>, TB;
Evan Cheng18efe262007-12-14 02:13:44 +0000744} // Defs = [EFLAGS]
745
Chris Lattner915e5e52004-02-12 17:53:22 +0000746
Kevin Enderby12ce0de2010-02-03 21:04:42 +0000747// These uses the DF flag in the EFLAGS register to inc or dec EDI and ESI
748let Defs = [EDI,ESI], Uses = [EDI,ESI,EFLAGS] in {
749def MOVSB : I<0xA4, RawFrm, (outs), (ins), "{movsb}", []>;
750def MOVSW : I<0xA5, RawFrm, (outs), (ins), "{movsw}", []>, OpSize;
751def MOVSD : I<0xA5, RawFrm, (outs), (ins), "{movsl|movsd}", []>;
Chris Lattnerd3f033d2010-10-05 06:27:48 +0000752def MOVSQ : RI<0xA5, RawFrm, (outs), (ins), "movsq", []>;
Kevin Enderby12ce0de2010-02-03 21:04:42 +0000753}
754
Kevin Enderby12ce0de2010-02-03 21:04:42 +0000755// These uses the DF flag in the EFLAGS register to inc or dec EDI and ESI
756let Defs = [EDI], Uses = [AL,EDI,EFLAGS] in
757def STOSB : I<0xAA, RawFrm, (outs), (ins), "{stosb}", []>;
758let Defs = [EDI], Uses = [AX,EDI,EFLAGS] in
759def STOSW : I<0xAB, RawFrm, (outs), (ins), "{stosw}", []>, OpSize;
760let Defs = [EDI], Uses = [EAX,EDI,EFLAGS] in
761def STOSD : I<0xAB, RawFrm, (outs), (ins), "{stosl|stosd}", []>;
Chris Lattnerd3f033d2010-10-05 06:27:48 +0000762let Defs = [RCX,RDI], Uses = [RAX,RCX,RDI,EFLAGS] in
763def STOSQ : RI<0xAB, RawFrm, (outs), (ins), "stosq", []>;
Kevin Enderby12ce0de2010-02-03 21:04:42 +0000764
Sean Callanana82e4652009-09-12 00:37:19 +0000765def SCAS8 : I<0xAE, RawFrm, (outs), (ins), "scas{b}", []>;
766def SCAS16 : I<0xAF, RawFrm, (outs), (ins), "scas{w}", []>, OpSize;
767def SCAS32 : I<0xAF, RawFrm, (outs), (ins), "scas{l}", []>;
Chris Lattnerd3f033d2010-10-05 06:27:48 +0000768def SCAS64 : RI<0xAF, RawFrm, (outs), (ins), "scasq", []>;
Sean Callanana82e4652009-09-12 00:37:19 +0000769
Sean Callanan6f8f4622009-09-12 02:25:20 +0000770def CMPS8 : I<0xA6, RawFrm, (outs), (ins), "cmps{b}", []>;
771def CMPS16 : I<0xA7, RawFrm, (outs), (ins), "cmps{w}", []>, OpSize;
772def CMPS32 : I<0xA7, RawFrm, (outs), (ins), "cmps{l}", []>;
Chris Lattnerd3f033d2010-10-05 06:27:48 +0000773def CMPS64 : RI<0xA7, RawFrm, (outs), (ins), "cmpsq", []>;
Sean Callanan6f8f4622009-09-12 02:25:20 +0000774
Chris Lattner02552de2009-08-11 16:58:39 +0000775
Chris Lattner1cca5e32003-08-03 21:54:21 +0000776//===----------------------------------------------------------------------===//
Chris Lattner434c7cb2010-10-05 05:32:15 +0000777// Move Instructions.
Chris Lattner1cca5e32003-08-03 21:54:21 +0000778//
Chris Lattner748a2fe2010-10-05 20:49:15 +0000779
Chris Lattnerba7e7562008-01-10 07:59:24 +0000780let neverHasSideEffects = 1 in {
Evan Cheng64d80e32007-07-19 01:14:50 +0000781def MOV8rr : I<0x88, MRMDestReg, (outs GR8 :$dst), (ins GR8 :$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000782 "mov{b}\t{$src, $dst|$dst, $src}", []>;
Evan Cheng64d80e32007-07-19 01:14:50 +0000783def MOV16rr : I<0x89, MRMDestReg, (outs GR16:$dst), (ins GR16:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000784 "mov{w}\t{$src, $dst|$dst, $src}", []>, OpSize;
Evan Cheng64d80e32007-07-19 01:14:50 +0000785def MOV32rr : I<0x89, MRMDestReg, (outs GR32:$dst), (ins GR32:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000786 "mov{l}\t{$src, $dst|$dst, $src}", []>;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000787def MOV64rr : RI<0x89, MRMDestReg, (outs GR64:$dst), (ins GR64:$src),
788 "mov{q}\t{$src, $dst|$dst, $src}", []>;
Chris Lattnerba7e7562008-01-10 07:59:24 +0000789}
Evan Cheng359e9372008-06-18 08:13:07 +0000790let isReMaterializable = 1, isAsCheapAsAMove = 1 in {
Evan Cheng64d80e32007-07-19 01:14:50 +0000791def MOV8ri : Ii8 <0xB0, AddRegFrm, (outs GR8 :$dst), (ins i8imm :$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000792 "mov{b}\t{$src, $dst|$dst, $src}",
Evan Cheng069287d2006-05-16 07:21:53 +0000793 [(set GR8:$dst, imm:$src)]>;
Evan Cheng64d80e32007-07-19 01:14:50 +0000794def MOV16ri : Ii16<0xB8, AddRegFrm, (outs GR16:$dst), (ins i16imm:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000795 "mov{w}\t{$src, $dst|$dst, $src}",
Evan Cheng069287d2006-05-16 07:21:53 +0000796 [(set GR16:$dst, imm:$src)]>, OpSize;
Evan Cheng64d80e32007-07-19 01:14:50 +0000797def MOV32ri : Ii32<0xB8, AddRegFrm, (outs GR32:$dst), (ins i32imm:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000798 "mov{l}\t{$src, $dst|$dst, $src}",
Evan Cheng069287d2006-05-16 07:21:53 +0000799 [(set GR32:$dst, imm:$src)]>;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000800def MOV64ri : RIi64<0xB8, AddRegFrm, (outs GR64:$dst), (ins i64imm:$src),
801 "movabs{q}\t{$src, $dst|$dst, $src}",
802 [(set GR64:$dst, imm:$src)]>;
803def MOV64ri32 : RIi32<0xC7, MRM0r, (outs GR64:$dst), (ins i64i32imm:$src),
804 "mov{q}\t{$src, $dst|$dst, $src}",
805 [(set GR64:$dst, i64immSExt32:$src)]>;
Dan Gohmand45eddd2007-06-26 00:48:07 +0000806}
Kevin Enderby12ce0de2010-02-03 21:04:42 +0000807
Evan Cheng64d80e32007-07-19 01:14:50 +0000808def MOV8mi : Ii8 <0xC6, MRM0m, (outs), (ins i8mem :$dst, i8imm :$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000809 "mov{b}\t{$src, $dst|$dst, $src}",
Evan Chengb51a0592005-12-10 00:48:20 +0000810 [(store (i8 imm:$src), addr:$dst)]>;
Evan Cheng64d80e32007-07-19 01:14:50 +0000811def MOV16mi : Ii16<0xC7, MRM0m, (outs), (ins i16mem:$dst, i16imm:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000812 "mov{w}\t{$src, $dst|$dst, $src}",
Evan Chengb51a0592005-12-10 00:48:20 +0000813 [(store (i16 imm:$src), addr:$dst)]>, OpSize;
Evan Cheng64d80e32007-07-19 01:14:50 +0000814def MOV32mi : Ii32<0xC7, MRM0m, (outs), (ins i32mem:$dst, i32imm:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000815 "mov{l}\t{$src, $dst|$dst, $src}",
Evan Chengb51a0592005-12-10 00:48:20 +0000816 [(store (i32 imm:$src), addr:$dst)]>;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000817def MOV64mi32 : RIi32<0xC7, MRM0m, (outs), (ins i64mem:$dst, i64i32imm:$src),
818 "mov{q}\t{$src, $dst|$dst, $src}",
819 [(store i64immSExt32:$src, addr:$dst)]>;
Chris Lattner1cca5e32003-08-03 21:54:21 +0000820
Chris Lattnerb5505d02010-05-13 00:02:47 +0000821/// moffs8, moffs16 and moffs32 versions of moves. The immediate is a
822/// 32-bit offset from the PC. These are only valid in x86-32 mode.
Chris Lattner2745f6e2010-05-12 22:48:24 +0000823def MOV8o8a : Ii32 <0xA0, RawFrm, (outs), (ins offset8:$src),
Daniel Dunbar6c2c9a22010-07-19 06:14:44 +0000824 "mov{b}\t{$src, %al|%al, $src}", []>,
825 Requires<[In32BitMode]>;
Chris Lattner2745f6e2010-05-12 22:48:24 +0000826def MOV16o16a : Ii32 <0xA1, RawFrm, (outs), (ins offset16:$src),
Daniel Dunbar6c2c9a22010-07-19 06:14:44 +0000827 "mov{w}\t{$src, %ax|%ax, $src}", []>, OpSize,
828 Requires<[In32BitMode]>;
Sean Callanan108934c2009-12-18 00:01:26 +0000829def MOV32o32a : Ii32 <0xA1, RawFrm, (outs), (ins offset32:$src),
Daniel Dunbar6c2c9a22010-07-19 06:14:44 +0000830 "mov{l}\t{$src, %eax|%eax, $src}", []>,
831 Requires<[In32BitMode]>;
Chris Lattner2745f6e2010-05-12 22:48:24 +0000832def MOV8ao8 : Ii32 <0xA2, RawFrm, (outs offset8:$dst), (ins),
Daniel Dunbar6c2c9a22010-07-19 06:14:44 +0000833 "mov{b}\t{%al, $dst|$dst, %al}", []>,
834 Requires<[In32BitMode]>;
Chris Lattner2745f6e2010-05-12 22:48:24 +0000835def MOV16ao16 : Ii32 <0xA3, RawFrm, (outs offset16:$dst), (ins),
Daniel Dunbar6c2c9a22010-07-19 06:14:44 +0000836 "mov{w}\t{%ax, $dst|$dst, %ax}", []>, OpSize,
837 Requires<[In32BitMode]>;
Sean Callanan108934c2009-12-18 00:01:26 +0000838def MOV32ao32 : Ii32 <0xA3, RawFrm, (outs offset32:$dst), (ins),
Daniel Dunbar6c2c9a22010-07-19 06:14:44 +0000839 "mov{l}\t{%eax, $dst|$dst, %eax}", []>,
840 Requires<[In32BitMode]>;
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000841
Chris Lattner748a2fe2010-10-05 20:49:15 +0000842// FIXME: These definitions are utterly broken
843// Just leave them commented out for now because they're useless outside
844// of the large code model, and most compilers won't generate the instructions
845// in question.
846/*
847def MOV64o8a : RIi8<0xA0, RawFrm, (outs), (ins offset8:$src),
848 "mov{q}\t{$src, %rax|%rax, $src}", []>;
849def MOV64o64a : RIi32<0xA1, RawFrm, (outs), (ins offset64:$src),
850 "mov{q}\t{$src, %rax|%rax, $src}", []>;
851def MOV64ao8 : RIi8<0xA2, RawFrm, (outs offset8:$dst), (ins),
852 "mov{q}\t{%rax, $dst|$dst, %rax}", []>;
853def MOV64ao64 : RIi32<0xA3, RawFrm, (outs offset64:$dst), (ins),
854 "mov{q}\t{%rax, $dst|$dst, %rax}", []>;
855*/
856
Sean Callanan38fee0e2009-09-15 18:47:29 +0000857
Daniel Dunbardcbab9c2010-05-26 22:21:28 +0000858let isCodeGenOnly = 1 in {
Sean Callanan108934c2009-12-18 00:01:26 +0000859def MOV8rr_REV : I<0x8A, MRMSrcReg, (outs GR8:$dst), (ins GR8:$src),
860 "mov{b}\t{$src, $dst|$dst, $src}", []>;
861def MOV16rr_REV : I<0x8B, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src),
862 "mov{w}\t{$src, $dst|$dst, $src}", []>, OpSize;
863def MOV32rr_REV : I<0x8B, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
864 "mov{l}\t{$src, $dst|$dst, $src}", []>;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000865def MOV64rr_REV : RI<0x8B, MRMSrcReg, (outs GR64:$dst), (ins GR64:$src),
866 "mov{q}\t{$src, $dst|$dst, $src}", []>;
Daniel Dunbardcbab9c2010-05-26 22:21:28 +0000867}
Sean Callanan108934c2009-12-18 00:01:26 +0000868
Dan Gohmanbc9d98b2010-02-27 23:47:46 +0000869let canFoldAsLoad = 1, isReMaterializable = 1 in {
Evan Cheng64d80e32007-07-19 01:14:50 +0000870def MOV8rm : I<0x8A, MRMSrcMem, (outs GR8 :$dst), (ins i8mem :$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000871 "mov{b}\t{$src, $dst|$dst, $src}",
Chris Lattnerc2406f22009-04-10 00:16:23 +0000872 [(set GR8:$dst, (loadi8 addr:$src))]>;
Evan Cheng64d80e32007-07-19 01:14:50 +0000873def MOV16rm : I<0x8B, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000874 "mov{w}\t{$src, $dst|$dst, $src}",
Chris Lattnerc2406f22009-04-10 00:16:23 +0000875 [(set GR16:$dst, (loadi16 addr:$src))]>, OpSize;
Evan Cheng64d80e32007-07-19 01:14:50 +0000876def MOV32rm : I<0x8B, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000877 "mov{l}\t{$src, $dst|$dst, $src}",
Chris Lattnerc2406f22009-04-10 00:16:23 +0000878 [(set GR32:$dst, (loadi32 addr:$src))]>;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000879def MOV64rm : RI<0x8B, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
880 "mov{q}\t{$src, $dst|$dst, $src}",
881 [(set GR64:$dst, (load addr:$src))]>;
Evan Cheng2f394262007-08-30 05:49:43 +0000882}
Chris Lattner1cca5e32003-08-03 21:54:21 +0000883
Evan Cheng64d80e32007-07-19 01:14:50 +0000884def MOV8mr : I<0x88, MRMDestMem, (outs), (ins i8mem :$dst, GR8 :$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000885 "mov{b}\t{$src, $dst|$dst, $src}",
Evan Cheng069287d2006-05-16 07:21:53 +0000886 [(store GR8:$src, addr:$dst)]>;
Evan Cheng64d80e32007-07-19 01:14:50 +0000887def MOV16mr : I<0x89, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000888 "mov{w}\t{$src, $dst|$dst, $src}",
Evan Cheng069287d2006-05-16 07:21:53 +0000889 [(store GR16:$src, addr:$dst)]>, OpSize;
Evan Cheng64d80e32007-07-19 01:14:50 +0000890def MOV32mr : I<0x89, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000891 "mov{l}\t{$src, $dst|$dst, $src}",
Evan Cheng069287d2006-05-16 07:21:53 +0000892 [(store GR32:$src, addr:$dst)]>;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000893def MOV64mr : RI<0x89, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src),
894 "mov{q}\t{$src, $dst|$dst, $src}",
895 [(store GR64:$src, addr:$dst)]>;
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000896
Dan Gohman4af325d2009-04-27 16:41:36 +0000897// Versions of MOV8rr, MOV8mr, and MOV8rm that use i8mem_NOREX and GR8_NOREX so
898// that they can be used for copying and storing h registers, which can't be
899// encoded when a REX prefix is present.
Daniel Dunbarcf246b72010-07-19 06:14:49 +0000900let isCodeGenOnly = 1 in {
Dan Gohman6d9305c2009-04-15 00:04:23 +0000901let neverHasSideEffects = 1 in
Dan Gohmandf7dfc72009-04-15 19:48:57 +0000902def MOV8rr_NOREX : I<0x88, MRMDestReg,
903 (outs GR8_NOREX:$dst), (ins GR8_NOREX:$src),
Dan Gohman6d9305c2009-04-15 00:04:23 +0000904 "mov{b}\t{$src, $dst|$dst, $src} # NOREX", []>;
Evan Cheng8c147402009-04-30 00:58:57 +0000905let mayStore = 1 in
Dan Gohman6d9305c2009-04-15 00:04:23 +0000906def MOV8mr_NOREX : I<0x88, MRMDestMem,
907 (outs), (ins i8mem_NOREX:$dst, GR8_NOREX:$src),
908 "mov{b}\t{$src, $dst|$dst, $src} # NOREX", []>;
Evan Cheng8c147402009-04-30 00:58:57 +0000909let mayLoad = 1,
Dan Gohmanbc9d98b2010-02-27 23:47:46 +0000910 canFoldAsLoad = 1, isReMaterializable = 1 in
Dan Gohman4af325d2009-04-27 16:41:36 +0000911def MOV8rm_NOREX : I<0x8A, MRMSrcMem,
912 (outs GR8_NOREX:$dst), (ins i8mem_NOREX:$src),
913 "mov{b}\t{$src, $dst|$dst, $src} # NOREX", []>;
Daniel Dunbarcf246b72010-07-19 06:14:49 +0000914}
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000915
Evan Cheng0488db92007-09-25 01:57:46 +0000916
Alkis Evlogimenos5ab29b52004-02-28 22:02:05 +0000917// Condition code ops, incl. set if equal/not equal/...
Chris Lattnerba7e7562008-01-10 07:59:24 +0000918let Defs = [EFLAGS], Uses = [AH], neverHasSideEffects = 1 in
Evan Cheng071a2792007-09-11 19:55:27 +0000919def SAHF : I<0x9E, RawFrm, (outs), (ins), "sahf", []>; // flags = AH
Chris Lattnerba7e7562008-01-10 07:59:24 +0000920let Defs = [AH], Uses = [EFLAGS], neverHasSideEffects = 1 in
Evan Cheng071a2792007-09-11 19:55:27 +0000921def LAHF : I<0x9F, RawFrm, (outs), (ins), "lahf", []>; // AH = flags
Alkis Evlogimenos5ab29b52004-02-28 22:02:05 +0000922
Sean Callanana09caa52009-09-02 00:55:49 +0000923
Chris Lattner748a2fe2010-10-05 20:49:15 +0000924//===----------------------------------------------------------------------===//
925// Bit tests instructions: BT, BTS, BTR, BTC.
Daniel Dunbar1e8ee892010-03-09 22:50:40 +0000926
Dan Gohmanc7a37d42008-12-23 22:45:23 +0000927let Defs = [EFLAGS] in {
Dan Gohman0c89b7e2009-01-13 20:32:45 +0000928def BT16rr : I<0xA3, MRMDestReg, (outs), (ins GR16:$src1, GR16:$src2),
Dan Gohmanc7a37d42008-12-23 22:45:23 +0000929 "bt{w}\t{$src2, $src1|$src1, $src2}",
Chris Lattnere3486a42010-03-19 00:01:11 +0000930 [(set EFLAGS, (X86bt GR16:$src1, GR16:$src2))]>, OpSize, TB;
Dan Gohman0c89b7e2009-01-13 20:32:45 +0000931def BT32rr : I<0xA3, MRMDestReg, (outs), (ins GR32:$src1, GR32:$src2),
Dan Gohmanc7a37d42008-12-23 22:45:23 +0000932 "bt{l}\t{$src2, $src1|$src1, $src2}",
Chris Lattnere3486a42010-03-19 00:01:11 +0000933 [(set EFLAGS, (X86bt GR32:$src1, GR32:$src2))]>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000934def BT64rr : RI<0xA3, MRMDestReg, (outs), (ins GR64:$src1, GR64:$src2),
935 "bt{q}\t{$src2, $src1|$src1, $src2}",
936 [(set EFLAGS, (X86bt GR64:$src1, GR64:$src2))]>, TB;
Dan Gohmanf31408d2009-01-13 23:23:30 +0000937
938// Unlike with the register+register form, the memory+register form of the
939// bt instruction does not ignore the high bits of the index. From ISel's
Sean Callanan108934c2009-12-18 00:01:26 +0000940// perspective, this is pretty bizarre. Make these instructions disassembly
941// only for now.
942
943def BT16mr : I<0xA3, MRMDestMem, (outs), (ins i16mem:$src1, GR16:$src2),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000944 "bt{w}\t{$src2, $src1|$src1, $src2}",
Dan Gohmanf31408d2009-01-13 23:23:30 +0000945// [(X86bt (loadi16 addr:$src1), GR16:$src2),
Sean Callanan108934c2009-12-18 00:01:26 +0000946// (implicit EFLAGS)]
947 []
948 >, OpSize, TB, Requires<[FastBTMem]>;
949def BT32mr : I<0xA3, MRMDestMem, (outs), (ins i32mem:$src1, GR32:$src2),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000950 "bt{l}\t{$src2, $src1|$src1, $src2}",
Dan Gohmanf31408d2009-01-13 23:23:30 +0000951// [(X86bt (loadi32 addr:$src1), GR32:$src2),
Sean Callanan108934c2009-12-18 00:01:26 +0000952// (implicit EFLAGS)]
953 []
954 >, TB, Requires<[FastBTMem]>;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000955def BT64mr : RI<0xA3, MRMDestMem, (outs), (ins i64mem:$src1, GR64:$src2),
956 "bt{q}\t{$src2, $src1|$src1, $src2}",
957// [(X86bt (loadi64 addr:$src1), GR64:$src2),
958// (implicit EFLAGS)]
959 []
960 >, TB;
Dan Gohman4afe15b2009-01-13 20:33:23 +0000961
962def BT16ri8 : Ii8<0xBA, MRM4r, (outs), (ins GR16:$src1, i16i8imm:$src2),
963 "bt{w}\t{$src2, $src1|$src1, $src2}",
Chris Lattnere3486a42010-03-19 00:01:11 +0000964 [(set EFLAGS, (X86bt GR16:$src1, i16immSExt8:$src2))]>,
965 OpSize, TB;
Dan Gohman4afe15b2009-01-13 20:33:23 +0000966def BT32ri8 : Ii8<0xBA, MRM4r, (outs), (ins GR32:$src1, i32i8imm:$src2),
967 "bt{l}\t{$src2, $src1|$src1, $src2}",
Chris Lattnere3486a42010-03-19 00:01:11 +0000968 [(set EFLAGS, (X86bt GR32:$src1, i32immSExt8:$src2))]>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000969def BT64ri8 : RIi8<0xBA, MRM4r, (outs), (ins GR64:$src1, i64i8imm:$src2),
970 "bt{q}\t{$src2, $src1|$src1, $src2}",
971 [(set EFLAGS, (X86bt GR64:$src1, i64immSExt8:$src2))]>, TB;
972
Dan Gohman4afe15b2009-01-13 20:33:23 +0000973// Note that these instructions don't need FastBTMem because that
974// only applies when the other operand is in a register. When it's
975// an immediate, bt is still fast.
976def BT16mi8 : Ii8<0xBA, MRM4m, (outs), (ins i16mem:$src1, i16i8imm:$src2),
977 "bt{w}\t{$src2, $src1|$src1, $src2}",
Chris Lattnere3486a42010-03-19 00:01:11 +0000978 [(set EFLAGS, (X86bt (loadi16 addr:$src1), i16immSExt8:$src2))
979 ]>, OpSize, TB;
Dan Gohman4afe15b2009-01-13 20:33:23 +0000980def BT32mi8 : Ii8<0xBA, MRM4m, (outs), (ins i32mem:$src1, i32i8imm:$src2),
981 "bt{l}\t{$src2, $src1|$src1, $src2}",
Chris Lattnere3486a42010-03-19 00:01:11 +0000982 [(set EFLAGS, (X86bt (loadi32 addr:$src1), i32immSExt8:$src2))
983 ]>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000984def BT64mi8 : RIi8<0xBA, MRM4m, (outs), (ins i64mem:$src1, i64i8imm:$src2),
985 "bt{q}\t{$src2, $src1|$src1, $src2}",
986 [(set EFLAGS, (X86bt (loadi64 addr:$src1),
987 i64immSExt8:$src2))]>, TB;
988
Sean Callanan108934c2009-12-18 00:01:26 +0000989
990def BTC16rr : I<0xBB, MRMDestReg, (outs), (ins GR16:$src1, GR16:$src2),
991 "btc{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
992def BTC32rr : I<0xBB, MRMDestReg, (outs), (ins GR32:$src1, GR32:$src2),
993 "btc{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000994def BTC64rr : RI<0xBB, MRMDestReg, (outs), (ins GR64:$src1, GR64:$src2),
995 "btc{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +0000996def BTC16mr : I<0xBB, MRMDestMem, (outs), (ins i16mem:$src1, GR16:$src2),
997 "btc{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
998def BTC32mr : I<0xBB, MRMDestMem, (outs), (ins i32mem:$src1, GR32:$src2),
999 "btc{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001000def BTC64mr : RI<0xBB, MRMDestMem, (outs), (ins i64mem:$src1, GR64:$src2),
1001 "btc{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001002def BTC16ri8 : Ii8<0xBA, MRM7r, (outs), (ins GR16:$src1, i16i8imm:$src2),
1003 "btc{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1004def BTC32ri8 : Ii8<0xBA, MRM7r, (outs), (ins GR32:$src1, i32i8imm:$src2),
1005 "btc{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001006def BTC64ri8 : RIi8<0xBA, MRM7r, (outs), (ins GR64:$src1, i64i8imm:$src2),
1007 "btc{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001008def BTC16mi8 : Ii8<0xBA, MRM7m, (outs), (ins i16mem:$src1, i16i8imm:$src2),
1009 "btc{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1010def BTC32mi8 : Ii8<0xBA, MRM7m, (outs), (ins i32mem:$src1, i32i8imm:$src2),
1011 "btc{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001012def BTC64mi8 : RIi8<0xBA, MRM7m, (outs), (ins i64mem:$src1, i64i8imm:$src2),
1013 "btc{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001014
1015def BTR16rr : I<0xB3, MRMDestReg, (outs), (ins GR16:$src1, GR16:$src2),
1016 "btr{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1017def BTR32rr : I<0xB3, MRMDestReg, (outs), (ins GR32:$src1, GR32:$src2),
1018 "btr{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001019def BTR64rr : RI<0xB3, MRMDestReg, (outs), (ins GR64:$src1, GR64:$src2),
1020 "btr{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001021def BTR16mr : I<0xB3, MRMDestMem, (outs), (ins i16mem:$src1, GR16:$src2),
1022 "btr{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1023def BTR32mr : I<0xB3, MRMDestMem, (outs), (ins i32mem:$src1, GR32:$src2),
1024 "btr{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001025def BTR64mr : RI<0xB3, MRMDestMem, (outs), (ins i64mem:$src1, GR64:$src2),
1026 "btr{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001027def BTR16ri8 : Ii8<0xBA, MRM6r, (outs), (ins GR16:$src1, i16i8imm:$src2),
1028 "btr{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1029def BTR32ri8 : Ii8<0xBA, MRM6r, (outs), (ins GR32:$src1, i32i8imm:$src2),
1030 "btr{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001031def BTR64ri8 : RIi8<0xBA, MRM6r, (outs), (ins GR64:$src1, i64i8imm:$src2),
1032 "btr{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001033def BTR16mi8 : Ii8<0xBA, MRM6m, (outs), (ins i16mem:$src1, i16i8imm:$src2),
1034 "btr{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1035def BTR32mi8 : Ii8<0xBA, MRM6m, (outs), (ins i32mem:$src1, i32i8imm:$src2),
1036 "btr{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001037def BTR64mi8 : RIi8<0xBA, MRM6m, (outs), (ins i64mem:$src1, i64i8imm:$src2),
1038 "btr{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001039
1040def BTS16rr : I<0xAB, MRMDestReg, (outs), (ins GR16:$src1, GR16:$src2),
1041 "bts{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1042def BTS32rr : I<0xAB, MRMDestReg, (outs), (ins GR32:$src1, GR32:$src2),
1043 "bts{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001044def BTS64rr : RI<0xAB, MRMDestReg, (outs), (ins GR64:$src1, GR64:$src2),
1045 "bts{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001046def BTS16mr : I<0xAB, MRMDestMem, (outs), (ins i16mem:$src1, GR16:$src2),
1047 "bts{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1048def BTS32mr : I<0xAB, MRMDestMem, (outs), (ins i32mem:$src1, GR32:$src2),
1049 "bts{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001050def BTS64mr : RI<0xAB, MRMDestMem, (outs), (ins i64mem:$src1, GR64:$src2),
1051 "bts{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001052def BTS16ri8 : Ii8<0xBA, MRM5r, (outs), (ins GR16:$src1, i16i8imm:$src2),
1053 "bts{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1054def BTS32ri8 : Ii8<0xBA, MRM5r, (outs), (ins GR32:$src1, i32i8imm:$src2),
1055 "bts{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001056def BTS64ri8 : RIi8<0xBA, MRM5r, (outs), (ins GR64:$src1, i64i8imm:$src2),
1057 "bts{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001058def BTS16mi8 : Ii8<0xBA, MRM5m, (outs), (ins i16mem:$src1, i16i8imm:$src2),
1059 "bts{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1060def BTS32mi8 : Ii8<0xBA, MRM5m, (outs), (ins i32mem:$src1, i32i8imm:$src2),
1061 "bts{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001062def BTS64mi8 : RIi8<0xBA, MRM5m, (outs), (ins i64mem:$src1, i64i8imm:$src2),
1063 "bts{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Dan Gohmanc7a37d42008-12-23 22:45:23 +00001064} // Defs = [EFLAGS]
1065
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001066
1067//===----------------------------------------------------------------------===//
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001068// Atomic support
1069//
Andrew Lenharthea7da502008-03-01 13:37:02 +00001070
Eric Christopher9a9d2752010-07-22 02:48:34 +00001071
Evan Chengbb6939d2008-04-19 01:20:30 +00001072// Atomic swap. These are just normal xchg instructions. But since a memory
1073// operand is referenced, the atomicity is ensured.
Dan Gohman165660e2008-08-06 15:52:50 +00001074let Constraints = "$val = $dst" in {
Chris Lattner010496c2010-10-05 06:22:35 +00001075def XCHG8rm : I<0x86, MRMSrcMem, (outs GR8:$dst), (ins GR8:$val, i8mem:$ptr),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001076 "xchg{b}\t{$val, $ptr|$ptr, $val}",
Chris Lattner010496c2010-10-05 06:22:35 +00001077 [(set GR8:$dst, (atomic_swap_8 addr:$ptr, GR8:$val))]>;
Chris Lattner5bde7342010-11-06 08:20:59 +00001078def XCHG16rm : I<0x87, MRMSrcMem, (outs GR16:$dst),(ins GR16:$val, i16mem:$ptr),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001079 "xchg{w}\t{$val, $ptr|$ptr, $val}",
1080 [(set GR16:$dst, (atomic_swap_16 addr:$ptr, GR16:$val))]>,
Evan Chengbb6939d2008-04-19 01:20:30 +00001081 OpSize;
Chris Lattner5bde7342010-11-06 08:20:59 +00001082def XCHG32rm : I<0x87, MRMSrcMem, (outs GR32:$dst),(ins GR32:$val, i32mem:$ptr),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001083 "xchg{l}\t{$val, $ptr|$ptr, $val}",
Chris Lattner010496c2010-10-05 06:22:35 +00001084 [(set GR32:$dst, (atomic_swap_32 addr:$ptr, GR32:$val))]>;
Chris Lattner5bde7342010-11-06 08:20:59 +00001085def XCHG64rm : RI<0x87, MRMSrcMem, (outs GR64:$dst),(ins GR64:$val,i64mem:$ptr),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001086 "xchg{q}\t{$val, $ptr|$ptr, $val}",
Chris Lattner010496c2010-10-05 06:22:35 +00001087 [(set GR64:$dst, (atomic_swap_64 addr:$ptr, GR64:$val))]>;
Sean Callanan108934c2009-12-18 00:01:26 +00001088
Sean Callanan108934c2009-12-18 00:01:26 +00001089def XCHG8rr : I<0x86, MRMSrcReg, (outs GR8:$dst), (ins GR8:$val, GR8:$src),
1090 "xchg{b}\t{$val, $src|$src, $val}", []>;
Chris Lattner010496c2010-10-05 06:22:35 +00001091def XCHG16rr : I<0x87, MRMSrcReg, (outs GR16:$dst), (ins GR16:$val, GR16:$src),
1092 "xchg{w}\t{$val, $src|$src, $val}", []>, OpSize;
1093def XCHG32rr : I<0x87, MRMSrcReg, (outs GR32:$dst), (ins GR32:$val, GR32:$src),
1094 "xchg{l}\t{$val, $src|$src, $val}", []>;
1095def XCHG64rr : RI<0x87, MRMSrcReg, (outs GR64:$dst), (ins GR64:$val,GR64:$src),
1096 "xchg{q}\t{$val, $src|$src, $val}", []>;
Evan Chengbb6939d2008-04-19 01:20:30 +00001097}
1098
Sean Callanan108934c2009-12-18 00:01:26 +00001099def XCHG16ar : I<0x90, AddRegFrm, (outs), (ins GR16:$src),
1100 "xchg{w}\t{$src, %ax|%ax, $src}", []>, OpSize;
1101def XCHG32ar : I<0x90, AddRegFrm, (outs), (ins GR32:$src),
1102 "xchg{l}\t{$src, %eax|%eax, $src}", []>;
Chris Lattner010496c2010-10-05 06:22:35 +00001103def XCHG64ar : RI<0x90, AddRegFrm, (outs), (ins GR64:$src),
1104 "xchg{q}\t{$src, %rax|%rax, $src}", []>;
Sean Callanan108934c2009-12-18 00:01:26 +00001105
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001106
Andrew Lenharthea7da502008-03-01 13:37:02 +00001107
Sean Callanan108934c2009-12-18 00:01:26 +00001108def XADD8rr : I<0xC0, MRMDestReg, (outs GR8:$dst), (ins GR8:$src),
1109 "xadd{b}\t{$src, $dst|$dst, $src}", []>, TB;
1110def XADD16rr : I<0xC1, MRMDestReg, (outs GR16:$dst), (ins GR16:$src),
1111 "xadd{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
1112def XADD32rr : I<0xC1, MRMDestReg, (outs GR32:$dst), (ins GR32:$src),
1113 "xadd{l}\t{$src, $dst|$dst, $src}", []>, TB;
Chris Lattner010496c2010-10-05 06:22:35 +00001114def XADD64rr : RI<0xC1, MRMDestReg, (outs GR64:$dst), (ins GR64:$src),
1115 "xadd{q}\t{$src, $dst|$dst, $src}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001116
Dan Gohman7f357ec2010-05-14 16:34:55 +00001117let mayLoad = 1, mayStore = 1 in {
Sean Callanan108934c2009-12-18 00:01:26 +00001118def XADD8rm : I<0xC0, MRMDestMem, (outs), (ins i8mem:$dst, GR8:$src),
1119 "xadd{b}\t{$src, $dst|$dst, $src}", []>, TB;
1120def XADD16rm : I<0xC1, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src),
1121 "xadd{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
1122def XADD32rm : I<0xC1, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
1123 "xadd{l}\t{$src, $dst|$dst, $src}", []>, TB;
Chris Lattner010496c2010-10-05 06:22:35 +00001124def XADD64rm : RI<0xC1, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src),
1125 "xadd{q}\t{$src, $dst|$dst, $src}", []>, TB;
1126
Dan Gohman7f357ec2010-05-14 16:34:55 +00001127}
Sean Callanan108934c2009-12-18 00:01:26 +00001128
1129def CMPXCHG8rr : I<0xB0, MRMDestReg, (outs GR8:$dst), (ins GR8:$src),
1130 "cmpxchg{b}\t{$src, $dst|$dst, $src}", []>, TB;
1131def CMPXCHG16rr : I<0xB1, MRMDestReg, (outs GR16:$dst), (ins GR16:$src),
1132 "cmpxchg{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
1133def CMPXCHG32rr : I<0xB1, MRMDestReg, (outs GR32:$dst), (ins GR32:$src),
1134 "cmpxchg{l}\t{$src, $dst|$dst, $src}", []>, TB;
Chris Lattner010496c2010-10-05 06:22:35 +00001135def CMPXCHG64rr : RI<0xB1, MRMDestReg, (outs GR64:$dst), (ins GR64:$src),
1136 "cmpxchg{q}\t{$src, $dst|$dst, $src}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001137
Dan Gohman7f357ec2010-05-14 16:34:55 +00001138let mayLoad = 1, mayStore = 1 in {
Sean Callanan108934c2009-12-18 00:01:26 +00001139def CMPXCHG8rm : I<0xB0, MRMDestMem, (outs), (ins i8mem:$dst, GR8:$src),
1140 "cmpxchg{b}\t{$src, $dst|$dst, $src}", []>, TB;
1141def CMPXCHG16rm : I<0xB1, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src),
1142 "cmpxchg{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
1143def CMPXCHG32rm : I<0xB1, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
1144 "cmpxchg{l}\t{$src, $dst|$dst, $src}", []>, TB;
Chris Lattner010496c2010-10-05 06:22:35 +00001145def CMPXCHG64rm : RI<0xB1, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src),
1146 "cmpxchg{q}\t{$src, $dst|$dst, $src}", []>, TB;
Dan Gohman7f357ec2010-05-14 16:34:55 +00001147}
Sean Callanan108934c2009-12-18 00:01:26 +00001148
Evan Chengb093bd02010-01-08 01:29:19 +00001149let Defs = [EAX, EDX, EFLAGS], Uses = [EAX, EBX, ECX, EDX] in
Sean Callanan108934c2009-12-18 00:01:26 +00001150def CMPXCHG8B : I<0xC7, MRM1m, (outs), (ins i64mem:$dst),
1151 "cmpxchg8b\t$dst", []>, TB;
1152
Chris Lattner010496c2010-10-05 06:22:35 +00001153let Defs = [RAX, RDX, EFLAGS], Uses = [RAX, RBX, RCX, RDX] in
1154def CMPXCHG16B : RI<0xC7, MRM1m, (outs), (ins i128mem:$dst),
1155 "cmpxchg16b\t$dst", []>, TB;
Evan Cheng37b73872009-07-30 08:33:02 +00001156
Evan Cheng37b73872009-07-30 08:33:02 +00001157
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001158
Kevin Enderby12ce0de2010-02-03 21:04:42 +00001159// Lock instruction prefix
1160def LOCK_PREFIX : I<0xF0, RawFrm, (outs), (ins), "lock", []>;
1161
Rafael Espindolabeb68982010-11-23 11:23:24 +00001162// Rex64 instruction prefix
1163def REX64_PREFIX : I<0x48, RawFrm, (outs), (ins), "rex64", []>;
1164
Rafael Espindolabfd2d262010-11-27 20:29:45 +00001165// Data16 instruction prefix
1166def DATA16_PREFIX : I<0x66, RawFrm, (outs), (ins), "data16", []>;
1167
Kevin Enderby12ce0de2010-02-03 21:04:42 +00001168// Repeat string operation instruction prefixes
1169// These uses the DF flag in the EFLAGS register to inc or dec ECX
1170let Defs = [ECX], Uses = [ECX,EFLAGS] in {
1171// Repeat (used with INS, OUTS, MOVS, LODS and STOS)
1172def REP_PREFIX : I<0xF3, RawFrm, (outs), (ins), "rep", []>;
1173// Repeat while not equal (used with CMPS and SCAS)
1174def REPNE_PREFIX : I<0xF2, RawFrm, (outs), (ins), "repne", []>;
1175}
1176
Kevin Enderby12ce0de2010-02-03 21:04:42 +00001177
Sean Callanan9a86f102009-09-16 22:59:28 +00001178// String manipulation instructions
Sean Callanan9a86f102009-09-16 22:59:28 +00001179def LODSB : I<0xAC, RawFrm, (outs), (ins), "lodsb", []>;
1180def LODSW : I<0xAD, RawFrm, (outs), (ins), "lodsw", []>, OpSize;
Sean Callanan108934c2009-12-18 00:01:26 +00001181def LODSD : I<0xAD, RawFrm, (outs), (ins), "lods{l|d}", []>;
Chris Lattner010496c2010-10-05 06:22:35 +00001182def LODSQ : RI<0xAD, RawFrm, (outs), (ins), "lodsq", []>;
Sean Callanan108934c2009-12-18 00:01:26 +00001183
1184def OUTSB : I<0x6E, RawFrm, (outs), (ins), "outsb", []>;
1185def OUTSW : I<0x6F, RawFrm, (outs), (ins), "outsw", []>, OpSize;
1186def OUTSD : I<0x6F, RawFrm, (outs), (ins), "outs{l|d}", []>;
1187
Sean Callanan108934c2009-12-18 00:01:26 +00001188
1189// Flag instructions
Sean Callanan108934c2009-12-18 00:01:26 +00001190def CLC : I<0xF8, RawFrm, (outs), (ins), "clc", []>;
1191def STC : I<0xF9, RawFrm, (outs), (ins), "stc", []>;
1192def CLI : I<0xFA, RawFrm, (outs), (ins), "cli", []>;
1193def STI : I<0xFB, RawFrm, (outs), (ins), "sti", []>;
1194def CLD : I<0xFC, RawFrm, (outs), (ins), "cld", []>;
1195def STD : I<0xFD, RawFrm, (outs), (ins), "std", []>;
1196def CMC : I<0xF5, RawFrm, (outs), (ins), "cmc", []>;
1197
1198def CLTS : I<0x06, RawFrm, (outs), (ins), "clts", []>, TB;
1199
1200// Table lookup instructions
Sean Callanan108934c2009-12-18 00:01:26 +00001201def XLAT : I<0xD7, RawFrm, (outs), (ins), "xlatb", []>;
1202
Kevin Enderby7aef62f2010-10-18 17:04:36 +00001203// ASCII Adjust After Addition
1204// sets AL, AH and CF and AF of EFLAGS and uses AL and AF of EFLAGS
1205def AAA : I<0x37, RawFrm, (outs), (ins), "aaa", []>, Requires<[In32BitMode]>;
Evan Cheng510e4782006-01-09 23:10:28 +00001206
Kevin Enderby7aef62f2010-10-18 17:04:36 +00001207// ASCII Adjust AX Before Division
1208// sets AL, AH and EFLAGS and uses AL and AH
1209def AAD8i8 : Ii8<0xD5, RawFrm, (outs), (ins i8imm:$src),
1210 "aad\t$src", []>, Requires<[In32BitMode]>;
1211
1212// ASCII Adjust AX After Multiply
1213// sets AL, AH and EFLAGS and uses AL
1214def AAM8i8 : Ii8<0xD4, RawFrm, (outs), (ins i8imm:$src),
1215 "aam\t$src", []>, Requires<[In32BitMode]>;
1216
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001217// ASCII Adjust AL After Subtraction - sets
Kevin Enderby7aef62f2010-10-18 17:04:36 +00001218// sets AL, AH and CF and AF of EFLAGS and uses AL and AF of EFLAGS
1219def AAS : I<0x3F, RawFrm, (outs), (ins), "aas", []>, Requires<[In32BitMode]>;
1220
1221// Decimal Adjust AL after Addition
1222// sets AL, CF and AF of EFLAGS and uses AL, CF and AF of EFLAGS
1223def DAA : I<0x27, RawFrm, (outs), (ins), "daa", []>, Requires<[In32BitMode]>;
1224
1225// Decimal Adjust AL after Subtraction
1226// sets AL, CF and AF of EFLAGS and uses AL, CF and AF of EFLAGS
1227def DAS : I<0x2F, RawFrm, (outs), (ins), "das", []>, Requires<[In32BitMode]>;
1228
1229// Check Array Index Against Bounds
1230def BOUNDS16rm : I<0x62, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
1231 "bound\t{$src, $dst|$dst, $src}", []>, OpSize,
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001232 Requires<[In32BitMode]>;
Kevin Enderby7aef62f2010-10-18 17:04:36 +00001233def BOUNDS32rm : I<0x62, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
1234 "bound\t{$src, $dst|$dst, $src}", []>,
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001235 Requires<[In32BitMode]>;
Kevin Enderby7aef62f2010-10-18 17:04:36 +00001236
1237// Adjust RPL Field of Segment Selector
1238def ARPL16rr : I<0x63, MRMDestReg, (outs GR16:$src), (ins GR16:$dst),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001239 "arpl\t{$src, $dst|$dst, $src}", []>, Requires<[In32BitMode]>;
Kevin Enderby7aef62f2010-10-18 17:04:36 +00001240def ARPL16mr : I<0x63, MRMSrcMem, (outs GR16:$src), (ins i16mem:$dst),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001241 "arpl\t{$src, $dst|$dst, $src}", []>, Requires<[In32BitMode]>;
Dan Gohmane220c4b2009-09-18 19:59:53 +00001242
Bill Wendlingd350e022008-12-12 21:15:41 +00001243//===----------------------------------------------------------------------===//
Chris Lattner434c7cb2010-10-05 05:32:15 +00001244// Subsystems.
Evan Cheng4e4c71e2006-02-21 20:00:20 +00001245//===----------------------------------------------------------------------===//
1246
Chris Lattner6367cfc2010-10-05 16:39:12 +00001247include "X86InstrArithmetic.td"
Chris Lattner35649fc2010-10-05 06:33:16 +00001248include "X86InstrCMovSetCC.td"
Chris Lattner8917cd32010-10-05 06:52:26 +00001249include "X86InstrExtension.td"
Chris Lattner87be16a2010-10-05 06:04:14 +00001250include "X86InstrControl.td"
Chris Lattner5f58e842010-10-05 07:00:12 +00001251include "X86InstrShiftRotate.td"
Chris Lattner87be16a2010-10-05 06:04:14 +00001252
Chris Lattner6367cfc2010-10-05 16:39:12 +00001253// X87 Floating Point Stack.
1254include "X86InstrFPStack.td"
1255
David Greene51898d72010-02-09 23:52:19 +00001256// SIMD support (SSE, MMX and AVX)
David Greene51898d72010-02-09 23:52:19 +00001257include "X86InstrFragmentsSIMD.td"
1258
Bruno Cardoso Lopes6b7e9162010-07-23 00:54:35 +00001259// FMA - Fused Multiply-Add support (requires FMA)
Bruno Cardoso Lopes6b7e9162010-07-23 00:54:35 +00001260include "X86InstrFMA.td"
1261
Chris Lattner434c7cb2010-10-05 05:32:15 +00001262// SSE, MMX and 3DNow! vector support.
Evan Cheng4e4c71e2006-02-21 20:00:20 +00001263include "X86InstrSSE.td"
Evan Cheng80f54042008-04-25 18:19:54 +00001264include "X86InstrMMX.td"
Chris Lattner7330d972010-10-02 23:06:23 +00001265include "X86Instr3DNow.td"
1266
Chris Lattnerd071b832010-10-05 06:06:53 +00001267include "X86InstrVMX.td"
1268
Chris Lattner434c7cb2010-10-05 05:32:15 +00001269// System instructions.
1270include "X86InstrSystem.td"
Chris Lattner87be16a2010-10-05 06:04:14 +00001271
1272// Compiler Pseudo Instructions and Pat Patterns
1273include "X86InstrCompiler.td"
1274
Chris Lattner674c1dc2010-10-30 17:36:36 +00001275//===----------------------------------------------------------------------===//
Chris Lattnerefd8dad2010-11-01 23:07:52 +00001276// Assembler Mnemonic Aliases
Chris Lattner674c1dc2010-10-30 17:36:36 +00001277//===----------------------------------------------------------------------===//
1278
Chris Lattner99f53522010-11-01 21:06:34 +00001279def : MnemonicAlias<"call", "calll">, Requires<[In32BitMode]>;
1280def : MnemonicAlias<"call", "callq">, Requires<[In64BitMode]>;
1281
Chris Lattner674c1dc2010-10-30 17:36:36 +00001282def : MnemonicAlias<"cbw", "cbtw">;
1283def : MnemonicAlias<"cwd", "cwtd">;
1284def : MnemonicAlias<"cdq", "cltd">;
1285def : MnemonicAlias<"cwde", "cwtl">;
1286def : MnemonicAlias<"cdqe", "cltq">;
Chris Lattner8b260a72010-10-30 18:07:17 +00001287
Chris Lattner269f10b2010-11-12 18:54:56 +00001288// lret maps to lretl, it is not ambiguous with lretq.
1289def : MnemonicAlias<"lret", "lretl">;
1290
Chris Lattner693173f2010-10-30 19:23:13 +00001291def : MnemonicAlias<"pop", "popl">, Requires<[In32BitMode]>;
1292def : MnemonicAlias<"pop", "popq">, Requires<[In64BitMode]>;
1293def : MnemonicAlias<"popf", "popfl">, Requires<[In32BitMode]>;
1294def : MnemonicAlias<"popf", "popfq">, Requires<[In64BitMode]>;
Chris Lattner8b260a72010-10-30 18:07:17 +00001295def : MnemonicAlias<"popfd", "popfl">;
1296
Chris Lattnera33b93f2010-10-31 18:43:46 +00001297// FIXME: This is wrong for "push reg". "push %bx" should turn into pushw in
1298// all modes. However: "push (addr)" and "push $42" should default to
1299// pushl/pushq depending on the current mode. Similar for "pop %bx"
Chris Lattner693173f2010-10-30 19:23:13 +00001300def : MnemonicAlias<"push", "pushl">, Requires<[In32BitMode]>;
1301def : MnemonicAlias<"push", "pushq">, Requires<[In64BitMode]>;
1302def : MnemonicAlias<"pushf", "pushfl">, Requires<[In32BitMode]>;
1303def : MnemonicAlias<"pushf", "pushfq">, Requires<[In64BitMode]>;
1304def : MnemonicAlias<"pushfd", "pushfl">;
1305
Chris Lattner6f96b082010-10-30 18:17:33 +00001306def : MnemonicAlias<"repe", "rep">;
1307def : MnemonicAlias<"repz", "rep">;
1308def : MnemonicAlias<"repnz", "repne">;
1309
Chris Lattner693173f2010-10-30 19:23:13 +00001310def : MnemonicAlias<"retl", "ret">, Requires<[In32BitMode]>;
1311def : MnemonicAlias<"retq", "ret">, Requires<[In64BitMode]>;
1312
Chris Lattnera17a9a02010-10-30 18:14:54 +00001313def : MnemonicAlias<"salb", "shlb">;
1314def : MnemonicAlias<"salw", "shlw">;
1315def : MnemonicAlias<"sall", "shll">;
1316def : MnemonicAlias<"salq", "shlq">;
1317
Chris Lattner674c1dc2010-10-30 17:36:36 +00001318def : MnemonicAlias<"smovb", "movsb">;
1319def : MnemonicAlias<"smovw", "movsw">;
1320def : MnemonicAlias<"smovl", "movsl">;
1321def : MnemonicAlias<"smovq", "movsq">;
1322
Chris Lattner674c1dc2010-10-30 17:36:36 +00001323def : MnemonicAlias<"ud2a", "ud2">;
1324def : MnemonicAlias<"verrw", "verr">;
1325
Chris Lattner99f53522010-11-01 21:06:34 +00001326// System instruction aliases.
1327def : MnemonicAlias<"iret", "iretl">;
1328def : MnemonicAlias<"sysret", "sysretl">;
1329
1330def : MnemonicAlias<"lgdtl", "lgdt">, Requires<[In32BitMode]>;
1331def : MnemonicAlias<"lgdtq", "lgdt">, Requires<[In64BitMode]>;
1332def : MnemonicAlias<"lidtl", "lidt">, Requires<[In32BitMode]>;
1333def : MnemonicAlias<"lidtq", "lidt">, Requires<[In64BitMode]>;
1334def : MnemonicAlias<"sgdtl", "sgdt">, Requires<[In32BitMode]>;
1335def : MnemonicAlias<"sgdtq", "sgdt">, Requires<[In64BitMode]>;
1336def : MnemonicAlias<"sidtl", "sidt">, Requires<[In32BitMode]>;
1337def : MnemonicAlias<"sidtq", "sidt">, Requires<[In64BitMode]>;
1338
Chris Lattner674c1dc2010-10-30 17:36:36 +00001339
Chris Lattner8b260a72010-10-30 18:07:17 +00001340// Floating point stack aliases.
1341def : MnemonicAlias<"fcmovz", "fcmove">;
1342def : MnemonicAlias<"fcmova", "fcmovnbe">;
1343def : MnemonicAlias<"fcmovnae", "fcmovb">;
1344def : MnemonicAlias<"fcmovna", "fcmovbe">;
1345def : MnemonicAlias<"fcmovae", "fcmovnb">;
Chris Lattnerdb287882010-11-06 21:37:06 +00001346def : MnemonicAlias<"fcomip", "fcompi">;
Chris Lattner8b260a72010-10-30 18:07:17 +00001347def : MnemonicAlias<"fildq", "fildll">;
1348def : MnemonicAlias<"fldcww", "fldcw">;
1349def : MnemonicAlias<"fnstcww", "fnstcw">;
1350def : MnemonicAlias<"fnstsww", "fnstsw">;
Chris Lattnerdb287882010-11-06 21:37:06 +00001351def : MnemonicAlias<"fucomip", "fucompi">;
Chris Lattner8b260a72010-10-30 18:07:17 +00001352def : MnemonicAlias<"fwait", "wait">;
1353
1354
Chris Lattner8cb441c2010-10-30 17:56:50 +00001355class CondCodeAlias<string Prefix,string Suffix, string OldCond, string NewCond>
1356 : MnemonicAlias<!strconcat(Prefix, OldCond, Suffix),
1357 !strconcat(Prefix, NewCond, Suffix)>;
Chris Lattnerb69fc282010-10-30 17:51:45 +00001358
1359/// IntegerCondCodeMnemonicAlias - This multiclass defines a bunch of
1360/// MnemonicAlias's that canonicalize the condition code in a mnemonic, for
1361/// example "setz" -> "sete".
Chris Lattner8cb441c2010-10-30 17:56:50 +00001362multiclass IntegerCondCodeMnemonicAlias<string Prefix, string Suffix> {
1363 def C : CondCodeAlias<Prefix, Suffix, "c", "b">; // setc -> setb
1364 def Z : CondCodeAlias<Prefix, Suffix, "z" , "e">; // setz -> sete
1365 def NA : CondCodeAlias<Prefix, Suffix, "na", "be">; // setna -> setbe
1366 def NB : CondCodeAlias<Prefix, Suffix, "nb", "ae">; // setnb -> setae
1367 def NC : CondCodeAlias<Prefix, Suffix, "nc", "ae">; // setnc -> setae
1368 def NG : CondCodeAlias<Prefix, Suffix, "ng", "le">; // setng -> setle
1369 def NL : CondCodeAlias<Prefix, Suffix, "nl", "ge">; // setnl -> setge
1370 def NZ : CondCodeAlias<Prefix, Suffix, "nz", "ne">; // setnz -> setne
1371 def PE : CondCodeAlias<Prefix, Suffix, "pe", "p">; // setpe -> setp
1372 def PO : CondCodeAlias<Prefix, Suffix, "po", "np">; // setpo -> setnp
Chris Lattnerb69fc282010-10-30 17:51:45 +00001373
Chris Lattner8cb441c2010-10-30 17:56:50 +00001374 def NAE : CondCodeAlias<Prefix, Suffix, "nae", "b">; // setnae -> setb
1375 def NBE : CondCodeAlias<Prefix, Suffix, "nbe", "a">; // setnbe -> seta
1376 def NGE : CondCodeAlias<Prefix, Suffix, "nge", "l">; // setnge -> setl
1377 def NLE : CondCodeAlias<Prefix, Suffix, "nle", "g">; // setnle -> setg
Chris Lattnerb69fc282010-10-30 17:51:45 +00001378}
1379
1380// Aliases for set<CC>
Chris Lattner8cb441c2010-10-30 17:56:50 +00001381defm : IntegerCondCodeMnemonicAlias<"set", "">;
Chris Lattnerb69fc282010-10-30 17:51:45 +00001382// Aliases for j<CC>
Chris Lattner8cb441c2010-10-30 17:56:50 +00001383defm : IntegerCondCodeMnemonicAlias<"j", "">;
1384// Aliases for cmov<CC>{w,l,q}
1385defm : IntegerCondCodeMnemonicAlias<"cmov", "w">;
1386defm : IntegerCondCodeMnemonicAlias<"cmov", "l">;
1387defm : IntegerCondCodeMnemonicAlias<"cmov", "q">;
Chris Lattner674c1dc2010-10-30 17:36:36 +00001388
Chris Lattnerefd8dad2010-11-01 23:07:52 +00001389
1390//===----------------------------------------------------------------------===//
1391// Assembler Instruction Aliases
1392//===----------------------------------------------------------------------===//
1393
Chris Lattner98c870f2010-11-06 19:25:43 +00001394// aad/aam default to base 10 if no operand is specified.
1395def : InstAlias<"aad", (AAD8i8 10)>;
1396def : InstAlias<"aam", (AAM8i8 10)>;
1397
Chris Lattner41409852010-11-06 07:31:43 +00001398// clr aliases.
1399def : InstAlias<"clrb $reg", (XOR8rr GR8 :$reg, GR8 :$reg)>;
1400def : InstAlias<"clrw $reg", (XOR16rr GR16:$reg, GR16:$reg)>;
1401def : InstAlias<"clrl $reg", (XOR32rr GR32:$reg, GR32:$reg)>;
1402def : InstAlias<"clrq $reg", (XOR64rr GR64:$reg, GR64:$reg)>;
1403
Chris Lattner689cf3c2010-11-06 22:41:18 +00001404// div and idiv aliases for explicit A register.
1405def : InstAlias<"divb $src, %al", (DIV8r GR8 :$src)>;
1406def : InstAlias<"divw $src, %ax", (DIV16r GR16:$src)>;
1407def : InstAlias<"divl $src, %eax", (DIV32r GR32:$src)>;
1408def : InstAlias<"divq $src, %rax", (DIV64r GR64:$src)>;
1409def : InstAlias<"divb $src, %al", (DIV8m i8mem :$src)>;
1410def : InstAlias<"divw $src, %ax", (DIV16m i16mem:$src)>;
1411def : InstAlias<"divl $src, %eax", (DIV32m i32mem:$src)>;
1412def : InstAlias<"divq $src, %rax", (DIV64m i64mem:$src)>;
1413def : InstAlias<"idivb $src, %al", (IDIV8r GR8 :$src)>;
1414def : InstAlias<"idivw $src, %ax", (IDIV16r GR16:$src)>;
1415def : InstAlias<"idivl $src, %eax", (IDIV32r GR32:$src)>;
1416def : InstAlias<"idivq $src, %rax", (IDIV64r GR64:$src)>;
1417def : InstAlias<"idivb $src, %al", (IDIV8m i8mem :$src)>;
1418def : InstAlias<"idivw $src, %ax", (IDIV16m i16mem:$src)>;
1419def : InstAlias<"idivl $src, %eax", (IDIV32m i32mem:$src)>;
1420def : InstAlias<"idivq $src, %rax", (IDIV64m i64mem:$src)>;
1421
1422
1423
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001424// Various unary fpstack operations default to operating on on ST1.
1425// For example, "fxch" -> "fxch %st(1)"
1426def : InstAlias<"faddp", (ADD_FPrST0 ST1)>;
1427def : InstAlias<"fsubp", (SUBR_FPrST0 ST1)>;
1428def : InstAlias<"fsubrp", (SUB_FPrST0 ST1)>;
1429def : InstAlias<"fmulp", (MUL_FPrST0 ST1)>;
1430def : InstAlias<"fdivp", (DIVR_FPrST0 ST1)>;
1431def : InstAlias<"fdivrp", (DIV_FPrST0 ST1)>;
1432def : InstAlias<"fxch", (XCH_F ST1)>;
1433def : InstAlias<"fcomi", (COM_FIr ST1)>;
Chris Lattnerdb287882010-11-06 21:37:06 +00001434def : InstAlias<"fcompi", (COM_FIPr ST1)>;
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001435def : InstAlias<"fucom", (UCOM_Fr ST1)>;
1436def : InstAlias<"fucomp", (UCOM_FPr ST1)>;
1437def : InstAlias<"fucomi", (UCOM_FIr ST1)>;
Chris Lattnerdb287882010-11-06 21:37:06 +00001438def : InstAlias<"fucompi", (UCOM_FIPr ST1)>;
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001439
1440// Handle fmul/fadd/fsub/fdiv instructions with explicitly written st(0) op.
1441// For example, "fadd %st(4), %st(0)" -> "fadd %st(4)". We also disambiguate
1442// instructions like "fadd %st(0), %st(0)" as "fadd %st(0)" for consistency with
1443// gas.
1444multiclass FpUnaryAlias<string Mnemonic, Instruction Inst> {
1445 def : InstAlias<!strconcat(Mnemonic, " $op, %st(0)"), (Inst RST:$op)>;
1446 def : InstAlias<!strconcat(Mnemonic, " %st(0), %st(0)"), (Inst ST0)>;
1447}
1448
1449defm : FpUnaryAlias<"fadd", ADD_FST0r>;
1450defm : FpUnaryAlias<"faddp", ADD_FPrST0>;
1451defm : FpUnaryAlias<"fsub", SUB_FST0r>;
1452defm : FpUnaryAlias<"fsubp", SUBR_FPrST0>;
1453defm : FpUnaryAlias<"fsubr", SUBR_FST0r>;
1454defm : FpUnaryAlias<"fsubrp", SUB_FPrST0>;
1455defm : FpUnaryAlias<"fmul", MUL_FST0r>;
1456defm : FpUnaryAlias<"fmulp", MUL_FPrST0>;
1457defm : FpUnaryAlias<"fdiv", DIV_FST0r>;
1458defm : FpUnaryAlias<"fdivp", DIVR_FPrST0>;
1459defm : FpUnaryAlias<"fdivr", DIVR_FST0r>;
1460defm : FpUnaryAlias<"fdivrp", DIV_FPrST0>;
Chris Lattner235705b2010-11-06 20:55:09 +00001461defm : FpUnaryAlias<"fcomi", COM_FIr>;
Chris Lattner235705b2010-11-06 20:55:09 +00001462defm : FpUnaryAlias<"fucomi", UCOM_FIr>;
Chris Lattnerdb287882010-11-06 21:37:06 +00001463defm : FpUnaryAlias<"fcompi", COM_FIPr>;
1464defm : FpUnaryAlias<"fucompi", UCOM_FIPr>;
Chris Lattner235705b2010-11-06 20:55:09 +00001465
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001466
1467// Handle "f{mulp,addp} st(0), $op" the same as "f{mulp,addp} $op", since they
Nick Lewyckyc00210c2010-12-30 22:10:49 +00001468// commute. We also allow fdiv[r]p/fsubrp even though they don't commute,
1469// solely because gas supports it.
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001470def : InstAlias<"faddp %st(0), $op", (ADD_FPrST0 RST:$op)>;
1471def : InstAlias<"fmulp %st(0), $op", (MUL_FPrST0 RST:$op)>;
1472def : InstAlias<"fsubrp %st(0), $op", (SUB_FPrST0 RST:$op)>;
Nick Lewyckyc00210c2010-12-30 22:10:49 +00001473def : InstAlias<"fdivp %st(0), $op", (DIVR_FPrST0 RST:$op)>;
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001474def : InstAlias<"fdivrp %st(0), $op", (DIV_FPrST0 RST:$op)>;
Chris Lattner90fd7972010-11-06 19:57:21 +00001475
Nick Lewyckyc00210c2010-12-30 22:10:49 +00001476// We accept "fnstsw %eax" even though it only writes %ax.
Chris Lattnerdea546b2010-11-06 18:58:32 +00001477def : InstAlias<"fnstsw %eax", (FNSTSW8r)>;
1478def : InstAlias<"fnstsw %al" , (FNSTSW8r)>;
1479def : InstAlias<"fnstsw" , (FNSTSW8r)>;
1480
Chris Lattner8caa2902010-11-06 07:48:45 +00001481// lcall and ljmp aliases. This seems to be an odd mapping in 64-bit mode, but
1482// this is compatible with what GAS does.
1483def : InstAlias<"lcall $seg, $off", (FARCALL32i i32imm:$off, i16imm:$seg)>;
1484def : InstAlias<"ljmp $seg, $off", (FARJMP32i i32imm:$off, i16imm:$seg)>;
1485def : InstAlias<"lcall *$dst", (FARCALL32m opaque48mem:$dst)>;
1486def : InstAlias<"ljmp *$dst", (FARJMP32m opaque48mem:$dst)>;
1487
Chris Lattner9c1dbc62010-11-06 18:44:26 +00001488// "imul <imm>, B" is an alias for "imul <imm>, B, B".
1489def : InstAlias<"imulw $imm, $r", (IMUL16rri GR16:$r, GR16:$r, i16imm:$imm)>;
1490def : InstAlias<"imulw $imm, $r", (IMUL16rri8 GR16:$r, GR16:$r, i16i8imm:$imm)>;
1491def : InstAlias<"imull $imm, $r", (IMUL32rri GR32:$r, GR32:$r, i32imm:$imm)>;
1492def : InstAlias<"imull $imm, $r", (IMUL32rri8 GR32:$r, GR32:$r, i32i8imm:$imm)>;
1493def : InstAlias<"imulq $imm, $r",(IMUL64rri32 GR64:$r, GR64:$r,i64i32imm:$imm)>;
1494def : InstAlias<"imulq $imm, $r", (IMUL64rri8 GR64:$r, GR64:$r, i64i8imm:$imm)>;
1495
Chris Lattner7e925cc2010-11-06 18:52:40 +00001496// inb %dx -> inb %al, %dx
1497def : InstAlias<"inb %dx", (IN8rr)>;
1498def : InstAlias<"inw %dx", (IN16rr)>;
1499def : InstAlias<"inl %dx", (IN32rr)>;
1500def : InstAlias<"inb $port", (IN8ri i8imm:$port)>;
Chris Lattnerdea546b2010-11-06 18:58:32 +00001501def : InstAlias<"inw $port", (IN16ri i8imm:$port)>;
Chris Lattner7e925cc2010-11-06 18:52:40 +00001502def : InstAlias<"inl $port", (IN32ri i8imm:$port)>;
1503
Chris Lattner9c1dbc62010-11-06 18:44:26 +00001504
Chris Lattner8caa2902010-11-06 07:48:45 +00001505// jmp and call aliases for lcall and ljmp. jmp $42,$5 -> ljmp
1506def : InstAlias<"call $seg, $off", (FARCALL32i i32imm:$off, i16imm:$seg)>;
1507def : InstAlias<"jmp $seg, $off", (FARJMP32i i32imm:$off, i16imm:$seg)>;
1508def : InstAlias<"callw $seg, $off", (FARCALL16i i16imm:$off, i16imm:$seg)>;
1509def : InstAlias<"jmpw $seg, $off", (FARJMP16i i16imm:$off, i16imm:$seg)>;
1510def : InstAlias<"calll $seg, $off", (FARCALL32i i32imm:$off, i16imm:$seg)>;
1511def : InstAlias<"jmpl $seg, $off", (FARJMP32i i32imm:$off, i16imm:$seg)>;
1512
Chris Lattner04a75ab2010-11-06 22:35:34 +00001513// Force mov without a suffix with a segment and mem to prefer the 'l' form of
1514// the move. All segment/mem forms are equivalent, this has the shortest
1515// encoding.
1516def : InstAlias<"mov $mem, $seg", (MOV32sm SEGMENT_REG:$seg, i32mem:$mem)>;
1517def : InstAlias<"mov $seg, $mem", (MOV32ms i32mem:$mem, SEGMENT_REG:$seg)>;
Chris Lattner8caa2902010-11-06 07:48:45 +00001518
Chris Lattner9c1dbc62010-11-06 18:44:26 +00001519// Match 'movq <largeimm>, <reg>' as an alias for movabsq.
1520def : InstAlias<"movq $imm, $reg", (MOV64ri GR64:$reg, i64imm:$imm)>;
1521
Chris Lattnercbf5d742010-11-21 08:18:57 +00001522// Match 'movq GR64, MMX' as an alias for movd.
1523def : InstAlias<"movq $src, $dst", (MMX_MOVD64to64rr VR64:$dst, GR64:$src)>;
1524def : InstAlias<"movq $src, $dst", (MMX_MOVD64from64rr GR64:$dst, VR64:$src)>;
1525
Chris Lattner8caa2902010-11-06 07:48:45 +00001526// movsd with no operands (as opposed to the SSE scalar move of a double) is an
1527// alias for movsl. (as in rep; movsd)
1528def : InstAlias<"movsd", (MOVSD)>;
1529
Chris Lattnerefd8dad2010-11-01 23:07:52 +00001530// movsx aliases
Chris Lattner02ff6ba2010-11-06 07:34:58 +00001531def : InstAlias<"movsx $src, $dst", (MOVSX16rr8W GR16:$dst, GR8:$src)>;
1532def : InstAlias<"movsx $src, $dst", (MOVSX16rm8W GR16:$dst, i8mem:$src)>;
1533def : InstAlias<"movsx $src, $dst", (MOVSX32rr8 GR32:$dst, GR8:$src)>;
1534def : InstAlias<"movsx $src, $dst", (MOVSX32rr16 GR32:$dst, GR16:$src)>;
1535def : InstAlias<"movsx $src, $dst", (MOVSX64rr8 GR64:$dst, GR8:$src)>;
1536def : InstAlias<"movsx $src, $dst", (MOVSX64rr16 GR64:$dst, GR16:$src)>;
1537def : InstAlias<"movsx $src, $dst", (MOVSX64rr32 GR64:$dst, GR32:$src)>;
Chris Lattnerefd8dad2010-11-01 23:07:52 +00001538
1539// movzx aliases
Chris Lattner02ff6ba2010-11-06 07:34:58 +00001540def : InstAlias<"movzx $src, $dst", (MOVZX16rr8W GR16:$dst, GR8:$src)>;
1541def : InstAlias<"movzx $src, $dst", (MOVZX16rm8W GR16:$dst, i8mem:$src)>;
1542def : InstAlias<"movzx $src, $dst", (MOVZX32rr8 GR32:$dst, GR8:$src)>;
1543def : InstAlias<"movzx $src, $dst", (MOVZX32rr16 GR32:$dst, GR16:$src)>;
1544def : InstAlias<"movzx $src, $dst", (MOVZX64rr8_Q GR64:$dst, GR8:$src)>;
1545def : InstAlias<"movzx $src, $dst", (MOVZX64rr16_Q GR64:$dst, GR16:$src)>;
Chris Lattnerefd8dad2010-11-01 23:07:52 +00001546// Note: No GR32->GR64 movzx form.
1547
Chris Lattner7e925cc2010-11-06 18:52:40 +00001548// outb %dx -> outb %al, %dx
1549def : InstAlias<"outb %dx", (OUT8rr)>;
1550def : InstAlias<"outw %dx", (OUT16rr)>;
1551def : InstAlias<"outl %dx", (OUT32rr)>;
1552def : InstAlias<"outb $port", (OUT8ir i8imm:$port)>;
1553def : InstAlias<"outw $port", (OUT16ir i8imm:$port)>;
1554def : InstAlias<"outl $port", (OUT32ir i8imm:$port)>;
1555
Chris Lattner9c1dbc62010-11-06 18:44:26 +00001556// 'sldt <mem>' can be encoded with either sldtw or sldtq with the same
1557// effect (both store to a 16-bit mem). Force to sldtw to avoid ambiguity
1558// errors, since its encoding is the most compact.
1559def : InstAlias<"sldt $mem", (SLDT16m i16mem:$mem)>;
1560
Chris Lattnerd5b2f1a2010-11-06 22:25:39 +00001561// shld/shrd op,op -> shld op, op, 1
1562def : InstAlias<"shldw $r1, $r2", (SHLD16rri8 GR16:$r1, GR16:$r2, 1)>;
1563def : InstAlias<"shldl $r1, $r2", (SHLD32rri8 GR32:$r1, GR32:$r2, 1)>;
1564def : InstAlias<"shldq $r1, $r2", (SHLD64rri8 GR64:$r1, GR64:$r2, 1)>;
1565def : InstAlias<"shrdw $r1, $r2", (SHRD16rri8 GR16:$r1, GR16:$r2, 1)>;
1566def : InstAlias<"shrdl $r1, $r2", (SHRD32rri8 GR32:$r1, GR32:$r2, 1)>;
1567def : InstAlias<"shrdq $r1, $r2", (SHRD64rri8 GR64:$r1, GR64:$r2, 1)>;
1568
1569def : InstAlias<"shldw $mem, $reg", (SHLD16mri8 i16mem:$mem, GR16:$reg, 1)>;
1570def : InstAlias<"shldl $mem, $reg", (SHLD32mri8 i32mem:$mem, GR32:$reg, 1)>;
1571def : InstAlias<"shldq $mem, $reg", (SHLD64mri8 i64mem:$mem, GR64:$reg, 1)>;
1572def : InstAlias<"shrdw $mem, $reg", (SHRD16mri8 i16mem:$mem, GR16:$reg, 1)>;
1573def : InstAlias<"shrdl $mem, $reg", (SHRD32mri8 i32mem:$mem, GR32:$reg, 1)>;
1574def : InstAlias<"shrdq $mem, $reg", (SHRD64mri8 i64mem:$mem, GR64:$reg, 1)>;
1575
1576/* FIXME: This is disabled because the asm matcher is currently incapable of
1577 * matching a fixed immediate like $1.
Chris Lattner17671512010-11-06 22:05:43 +00001578// "shl X, $1" is an alias for "shl X".
1579multiclass ShiftRotateByOneAlias<string Mnemonic, string Opc> {
Chris Lattner8c24b0c2010-11-06 21:23:40 +00001580 def : InstAlias<!strconcat(Mnemonic, "b $op, $$1"),
1581 (!cast<Instruction>(!strconcat(Opc, "8r1")) GR8:$op)>;
1582 def : InstAlias<!strconcat(Mnemonic, "w $op, $$1"),
1583 (!cast<Instruction>(!strconcat(Opc, "16r1")) GR16:$op)>;
1584 def : InstAlias<!strconcat(Mnemonic, "l $op, $$1"),
1585 (!cast<Instruction>(!strconcat(Opc, "32r1")) GR32:$op)>;
1586 def : InstAlias<!strconcat(Mnemonic, "q $op, $$1"),
1587 (!cast<Instruction>(!strconcat(Opc, "64r1")) GR64:$op)>;
1588 def : InstAlias<!strconcat(Mnemonic, "b $op, $$1"),
1589 (!cast<Instruction>(!strconcat(Opc, "8m1")) i8mem:$op)>;
1590 def : InstAlias<!strconcat(Mnemonic, "w $op, $$1"),
1591 (!cast<Instruction>(!strconcat(Opc, "16m1")) i16mem:$op)>;
1592 def : InstAlias<!strconcat(Mnemonic, "l $op, $$1"),
1593 (!cast<Instruction>(!strconcat(Opc, "32m1")) i32mem:$op)>;
1594 def : InstAlias<!strconcat(Mnemonic, "q $op, $$1"),
1595 (!cast<Instruction>(!strconcat(Opc, "64m1")) i64mem:$op)>;
1596}
1597
Chris Lattner17671512010-11-06 22:05:43 +00001598defm : ShiftRotateByOneAlias<"rcl", "RCL">;
1599defm : ShiftRotateByOneAlias<"rcr", "RCR">;
1600defm : ShiftRotateByOneAlias<"rol", "ROL">;
1601defm : ShiftRotateByOneAlias<"ror", "ROR">;
Chris Lattnerd5b2f1a2010-11-06 22:25:39 +00001602FIXME */
Chris Lattner8c24b0c2010-11-06 21:23:40 +00001603
Chris Lattner5bde7342010-11-06 08:20:59 +00001604// test: We accept "testX <reg>, <mem>" and "testX <mem>, <reg>" as synonyms.
1605def : InstAlias<"testb $val, $mem", (TEST8rm GR8 :$val, i8mem :$mem)>;
1606def : InstAlias<"testw $val, $mem", (TEST16rm GR16:$val, i16mem:$mem)>;
1607def : InstAlias<"testl $val, $mem", (TEST32rm GR32:$val, i32mem:$mem)>;
1608def : InstAlias<"testq $val, $mem", (TEST64rm GR64:$val, i64mem:$mem)>;
1609
1610// xchg: We accept "xchgX <reg>, <mem>" and "xchgX <mem>, <reg>" as synonyms.
1611def : InstAlias<"xchgb $mem, $val", (XCHG8rm GR8 :$val, i8mem :$mem)>;
1612def : InstAlias<"xchgw $mem, $val", (XCHG16rm GR16:$val, i16mem:$mem)>;
1613def : InstAlias<"xchgl $mem, $val", (XCHG32rm GR32:$val, i32mem:$mem)>;
1614def : InstAlias<"xchgq $mem, $val", (XCHG64rm GR64:$val, i64mem:$mem)>;