blob: 03a0b0c3aedd60e7f3b8b38c8696d135afe87e75 [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
NAKAMURA Takumi7754f852011-01-26 02:04:09 +0000276// GPRs available for tailcall.
277// It represents GR64_TC or GR64_TCW64.
278def ptr_rc_tailcall : PointerLikeRegClass<2>;
279
Evan Chengf48ef032010-03-14 03:48:46 +0000280// Special i32mem for addresses of load folding tail calls. These are not
281// allowed to use callee-saved registers since they must be scheduled
282// after callee-saved register are popped.
283def i32mem_TC : Operand<i32> {
284 let PrintMethod = "printi32mem";
285 let MIOperandInfo = (ops GR32_TC, i8imm, GR32_TC, i32imm, i8imm);
286 let ParserMatchClass = X86MemAsmOperand;
287}
288
Chris Lattner41efbfa2010-10-05 06:37:31 +0000289// Special i64mem for addresses of load folding tail calls. These are not
290// allowed to use callee-saved registers since they must be scheduled
291// after callee-saved register are popped.
292def i64mem_TC : Operand<i64> {
293 let PrintMethod = "printi64mem";
NAKAMURA Takumi7754f852011-01-26 02:04:09 +0000294 let MIOperandInfo = (ops ptr_rc_tailcall, i8imm,
295 ptr_rc_tailcall, i32imm, i8imm);
Chris Lattner41efbfa2010-10-05 06:37:31 +0000296 let ParserMatchClass = X86MemAsmOperand;
297}
Evan Cheng25ab6902006-09-08 06:48:29 +0000298
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000299let ParserMatchClass = X86AbsMemAsmOperand,
300 PrintMethod = "print_pcrel_imm" in {
Daniel Dunbar728e5eb2010-01-30 00:24:12 +0000301def i32imm_pcrel : Operand<i32>;
Chris Lattner9fc05222010-07-07 22:27:31 +0000302def i16imm_pcrel : Operand<i16>;
Daniel Dunbar728e5eb2010-01-30 00:24:12 +0000303
304def offset8 : Operand<i64>;
305def offset16 : Operand<i64>;
306def offset32 : Operand<i64>;
307def offset64 : Operand<i64>;
308
309// Branch targets have OtherVT type and print as pc-relative values.
310def brtarget : Operand<OtherVT>;
311def brtarget8 : Operand<OtherVT>;
312
313}
314
Nate Begeman16b04f32005-07-15 00:38:55 +0000315def SSECC : Operand<i8> {
316 let PrintMethod = "printSSECC";
317}
Chris Lattner66fa1dc2004-08-11 02:25:00 +0000318
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000319class ImmSExtAsmOperandClass : AsmOperandClass {
Daniel Dunbar54ddf3d2010-05-22 21:02:29 +0000320 let SuperClasses = [ImmAsmOperand];
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000321 let RenderMethod = "addImmOperands";
Daniel Dunbar1fe591d2010-05-20 20:20:39 +0000322}
323
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000324// Sign-extended immediate classes. We don't need to define the full lattice
325// here because there is no instruction with an ambiguity between ImmSExti64i32
326// and ImmSExti32i8.
327//
328// The strange ranges come from the fact that the assembler always works with
329// 64-bit immediates, but for a 16-bit target value we want to accept both "-1"
330// (which will be a -1ULL), and "0xFF" (-1 in 16-bits).
331
Chris Lattner599b5312010-07-08 23:46:44 +0000332// [0, 0x7FFFFFFF] |
333// [0xFFFFFFFF80000000, 0xFFFFFFFFFFFFFFFF]
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000334def ImmSExti64i32AsmOperand : ImmSExtAsmOperandClass {
335 let Name = "ImmSExti64i32";
336}
337
Chris Lattner599b5312010-07-08 23:46:44 +0000338// [0, 0x0000007F] | [0x000000000000FF80, 0x000000000000FFFF] |
339// [0xFFFFFFFFFFFFFF80, 0xFFFFFFFFFFFFFFFF]
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000340def ImmSExti16i8AsmOperand : ImmSExtAsmOperandClass {
341 let Name = "ImmSExti16i8";
342 let SuperClasses = [ImmSExti64i32AsmOperand];
343}
344
Chris Lattner599b5312010-07-08 23:46:44 +0000345// [0, 0x0000007F] | [0x00000000FFFFFF80, 0x00000000FFFFFFFF] |
346// [0xFFFFFFFFFFFFFF80, 0xFFFFFFFFFFFFFFFF]
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000347def ImmSExti32i8AsmOperand : ImmSExtAsmOperandClass {
348 let Name = "ImmSExti32i8";
349}
350
Chris Lattner599b5312010-07-08 23:46:44 +0000351// [0, 0x0000007F] |
352// [0xFFFFFFFFFFFFFF80, 0xFFFFFFFFFFFFFFFF]
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000353def ImmSExti64i8AsmOperand : ImmSExtAsmOperandClass {
354 let Name = "ImmSExti64i8";
Chris Lattner599b5312010-07-08 23:46:44 +0000355 let SuperClasses = [ImmSExti16i8AsmOperand, ImmSExti32i8AsmOperand,
356 ImmSExti64i32AsmOperand];
Daniel Dunbar338825c2009-08-10 18:41:10 +0000357}
358
Chris Lattnerf124d5e2005-11-18 01:04:42 +0000359// A couple of more descriptive operand definitions.
360// 16-bits but only 8 bits are significant.
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000361def i16i8imm : Operand<i16> {
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000362 let ParserMatchClass = ImmSExti16i8AsmOperand;
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000363}
Chris Lattnerf124d5e2005-11-18 01:04:42 +0000364// 32-bits but only 8 bits are significant.
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000365def i32i8imm : Operand<i32> {
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000366 let ParserMatchClass = ImmSExti32i8AsmOperand;
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000367}
Chris Lattnerf124d5e2005-11-18 01:04:42 +0000368
Chris Lattner41efbfa2010-10-05 06:37:31 +0000369// 64-bits but only 32 bits are significant.
370def i64i32imm : Operand<i64> {
371 let ParserMatchClass = ImmSExti64i32AsmOperand;
372}
373
374// 64-bits but only 32 bits are significant, and those bits are treated as being
375// pc relative.
376def i64i32imm_pcrel : Operand<i64> {
377 let PrintMethod = "print_pcrel_imm";
378 let ParserMatchClass = X86AbsMemAsmOperand;
379}
380
381// 64-bits but only 8 bits are significant.
382def i64i8imm : Operand<i64> {
383 let ParserMatchClass = ImmSExti64i8AsmOperand;
384}
385
386def lea64_32mem : Operand<i32> {
387 let PrintMethod = "printi32mem";
388 let AsmOperandLowerMethod = "lower_lea64_32mem";
389 let MIOperandInfo = (ops GR32, i8imm, GR32_NOSP, i32imm, i8imm);
390 let ParserMatchClass = X86MemAsmOperand;
391}
392
393
Evan Chengaed7c722005-12-17 01:24:02 +0000394//===----------------------------------------------------------------------===//
395// X86 Complex Pattern Definitions.
396//
397
Evan Chengec693f72005-12-08 02:01:35 +0000398// Define X86 specific addressing mode.
Chris Lattnerb86faa12010-09-21 22:07:31 +0000399def addr : ComplexPattern<iPTR, 5, "SelectAddr", [], [SDNPWantParent]>;
Chris Lattner599b5312010-07-08 23:46:44 +0000400def lea32addr : ComplexPattern<i32, 5, "SelectLEAAddr",
Dan Gohmana98634b2009-08-02 16:09:17 +0000401 [add, sub, mul, X86mul_imm, shl, or, frameindex],
402 []>;
Chris Lattner599b5312010-07-08 23:46:44 +0000403def tls32addr : ComplexPattern<i32, 5, "SelectTLSADDRAddr",
Chris Lattner5c0b16d2009-06-20 20:38:48 +0000404 [tglobaltlsaddr], []>;
Evan Chengec693f72005-12-08 02:01:35 +0000405
Chris Lattner41efbfa2010-10-05 06:37:31 +0000406def lea64addr : ComplexPattern<i64, 5, "SelectLEAAddr",
407 [add, sub, mul, X86mul_imm, shl, or, frameindex,
408 X86WrapperRIP], []>;
409
410def tls64addr : ComplexPattern<i64, 5, "SelectTLSADDRAddr",
411 [tglobaltlsaddr], []>;
412
Evan Chengaed7c722005-12-17 01:24:02 +0000413//===----------------------------------------------------------------------===//
Evan Chengbbc8ddb2005-12-20 22:59:51 +0000414// X86 Instruction Predicate Definitions.
Chris Lattner314a1132010-03-14 18:31:44 +0000415def HasCMov : Predicate<"Subtarget->hasCMov()">;
416def NoCMov : Predicate<"!Subtarget->hasCMov()">;
Nate Begeman5812b102010-12-03 22:29:15 +0000417
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000418def HasMMX : Predicate<"Subtarget->hasMMX()">;
Chris Lattner548abfc2010-10-03 18:08:05 +0000419def Has3DNow : Predicate<"Subtarget->has3DNow()">;
420def Has3DNowA : Predicate<"Subtarget->has3DNowA()">;
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000421def HasSSE1 : Predicate<"Subtarget->hasSSE1()">;
422def HasSSE2 : Predicate<"Subtarget->hasSSE2()">;
423def HasSSE3 : Predicate<"Subtarget->hasSSE3()">;
424def HasSSSE3 : Predicate<"Subtarget->hasSSSE3()">;
425def HasSSE41 : Predicate<"Subtarget->hasSSE41()">;
426def HasSSE42 : Predicate<"Subtarget->hasSSE42()">;
427def HasSSE4A : Predicate<"Subtarget->hasSSE4A()">;
Nate Begeman5812b102010-12-03 22:29:15 +0000428
David Greene343dadb2009-06-26 22:46:54 +0000429def HasAVX : Predicate<"Subtarget->hasAVX()">;
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000430def HasXMMInt : Predicate<"Subtarget->hasXMMInt()">;
431
432def HasAES : Predicate<"Subtarget->hasAES()">;
Bruno Cardoso Lopescdae7e82010-07-23 01:17:51 +0000433def HasCLMUL : Predicate<"Subtarget->hasCLMUL()">;
David Greene343dadb2009-06-26 22:46:54 +0000434def HasFMA3 : Predicate<"Subtarget->hasFMA3()">;
435def HasFMA4 : Predicate<"Subtarget->hasFMA4()">;
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000436def FPStackf32 : Predicate<"!Subtarget->hasXMM()">;
437def FPStackf64 : Predicate<"!Subtarget->hasXMMInt()">;
Chris Lattner0f899c72010-10-30 19:38:20 +0000438def In32BitMode : Predicate<"!Subtarget->is64Bit()">, AssemblerPredicate;
439def In64BitMode : Predicate<"Subtarget->is64Bit()">, AssemblerPredicate;
Anton Korobeynikovcf6b7392009-08-03 08:12:53 +0000440def IsWin64 : Predicate<"Subtarget->isTargetWin64()">;
441def NotWin64 : Predicate<"!Subtarget->isTargetWin64()">;
Anton Korobeynikovd7697d02009-08-06 11:23:24 +0000442def SmallCode : Predicate<"TM.getCodeModel() == CodeModel::Small">;
443def KernelCode : Predicate<"TM.getCodeModel() == CodeModel::Kernel">;
444def FarData : Predicate<"TM.getCodeModel() != CodeModel::Small &&"
Anton Korobeynikov186fa1d2009-08-06 09:11:19 +0000445 "TM.getCodeModel() != CodeModel::Kernel">;
Anton Korobeynikovd7697d02009-08-06 11:23:24 +0000446def NearData : Predicate<"TM.getCodeModel() == CodeModel::Small ||"
447 "TM.getCodeModel() == CodeModel::Kernel">;
Evan Cheng28b514392006-12-05 19:50:18 +0000448def IsStatic : Predicate<"TM.getRelocationModel() == Reloc::Static">;
Evan Chengcb0f06e2010-03-25 00:10:31 +0000449def IsNotPIC : Predicate<"TM.getRelocationModel() != Reloc::PIC_">;
Evan Chengb1f49812009-12-22 17:47:23 +0000450def OptForSize : Predicate<"OptForSize">;
Evan Chengb7a75a52008-09-26 23:41:32 +0000451def OptForSpeed : Predicate<"!OptForSize">;
Evan Chengccb69762009-01-02 05:35:45 +0000452def FastBTMem : Predicate<"!Subtarget->isBTMemSlow()">;
Evan Chengd7f666a2009-05-20 04:53:57 +0000453def CallImmAddr : Predicate<"Subtarget->IsLegalToCallImmediateAddr(TM)">;
Evan Chengbbc8ddb2005-12-20 22:59:51 +0000454
455//===----------------------------------------------------------------------===//
Evan Chengc64a1a92007-07-31 08:04:03 +0000456// X86 Instruction Format Definitions.
Evan Chengaed7c722005-12-17 01:24:02 +0000457//
458
Evan Chengc64a1a92007-07-31 08:04:03 +0000459include "X86InstrFormats.td"
Chris Lattner1cca5e32003-08-03 21:54:21 +0000460
Alkis Evlogimenos5ab29b52004-02-28 22:02:05 +0000461//===----------------------------------------------------------------------===//
Chris Lattner54379062011-04-17 21:38:24 +0000462// Pattern fragments.
Chris Lattnerf124d5e2005-11-18 01:04:42 +0000463//
Evan Chengd9558e02006-01-06 00:43:03 +0000464
465// X86 specific condition code. These correspond to CondCode in
Nate Begeman9a225302007-05-06 04:00:55 +0000466// X86InstrInfo.h. They must be kept in synch.
Dan Gohman653456c2009-01-07 00:15:08 +0000467def X86_COND_A : PatLeaf<(i8 0)>; // alt. COND_NBE
468def X86_COND_AE : PatLeaf<(i8 1)>; // alt. COND_NC
469def X86_COND_B : PatLeaf<(i8 2)>; // alt. COND_C
470def X86_COND_BE : PatLeaf<(i8 3)>; // alt. COND_NA
471def X86_COND_E : PatLeaf<(i8 4)>; // alt. COND_Z
472def X86_COND_G : PatLeaf<(i8 5)>; // alt. COND_NLE
473def X86_COND_GE : PatLeaf<(i8 6)>; // alt. COND_NL
474def X86_COND_L : PatLeaf<(i8 7)>; // alt. COND_NGE
475def X86_COND_LE : PatLeaf<(i8 8)>; // alt. COND_NG
476def X86_COND_NE : PatLeaf<(i8 9)>; // alt. COND_NZ
Evan Chengd9558e02006-01-06 00:43:03 +0000477def X86_COND_NO : PatLeaf<(i8 10)>;
Dan Gohman653456c2009-01-07 00:15:08 +0000478def X86_COND_NP : PatLeaf<(i8 11)>; // alt. COND_PO
Evan Chengd9558e02006-01-06 00:43:03 +0000479def X86_COND_NS : PatLeaf<(i8 12)>;
Dan Gohman653456c2009-01-07 00:15:08 +0000480def X86_COND_O : PatLeaf<(i8 13)>;
481def X86_COND_P : PatLeaf<(i8 14)>; // alt. COND_PE
482def X86_COND_S : PatLeaf<(i8 15)>;
Evan Chengd9558e02006-01-06 00:43:03 +0000483
Chris Lattner202a7a12011-04-18 06:36:55 +0000484let FastIselShouldIgnore = 1 in { // FastIsel should ignore all simm8 instrs.
Nick Lewycky52a83992011-04-20 03:19:42 +0000485 def i16immSExt8 : ImmLeaf<i16, [{ return Imm == (int8_t)Imm; }]>;
486 def i32immSExt8 : ImmLeaf<i32, [{ return Imm == (int8_t)Imm; }]>;
487 def i64immSExt8 : ImmLeaf<i64, [{ return Imm == (int8_t)Imm; }]>;
Chris Lattner202a7a12011-04-18 06:36:55 +0000488}
489
Chris Lattner5662bc92011-04-17 22:12:55 +0000490def i64immSExt32 : ImmLeaf<i64, [{ return Imm == (int32_t)Imm; }]>;
Chris Lattner7ed13912011-04-17 22:05:17 +0000491
492
Chris Lattner5662bc92011-04-17 22:12:55 +0000493// i64immZExt32 predicate - True if the 64-bit immediate fits in a 32-bit
494// unsigned field.
495def i64immZExt32 : ImmLeaf<i64, [{ return (uint64_t)Imm == (uint32_t)Imm; }]>;
Chris Lattner7ed13912011-04-17 22:05:17 +0000496
Chris Lattner5662bc92011-04-17 22:12:55 +0000497def i64immZExt32SExt8 : ImmLeaf<i64, [{
498 return (uint64_t)Imm == (uint32_t)Imm && (int32_t)Imm == (int8_t)Imm;
Rafael Espindoladba81cf2010-10-13 13:31:20 +0000499}]>;
500
Evan Cheng605c4152005-12-13 01:57:51 +0000501// Helper fragments for loads.
Evan Chengb6564432008-05-13 18:59:59 +0000502// It's always safe to treat a anyext i16 load as a i32 load if the i16 is
503// known to be 32-bit aligned or better. Ditto for i8 to i16.
Dan Gohman33586292008-10-15 06:50:19 +0000504def loadi16 : PatFrag<(ops node:$ptr), (i16 (unindexedload node:$ptr)), [{
Dan Gohman67ca6be2008-08-20 15:24:22 +0000505 LoadSDNode *LD = cast<LoadSDNode>(N);
Dan Gohman67ca6be2008-08-20 15:24:22 +0000506 ISD::LoadExtType ExtType = LD->getExtensionType();
507 if (ExtType == ISD::NON_EXTLOAD)
508 return true;
509 if (ExtType == ISD::EXTLOAD)
510 return LD->getAlignment() >= 2 && !LD->isVolatile();
Evan Chengfa7fd332008-05-13 00:54:02 +0000511 return false;
512}]>;
513
Chris Lattnerf85eff72010-03-03 01:52:59 +0000514def loadi16_anyext : PatFrag<(ops node:$ptr), (i32 (unindexedload node:$ptr)),[{
Evan Chengca57f782008-09-24 23:27:55 +0000515 LoadSDNode *LD = cast<LoadSDNode>(N);
Evan Chengca57f782008-09-24 23:27:55 +0000516 ISD::LoadExtType ExtType = LD->getExtensionType();
517 if (ExtType == ISD::EXTLOAD)
518 return LD->getAlignment() >= 2 && !LD->isVolatile();
519 return false;
520}]>;
521
Dan Gohman33586292008-10-15 06:50:19 +0000522def loadi32 : PatFrag<(ops node:$ptr), (i32 (unindexedload node:$ptr)), [{
Dan Gohman67ca6be2008-08-20 15:24:22 +0000523 LoadSDNode *LD = cast<LoadSDNode>(N);
Dan Gohman67ca6be2008-08-20 15:24:22 +0000524 ISD::LoadExtType ExtType = LD->getExtensionType();
525 if (ExtType == ISD::NON_EXTLOAD)
526 return true;
527 if (ExtType == ISD::EXTLOAD)
528 return LD->getAlignment() >= 4 && !LD->isVolatile();
Evan Chengfa7fd332008-05-13 00:54:02 +0000529 return false;
530}]>;
531
Chris Lattnerb86faa12010-09-21 22:07:31 +0000532def loadi8 : PatFrag<(ops node:$ptr), (i8 (load node:$ptr))>;
533def loadi64 : PatFrag<(ops node:$ptr), (i64 (load node:$ptr))>;
534def loadf32 : PatFrag<(ops node:$ptr), (f32 (load node:$ptr))>;
535def loadf64 : PatFrag<(ops node:$ptr), (f64 (load node:$ptr))>;
536def loadf80 : PatFrag<(ops node:$ptr), (f80 (load node:$ptr))>;
Evan Cheng7a7e8372005-12-14 02:22:27 +0000537
Evan Cheng466685d2006-10-09 20:57:25 +0000538def sextloadi16i8 : PatFrag<(ops node:$ptr), (i16 (sextloadi8 node:$ptr))>;
539def sextloadi32i8 : PatFrag<(ops node:$ptr), (i32 (sextloadi8 node:$ptr))>;
540def sextloadi32i16 : PatFrag<(ops node:$ptr), (i32 (sextloadi16 node:$ptr))>;
Chris Lattner41efbfa2010-10-05 06:37:31 +0000541def sextloadi64i8 : PatFrag<(ops node:$ptr), (i64 (sextloadi8 node:$ptr))>;
542def sextloadi64i16 : PatFrag<(ops node:$ptr), (i64 (sextloadi16 node:$ptr))>;
543def sextloadi64i32 : PatFrag<(ops node:$ptr), (i64 (sextloadi32 node:$ptr))>;
Evan Cheng7a7e8372005-12-14 02:22:27 +0000544
Evan Cheng466685d2006-10-09 20:57:25 +0000545def zextloadi8i1 : PatFrag<(ops node:$ptr), (i8 (zextloadi1 node:$ptr))>;
546def zextloadi16i1 : PatFrag<(ops node:$ptr), (i16 (zextloadi1 node:$ptr))>;
547def zextloadi32i1 : PatFrag<(ops node:$ptr), (i32 (zextloadi1 node:$ptr))>;
548def zextloadi16i8 : PatFrag<(ops node:$ptr), (i16 (zextloadi8 node:$ptr))>;
549def zextloadi32i8 : PatFrag<(ops node:$ptr), (i32 (zextloadi8 node:$ptr))>;
550def zextloadi32i16 : PatFrag<(ops node:$ptr), (i32 (zextloadi16 node:$ptr))>;
Chris Lattner41efbfa2010-10-05 06:37:31 +0000551def zextloadi64i1 : PatFrag<(ops node:$ptr), (i64 (zextloadi1 node:$ptr))>;
552def zextloadi64i8 : PatFrag<(ops node:$ptr), (i64 (zextloadi8 node:$ptr))>;
553def zextloadi64i16 : PatFrag<(ops node:$ptr), (i64 (zextloadi16 node:$ptr))>;
554def zextloadi64i32 : PatFrag<(ops node:$ptr), (i64 (zextloadi32 node:$ptr))>;
Evan Cheng7a7e8372005-12-14 02:22:27 +0000555
Evan Cheng466685d2006-10-09 20:57:25 +0000556def extloadi8i1 : PatFrag<(ops node:$ptr), (i8 (extloadi1 node:$ptr))>;
557def extloadi16i1 : PatFrag<(ops node:$ptr), (i16 (extloadi1 node:$ptr))>;
558def extloadi32i1 : PatFrag<(ops node:$ptr), (i32 (extloadi1 node:$ptr))>;
559def extloadi16i8 : PatFrag<(ops node:$ptr), (i16 (extloadi8 node:$ptr))>;
560def extloadi32i8 : PatFrag<(ops node:$ptr), (i32 (extloadi8 node:$ptr))>;
561def extloadi32i16 : PatFrag<(ops node:$ptr), (i32 (extloadi16 node:$ptr))>;
Chris Lattner41efbfa2010-10-05 06:37:31 +0000562def extloadi64i1 : PatFrag<(ops node:$ptr), (i64 (extloadi1 node:$ptr))>;
563def extloadi64i8 : PatFrag<(ops node:$ptr), (i64 (extloadi8 node:$ptr))>;
564def extloadi64i16 : PatFrag<(ops node:$ptr), (i64 (extloadi16 node:$ptr))>;
565def extloadi64i32 : PatFrag<(ops node:$ptr), (i64 (extloadi32 node:$ptr))>;
Evan Cheng747a90d2006-02-21 02:24:38 +0000566
Chris Lattnerce2bcc82008-02-19 17:37:35 +0000567
568// An 'and' node with a single use.
569def and_su : PatFrag<(ops node:$lhs, node:$rhs), (and node:$lhs, node:$rhs), [{
Evan Cheng07b7ea12008-03-04 00:40:35 +0000570 return N->hasOneUse();
Chris Lattnerce2bcc82008-02-19 17:37:35 +0000571}]>;
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000572// An 'srl' node with a single use.
573def srl_su : PatFrag<(ops node:$lhs, node:$rhs), (srl node:$lhs, node:$rhs), [{
574 return N->hasOneUse();
575}]>;
576// An 'trunc' node with a single use.
577def trunc_su : PatFrag<(ops node:$src), (trunc node:$src), [{
578 return N->hasOneUse();
579}]>;
Chris Lattnerce2bcc82008-02-19 17:37:35 +0000580
Chris Lattnerf124d5e2005-11-18 01:04:42 +0000581//===----------------------------------------------------------------------===//
Chris Lattner434c7cb2010-10-05 05:32:15 +0000582// Instruction list.
Chris Lattner1cca5e32003-08-03 21:54:21 +0000583//
584
Evan Cheng4a460802006-01-11 00:33:36 +0000585// Nop
Sean Callanan74e52102009-07-23 23:39:34 +0000586let neverHasSideEffects = 1 in {
Chris Lattnerba7e7562008-01-10 07:59:24 +0000587 def NOOP : I<0x90, RawFrm, (outs), (ins), "nop", []>;
Sean Callanan108934c2009-12-18 00:01:26 +0000588 def NOOPW : I<0x1f, MRM0m, (outs), (ins i16mem:$zero),
589 "nop{w}\t$zero", []>, TB, OpSize;
Sean Callanan74e52102009-07-23 23:39:34 +0000590 def NOOPL : I<0x1f, MRM0m, (outs), (ins i32mem:$zero),
Sean Callanan108934c2009-12-18 00:01:26 +0000591 "nop{l}\t$zero", []>, TB;
Sean Callanan74e52102009-07-23 23:39:34 +0000592}
Evan Cheng4a460802006-01-11 00:33:36 +0000593
Chris Lattner1cca5e32003-08-03 21:54:21 +0000594
Sean Callanan8d708542009-09-16 02:57:13 +0000595// Constructing a stack frame.
Chris Lattner40cc3f82010-09-17 18:02:29 +0000596def ENTER : Ii16<0xC8, RawFrmImm8, (outs), (ins i16imm:$len, i8imm:$lvl),
597 "enter\t$len, $lvl", []>;
Sean Callanan8d708542009-09-16 02:57:13 +0000598
Chris Lattnerba7e7562008-01-10 07:59:24 +0000599let Defs = [EBP, ESP], Uses = [EBP, ESP], mayLoad = 1, neverHasSideEffects=1 in
Chris Lattner30bf2d82004-08-10 20:17:41 +0000600def LEAVE : I<0xC9, RawFrm,
Daniel Dunbardf4c47b2010-07-19 07:21:01 +0000601 (outs), (ins), "leave", []>, Requires<[In32BitMode]>;
Evan Cheng071a2792007-09-11 19:55:27 +0000602
Chris Lattner5673e1d2010-10-05 06:41:40 +0000603let Defs = [RBP,RSP], Uses = [RBP,RSP], mayLoad = 1, neverHasSideEffects = 1 in
604def LEAVE64 : I<0xC9, RawFrm,
605 (outs), (ins), "leave", []>, Requires<[In64BitMode]>;
606
Chris Lattner87be16a2010-10-05 06:04:14 +0000607//===----------------------------------------------------------------------===//
Chris Lattner5673e1d2010-10-05 06:41:40 +0000608// Miscellaneous Instructions.
Chris Lattner87be16a2010-10-05 06:04:14 +0000609//
Sean Callanan108934c2009-12-18 00:01:26 +0000610
Chris Lattnerba7e7562008-01-10 07:59:24 +0000611let Defs = [ESP], Uses = [ESP], neverHasSideEffects=1 in {
Sean Callanan1f24e012009-09-10 18:29:13 +0000612let mayLoad = 1 in {
613def POP16r : I<0x58, AddRegFrm, (outs GR16:$reg), (ins), "pop{w}\t$reg", []>,
614 OpSize;
615def POP32r : I<0x58, AddRegFrm, (outs GR32:$reg), (ins), "pop{l}\t$reg", []>;
616def POP16rmr: I<0x8F, MRM0r, (outs GR16:$reg), (ins), "pop{w}\t$reg", []>,
617 OpSize;
618def POP16rmm: I<0x8F, MRM0m, (outs i16mem:$dst), (ins), "pop{w}\t$dst", []>,
619 OpSize;
620def POP32rmr: I<0x8F, MRM0r, (outs GR32:$reg), (ins), "pop{l}\t$reg", []>;
621def POP32rmm: I<0x8F, MRM0m, (outs i32mem:$dst), (ins), "pop{l}\t$dst", []>;
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000622
623def POPF16 : I<0x9D, RawFrm, (outs), (ins), "popf{w}", []>, OpSize;
624def POPF32 : I<0x9D, RawFrm, (outs), (ins), "popf{l|d}", []>,
625 Requires<[In32BitMode]>;
Sean Callanan1f24e012009-09-10 18:29:13 +0000626}
Chris Lattner1cca5e32003-08-03 21:54:21 +0000627
Sean Callanan1f24e012009-09-10 18:29:13 +0000628let mayStore = 1 in {
629def PUSH16r : I<0x50, AddRegFrm, (outs), (ins GR16:$reg), "push{w}\t$reg",[]>,
630 OpSize;
Evan Cheng2f245ba2007-09-26 01:29:06 +0000631def PUSH32r : I<0x50, AddRegFrm, (outs), (ins GR32:$reg), "push{l}\t$reg",[]>;
Sean Callanan1f24e012009-09-10 18:29:13 +0000632def PUSH16rmr: I<0xFF, MRM6r, (outs), (ins GR16:$reg), "push{w}\t$reg",[]>,
633 OpSize;
634def PUSH16rmm: I<0xFF, MRM6m, (outs), (ins i16mem:$src), "push{w}\t$src",[]>,
635 OpSize;
636def PUSH32rmr: I<0xFF, MRM6r, (outs), (ins GR32:$reg), "push{l}\t$reg",[]>;
637def PUSH32rmm: I<0xFF, MRM6m, (outs), (ins i32mem:$src), "push{l}\t$src",[]>;
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +0000638
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000639def PUSHi8 : Ii8<0x6a, RawFrm, (outs), (ins i32i8imm:$imm),
Bill Wendling927788c2009-06-15 20:59:31 +0000640 "push{l}\t$imm", []>;
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000641def PUSHi16 : Ii16<0x68, RawFrm, (outs), (ins i16imm:$imm),
Kevin Enderby3c979b02010-05-03 20:45:05 +0000642 "push{w}\t$imm", []>, OpSize;
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000643def PUSHi32 : Ii32<0x68, RawFrm, (outs), (ins i32imm:$imm),
Bill Wendling927788c2009-06-15 20:59:31 +0000644 "push{l}\t$imm", []>;
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000645
Dan Gohmane5e4ff92010-05-20 16:16:00 +0000646def PUSHF16 : I<0x9C, RawFrm, (outs), (ins), "pushf{w}", []>, OpSize;
647def PUSHF32 : I<0x9C, RawFrm, (outs), (ins), "pushf{l|d}", []>,
648 Requires<[In32BitMode]>;
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000649
Sean Callanan108934c2009-12-18 00:01:26 +0000650}
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000651}
652
653let Defs = [RSP], Uses = [RSP], neverHasSideEffects=1 in {
654let mayLoad = 1 in {
655def POP64r : I<0x58, AddRegFrm,
656 (outs GR64:$reg), (ins), "pop{q}\t$reg", []>;
657def POP64rmr: I<0x8F, MRM0r, (outs GR64:$reg), (ins), "pop{q}\t$reg", []>;
658def POP64rmm: I<0x8F, MRM0m, (outs i64mem:$dst), (ins), "pop{q}\t$dst", []>;
659}
660let mayStore = 1 in {
661def PUSH64r : I<0x50, AddRegFrm,
662 (outs), (ins GR64:$reg), "push{q}\t$reg", []>;
663def PUSH64rmr: I<0xFF, MRM6r, (outs), (ins GR64:$reg), "push{q}\t$reg", []>;
664def PUSH64rmm: I<0xFF, MRM6m, (outs), (ins i64mem:$src), "push{q}\t$src", []>;
665}
666}
667
668let Defs = [RSP], Uses = [RSP], neverHasSideEffects = 1, mayStore = 1 in {
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000669def PUSH64i8 : Ii8<0x6a, RawFrm, (outs), (ins i8imm:$imm),
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000670 "push{q}\t$imm", []>;
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000671def PUSH64i16 : Ii16<0x68, RawFrm, (outs), (ins i16imm:$imm),
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000672 "push{q}\t$imm", []>;
673def PUSH64i32 : Ii32<0x68, RawFrm, (outs), (ins i64i32imm:$imm),
674 "push{q}\t$imm", []>;
675}
676
677let Defs = [RSP, EFLAGS], Uses = [RSP], mayLoad = 1, neverHasSideEffects=1 in
678def POPF64 : I<0x9D, RawFrm, (outs), (ins), "popfq", []>,
679 Requires<[In64BitMode]>;
680let Defs = [RSP], Uses = [RSP, EFLAGS], mayStore = 1, neverHasSideEffects=1 in
681def PUSHF64 : I<0x9C, RawFrm, (outs), (ins), "pushfq", []>,
682 Requires<[In64BitMode]>;
683
684
Evan Cheng2f245ba2007-09-26 01:29:06 +0000685
Nico Weber50b9efc2010-06-23 20:00:58 +0000686let Defs = [EDI, ESI, EBP, EBX, EDX, ECX, EAX, ESP], Uses = [ESP],
687 mayLoad=1, neverHasSideEffects=1 in {
688def POPA32 : I<0x61, RawFrm, (outs), (ins), "popa{l}", []>,
689 Requires<[In32BitMode]>;
690}
691let Defs = [ESP], Uses = [EDI, ESI, EBP, EBX, EDX, ECX, EAX, ESP],
692 mayStore=1, neverHasSideEffects=1 in {
693def PUSHA32 : I<0x60, RawFrm, (outs), (ins), "pusha{l}", []>,
694 Requires<[In32BitMode]>;
695}
696
Chris Lattner8917cd32010-10-05 06:52:26 +0000697let Constraints = "$src = $dst" in { // GR32 = bswap GR32
698def BSWAP32r : I<0xC8, AddRegFrm,
699 (outs GR32:$dst), (ins GR32:$src),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000700 "bswap{l}\t$dst",
Chris Lattner8917cd32010-10-05 06:52:26 +0000701 [(set GR32:$dst, (bswap GR32:$src))]>, TB;
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000702
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000703def BSWAP64r : RI<0xC8, AddRegFrm, (outs GR64:$dst), (ins GR64:$src),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000704 "bswap{q}\t$dst",
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000705 [(set GR64:$dst, (bswap GR64:$src))]>, TB;
Chris Lattner8917cd32010-10-05 06:52:26 +0000706} // Constraints = "$src = $dst"
Chris Lattner1cca5e32003-08-03 21:54:21 +0000707
Evan Cheng18efe262007-12-14 02:13:44 +0000708// Bit scan instructions.
709let Defs = [EFLAGS] in {
Evan Chengfd9e4732007-12-14 18:49:43 +0000710def BSF16rr : I<0xBC, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src),
Dan Gohman1a8001e2007-12-14 15:10:00 +0000711 "bsf{w}\t{$src, $dst|$dst, $src}",
Kevin Enderby9ac72822010-04-28 23:20:40 +0000712 [(set GR16:$dst, EFLAGS, (X86bsf GR16:$src))]>, TB, OpSize;
Evan Cheng18efe262007-12-14 02:13:44 +0000713def BSF16rm : I<0xBC, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
Dan Gohman1a8001e2007-12-14 15:10:00 +0000714 "bsf{w}\t{$src, $dst|$dst, $src}",
Kevin Enderby9ac72822010-04-28 23:20:40 +0000715 [(set GR16:$dst, EFLAGS, (X86bsf (loadi16 addr:$src)))]>, TB,
716 OpSize;
Evan Chengfd9e4732007-12-14 18:49:43 +0000717def BSF32rr : I<0xBC, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
Dan Gohman1a8001e2007-12-14 15:10:00 +0000718 "bsf{l}\t{$src, $dst|$dst, $src}",
Chris Lattnerd486d772010-03-28 05:07:17 +0000719 [(set GR32:$dst, EFLAGS, (X86bsf GR32:$src))]>, TB;
Evan Cheng18efe262007-12-14 02:13:44 +0000720def BSF32rm : I<0xBC, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
Dan Gohman1a8001e2007-12-14 15:10:00 +0000721 "bsf{l}\t{$src, $dst|$dst, $src}",
Chris Lattnerd486d772010-03-28 05:07:17 +0000722 [(set GR32:$dst, EFLAGS, (X86bsf (loadi32 addr:$src)))]>, TB;
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000723def BSF64rr : RI<0xBC, MRMSrcReg, (outs GR64:$dst), (ins GR64:$src),
724 "bsf{q}\t{$src, $dst|$dst, $src}",
725 [(set GR64:$dst, EFLAGS, (X86bsf GR64:$src))]>, TB;
726def BSF64rm : RI<0xBC, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
727 "bsf{q}\t{$src, $dst|$dst, $src}",
728 [(set GR64:$dst, EFLAGS, (X86bsf (loadi64 addr:$src)))]>, TB;
Evan Cheng18efe262007-12-14 02:13:44 +0000729
Evan Chengfd9e4732007-12-14 18:49:43 +0000730def BSR16rr : I<0xBD, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src),
Dan Gohman1a8001e2007-12-14 15:10:00 +0000731 "bsr{w}\t{$src, $dst|$dst, $src}",
Kevin Enderby9ac72822010-04-28 23:20:40 +0000732 [(set GR16:$dst, EFLAGS, (X86bsr GR16:$src))]>, TB, OpSize;
Evan Cheng18efe262007-12-14 02:13:44 +0000733def BSR16rm : I<0xBD, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
Dan Gohman1a8001e2007-12-14 15:10:00 +0000734 "bsr{w}\t{$src, $dst|$dst, $src}",
Kevin Enderby9ac72822010-04-28 23:20:40 +0000735 [(set GR16:$dst, EFLAGS, (X86bsr (loadi16 addr:$src)))]>, TB,
736 OpSize;
Evan Chengfd9e4732007-12-14 18:49:43 +0000737def BSR32rr : I<0xBD, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
Dan Gohman1a8001e2007-12-14 15:10:00 +0000738 "bsr{l}\t{$src, $dst|$dst, $src}",
Chris Lattnerd486d772010-03-28 05:07:17 +0000739 [(set GR32:$dst, EFLAGS, (X86bsr GR32:$src))]>, TB;
Evan Cheng18efe262007-12-14 02:13:44 +0000740def BSR32rm : I<0xBD, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
Dan Gohman1a8001e2007-12-14 15:10:00 +0000741 "bsr{l}\t{$src, $dst|$dst, $src}",
Chris Lattnerd486d772010-03-28 05:07:17 +0000742 [(set GR32:$dst, EFLAGS, (X86bsr (loadi32 addr:$src)))]>, TB;
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000743def BSR64rr : RI<0xBD, MRMSrcReg, (outs GR64:$dst), (ins GR64:$src),
744 "bsr{q}\t{$src, $dst|$dst, $src}",
745 [(set GR64:$dst, EFLAGS, (X86bsr GR64:$src))]>, TB;
746def BSR64rm : RI<0xBD, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
747 "bsr{q}\t{$src, $dst|$dst, $src}",
748 [(set GR64:$dst, EFLAGS, (X86bsr (loadi64 addr:$src)))]>, TB;
Evan Cheng18efe262007-12-14 02:13:44 +0000749} // Defs = [EFLAGS]
750
Chris Lattner915e5e52004-02-12 17:53:22 +0000751
Kevin Enderby12ce0de2010-02-03 21:04:42 +0000752// These uses the DF flag in the EFLAGS register to inc or dec EDI and ESI
753let Defs = [EDI,ESI], Uses = [EDI,ESI,EFLAGS] in {
754def MOVSB : I<0xA4, RawFrm, (outs), (ins), "{movsb}", []>;
755def MOVSW : I<0xA5, RawFrm, (outs), (ins), "{movsw}", []>, OpSize;
756def MOVSD : I<0xA5, RawFrm, (outs), (ins), "{movsl|movsd}", []>;
Chris Lattnerd3f033d2010-10-05 06:27:48 +0000757def MOVSQ : RI<0xA5, RawFrm, (outs), (ins), "movsq", []>;
Kevin Enderby12ce0de2010-02-03 21:04:42 +0000758}
759
Kevin Enderby12ce0de2010-02-03 21:04:42 +0000760// These uses the DF flag in the EFLAGS register to inc or dec EDI and ESI
761let Defs = [EDI], Uses = [AL,EDI,EFLAGS] in
762def STOSB : I<0xAA, RawFrm, (outs), (ins), "{stosb}", []>;
763let Defs = [EDI], Uses = [AX,EDI,EFLAGS] in
764def STOSW : I<0xAB, RawFrm, (outs), (ins), "{stosw}", []>, OpSize;
765let Defs = [EDI], Uses = [EAX,EDI,EFLAGS] in
766def STOSD : I<0xAB, RawFrm, (outs), (ins), "{stosl|stosd}", []>;
Chris Lattnerd3f033d2010-10-05 06:27:48 +0000767let Defs = [RCX,RDI], Uses = [RAX,RCX,RDI,EFLAGS] in
768def STOSQ : RI<0xAB, RawFrm, (outs), (ins), "stosq", []>;
Kevin Enderby12ce0de2010-02-03 21:04:42 +0000769
Sean Callanana82e4652009-09-12 00:37:19 +0000770def SCAS8 : I<0xAE, RawFrm, (outs), (ins), "scas{b}", []>;
771def SCAS16 : I<0xAF, RawFrm, (outs), (ins), "scas{w}", []>, OpSize;
772def SCAS32 : I<0xAF, RawFrm, (outs), (ins), "scas{l}", []>;
Chris Lattnerd3f033d2010-10-05 06:27:48 +0000773def SCAS64 : RI<0xAF, RawFrm, (outs), (ins), "scasq", []>;
Sean Callanana82e4652009-09-12 00:37:19 +0000774
Sean Callanan6f8f4622009-09-12 02:25:20 +0000775def CMPS8 : I<0xA6, RawFrm, (outs), (ins), "cmps{b}", []>;
776def CMPS16 : I<0xA7, RawFrm, (outs), (ins), "cmps{w}", []>, OpSize;
777def CMPS32 : I<0xA7, RawFrm, (outs), (ins), "cmps{l}", []>;
Chris Lattnerd3f033d2010-10-05 06:27:48 +0000778def CMPS64 : RI<0xA7, RawFrm, (outs), (ins), "cmpsq", []>;
Sean Callanan6f8f4622009-09-12 02:25:20 +0000779
Chris Lattner02552de2009-08-11 16:58:39 +0000780
Chris Lattner1cca5e32003-08-03 21:54:21 +0000781//===----------------------------------------------------------------------===//
Chris Lattner434c7cb2010-10-05 05:32:15 +0000782// Move Instructions.
Chris Lattner1cca5e32003-08-03 21:54:21 +0000783//
Chris Lattner748a2fe2010-10-05 20:49:15 +0000784
Chris Lattnerba7e7562008-01-10 07:59:24 +0000785let neverHasSideEffects = 1 in {
Evan Cheng64d80e32007-07-19 01:14:50 +0000786def MOV8rr : I<0x88, MRMDestReg, (outs GR8 :$dst), (ins GR8 :$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000787 "mov{b}\t{$src, $dst|$dst, $src}", []>;
Evan Cheng64d80e32007-07-19 01:14:50 +0000788def MOV16rr : I<0x89, MRMDestReg, (outs GR16:$dst), (ins GR16:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000789 "mov{w}\t{$src, $dst|$dst, $src}", []>, OpSize;
Evan Cheng64d80e32007-07-19 01:14:50 +0000790def MOV32rr : I<0x89, MRMDestReg, (outs GR32:$dst), (ins GR32:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000791 "mov{l}\t{$src, $dst|$dst, $src}", []>;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000792def MOV64rr : RI<0x89, MRMDestReg, (outs GR64:$dst), (ins GR64:$src),
793 "mov{q}\t{$src, $dst|$dst, $src}", []>;
Chris Lattnerba7e7562008-01-10 07:59:24 +0000794}
Evan Cheng359e9372008-06-18 08:13:07 +0000795let isReMaterializable = 1, isAsCheapAsAMove = 1 in {
Evan Cheng64d80e32007-07-19 01:14:50 +0000796def MOV8ri : Ii8 <0xB0, AddRegFrm, (outs GR8 :$dst), (ins i8imm :$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000797 "mov{b}\t{$src, $dst|$dst, $src}",
Evan Cheng069287d2006-05-16 07:21:53 +0000798 [(set GR8:$dst, imm:$src)]>;
Evan Cheng64d80e32007-07-19 01:14:50 +0000799def MOV16ri : Ii16<0xB8, AddRegFrm, (outs GR16:$dst), (ins i16imm:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000800 "mov{w}\t{$src, $dst|$dst, $src}",
Evan Cheng069287d2006-05-16 07:21:53 +0000801 [(set GR16:$dst, imm:$src)]>, OpSize;
Evan Cheng64d80e32007-07-19 01:14:50 +0000802def MOV32ri : Ii32<0xB8, AddRegFrm, (outs GR32:$dst), (ins i32imm:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000803 "mov{l}\t{$src, $dst|$dst, $src}",
Evan Cheng069287d2006-05-16 07:21:53 +0000804 [(set GR32:$dst, imm:$src)]>;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000805def MOV64ri : RIi64<0xB8, AddRegFrm, (outs GR64:$dst), (ins i64imm:$src),
806 "movabs{q}\t{$src, $dst|$dst, $src}",
807 [(set GR64:$dst, imm:$src)]>;
808def MOV64ri32 : RIi32<0xC7, MRM0r, (outs GR64:$dst), (ins i64i32imm:$src),
809 "mov{q}\t{$src, $dst|$dst, $src}",
810 [(set GR64:$dst, i64immSExt32:$src)]>;
Dan Gohmand45eddd2007-06-26 00:48:07 +0000811}
Kevin Enderby12ce0de2010-02-03 21:04:42 +0000812
Evan Cheng64d80e32007-07-19 01:14:50 +0000813def MOV8mi : Ii8 <0xC6, MRM0m, (outs), (ins i8mem :$dst, i8imm :$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000814 "mov{b}\t{$src, $dst|$dst, $src}",
Evan Chengb51a0592005-12-10 00:48:20 +0000815 [(store (i8 imm:$src), addr:$dst)]>;
Evan Cheng64d80e32007-07-19 01:14:50 +0000816def MOV16mi : Ii16<0xC7, MRM0m, (outs), (ins i16mem:$dst, i16imm:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000817 "mov{w}\t{$src, $dst|$dst, $src}",
Evan Chengb51a0592005-12-10 00:48:20 +0000818 [(store (i16 imm:$src), addr:$dst)]>, OpSize;
Evan Cheng64d80e32007-07-19 01:14:50 +0000819def MOV32mi : Ii32<0xC7, MRM0m, (outs), (ins i32mem:$dst, i32imm:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000820 "mov{l}\t{$src, $dst|$dst, $src}",
Evan Chengb51a0592005-12-10 00:48:20 +0000821 [(store (i32 imm:$src), addr:$dst)]>;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000822def MOV64mi32 : RIi32<0xC7, MRM0m, (outs), (ins i64mem:$dst, i64i32imm:$src),
823 "mov{q}\t{$src, $dst|$dst, $src}",
824 [(store i64immSExt32:$src, addr:$dst)]>;
Chris Lattner1cca5e32003-08-03 21:54:21 +0000825
Chris Lattnerb5505d02010-05-13 00:02:47 +0000826/// moffs8, moffs16 and moffs32 versions of moves. The immediate is a
827/// 32-bit offset from the PC. These are only valid in x86-32 mode.
Chris Lattner2745f6e2010-05-12 22:48:24 +0000828def MOV8o8a : Ii32 <0xA0, RawFrm, (outs), (ins offset8:$src),
Daniel Dunbar6c2c9a22010-07-19 06:14:44 +0000829 "mov{b}\t{$src, %al|%al, $src}", []>,
830 Requires<[In32BitMode]>;
Chris Lattner2745f6e2010-05-12 22:48:24 +0000831def MOV16o16a : Ii32 <0xA1, RawFrm, (outs), (ins offset16:$src),
Daniel Dunbar6c2c9a22010-07-19 06:14:44 +0000832 "mov{w}\t{$src, %ax|%ax, $src}", []>, OpSize,
833 Requires<[In32BitMode]>;
Sean Callanan108934c2009-12-18 00:01:26 +0000834def MOV32o32a : Ii32 <0xA1, RawFrm, (outs), (ins offset32:$src),
Daniel Dunbar6c2c9a22010-07-19 06:14:44 +0000835 "mov{l}\t{$src, %eax|%eax, $src}", []>,
836 Requires<[In32BitMode]>;
Chris Lattner2745f6e2010-05-12 22:48:24 +0000837def MOV8ao8 : Ii32 <0xA2, RawFrm, (outs offset8:$dst), (ins),
Daniel Dunbar6c2c9a22010-07-19 06:14:44 +0000838 "mov{b}\t{%al, $dst|$dst, %al}", []>,
839 Requires<[In32BitMode]>;
Chris Lattner2745f6e2010-05-12 22:48:24 +0000840def MOV16ao16 : Ii32 <0xA3, RawFrm, (outs offset16:$dst), (ins),
Daniel Dunbar6c2c9a22010-07-19 06:14:44 +0000841 "mov{w}\t{%ax, $dst|$dst, %ax}", []>, OpSize,
842 Requires<[In32BitMode]>;
Sean Callanan108934c2009-12-18 00:01:26 +0000843def MOV32ao32 : Ii32 <0xA3, RawFrm, (outs offset32:$dst), (ins),
Daniel Dunbar6c2c9a22010-07-19 06:14:44 +0000844 "mov{l}\t{%eax, $dst|$dst, %eax}", []>,
845 Requires<[In32BitMode]>;
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000846
Chris Lattner748a2fe2010-10-05 20:49:15 +0000847// FIXME: These definitions are utterly broken
848// Just leave them commented out for now because they're useless outside
849// of the large code model, and most compilers won't generate the instructions
850// in question.
851/*
852def MOV64o8a : RIi8<0xA0, RawFrm, (outs), (ins offset8:$src),
853 "mov{q}\t{$src, %rax|%rax, $src}", []>;
854def MOV64o64a : RIi32<0xA1, RawFrm, (outs), (ins offset64:$src),
855 "mov{q}\t{$src, %rax|%rax, $src}", []>;
856def MOV64ao8 : RIi8<0xA2, RawFrm, (outs offset8:$dst), (ins),
857 "mov{q}\t{%rax, $dst|$dst, %rax}", []>;
858def MOV64ao64 : RIi32<0xA3, RawFrm, (outs offset64:$dst), (ins),
859 "mov{q}\t{%rax, $dst|$dst, %rax}", []>;
860*/
861
Sean Callanan38fee0e2009-09-15 18:47:29 +0000862
Daniel Dunbardcbab9c2010-05-26 22:21:28 +0000863let isCodeGenOnly = 1 in {
Sean Callanan108934c2009-12-18 00:01:26 +0000864def MOV8rr_REV : I<0x8A, MRMSrcReg, (outs GR8:$dst), (ins GR8:$src),
865 "mov{b}\t{$src, $dst|$dst, $src}", []>;
866def MOV16rr_REV : I<0x8B, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src),
867 "mov{w}\t{$src, $dst|$dst, $src}", []>, OpSize;
868def MOV32rr_REV : I<0x8B, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
869 "mov{l}\t{$src, $dst|$dst, $src}", []>;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000870def MOV64rr_REV : RI<0x8B, MRMSrcReg, (outs GR64:$dst), (ins GR64:$src),
871 "mov{q}\t{$src, $dst|$dst, $src}", []>;
Daniel Dunbardcbab9c2010-05-26 22:21:28 +0000872}
Sean Callanan108934c2009-12-18 00:01:26 +0000873
Dan Gohmanbc9d98b2010-02-27 23:47:46 +0000874let canFoldAsLoad = 1, isReMaterializable = 1 in {
Evan Cheng64d80e32007-07-19 01:14:50 +0000875def MOV8rm : I<0x8A, MRMSrcMem, (outs GR8 :$dst), (ins i8mem :$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000876 "mov{b}\t{$src, $dst|$dst, $src}",
Chris Lattnerc2406f22009-04-10 00:16:23 +0000877 [(set GR8:$dst, (loadi8 addr:$src))]>;
Evan Cheng64d80e32007-07-19 01:14:50 +0000878def MOV16rm : I<0x8B, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000879 "mov{w}\t{$src, $dst|$dst, $src}",
Chris Lattnerc2406f22009-04-10 00:16:23 +0000880 [(set GR16:$dst, (loadi16 addr:$src))]>, OpSize;
Evan Cheng64d80e32007-07-19 01:14:50 +0000881def MOV32rm : I<0x8B, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000882 "mov{l}\t{$src, $dst|$dst, $src}",
Chris Lattnerc2406f22009-04-10 00:16:23 +0000883 [(set GR32:$dst, (loadi32 addr:$src))]>;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000884def MOV64rm : RI<0x8B, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
885 "mov{q}\t{$src, $dst|$dst, $src}",
886 [(set GR64:$dst, (load addr:$src))]>;
Evan Cheng2f394262007-08-30 05:49:43 +0000887}
Chris Lattner1cca5e32003-08-03 21:54:21 +0000888
Evan Cheng64d80e32007-07-19 01:14:50 +0000889def MOV8mr : I<0x88, MRMDestMem, (outs), (ins i8mem :$dst, GR8 :$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000890 "mov{b}\t{$src, $dst|$dst, $src}",
Evan Cheng069287d2006-05-16 07:21:53 +0000891 [(store GR8:$src, addr:$dst)]>;
Evan Cheng64d80e32007-07-19 01:14:50 +0000892def MOV16mr : I<0x89, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000893 "mov{w}\t{$src, $dst|$dst, $src}",
Evan Cheng069287d2006-05-16 07:21:53 +0000894 [(store GR16:$src, addr:$dst)]>, OpSize;
Evan Cheng64d80e32007-07-19 01:14:50 +0000895def MOV32mr : I<0x89, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000896 "mov{l}\t{$src, $dst|$dst, $src}",
Evan Cheng069287d2006-05-16 07:21:53 +0000897 [(store GR32:$src, addr:$dst)]>;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000898def MOV64mr : RI<0x89, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src),
899 "mov{q}\t{$src, $dst|$dst, $src}",
900 [(store GR64:$src, addr:$dst)]>;
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000901
Dan Gohman4af325d2009-04-27 16:41:36 +0000902// Versions of MOV8rr, MOV8mr, and MOV8rm that use i8mem_NOREX and GR8_NOREX so
903// that they can be used for copying and storing h registers, which can't be
904// encoded when a REX prefix is present.
Daniel Dunbarcf246b72010-07-19 06:14:49 +0000905let isCodeGenOnly = 1 in {
Dan Gohman6d9305c2009-04-15 00:04:23 +0000906let neverHasSideEffects = 1 in
Dan Gohmandf7dfc72009-04-15 19:48:57 +0000907def MOV8rr_NOREX : I<0x88, MRMDestReg,
908 (outs GR8_NOREX:$dst), (ins GR8_NOREX:$src),
Dan Gohman6d9305c2009-04-15 00:04:23 +0000909 "mov{b}\t{$src, $dst|$dst, $src} # NOREX", []>;
Evan Cheng8c147402009-04-30 00:58:57 +0000910let mayStore = 1 in
Dan Gohman6d9305c2009-04-15 00:04:23 +0000911def MOV8mr_NOREX : I<0x88, MRMDestMem,
912 (outs), (ins i8mem_NOREX:$dst, GR8_NOREX:$src),
913 "mov{b}\t{$src, $dst|$dst, $src} # NOREX", []>;
Evan Cheng8c147402009-04-30 00:58:57 +0000914let mayLoad = 1,
Dan Gohmanbc9d98b2010-02-27 23:47:46 +0000915 canFoldAsLoad = 1, isReMaterializable = 1 in
Dan Gohman4af325d2009-04-27 16:41:36 +0000916def MOV8rm_NOREX : I<0x8A, MRMSrcMem,
917 (outs GR8_NOREX:$dst), (ins i8mem_NOREX:$src),
918 "mov{b}\t{$src, $dst|$dst, $src} # NOREX", []>;
Daniel Dunbarcf246b72010-07-19 06:14:49 +0000919}
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000920
Evan Cheng0488db92007-09-25 01:57:46 +0000921
Alkis Evlogimenos5ab29b52004-02-28 22:02:05 +0000922// Condition code ops, incl. set if equal/not equal/...
Chris Lattnerba7e7562008-01-10 07:59:24 +0000923let Defs = [EFLAGS], Uses = [AH], neverHasSideEffects = 1 in
Evan Cheng071a2792007-09-11 19:55:27 +0000924def SAHF : I<0x9E, RawFrm, (outs), (ins), "sahf", []>; // flags = AH
Chris Lattnerba7e7562008-01-10 07:59:24 +0000925let Defs = [AH], Uses = [EFLAGS], neverHasSideEffects = 1 in
Evan Cheng071a2792007-09-11 19:55:27 +0000926def LAHF : I<0x9F, RawFrm, (outs), (ins), "lahf", []>; // AH = flags
Alkis Evlogimenos5ab29b52004-02-28 22:02:05 +0000927
Sean Callanana09caa52009-09-02 00:55:49 +0000928
Chris Lattner748a2fe2010-10-05 20:49:15 +0000929//===----------------------------------------------------------------------===//
930// Bit tests instructions: BT, BTS, BTR, BTC.
Daniel Dunbar1e8ee892010-03-09 22:50:40 +0000931
Dan Gohmanc7a37d42008-12-23 22:45:23 +0000932let Defs = [EFLAGS] in {
Dan Gohman0c89b7e2009-01-13 20:32:45 +0000933def BT16rr : I<0xA3, MRMDestReg, (outs), (ins GR16:$src1, GR16:$src2),
Dan Gohmanc7a37d42008-12-23 22:45:23 +0000934 "bt{w}\t{$src2, $src1|$src1, $src2}",
Chris Lattnere3486a42010-03-19 00:01:11 +0000935 [(set EFLAGS, (X86bt GR16:$src1, GR16:$src2))]>, OpSize, TB;
Dan Gohman0c89b7e2009-01-13 20:32:45 +0000936def BT32rr : I<0xA3, MRMDestReg, (outs), (ins GR32:$src1, GR32:$src2),
Dan Gohmanc7a37d42008-12-23 22:45:23 +0000937 "bt{l}\t{$src2, $src1|$src1, $src2}",
Chris Lattnere3486a42010-03-19 00:01:11 +0000938 [(set EFLAGS, (X86bt GR32:$src1, GR32:$src2))]>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000939def BT64rr : RI<0xA3, MRMDestReg, (outs), (ins GR64:$src1, GR64:$src2),
940 "bt{q}\t{$src2, $src1|$src1, $src2}",
941 [(set EFLAGS, (X86bt GR64:$src1, GR64:$src2))]>, TB;
Dan Gohmanf31408d2009-01-13 23:23:30 +0000942
943// Unlike with the register+register form, the memory+register form of the
944// bt instruction does not ignore the high bits of the index. From ISel's
Sean Callanan108934c2009-12-18 00:01:26 +0000945// perspective, this is pretty bizarre. Make these instructions disassembly
946// only for now.
947
948def BT16mr : I<0xA3, MRMDestMem, (outs), (ins i16mem:$src1, GR16:$src2),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000949 "bt{w}\t{$src2, $src1|$src1, $src2}",
Dan Gohmanf31408d2009-01-13 23:23:30 +0000950// [(X86bt (loadi16 addr:$src1), GR16:$src2),
Sean Callanan108934c2009-12-18 00:01:26 +0000951// (implicit EFLAGS)]
952 []
953 >, OpSize, TB, Requires<[FastBTMem]>;
954def BT32mr : I<0xA3, MRMDestMem, (outs), (ins i32mem:$src1, GR32:$src2),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000955 "bt{l}\t{$src2, $src1|$src1, $src2}",
Dan Gohmanf31408d2009-01-13 23:23:30 +0000956// [(X86bt (loadi32 addr:$src1), GR32:$src2),
Sean Callanan108934c2009-12-18 00:01:26 +0000957// (implicit EFLAGS)]
958 []
959 >, TB, Requires<[FastBTMem]>;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000960def BT64mr : RI<0xA3, MRMDestMem, (outs), (ins i64mem:$src1, GR64:$src2),
961 "bt{q}\t{$src2, $src1|$src1, $src2}",
962// [(X86bt (loadi64 addr:$src1), GR64:$src2),
963// (implicit EFLAGS)]
964 []
965 >, TB;
Dan Gohman4afe15b2009-01-13 20:33:23 +0000966
967def BT16ri8 : Ii8<0xBA, MRM4r, (outs), (ins GR16:$src1, i16i8imm:$src2),
968 "bt{w}\t{$src2, $src1|$src1, $src2}",
Chris Lattnere3486a42010-03-19 00:01:11 +0000969 [(set EFLAGS, (X86bt GR16:$src1, i16immSExt8:$src2))]>,
970 OpSize, TB;
Dan Gohman4afe15b2009-01-13 20:33:23 +0000971def BT32ri8 : Ii8<0xBA, MRM4r, (outs), (ins GR32:$src1, i32i8imm:$src2),
972 "bt{l}\t{$src2, $src1|$src1, $src2}",
Chris Lattnere3486a42010-03-19 00:01:11 +0000973 [(set EFLAGS, (X86bt GR32:$src1, i32immSExt8:$src2))]>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000974def BT64ri8 : RIi8<0xBA, MRM4r, (outs), (ins GR64:$src1, i64i8imm:$src2),
975 "bt{q}\t{$src2, $src1|$src1, $src2}",
976 [(set EFLAGS, (X86bt GR64:$src1, i64immSExt8:$src2))]>, TB;
977
Dan Gohman4afe15b2009-01-13 20:33:23 +0000978// Note that these instructions don't need FastBTMem because that
979// only applies when the other operand is in a register. When it's
980// an immediate, bt is still fast.
981def BT16mi8 : Ii8<0xBA, MRM4m, (outs), (ins i16mem:$src1, i16i8imm:$src2),
982 "bt{w}\t{$src2, $src1|$src1, $src2}",
Chris Lattnere3486a42010-03-19 00:01:11 +0000983 [(set EFLAGS, (X86bt (loadi16 addr:$src1), i16immSExt8:$src2))
984 ]>, OpSize, TB;
Dan Gohman4afe15b2009-01-13 20:33:23 +0000985def BT32mi8 : Ii8<0xBA, MRM4m, (outs), (ins i32mem:$src1, i32i8imm:$src2),
986 "bt{l}\t{$src2, $src1|$src1, $src2}",
Chris Lattnere3486a42010-03-19 00:01:11 +0000987 [(set EFLAGS, (X86bt (loadi32 addr:$src1), i32immSExt8:$src2))
988 ]>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000989def BT64mi8 : RIi8<0xBA, MRM4m, (outs), (ins i64mem:$src1, i64i8imm:$src2),
990 "bt{q}\t{$src2, $src1|$src1, $src2}",
991 [(set EFLAGS, (X86bt (loadi64 addr:$src1),
992 i64immSExt8:$src2))]>, TB;
993
Sean Callanan108934c2009-12-18 00:01:26 +0000994
995def BTC16rr : I<0xBB, MRMDestReg, (outs), (ins GR16:$src1, GR16:$src2),
996 "btc{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
997def BTC32rr : I<0xBB, MRMDestReg, (outs), (ins GR32:$src1, GR32:$src2),
998 "btc{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000999def BTC64rr : RI<0xBB, MRMDestReg, (outs), (ins GR64:$src1, GR64:$src2),
1000 "btc{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001001def BTC16mr : I<0xBB, MRMDestMem, (outs), (ins i16mem:$src1, GR16:$src2),
1002 "btc{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1003def BTC32mr : I<0xBB, MRMDestMem, (outs), (ins i32mem:$src1, GR32:$src2),
1004 "btc{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001005def BTC64mr : RI<0xBB, MRMDestMem, (outs), (ins i64mem:$src1, GR64:$src2),
1006 "btc{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001007def BTC16ri8 : Ii8<0xBA, MRM7r, (outs), (ins GR16:$src1, i16i8imm:$src2),
1008 "btc{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1009def BTC32ri8 : Ii8<0xBA, MRM7r, (outs), (ins GR32:$src1, i32i8imm:$src2),
1010 "btc{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001011def BTC64ri8 : RIi8<0xBA, MRM7r, (outs), (ins GR64:$src1, i64i8imm:$src2),
1012 "btc{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001013def BTC16mi8 : Ii8<0xBA, MRM7m, (outs), (ins i16mem:$src1, i16i8imm:$src2),
1014 "btc{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1015def BTC32mi8 : Ii8<0xBA, MRM7m, (outs), (ins i32mem:$src1, i32i8imm:$src2),
1016 "btc{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001017def BTC64mi8 : RIi8<0xBA, MRM7m, (outs), (ins i64mem:$src1, i64i8imm:$src2),
1018 "btc{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001019
1020def BTR16rr : I<0xB3, MRMDestReg, (outs), (ins GR16:$src1, GR16:$src2),
1021 "btr{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1022def BTR32rr : I<0xB3, MRMDestReg, (outs), (ins GR32:$src1, GR32:$src2),
1023 "btr{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001024def BTR64rr : RI<0xB3, MRMDestReg, (outs), (ins GR64:$src1, GR64:$src2),
1025 "btr{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001026def BTR16mr : I<0xB3, MRMDestMem, (outs), (ins i16mem:$src1, GR16:$src2),
1027 "btr{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1028def BTR32mr : I<0xB3, MRMDestMem, (outs), (ins i32mem:$src1, GR32:$src2),
1029 "btr{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001030def BTR64mr : RI<0xB3, MRMDestMem, (outs), (ins i64mem:$src1, GR64:$src2),
1031 "btr{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001032def BTR16ri8 : Ii8<0xBA, MRM6r, (outs), (ins GR16:$src1, i16i8imm:$src2),
1033 "btr{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1034def BTR32ri8 : Ii8<0xBA, MRM6r, (outs), (ins GR32:$src1, i32i8imm:$src2),
1035 "btr{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001036def BTR64ri8 : RIi8<0xBA, MRM6r, (outs), (ins GR64:$src1, i64i8imm:$src2),
1037 "btr{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001038def BTR16mi8 : Ii8<0xBA, MRM6m, (outs), (ins i16mem:$src1, i16i8imm:$src2),
1039 "btr{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1040def BTR32mi8 : Ii8<0xBA, MRM6m, (outs), (ins i32mem:$src1, i32i8imm:$src2),
1041 "btr{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001042def BTR64mi8 : RIi8<0xBA, MRM6m, (outs), (ins i64mem:$src1, i64i8imm:$src2),
1043 "btr{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001044
1045def BTS16rr : I<0xAB, MRMDestReg, (outs), (ins GR16:$src1, GR16:$src2),
1046 "bts{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1047def BTS32rr : I<0xAB, MRMDestReg, (outs), (ins GR32:$src1, GR32:$src2),
1048 "bts{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001049def BTS64rr : RI<0xAB, MRMDestReg, (outs), (ins GR64:$src1, GR64:$src2),
1050 "bts{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001051def BTS16mr : I<0xAB, MRMDestMem, (outs), (ins i16mem:$src1, GR16:$src2),
1052 "bts{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1053def BTS32mr : I<0xAB, MRMDestMem, (outs), (ins i32mem:$src1, GR32:$src2),
1054 "bts{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001055def BTS64mr : RI<0xAB, MRMDestMem, (outs), (ins i64mem:$src1, GR64:$src2),
1056 "bts{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001057def BTS16ri8 : Ii8<0xBA, MRM5r, (outs), (ins GR16:$src1, i16i8imm:$src2),
1058 "bts{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1059def BTS32ri8 : Ii8<0xBA, MRM5r, (outs), (ins GR32:$src1, i32i8imm:$src2),
1060 "bts{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001061def BTS64ri8 : RIi8<0xBA, MRM5r, (outs), (ins GR64:$src1, i64i8imm:$src2),
1062 "bts{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001063def BTS16mi8 : Ii8<0xBA, MRM5m, (outs), (ins i16mem:$src1, i16i8imm:$src2),
1064 "bts{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1065def BTS32mi8 : Ii8<0xBA, MRM5m, (outs), (ins i32mem:$src1, i32i8imm:$src2),
1066 "bts{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001067def BTS64mi8 : RIi8<0xBA, MRM5m, (outs), (ins i64mem:$src1, i64i8imm:$src2),
1068 "bts{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Dan Gohmanc7a37d42008-12-23 22:45:23 +00001069} // Defs = [EFLAGS]
1070
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001071
1072//===----------------------------------------------------------------------===//
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001073// Atomic support
1074//
Andrew Lenharthea7da502008-03-01 13:37:02 +00001075
Eric Christopher9a9d2752010-07-22 02:48:34 +00001076
Evan Chengbb6939d2008-04-19 01:20:30 +00001077// Atomic swap. These are just normal xchg instructions. But since a memory
1078// operand is referenced, the atomicity is ensured.
Dan Gohman165660e2008-08-06 15:52:50 +00001079let Constraints = "$val = $dst" in {
Chris Lattner010496c2010-10-05 06:22:35 +00001080def XCHG8rm : I<0x86, MRMSrcMem, (outs GR8:$dst), (ins GR8:$val, i8mem:$ptr),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001081 "xchg{b}\t{$val, $ptr|$ptr, $val}",
Chris Lattner010496c2010-10-05 06:22:35 +00001082 [(set GR8:$dst, (atomic_swap_8 addr:$ptr, GR8:$val))]>;
Chris Lattner5bde7342010-11-06 08:20:59 +00001083def XCHG16rm : I<0x87, MRMSrcMem, (outs GR16:$dst),(ins GR16:$val, i16mem:$ptr),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001084 "xchg{w}\t{$val, $ptr|$ptr, $val}",
1085 [(set GR16:$dst, (atomic_swap_16 addr:$ptr, GR16:$val))]>,
Evan Chengbb6939d2008-04-19 01:20:30 +00001086 OpSize;
Chris Lattner5bde7342010-11-06 08:20:59 +00001087def XCHG32rm : I<0x87, MRMSrcMem, (outs GR32:$dst),(ins GR32:$val, i32mem:$ptr),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001088 "xchg{l}\t{$val, $ptr|$ptr, $val}",
Chris Lattner010496c2010-10-05 06:22:35 +00001089 [(set GR32:$dst, (atomic_swap_32 addr:$ptr, GR32:$val))]>;
Chris Lattner5bde7342010-11-06 08:20:59 +00001090def XCHG64rm : RI<0x87, MRMSrcMem, (outs GR64:$dst),(ins GR64:$val,i64mem:$ptr),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001091 "xchg{q}\t{$val, $ptr|$ptr, $val}",
Chris Lattner010496c2010-10-05 06:22:35 +00001092 [(set GR64:$dst, (atomic_swap_64 addr:$ptr, GR64:$val))]>;
Sean Callanan108934c2009-12-18 00:01:26 +00001093
Sean Callanan108934c2009-12-18 00:01:26 +00001094def XCHG8rr : I<0x86, MRMSrcReg, (outs GR8:$dst), (ins GR8:$val, GR8:$src),
1095 "xchg{b}\t{$val, $src|$src, $val}", []>;
Chris Lattner010496c2010-10-05 06:22:35 +00001096def XCHG16rr : I<0x87, MRMSrcReg, (outs GR16:$dst), (ins GR16:$val, GR16:$src),
1097 "xchg{w}\t{$val, $src|$src, $val}", []>, OpSize;
1098def XCHG32rr : I<0x87, MRMSrcReg, (outs GR32:$dst), (ins GR32:$val, GR32:$src),
1099 "xchg{l}\t{$val, $src|$src, $val}", []>;
1100def XCHG64rr : RI<0x87, MRMSrcReg, (outs GR64:$dst), (ins GR64:$val,GR64:$src),
1101 "xchg{q}\t{$val, $src|$src, $val}", []>;
Evan Chengbb6939d2008-04-19 01:20:30 +00001102}
1103
Sean Callanan108934c2009-12-18 00:01:26 +00001104def XCHG16ar : I<0x90, AddRegFrm, (outs), (ins GR16:$src),
1105 "xchg{w}\t{$src, %ax|%ax, $src}", []>, OpSize;
1106def XCHG32ar : I<0x90, AddRegFrm, (outs), (ins GR32:$src),
1107 "xchg{l}\t{$src, %eax|%eax, $src}", []>;
Chris Lattner010496c2010-10-05 06:22:35 +00001108def XCHG64ar : RI<0x90, AddRegFrm, (outs), (ins GR64:$src),
1109 "xchg{q}\t{$src, %rax|%rax, $src}", []>;
Sean Callanan108934c2009-12-18 00:01:26 +00001110
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001111
Andrew Lenharthea7da502008-03-01 13:37:02 +00001112
Sean Callanan108934c2009-12-18 00:01:26 +00001113def XADD8rr : I<0xC0, MRMDestReg, (outs GR8:$dst), (ins GR8:$src),
1114 "xadd{b}\t{$src, $dst|$dst, $src}", []>, TB;
1115def XADD16rr : I<0xC1, MRMDestReg, (outs GR16:$dst), (ins GR16:$src),
1116 "xadd{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
1117def XADD32rr : I<0xC1, MRMDestReg, (outs GR32:$dst), (ins GR32:$src),
1118 "xadd{l}\t{$src, $dst|$dst, $src}", []>, TB;
Chris Lattner010496c2010-10-05 06:22:35 +00001119def XADD64rr : RI<0xC1, MRMDestReg, (outs GR64:$dst), (ins GR64:$src),
1120 "xadd{q}\t{$src, $dst|$dst, $src}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001121
Dan Gohman7f357ec2010-05-14 16:34:55 +00001122let mayLoad = 1, mayStore = 1 in {
Sean Callanan108934c2009-12-18 00:01:26 +00001123def XADD8rm : I<0xC0, MRMDestMem, (outs), (ins i8mem:$dst, GR8:$src),
1124 "xadd{b}\t{$src, $dst|$dst, $src}", []>, TB;
1125def XADD16rm : I<0xC1, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src),
1126 "xadd{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
1127def XADD32rm : I<0xC1, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
1128 "xadd{l}\t{$src, $dst|$dst, $src}", []>, TB;
Chris Lattner010496c2010-10-05 06:22:35 +00001129def XADD64rm : RI<0xC1, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src),
1130 "xadd{q}\t{$src, $dst|$dst, $src}", []>, TB;
1131
Dan Gohman7f357ec2010-05-14 16:34:55 +00001132}
Sean Callanan108934c2009-12-18 00:01:26 +00001133
1134def CMPXCHG8rr : I<0xB0, MRMDestReg, (outs GR8:$dst), (ins GR8:$src),
1135 "cmpxchg{b}\t{$src, $dst|$dst, $src}", []>, TB;
1136def CMPXCHG16rr : I<0xB1, MRMDestReg, (outs GR16:$dst), (ins GR16:$src),
1137 "cmpxchg{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
1138def CMPXCHG32rr : I<0xB1, MRMDestReg, (outs GR32:$dst), (ins GR32:$src),
1139 "cmpxchg{l}\t{$src, $dst|$dst, $src}", []>, TB;
Chris Lattner010496c2010-10-05 06:22:35 +00001140def CMPXCHG64rr : RI<0xB1, MRMDestReg, (outs GR64:$dst), (ins GR64:$src),
1141 "cmpxchg{q}\t{$src, $dst|$dst, $src}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001142
Dan Gohman7f357ec2010-05-14 16:34:55 +00001143let mayLoad = 1, mayStore = 1 in {
Sean Callanan108934c2009-12-18 00:01:26 +00001144def CMPXCHG8rm : I<0xB0, MRMDestMem, (outs), (ins i8mem:$dst, GR8:$src),
1145 "cmpxchg{b}\t{$src, $dst|$dst, $src}", []>, TB;
1146def CMPXCHG16rm : I<0xB1, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src),
1147 "cmpxchg{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
1148def CMPXCHG32rm : I<0xB1, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
1149 "cmpxchg{l}\t{$src, $dst|$dst, $src}", []>, TB;
Chris Lattner010496c2010-10-05 06:22:35 +00001150def CMPXCHG64rm : RI<0xB1, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src),
1151 "cmpxchg{q}\t{$src, $dst|$dst, $src}", []>, TB;
Dan Gohman7f357ec2010-05-14 16:34:55 +00001152}
Sean Callanan108934c2009-12-18 00:01:26 +00001153
Evan Chengb093bd02010-01-08 01:29:19 +00001154let Defs = [EAX, EDX, EFLAGS], Uses = [EAX, EBX, ECX, EDX] in
Sean Callanan108934c2009-12-18 00:01:26 +00001155def CMPXCHG8B : I<0xC7, MRM1m, (outs), (ins i64mem:$dst),
1156 "cmpxchg8b\t$dst", []>, TB;
1157
Chris Lattner010496c2010-10-05 06:22:35 +00001158let Defs = [RAX, RDX, EFLAGS], Uses = [RAX, RBX, RCX, RDX] in
1159def CMPXCHG16B : RI<0xC7, MRM1m, (outs), (ins i128mem:$dst),
1160 "cmpxchg16b\t$dst", []>, TB;
Evan Cheng37b73872009-07-30 08:33:02 +00001161
Evan Cheng37b73872009-07-30 08:33:02 +00001162
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001163
Kevin Enderby12ce0de2010-02-03 21:04:42 +00001164// Lock instruction prefix
1165def LOCK_PREFIX : I<0xF0, RawFrm, (outs), (ins), "lock", []>;
1166
Rafael Espindolabeb68982010-11-23 11:23:24 +00001167// Rex64 instruction prefix
1168def REX64_PREFIX : I<0x48, RawFrm, (outs), (ins), "rex64", []>;
1169
Rafael Espindolabfd2d262010-11-27 20:29:45 +00001170// Data16 instruction prefix
1171def DATA16_PREFIX : I<0x66, RawFrm, (outs), (ins), "data16", []>;
1172
Kevin Enderby12ce0de2010-02-03 21:04:42 +00001173// Repeat string operation instruction prefixes
1174// These uses the DF flag in the EFLAGS register to inc or dec ECX
1175let Defs = [ECX], Uses = [ECX,EFLAGS] in {
1176// Repeat (used with INS, OUTS, MOVS, LODS and STOS)
1177def REP_PREFIX : I<0xF3, RawFrm, (outs), (ins), "rep", []>;
1178// Repeat while not equal (used with CMPS and SCAS)
1179def REPNE_PREFIX : I<0xF2, RawFrm, (outs), (ins), "repne", []>;
1180}
1181
Kevin Enderby12ce0de2010-02-03 21:04:42 +00001182
Sean Callanan9a86f102009-09-16 22:59:28 +00001183// String manipulation instructions
Sean Callanan9a86f102009-09-16 22:59:28 +00001184def LODSB : I<0xAC, RawFrm, (outs), (ins), "lodsb", []>;
1185def LODSW : I<0xAD, RawFrm, (outs), (ins), "lodsw", []>, OpSize;
Sean Callanan108934c2009-12-18 00:01:26 +00001186def LODSD : I<0xAD, RawFrm, (outs), (ins), "lods{l|d}", []>;
Chris Lattner010496c2010-10-05 06:22:35 +00001187def LODSQ : RI<0xAD, RawFrm, (outs), (ins), "lodsq", []>;
Sean Callanan108934c2009-12-18 00:01:26 +00001188
1189def OUTSB : I<0x6E, RawFrm, (outs), (ins), "outsb", []>;
1190def OUTSW : I<0x6F, RawFrm, (outs), (ins), "outsw", []>, OpSize;
1191def OUTSD : I<0x6F, RawFrm, (outs), (ins), "outs{l|d}", []>;
1192
Sean Callanan108934c2009-12-18 00:01:26 +00001193
1194// Flag instructions
Sean Callanan108934c2009-12-18 00:01:26 +00001195def CLC : I<0xF8, RawFrm, (outs), (ins), "clc", []>;
1196def STC : I<0xF9, RawFrm, (outs), (ins), "stc", []>;
1197def CLI : I<0xFA, RawFrm, (outs), (ins), "cli", []>;
1198def STI : I<0xFB, RawFrm, (outs), (ins), "sti", []>;
1199def CLD : I<0xFC, RawFrm, (outs), (ins), "cld", []>;
1200def STD : I<0xFD, RawFrm, (outs), (ins), "std", []>;
1201def CMC : I<0xF5, RawFrm, (outs), (ins), "cmc", []>;
1202
1203def CLTS : I<0x06, RawFrm, (outs), (ins), "clts", []>, TB;
1204
1205// Table lookup instructions
Sean Callanan108934c2009-12-18 00:01:26 +00001206def XLAT : I<0xD7, RawFrm, (outs), (ins), "xlatb", []>;
1207
Kevin Enderby7aef62f2010-10-18 17:04:36 +00001208// ASCII Adjust After Addition
1209// sets AL, AH and CF and AF of EFLAGS and uses AL and AF of EFLAGS
1210def AAA : I<0x37, RawFrm, (outs), (ins), "aaa", []>, Requires<[In32BitMode]>;
Evan Cheng510e4782006-01-09 23:10:28 +00001211
Kevin Enderby7aef62f2010-10-18 17:04:36 +00001212// ASCII Adjust AX Before Division
1213// sets AL, AH and EFLAGS and uses AL and AH
1214def AAD8i8 : Ii8<0xD5, RawFrm, (outs), (ins i8imm:$src),
1215 "aad\t$src", []>, Requires<[In32BitMode]>;
1216
1217// ASCII Adjust AX After Multiply
1218// sets AL, AH and EFLAGS and uses AL
1219def AAM8i8 : Ii8<0xD4, RawFrm, (outs), (ins i8imm:$src),
1220 "aam\t$src", []>, Requires<[In32BitMode]>;
1221
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001222// ASCII Adjust AL After Subtraction - sets
Kevin Enderby7aef62f2010-10-18 17:04:36 +00001223// sets AL, AH and CF and AF of EFLAGS and uses AL and AF of EFLAGS
1224def AAS : I<0x3F, RawFrm, (outs), (ins), "aas", []>, Requires<[In32BitMode]>;
1225
1226// Decimal Adjust AL after Addition
1227// sets AL, CF and AF of EFLAGS and uses AL, CF and AF of EFLAGS
1228def DAA : I<0x27, RawFrm, (outs), (ins), "daa", []>, Requires<[In32BitMode]>;
1229
1230// Decimal Adjust AL after Subtraction
1231// sets AL, CF and AF of EFLAGS and uses AL, CF and AF of EFLAGS
1232def DAS : I<0x2F, RawFrm, (outs), (ins), "das", []>, Requires<[In32BitMode]>;
1233
1234// Check Array Index Against Bounds
1235def BOUNDS16rm : I<0x62, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
1236 "bound\t{$src, $dst|$dst, $src}", []>, OpSize,
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001237 Requires<[In32BitMode]>;
Kevin Enderby7aef62f2010-10-18 17:04:36 +00001238def BOUNDS32rm : I<0x62, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
1239 "bound\t{$src, $dst|$dst, $src}", []>,
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001240 Requires<[In32BitMode]>;
Kevin Enderby7aef62f2010-10-18 17:04:36 +00001241
1242// Adjust RPL Field of Segment Selector
1243def ARPL16rr : I<0x63, MRMDestReg, (outs GR16:$src), (ins GR16:$dst),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001244 "arpl\t{$src, $dst|$dst, $src}", []>, Requires<[In32BitMode]>;
Kevin Enderby7aef62f2010-10-18 17:04:36 +00001245def ARPL16mr : I<0x63, MRMSrcMem, (outs GR16:$src), (ins i16mem:$dst),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001246 "arpl\t{$src, $dst|$dst, $src}", []>, Requires<[In32BitMode]>;
Dan Gohmane220c4b2009-09-18 19:59:53 +00001247
Bill Wendlingd350e022008-12-12 21:15:41 +00001248//===----------------------------------------------------------------------===//
Chris Lattner434c7cb2010-10-05 05:32:15 +00001249// Subsystems.
Evan Cheng4e4c71e2006-02-21 20:00:20 +00001250//===----------------------------------------------------------------------===//
1251
Chris Lattner6367cfc2010-10-05 16:39:12 +00001252include "X86InstrArithmetic.td"
Chris Lattner35649fc2010-10-05 06:33:16 +00001253include "X86InstrCMovSetCC.td"
Chris Lattner8917cd32010-10-05 06:52:26 +00001254include "X86InstrExtension.td"
Chris Lattner87be16a2010-10-05 06:04:14 +00001255include "X86InstrControl.td"
Chris Lattner5f58e842010-10-05 07:00:12 +00001256include "X86InstrShiftRotate.td"
Chris Lattner87be16a2010-10-05 06:04:14 +00001257
Chris Lattner6367cfc2010-10-05 16:39:12 +00001258// X87 Floating Point Stack.
1259include "X86InstrFPStack.td"
1260
David Greene51898d72010-02-09 23:52:19 +00001261// SIMD support (SSE, MMX and AVX)
David Greene51898d72010-02-09 23:52:19 +00001262include "X86InstrFragmentsSIMD.td"
1263
Bruno Cardoso Lopes6b7e9162010-07-23 00:54:35 +00001264// FMA - Fused Multiply-Add support (requires FMA)
Bruno Cardoso Lopes6b7e9162010-07-23 00:54:35 +00001265include "X86InstrFMA.td"
1266
Chris Lattner434c7cb2010-10-05 05:32:15 +00001267// SSE, MMX and 3DNow! vector support.
Evan Cheng4e4c71e2006-02-21 20:00:20 +00001268include "X86InstrSSE.td"
Evan Cheng80f54042008-04-25 18:19:54 +00001269include "X86InstrMMX.td"
Chris Lattner7330d972010-10-02 23:06:23 +00001270include "X86Instr3DNow.td"
1271
Chris Lattnerd071b832010-10-05 06:06:53 +00001272include "X86InstrVMX.td"
1273
Chris Lattner434c7cb2010-10-05 05:32:15 +00001274// System instructions.
1275include "X86InstrSystem.td"
Chris Lattner87be16a2010-10-05 06:04:14 +00001276
1277// Compiler Pseudo Instructions and Pat Patterns
1278include "X86InstrCompiler.td"
1279
Chris Lattner674c1dc2010-10-30 17:36:36 +00001280//===----------------------------------------------------------------------===//
Chris Lattnerefd8dad2010-11-01 23:07:52 +00001281// Assembler Mnemonic Aliases
Chris Lattner674c1dc2010-10-30 17:36:36 +00001282//===----------------------------------------------------------------------===//
1283
Chris Lattner99f53522010-11-01 21:06:34 +00001284def : MnemonicAlias<"call", "calll">, Requires<[In32BitMode]>;
1285def : MnemonicAlias<"call", "callq">, Requires<[In64BitMode]>;
1286
Chris Lattner674c1dc2010-10-30 17:36:36 +00001287def : MnemonicAlias<"cbw", "cbtw">;
1288def : MnemonicAlias<"cwd", "cwtd">;
1289def : MnemonicAlias<"cdq", "cltd">;
1290def : MnemonicAlias<"cwde", "cwtl">;
1291def : MnemonicAlias<"cdqe", "cltq">;
Chris Lattner8b260a72010-10-30 18:07:17 +00001292
Chris Lattner269f10b2010-11-12 18:54:56 +00001293// lret maps to lretl, it is not ambiguous with lretq.
1294def : MnemonicAlias<"lret", "lretl">;
1295
Joerg Sonnenberger97755a02011-02-17 23:36:39 +00001296def : MnemonicAlias<"leavel", "leave">, Requires<[In32BitMode]>;
1297def : MnemonicAlias<"leaveq", "leave">, Requires<[In64BitMode]>;
1298
Joerg Sonnenbergerd86f4822011-02-22 00:43:07 +00001299def : MnemonicAlias<"loopz", "loope">;
1300def : MnemonicAlias<"loopnz", "loopne">;
1301
Chris Lattner693173f2010-10-30 19:23:13 +00001302def : MnemonicAlias<"pop", "popl">, Requires<[In32BitMode]>;
1303def : MnemonicAlias<"pop", "popq">, Requires<[In64BitMode]>;
1304def : MnemonicAlias<"popf", "popfl">, Requires<[In32BitMode]>;
1305def : MnemonicAlias<"popf", "popfq">, Requires<[In64BitMode]>;
Chris Lattner8b260a72010-10-30 18:07:17 +00001306def : MnemonicAlias<"popfd", "popfl">;
1307
Chris Lattnera33b93f2010-10-31 18:43:46 +00001308// FIXME: This is wrong for "push reg". "push %bx" should turn into pushw in
1309// all modes. However: "push (addr)" and "push $42" should default to
1310// pushl/pushq depending on the current mode. Similar for "pop %bx"
Chris Lattner693173f2010-10-30 19:23:13 +00001311def : MnemonicAlias<"push", "pushl">, Requires<[In32BitMode]>;
1312def : MnemonicAlias<"push", "pushq">, Requires<[In64BitMode]>;
1313def : MnemonicAlias<"pushf", "pushfl">, Requires<[In32BitMode]>;
1314def : MnemonicAlias<"pushf", "pushfq">, Requires<[In64BitMode]>;
1315def : MnemonicAlias<"pushfd", "pushfl">;
1316
Chris Lattner6f96b082010-10-30 18:17:33 +00001317def : MnemonicAlias<"repe", "rep">;
1318def : MnemonicAlias<"repz", "rep">;
1319def : MnemonicAlias<"repnz", "repne">;
1320
Chris Lattner693173f2010-10-30 19:23:13 +00001321def : MnemonicAlias<"retl", "ret">, Requires<[In32BitMode]>;
1322def : MnemonicAlias<"retq", "ret">, Requires<[In64BitMode]>;
1323
Chris Lattnera17a9a02010-10-30 18:14:54 +00001324def : MnemonicAlias<"salb", "shlb">;
1325def : MnemonicAlias<"salw", "shlw">;
1326def : MnemonicAlias<"sall", "shll">;
1327def : MnemonicAlias<"salq", "shlq">;
1328
Chris Lattner674c1dc2010-10-30 17:36:36 +00001329def : MnemonicAlias<"smovb", "movsb">;
1330def : MnemonicAlias<"smovw", "movsw">;
1331def : MnemonicAlias<"smovl", "movsl">;
1332def : MnemonicAlias<"smovq", "movsq">;
1333
Chris Lattner674c1dc2010-10-30 17:36:36 +00001334def : MnemonicAlias<"ud2a", "ud2">;
1335def : MnemonicAlias<"verrw", "verr">;
1336
Chris Lattner99f53522010-11-01 21:06:34 +00001337// System instruction aliases.
1338def : MnemonicAlias<"iret", "iretl">;
1339def : MnemonicAlias<"sysret", "sysretl">;
1340
1341def : MnemonicAlias<"lgdtl", "lgdt">, Requires<[In32BitMode]>;
1342def : MnemonicAlias<"lgdtq", "lgdt">, Requires<[In64BitMode]>;
1343def : MnemonicAlias<"lidtl", "lidt">, Requires<[In32BitMode]>;
1344def : MnemonicAlias<"lidtq", "lidt">, Requires<[In64BitMode]>;
1345def : MnemonicAlias<"sgdtl", "sgdt">, Requires<[In32BitMode]>;
1346def : MnemonicAlias<"sgdtq", "sgdt">, Requires<[In64BitMode]>;
1347def : MnemonicAlias<"sidtl", "sidt">, Requires<[In32BitMode]>;
1348def : MnemonicAlias<"sidtq", "sidt">, Requires<[In64BitMode]>;
1349
Chris Lattner674c1dc2010-10-30 17:36:36 +00001350
Chris Lattner8b260a72010-10-30 18:07:17 +00001351// Floating point stack aliases.
1352def : MnemonicAlias<"fcmovz", "fcmove">;
1353def : MnemonicAlias<"fcmova", "fcmovnbe">;
1354def : MnemonicAlias<"fcmovnae", "fcmovb">;
1355def : MnemonicAlias<"fcmovna", "fcmovbe">;
1356def : MnemonicAlias<"fcmovae", "fcmovnb">;
Chris Lattnerdb287882010-11-06 21:37:06 +00001357def : MnemonicAlias<"fcomip", "fcompi">;
Chris Lattner8b260a72010-10-30 18:07:17 +00001358def : MnemonicAlias<"fildq", "fildll">;
1359def : MnemonicAlias<"fldcww", "fldcw">;
1360def : MnemonicAlias<"fnstcww", "fnstcw">;
1361def : MnemonicAlias<"fnstsww", "fnstsw">;
Chris Lattnerdb287882010-11-06 21:37:06 +00001362def : MnemonicAlias<"fucomip", "fucompi">;
Chris Lattner8b260a72010-10-30 18:07:17 +00001363def : MnemonicAlias<"fwait", "wait">;
1364
1365
Chris Lattner8cb441c2010-10-30 17:56:50 +00001366class CondCodeAlias<string Prefix,string Suffix, string OldCond, string NewCond>
1367 : MnemonicAlias<!strconcat(Prefix, OldCond, Suffix),
1368 !strconcat(Prefix, NewCond, Suffix)>;
Chris Lattnerb69fc282010-10-30 17:51:45 +00001369
1370/// IntegerCondCodeMnemonicAlias - This multiclass defines a bunch of
1371/// MnemonicAlias's that canonicalize the condition code in a mnemonic, for
1372/// example "setz" -> "sete".
Chris Lattner8cb441c2010-10-30 17:56:50 +00001373multiclass IntegerCondCodeMnemonicAlias<string Prefix, string Suffix> {
1374 def C : CondCodeAlias<Prefix, Suffix, "c", "b">; // setc -> setb
1375 def Z : CondCodeAlias<Prefix, Suffix, "z" , "e">; // setz -> sete
1376 def NA : CondCodeAlias<Prefix, Suffix, "na", "be">; // setna -> setbe
1377 def NB : CondCodeAlias<Prefix, Suffix, "nb", "ae">; // setnb -> setae
1378 def NC : CondCodeAlias<Prefix, Suffix, "nc", "ae">; // setnc -> setae
1379 def NG : CondCodeAlias<Prefix, Suffix, "ng", "le">; // setng -> setle
1380 def NL : CondCodeAlias<Prefix, Suffix, "nl", "ge">; // setnl -> setge
1381 def NZ : CondCodeAlias<Prefix, Suffix, "nz", "ne">; // setnz -> setne
1382 def PE : CondCodeAlias<Prefix, Suffix, "pe", "p">; // setpe -> setp
1383 def PO : CondCodeAlias<Prefix, Suffix, "po", "np">; // setpo -> setnp
Chris Lattnerb69fc282010-10-30 17:51:45 +00001384
Chris Lattner8cb441c2010-10-30 17:56:50 +00001385 def NAE : CondCodeAlias<Prefix, Suffix, "nae", "b">; // setnae -> setb
1386 def NBE : CondCodeAlias<Prefix, Suffix, "nbe", "a">; // setnbe -> seta
1387 def NGE : CondCodeAlias<Prefix, Suffix, "nge", "l">; // setnge -> setl
1388 def NLE : CondCodeAlias<Prefix, Suffix, "nle", "g">; // setnle -> setg
Chris Lattnerb69fc282010-10-30 17:51:45 +00001389}
1390
1391// Aliases for set<CC>
Chris Lattner8cb441c2010-10-30 17:56:50 +00001392defm : IntegerCondCodeMnemonicAlias<"set", "">;
Chris Lattnerb69fc282010-10-30 17:51:45 +00001393// Aliases for j<CC>
Chris Lattner8cb441c2010-10-30 17:56:50 +00001394defm : IntegerCondCodeMnemonicAlias<"j", "">;
1395// Aliases for cmov<CC>{w,l,q}
1396defm : IntegerCondCodeMnemonicAlias<"cmov", "w">;
1397defm : IntegerCondCodeMnemonicAlias<"cmov", "l">;
1398defm : IntegerCondCodeMnemonicAlias<"cmov", "q">;
Chris Lattner674c1dc2010-10-30 17:36:36 +00001399
Chris Lattnerefd8dad2010-11-01 23:07:52 +00001400
1401//===----------------------------------------------------------------------===//
1402// Assembler Instruction Aliases
1403//===----------------------------------------------------------------------===//
1404
Chris Lattner98c870f2010-11-06 19:25:43 +00001405// aad/aam default to base 10 if no operand is specified.
1406def : InstAlias<"aad", (AAD8i8 10)>;
1407def : InstAlias<"aam", (AAM8i8 10)>;
1408
Chris Lattner824a9072011-02-19 21:06:36 +00001409// Disambiguate the mem/imm form of bt-without-a-suffix as btl.
1410def : InstAlias<"bt $imm, $mem", (BT32mi8 i32mem:$mem, i32i8imm:$imm)>;
1411
Chris Lattner41409852010-11-06 07:31:43 +00001412// clr aliases.
1413def : InstAlias<"clrb $reg", (XOR8rr GR8 :$reg, GR8 :$reg)>;
1414def : InstAlias<"clrw $reg", (XOR16rr GR16:$reg, GR16:$reg)>;
1415def : InstAlias<"clrl $reg", (XOR32rr GR32:$reg, GR32:$reg)>;
1416def : InstAlias<"clrq $reg", (XOR64rr GR64:$reg, GR64:$reg)>;
1417
Chris Lattner689cf3c2010-11-06 22:41:18 +00001418// div and idiv aliases for explicit A register.
1419def : InstAlias<"divb $src, %al", (DIV8r GR8 :$src)>;
1420def : InstAlias<"divw $src, %ax", (DIV16r GR16:$src)>;
1421def : InstAlias<"divl $src, %eax", (DIV32r GR32:$src)>;
1422def : InstAlias<"divq $src, %rax", (DIV64r GR64:$src)>;
1423def : InstAlias<"divb $src, %al", (DIV8m i8mem :$src)>;
1424def : InstAlias<"divw $src, %ax", (DIV16m i16mem:$src)>;
1425def : InstAlias<"divl $src, %eax", (DIV32m i32mem:$src)>;
1426def : InstAlias<"divq $src, %rax", (DIV64m i64mem:$src)>;
1427def : InstAlias<"idivb $src, %al", (IDIV8r GR8 :$src)>;
1428def : InstAlias<"idivw $src, %ax", (IDIV16r GR16:$src)>;
1429def : InstAlias<"idivl $src, %eax", (IDIV32r GR32:$src)>;
1430def : InstAlias<"idivq $src, %rax", (IDIV64r GR64:$src)>;
1431def : InstAlias<"idivb $src, %al", (IDIV8m i8mem :$src)>;
1432def : InstAlias<"idivw $src, %ax", (IDIV16m i16mem:$src)>;
1433def : InstAlias<"idivl $src, %eax", (IDIV32m i32mem:$src)>;
1434def : InstAlias<"idivq $src, %rax", (IDIV64m i64mem:$src)>;
1435
1436
1437
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001438// Various unary fpstack operations default to operating on on ST1.
1439// For example, "fxch" -> "fxch %st(1)"
Bill Wendlingc6df9882011-04-14 01:11:51 +00001440def : InstAlias<"faddp", (ADD_FPrST0 ST1), 0>;
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001441def : InstAlias<"fsubp", (SUBR_FPrST0 ST1)>;
1442def : InstAlias<"fsubrp", (SUB_FPrST0 ST1)>;
1443def : InstAlias<"fmulp", (MUL_FPrST0 ST1)>;
1444def : InstAlias<"fdivp", (DIVR_FPrST0 ST1)>;
1445def : InstAlias<"fdivrp", (DIV_FPrST0 ST1)>;
1446def : InstAlias<"fxch", (XCH_F ST1)>;
1447def : InstAlias<"fcomi", (COM_FIr ST1)>;
Chris Lattnerdb287882010-11-06 21:37:06 +00001448def : InstAlias<"fcompi", (COM_FIPr ST1)>;
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001449def : InstAlias<"fucom", (UCOM_Fr ST1)>;
1450def : InstAlias<"fucomp", (UCOM_FPr ST1)>;
1451def : InstAlias<"fucomi", (UCOM_FIr ST1)>;
Chris Lattnerdb287882010-11-06 21:37:06 +00001452def : InstAlias<"fucompi", (UCOM_FIPr ST1)>;
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001453
1454// Handle fmul/fadd/fsub/fdiv instructions with explicitly written st(0) op.
1455// For example, "fadd %st(4), %st(0)" -> "fadd %st(4)". We also disambiguate
1456// instructions like "fadd %st(0), %st(0)" as "fadd %st(0)" for consistency with
1457// gas.
Bill Wendlingc6df9882011-04-14 01:11:51 +00001458multiclass FpUnaryAlias<string Mnemonic, Instruction Inst, bit EmitAlias = 1> {
1459 def : InstAlias<!strconcat(Mnemonic, " $op, %st(0)"),
1460 (Inst RST:$op), EmitAlias>;
1461 def : InstAlias<!strconcat(Mnemonic, " %st(0), %st(0)"),
1462 (Inst ST0), EmitAlias>;
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001463}
1464
1465defm : FpUnaryAlias<"fadd", ADD_FST0r>;
Bill Wendlingc6df9882011-04-14 01:11:51 +00001466defm : FpUnaryAlias<"faddp", ADD_FPrST0, 0>;
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001467defm : FpUnaryAlias<"fsub", SUB_FST0r>;
1468defm : FpUnaryAlias<"fsubp", SUBR_FPrST0>;
1469defm : FpUnaryAlias<"fsubr", SUBR_FST0r>;
1470defm : FpUnaryAlias<"fsubrp", SUB_FPrST0>;
1471defm : FpUnaryAlias<"fmul", MUL_FST0r>;
1472defm : FpUnaryAlias<"fmulp", MUL_FPrST0>;
1473defm : FpUnaryAlias<"fdiv", DIV_FST0r>;
1474defm : FpUnaryAlias<"fdivp", DIVR_FPrST0>;
1475defm : FpUnaryAlias<"fdivr", DIVR_FST0r>;
1476defm : FpUnaryAlias<"fdivrp", DIV_FPrST0>;
Bill Wendlingc6df9882011-04-14 01:11:51 +00001477defm : FpUnaryAlias<"fcomi", COM_FIr, 0>;
1478defm : FpUnaryAlias<"fucomi", UCOM_FIr, 0>;
Chris Lattnerdb287882010-11-06 21:37:06 +00001479defm : FpUnaryAlias<"fcompi", COM_FIPr>;
1480defm : FpUnaryAlias<"fucompi", UCOM_FIPr>;
Chris Lattner235705b2010-11-06 20:55:09 +00001481
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001482
1483// Handle "f{mulp,addp} st(0), $op" the same as "f{mulp,addp} $op", since they
Nick Lewyckyc00210c2010-12-30 22:10:49 +00001484// commute. We also allow fdiv[r]p/fsubrp even though they don't commute,
1485// solely because gas supports it.
Bill Wendlingc6df9882011-04-14 01:11:51 +00001486def : InstAlias<"faddp %st(0), $op", (ADD_FPrST0 RST:$op), 0>;
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001487def : InstAlias<"fmulp %st(0), $op", (MUL_FPrST0 RST:$op)>;
1488def : InstAlias<"fsubrp %st(0), $op", (SUB_FPrST0 RST:$op)>;
Nick Lewyckyc00210c2010-12-30 22:10:49 +00001489def : InstAlias<"fdivp %st(0), $op", (DIVR_FPrST0 RST:$op)>;
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001490def : InstAlias<"fdivrp %st(0), $op", (DIV_FPrST0 RST:$op)>;
Chris Lattner90fd7972010-11-06 19:57:21 +00001491
Nick Lewyckyc00210c2010-12-30 22:10:49 +00001492// We accept "fnstsw %eax" even though it only writes %ax.
Chris Lattnerdea546b2010-11-06 18:58:32 +00001493def : InstAlias<"fnstsw %eax", (FNSTSW8r)>;
1494def : InstAlias<"fnstsw %al" , (FNSTSW8r)>;
1495def : InstAlias<"fnstsw" , (FNSTSW8r)>;
1496
Chris Lattner8caa2902010-11-06 07:48:45 +00001497// lcall and ljmp aliases. This seems to be an odd mapping in 64-bit mode, but
1498// this is compatible with what GAS does.
1499def : InstAlias<"lcall $seg, $off", (FARCALL32i i32imm:$off, i16imm:$seg)>;
1500def : InstAlias<"ljmp $seg, $off", (FARJMP32i i32imm:$off, i16imm:$seg)>;
1501def : InstAlias<"lcall *$dst", (FARCALL32m opaque48mem:$dst)>;
1502def : InstAlias<"ljmp *$dst", (FARJMP32m opaque48mem:$dst)>;
1503
Chris Lattner9c1dbc62010-11-06 18:44:26 +00001504// "imul <imm>, B" is an alias for "imul <imm>, B, B".
1505def : InstAlias<"imulw $imm, $r", (IMUL16rri GR16:$r, GR16:$r, i16imm:$imm)>;
1506def : InstAlias<"imulw $imm, $r", (IMUL16rri8 GR16:$r, GR16:$r, i16i8imm:$imm)>;
1507def : InstAlias<"imull $imm, $r", (IMUL32rri GR32:$r, GR32:$r, i32imm:$imm)>;
1508def : InstAlias<"imull $imm, $r", (IMUL32rri8 GR32:$r, GR32:$r, i32i8imm:$imm)>;
1509def : InstAlias<"imulq $imm, $r",(IMUL64rri32 GR64:$r, GR64:$r,i64i32imm:$imm)>;
1510def : InstAlias<"imulq $imm, $r", (IMUL64rri8 GR64:$r, GR64:$r, i64i8imm:$imm)>;
1511
Chris Lattner7e925cc2010-11-06 18:52:40 +00001512// inb %dx -> inb %al, %dx
1513def : InstAlias<"inb %dx", (IN8rr)>;
1514def : InstAlias<"inw %dx", (IN16rr)>;
1515def : InstAlias<"inl %dx", (IN32rr)>;
1516def : InstAlias<"inb $port", (IN8ri i8imm:$port)>;
Chris Lattnerdea546b2010-11-06 18:58:32 +00001517def : InstAlias<"inw $port", (IN16ri i8imm:$port)>;
Chris Lattner7e925cc2010-11-06 18:52:40 +00001518def : InstAlias<"inl $port", (IN32ri i8imm:$port)>;
1519
Chris Lattner9c1dbc62010-11-06 18:44:26 +00001520
Chris Lattner8caa2902010-11-06 07:48:45 +00001521// jmp and call aliases for lcall and ljmp. jmp $42,$5 -> ljmp
1522def : InstAlias<"call $seg, $off", (FARCALL32i i32imm:$off, i16imm:$seg)>;
1523def : InstAlias<"jmp $seg, $off", (FARJMP32i i32imm:$off, i16imm:$seg)>;
1524def : InstAlias<"callw $seg, $off", (FARCALL16i i16imm:$off, i16imm:$seg)>;
1525def : InstAlias<"jmpw $seg, $off", (FARJMP16i i16imm:$off, i16imm:$seg)>;
1526def : InstAlias<"calll $seg, $off", (FARCALL32i i32imm:$off, i16imm:$seg)>;
1527def : InstAlias<"jmpl $seg, $off", (FARJMP32i i32imm:$off, i16imm:$seg)>;
1528
Chris Lattner04a75ab2010-11-06 22:35:34 +00001529// Force mov without a suffix with a segment and mem to prefer the 'l' form of
1530// the move. All segment/mem forms are equivalent, this has the shortest
1531// encoding.
1532def : InstAlias<"mov $mem, $seg", (MOV32sm SEGMENT_REG:$seg, i32mem:$mem)>;
1533def : InstAlias<"mov $seg, $mem", (MOV32ms i32mem:$mem, SEGMENT_REG:$seg)>;
Chris Lattner8caa2902010-11-06 07:48:45 +00001534
Chris Lattner9c1dbc62010-11-06 18:44:26 +00001535// Match 'movq <largeimm>, <reg>' as an alias for movabsq.
1536def : InstAlias<"movq $imm, $reg", (MOV64ri GR64:$reg, i64imm:$imm)>;
1537
Chris Lattnercbf5d742010-11-21 08:18:57 +00001538// Match 'movq GR64, MMX' as an alias for movd.
Bill Wendlingeef965f2011-04-13 23:36:21 +00001539def : InstAlias<"movq $src, $dst",
Bill Wendlingc6df9882011-04-14 01:11:51 +00001540 (MMX_MOVD64to64rr VR64:$dst, GR64:$src), 0>;
Bill Wendlingeef965f2011-04-13 23:36:21 +00001541def : InstAlias<"movq $src, $dst",
Bill Wendlingc6df9882011-04-14 01:11:51 +00001542 (MMX_MOVD64from64rr GR64:$dst, VR64:$src), 0>;
Chris Lattnercbf5d742010-11-21 08:18:57 +00001543
Chris Lattner8caa2902010-11-06 07:48:45 +00001544// movsd with no operands (as opposed to the SSE scalar move of a double) is an
1545// alias for movsl. (as in rep; movsd)
1546def : InstAlias<"movsd", (MOVSD)>;
1547
Chris Lattnerefd8dad2010-11-01 23:07:52 +00001548// movsx aliases
Bill Wendlingd336de32011-04-14 01:46:37 +00001549def : InstAlias<"movsx $src, $dst", (MOVSX16rr8W GR16:$dst, GR8:$src), 0>;
1550def : InstAlias<"movsx $src, $dst", (MOVSX16rm8W GR16:$dst, i8mem:$src), 0>;
1551def : InstAlias<"movsx $src, $dst", (MOVSX32rr8 GR32:$dst, GR8:$src), 0>;
1552def : InstAlias<"movsx $src, $dst", (MOVSX32rr16 GR32:$dst, GR16:$src), 0>;
1553def : InstAlias<"movsx $src, $dst", (MOVSX64rr8 GR64:$dst, GR8:$src), 0>;
1554def : InstAlias<"movsx $src, $dst", (MOVSX64rr16 GR64:$dst, GR16:$src), 0>;
1555def : InstAlias<"movsx $src, $dst", (MOVSX64rr32 GR64:$dst, GR32:$src), 0>;
Chris Lattnerefd8dad2010-11-01 23:07:52 +00001556
1557// movzx aliases
Bill Wendlingd336de32011-04-14 01:46:37 +00001558def : InstAlias<"movzx $src, $dst", (MOVZX16rr8W GR16:$dst, GR8:$src), 0>;
1559def : InstAlias<"movzx $src, $dst", (MOVZX16rm8W GR16:$dst, i8mem:$src), 0>;
1560def : InstAlias<"movzx $src, $dst", (MOVZX32rr8 GR32:$dst, GR8:$src), 0>;
1561def : InstAlias<"movzx $src, $dst", (MOVZX32rr16 GR32:$dst, GR16:$src), 0>;
1562def : InstAlias<"movzx $src, $dst", (MOVZX64rr8_Q GR64:$dst, GR8:$src), 0>;
1563def : InstAlias<"movzx $src, $dst", (MOVZX64rr16_Q GR64:$dst, GR16:$src), 0>;
Chris Lattnerefd8dad2010-11-01 23:07:52 +00001564// Note: No GR32->GR64 movzx form.
1565
Chris Lattner7e925cc2010-11-06 18:52:40 +00001566// outb %dx -> outb %al, %dx
1567def : InstAlias<"outb %dx", (OUT8rr)>;
1568def : InstAlias<"outw %dx", (OUT16rr)>;
1569def : InstAlias<"outl %dx", (OUT32rr)>;
1570def : InstAlias<"outb $port", (OUT8ir i8imm:$port)>;
1571def : InstAlias<"outw $port", (OUT16ir i8imm:$port)>;
1572def : InstAlias<"outl $port", (OUT32ir i8imm:$port)>;
1573
Chris Lattner9c1dbc62010-11-06 18:44:26 +00001574// 'sldt <mem>' can be encoded with either sldtw or sldtq with the same
1575// effect (both store to a 16-bit mem). Force to sldtw to avoid ambiguity
1576// errors, since its encoding is the most compact.
1577def : InstAlias<"sldt $mem", (SLDT16m i16mem:$mem)>;
1578
Chris Lattnerd5b2f1a2010-11-06 22:25:39 +00001579// shld/shrd op,op -> shld op, op, 1
1580def : InstAlias<"shldw $r1, $r2", (SHLD16rri8 GR16:$r1, GR16:$r2, 1)>;
1581def : InstAlias<"shldl $r1, $r2", (SHLD32rri8 GR32:$r1, GR32:$r2, 1)>;
1582def : InstAlias<"shldq $r1, $r2", (SHLD64rri8 GR64:$r1, GR64:$r2, 1)>;
1583def : InstAlias<"shrdw $r1, $r2", (SHRD16rri8 GR16:$r1, GR16:$r2, 1)>;
1584def : InstAlias<"shrdl $r1, $r2", (SHRD32rri8 GR32:$r1, GR32:$r2, 1)>;
1585def : InstAlias<"shrdq $r1, $r2", (SHRD64rri8 GR64:$r1, GR64:$r2, 1)>;
1586
1587def : InstAlias<"shldw $mem, $reg", (SHLD16mri8 i16mem:$mem, GR16:$reg, 1)>;
1588def : InstAlias<"shldl $mem, $reg", (SHLD32mri8 i32mem:$mem, GR32:$reg, 1)>;
1589def : InstAlias<"shldq $mem, $reg", (SHLD64mri8 i64mem:$mem, GR64:$reg, 1)>;
1590def : InstAlias<"shrdw $mem, $reg", (SHRD16mri8 i16mem:$mem, GR16:$reg, 1)>;
1591def : InstAlias<"shrdl $mem, $reg", (SHRD32mri8 i32mem:$mem, GR32:$reg, 1)>;
1592def : InstAlias<"shrdq $mem, $reg", (SHRD64mri8 i64mem:$mem, GR64:$reg, 1)>;
1593
1594/* FIXME: This is disabled because the asm matcher is currently incapable of
1595 * matching a fixed immediate like $1.
Chris Lattner17671512010-11-06 22:05:43 +00001596// "shl X, $1" is an alias for "shl X".
1597multiclass ShiftRotateByOneAlias<string Mnemonic, string Opc> {
Chris Lattner8c24b0c2010-11-06 21:23:40 +00001598 def : InstAlias<!strconcat(Mnemonic, "b $op, $$1"),
1599 (!cast<Instruction>(!strconcat(Opc, "8r1")) GR8:$op)>;
1600 def : InstAlias<!strconcat(Mnemonic, "w $op, $$1"),
1601 (!cast<Instruction>(!strconcat(Opc, "16r1")) GR16:$op)>;
1602 def : InstAlias<!strconcat(Mnemonic, "l $op, $$1"),
1603 (!cast<Instruction>(!strconcat(Opc, "32r1")) GR32:$op)>;
1604 def : InstAlias<!strconcat(Mnemonic, "q $op, $$1"),
1605 (!cast<Instruction>(!strconcat(Opc, "64r1")) GR64:$op)>;
1606 def : InstAlias<!strconcat(Mnemonic, "b $op, $$1"),
1607 (!cast<Instruction>(!strconcat(Opc, "8m1")) i8mem:$op)>;
1608 def : InstAlias<!strconcat(Mnemonic, "w $op, $$1"),
1609 (!cast<Instruction>(!strconcat(Opc, "16m1")) i16mem:$op)>;
1610 def : InstAlias<!strconcat(Mnemonic, "l $op, $$1"),
1611 (!cast<Instruction>(!strconcat(Opc, "32m1")) i32mem:$op)>;
1612 def : InstAlias<!strconcat(Mnemonic, "q $op, $$1"),
1613 (!cast<Instruction>(!strconcat(Opc, "64m1")) i64mem:$op)>;
1614}
1615
Chris Lattner17671512010-11-06 22:05:43 +00001616defm : ShiftRotateByOneAlias<"rcl", "RCL">;
1617defm : ShiftRotateByOneAlias<"rcr", "RCR">;
1618defm : ShiftRotateByOneAlias<"rol", "ROL">;
1619defm : ShiftRotateByOneAlias<"ror", "ROR">;
Chris Lattnerd5b2f1a2010-11-06 22:25:39 +00001620FIXME */
Chris Lattner8c24b0c2010-11-06 21:23:40 +00001621
Chris Lattner5bde7342010-11-06 08:20:59 +00001622// test: We accept "testX <reg>, <mem>" and "testX <mem>, <reg>" as synonyms.
1623def : InstAlias<"testb $val, $mem", (TEST8rm GR8 :$val, i8mem :$mem)>;
1624def : InstAlias<"testw $val, $mem", (TEST16rm GR16:$val, i16mem:$mem)>;
1625def : InstAlias<"testl $val, $mem", (TEST32rm GR32:$val, i32mem:$mem)>;
1626def : InstAlias<"testq $val, $mem", (TEST64rm GR64:$val, i64mem:$mem)>;
1627
1628// xchg: We accept "xchgX <reg>, <mem>" and "xchgX <mem>, <reg>" as synonyms.
1629def : InstAlias<"xchgb $mem, $val", (XCHG8rm GR8 :$val, i8mem :$mem)>;
1630def : InstAlias<"xchgw $mem, $val", (XCHG16rm GR16:$val, i16mem:$mem)>;
1631def : InstAlias<"xchgl $mem, $val", (XCHG32rm GR32:$val, i32mem:$mem)>;
1632def : InstAlias<"xchgq $mem, $val", (XCHG64rm GR64:$val, i64mem:$mem)>;