blob: 7eb07b0a97bd30c3f77f4b1d70f0c8db30a646c1 [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
Stuart Hastings865f0932011-06-03 23:53:54 +000026def SDTX86Cmpsd : SDTypeProfile<1, 3, [SDTCisVT<0, f64>, SDTCisSameAs<1, 2>, SDTCisVT<3, i8>]>;
27def SDTX86Cmpss : SDTypeProfile<1, 3, [SDTCisVT<0, f32>, SDTCisSameAs<1, 2>, SDTCisVT<3, i8>]>;
28
Evan Chenge5f62042007-09-29 00:00:36 +000029def SDTX86Cmov : SDTypeProfile<1, 4,
Evan Cheng0488db92007-09-25 01:57:46 +000030 [SDTCisSameAs<0, 1>, SDTCisSameAs<1, 2>,
31 SDTCisVT<3, i8>, SDTCisVT<4, i32>]>;
Evan Chengaed7c722005-12-17 01:24:02 +000032
Dan Gohman076aee32009-03-04 19:44:21 +000033// Unary and binary operator instructions that set EFLAGS as a side-effect.
Chris Lattner74c8d672010-03-24 00:47:47 +000034def SDTUnaryArithWithFlags : SDTypeProfile<2, 1,
35 [SDTCisInt<0>, SDTCisVT<1, i32>]>;
36
Chris Lattner1aec4d72010-03-24 00:49:29 +000037def SDTBinaryArithWithFlags : SDTypeProfile<2, 2,
38 [SDTCisSameAs<0, 2>,
39 SDTCisSameAs<0, 3>,
40 SDTCisInt<0>, SDTCisVT<1, i32>]>;
Chris Lattner5b856542010-12-20 00:59:46 +000041
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000042// SDTBinaryArithWithFlagsInOut - RES1, EFLAGS = op LHS, RHS, EFLAGS
Chris Lattner5b856542010-12-20 00:59:46 +000043def SDTBinaryArithWithFlagsInOut : SDTypeProfile<2, 3,
44 [SDTCisSameAs<0, 2>,
45 SDTCisSameAs<0, 3>,
46 SDTCisInt<0>,
47 SDTCisVT<1, i32>,
48 SDTCisVT<4, i32>]>;
Chris Lattnerb20e0b12010-12-05 07:30:36 +000049// RES1, RES2, FLAGS = op LHS, RHS
50def SDT2ResultBinaryArithWithFlags : SDTypeProfile<3, 2,
51 [SDTCisSameAs<0, 1>,
52 SDTCisSameAs<0, 2>,
53 SDTCisSameAs<0, 3>,
54 SDTCisInt<0>, SDTCisVT<1, i32>]>;
Evan Chenge5f62042007-09-29 00:00:36 +000055def SDTX86BrCond : SDTypeProfile<0, 3,
Evan Cheng0488db92007-09-25 01:57:46 +000056 [SDTCisVT<0, OtherVT>,
57 SDTCisVT<1, i8>, SDTCisVT<2, i32>]>;
Evan Chengaed7c722005-12-17 01:24:02 +000058
Evan Chenge5f62042007-09-29 00:00:36 +000059def SDTX86SetCC : SDTypeProfile<1, 2,
Evan Cheng0488db92007-09-25 01:57:46 +000060 [SDTCisVT<0, i8>,
61 SDTCisVT<1, i8>, SDTCisVT<2, i32>]>;
Evan Cheng2e489c42009-12-16 00:53:11 +000062def SDTX86SetCC_C : SDTypeProfile<1, 2,
63 [SDTCisInt<0>,
64 SDTCisVT<1, i8>, SDTCisVT<2, i32>]>;
Evan Chengd5781fc2005-12-21 20:21:51 +000065
Michael J. Spencer6e56b182010-10-20 23:40:27 +000066def SDTX86cas : SDTypeProfile<0, 3, [SDTCisPtrTy<0>, SDTCisInt<1>,
Andrew Lenharth26ed8692008-03-01 21:52:34 +000067 SDTCisVT<2, i8>]>;
Andrew Lenharthd19189e2008-03-05 01:15:49 +000068def SDTX86cas8 : SDTypeProfile<0, 1, [SDTCisPtrTy<0>]>;
Andrew Lenharth26ed8692008-03-01 21:52:34 +000069
Dale Johannesen48c1bc22008-10-02 18:53:47 +000070def SDTX86atomicBinary : SDTypeProfile<2, 3, [SDTCisInt<0>, SDTCisInt<1>,
71 SDTCisPtrTy<2>, SDTCisInt<3>,SDTCisInt<4>]>;
Chris Lattner447ff682008-03-11 03:23:40 +000072def SDTX86Ret : SDTypeProfile<0, -1, [SDTCisVT<0, i16>]>;
Evan Cheng898101c2005-12-19 23:12:38 +000073
Sean Callanan1c97ceb2009-06-23 23:25:37 +000074def SDT_X86CallSeqStart : SDCallSeqStart<[SDTCisVT<0, i32>]>;
75def SDT_X86CallSeqEnd : SDCallSeqEnd<[SDTCisVT<0, i32>,
76 SDTCisVT<1, i32>]>;
Evan Chenge3413162006-01-09 18:33:28 +000077
Dan Gohmand35121a2008-05-29 19:57:41 +000078def SDT_X86Call : SDTypeProfile<0, -1, [SDTCisVT<0, iPTR>]>;
Evan Chenge3413162006-01-09 18:33:28 +000079
Dan Gohmand6708ea2009-08-15 01:38:56 +000080def SDT_X86VASTART_SAVE_XMM_REGS : SDTypeProfile<0, -1, [SDTCisVT<0, i8>,
81 SDTCisVT<1, iPTR>,
82 SDTCisVT<2, iPTR>]>;
83
Dan Gohman320afb82010-10-12 18:00:49 +000084def SDT_X86VAARG_64 : SDTypeProfile<1, -1, [SDTCisPtrTy<0>,
85 SDTCisPtrTy<1>,
86 SDTCisVT<2, i32>,
87 SDTCisVT<3, i8>,
88 SDTCisVT<4, i32>]>;
89
Chris Lattnered52c8f2010-03-28 07:38:39 +000090def SDTX86RepStr : SDTypeProfile<0, 1, [SDTCisVT<0, OtherVT>]>;
91
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000092def SDTX86Void : SDTypeProfile<0, 0, []>;
Evan Chengd90eb7f2006-01-05 00:27:02 +000093
Evan Cheng71fb8342006-02-25 10:02:21 +000094def SDTX86Wrapper : SDTypeProfile<1, 1, [SDTCisSameAs<0, 1>, SDTCisPtrTy<0>]>;
95
Rafael Espindola2ee3db32009-04-17 14:35:58 +000096def SDT_X86TLSADDR : SDTypeProfile<0, 1, [SDTCisInt<0>]>;
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000097
Eric Christopherd8c05362010-12-09 06:25:53 +000098def SDT_X86TLSCALL : SDTypeProfile<0, 1, [SDTCisInt<0>]>;
Eric Christopher30ef0e52010-06-03 04:07:48 +000099
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000100def SDT_X86EHRET : SDTypeProfile<0, 1, [SDTCisInt<0>]>;
101
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000102def SDT_X86TCRET : SDTypeProfile<0, 2, [SDTCisPtrTy<0>, SDTCisVT<1, i32>]>;
103
Eric Christopher9a9d2752010-07-22 02:48:34 +0000104def SDT_X86MEMBARRIER : SDTypeProfile<0, 0, []>;
105def SDT_X86MEMBARRIERNoSSE : SDTypeProfile<0, 1, [SDTCisInt<0>]>;
106
107def X86MemBarrier : SDNode<"X86ISD::MEMBARRIER", SDT_X86MEMBARRIER,
108 [SDNPHasChain]>;
109def X86MemBarrierNoSSE : SDNode<"X86ISD::MEMBARRIER", SDT_X86MEMBARRIERNoSSE,
110 [SDNPHasChain]>;
111def X86MFence : SDNode<"X86ISD::MFENCE", SDT_X86MEMBARRIER,
112 [SDNPHasChain]>;
113def X86SFence : SDNode<"X86ISD::SFENCE", SDT_X86MEMBARRIER,
114 [SDNPHasChain]>;
115def X86LFence : SDNode<"X86ISD::LFENCE", SDT_X86MEMBARRIER,
116 [SDNPHasChain]>;
117
118
Chris Lattnerd486d772010-03-28 05:07:17 +0000119def X86bsf : SDNode<"X86ISD::BSF", SDTUnaryArithWithFlags>;
120def X86bsr : SDNode<"X86ISD::BSR", SDTUnaryArithWithFlags>;
Evan Chenge3413162006-01-09 18:33:28 +0000121def X86shld : SDNode<"X86ISD::SHLD", SDTIntShiftDOp>;
122def X86shrd : SDNode<"X86ISD::SHRD", SDTIntShiftDOp>;
Evan Chengb077b842005-12-21 02:39:21 +0000123
Evan Chenge5f62042007-09-29 00:00:36 +0000124def X86cmp : SDNode<"X86ISD::CMP" , SDTX86CmpTest>;
Dan Gohmanc7a37d42008-12-23 22:45:23 +0000125def X86bt : SDNode<"X86ISD::BT", SDTX86CmpTest>;
126
Evan Chenge5f62042007-09-29 00:00:36 +0000127def X86cmov : SDNode<"X86ISD::CMOV", SDTX86Cmov>;
Evan Chenge3413162006-01-09 18:33:28 +0000128def X86brcond : SDNode<"X86ISD::BRCOND", SDTX86BrCond,
Evan Cheng0488db92007-09-25 01:57:46 +0000129 [SDNPHasChain]>;
Evan Chenge5f62042007-09-29 00:00:36 +0000130def X86setcc : SDNode<"X86ISD::SETCC", SDTX86SetCC>;
Evan Cheng2e489c42009-12-16 00:53:11 +0000131def X86setcc_c : SDNode<"X86ISD::SETCC_CARRY", SDTX86SetCC_C>;
Evan Chengb077b842005-12-21 02:39:21 +0000132
Andrew Lenharth26ed8692008-03-01 21:52:34 +0000133def X86cas : SDNode<"X86ISD::LCMPXCHG_DAG", SDTX86cas,
Chris Lattner036609b2010-12-23 18:28:41 +0000134 [SDNPHasChain, SDNPInGlue, SDNPOutGlue, SDNPMayStore,
Chris Lattner88641552010-09-22 00:34:38 +0000135 SDNPMayLoad, SDNPMemOperand]>;
Andrew Lenharthd19189e2008-03-05 01:15:49 +0000136def X86cas8 : SDNode<"X86ISD::LCMPXCHG8_DAG", SDTX86cas8,
Chris Lattner036609b2010-12-23 18:28:41 +0000137 [SDNPHasChain, SDNPInGlue, SDNPOutGlue, SDNPMayStore,
Chris Lattner88641552010-09-22 00:34:38 +0000138 SDNPMayLoad, SDNPMemOperand]>;
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000139def X86AtomAdd64 : SDNode<"X86ISD::ATOMADD64_DAG", SDTX86atomicBinary,
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000140 [SDNPHasChain, SDNPMayStore,
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000141 SDNPMayLoad, SDNPMemOperand]>;
142def X86AtomSub64 : SDNode<"X86ISD::ATOMSUB64_DAG", SDTX86atomicBinary,
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000143 [SDNPHasChain, SDNPMayStore,
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000144 SDNPMayLoad, SDNPMemOperand]>;
145def X86AtomOr64 : SDNode<"X86ISD::ATOMOR64_DAG", SDTX86atomicBinary,
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000146 [SDNPHasChain, SDNPMayStore,
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000147 SDNPMayLoad, SDNPMemOperand]>;
148def X86AtomXor64 : SDNode<"X86ISD::ATOMXOR64_DAG", SDTX86atomicBinary,
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000149 [SDNPHasChain, SDNPMayStore,
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000150 SDNPMayLoad, SDNPMemOperand]>;
151def X86AtomAnd64 : SDNode<"X86ISD::ATOMAND64_DAG", SDTX86atomicBinary,
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000152 [SDNPHasChain, SDNPMayStore,
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000153 SDNPMayLoad, SDNPMemOperand]>;
154def X86AtomNand64 : SDNode<"X86ISD::ATOMNAND64_DAG", SDTX86atomicBinary,
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000155 [SDNPHasChain, SDNPMayStore,
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000156 SDNPMayLoad, SDNPMemOperand]>;
Dale Johannesen880ae362008-10-03 22:25:52 +0000157def X86AtomSwap64 : SDNode<"X86ISD::ATOMSWAP64_DAG", SDTX86atomicBinary,
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000158 [SDNPHasChain, SDNPMayStore,
Dale Johannesen880ae362008-10-03 22:25:52 +0000159 SDNPMayLoad, SDNPMemOperand]>;
Evan Chenge3413162006-01-09 18:33:28 +0000160def X86retflag : SDNode<"X86ISD::RET_FLAG", SDTX86Ret,
Chris Lattner036609b2010-12-23 18:28:41 +0000161 [SDNPHasChain, SDNPOptInGlue, SDNPVariadic]>;
Evan Chengb077b842005-12-21 02:39:21 +0000162
Dan Gohmand6708ea2009-08-15 01:38:56 +0000163def X86vastart_save_xmm_regs :
164 SDNode<"X86ISD::VASTART_SAVE_XMM_REGS",
165 SDT_X86VASTART_SAVE_XMM_REGS,
Chris Lattnere8cabf32010-03-19 05:07:09 +0000166 [SDNPHasChain, SDNPVariadic]>;
Dan Gohman320afb82010-10-12 18:00:49 +0000167def X86vaarg64 :
168 SDNode<"X86ISD::VAARG_64", SDT_X86VAARG_64,
169 [SDNPHasChain, SDNPMayLoad, SDNPMayStore,
170 SDNPMemOperand]>;
Evan Chenge3413162006-01-09 18:33:28 +0000171def X86callseq_start :
172 SDNode<"ISD::CALLSEQ_START", SDT_X86CallSeqStart,
Chris Lattner036609b2010-12-23 18:28:41 +0000173 [SDNPHasChain, SDNPOutGlue]>;
Evan Chenge3413162006-01-09 18:33:28 +0000174def X86callseq_end :
175 SDNode<"ISD::CALLSEQ_END", SDT_X86CallSeqEnd,
Chris Lattner036609b2010-12-23 18:28:41 +0000176 [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>;
Evan Chengb077b842005-12-21 02:39:21 +0000177
Evan Chenge3413162006-01-09 18:33:28 +0000178def X86call : SDNode<"X86ISD::CALL", SDT_X86Call,
Chris Lattner036609b2010-12-23 18:28:41 +0000179 [SDNPHasChain, SDNPOutGlue, SDNPOptInGlue,
Chris Lattnere8cabf32010-03-19 05:07:09 +0000180 SDNPVariadic]>;
Evan Chengaed7c722005-12-17 01:24:02 +0000181
Chris Lattnered52c8f2010-03-28 07:38:39 +0000182def X86rep_stos: SDNode<"X86ISD::REP_STOS", SDTX86RepStr,
Chris Lattner036609b2010-12-23 18:28:41 +0000183 [SDNPHasChain, SDNPInGlue, SDNPOutGlue, SDNPMayStore]>;
Chris Lattnered52c8f2010-03-28 07:38:39 +0000184def X86rep_movs: SDNode<"X86ISD::REP_MOVS", SDTX86RepStr,
Chris Lattner036609b2010-12-23 18:28:41 +0000185 [SDNPHasChain, SDNPInGlue, SDNPOutGlue, SDNPMayStore,
Chris Lattner9b37aaf2008-01-10 05:12:37 +0000186 SDNPMayLoad]>;
Evan Cheng67f92a72006-01-11 22:15:48 +0000187
Anton Korobeynikov043f3c22010-03-06 19:32:29 +0000188def X86rdtsc : SDNode<"X86ISD::RDTSC_DAG", SDTX86Void,
Chris Lattner036609b2010-12-23 18:28:41 +0000189 [SDNPHasChain, SDNPOutGlue, SDNPSideEffect]>;
Evan Chengd90eb7f2006-01-05 00:27:02 +0000190
Evan Cheng0085a282006-11-30 21:55:46 +0000191def X86Wrapper : SDNode<"X86ISD::Wrapper", SDTX86Wrapper>;
192def X86WrapperRIP : SDNode<"X86ISD::WrapperRIP", SDTX86Wrapper>;
Evan Cheng71fb8342006-02-25 10:02:21 +0000193
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000194def X86tlsaddr : SDNode<"X86ISD::TLSADDR", SDT_X86TLSADDR,
Chris Lattner036609b2010-12-23 18:28:41 +0000195 [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>;
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000196
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000197def X86ehret : SDNode<"X86ISD::EH_RETURN", SDT_X86EHRET,
198 [SDNPHasChain]>;
199
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000200def X86tcret : SDNode<"X86ISD::TC_RETURN", SDT_X86TCRET,
Chris Lattner036609b2010-12-23 18:28:41 +0000201 [SDNPHasChain, SDNPOptInGlue, SDNPVariadic]>;
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000202
Dan Gohman43ffe672010-01-04 20:51:05 +0000203def X86add_flag : SDNode<"X86ISD::ADD", SDTBinaryArithWithFlags,
Dan Gohman4361bbf2010-01-05 00:44:20 +0000204 [SDNPCommutative]>;
Dan Gohman076aee32009-03-04 19:44:21 +0000205def X86sub_flag : SDNode<"X86ISD::SUB", SDTBinaryArithWithFlags>;
Dan Gohman43ffe672010-01-04 20:51:05 +0000206def X86smul_flag : SDNode<"X86ISD::SMUL", SDTBinaryArithWithFlags,
Dan Gohman4361bbf2010-01-05 00:44:20 +0000207 [SDNPCommutative]>;
Chris Lattnerb20e0b12010-12-05 07:30:36 +0000208def X86umul_flag : SDNode<"X86ISD::UMUL", SDT2ResultBinaryArithWithFlags,
Dan Gohman4361bbf2010-01-05 00:44:20 +0000209 [SDNPCommutative]>;
Chris Lattner5b856542010-12-20 00:59:46 +0000210def X86adc_flag : SDNode<"X86ISD::ADC", SDTBinaryArithWithFlagsInOut>;
211def X86sbb_flag : SDNode<"X86ISD::SBB", SDTBinaryArithWithFlagsInOut>;
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000212
Dan Gohman076aee32009-03-04 19:44:21 +0000213def X86inc_flag : SDNode<"X86ISD::INC", SDTUnaryArithWithFlags>;
214def X86dec_flag : SDNode<"X86ISD::DEC", SDTUnaryArithWithFlags>;
Dan Gohman43ffe672010-01-04 20:51:05 +0000215def X86or_flag : SDNode<"X86ISD::OR", SDTBinaryArithWithFlags,
Dan Gohman4361bbf2010-01-05 00:44:20 +0000216 [SDNPCommutative]>;
Dan Gohman43ffe672010-01-04 20:51:05 +0000217def X86xor_flag : SDNode<"X86ISD::XOR", SDTBinaryArithWithFlags,
Dan Gohman4361bbf2010-01-05 00:44:20 +0000218 [SDNPCommutative]>;
Dan Gohman43ffe672010-01-04 20:51:05 +0000219def X86and_flag : SDNode<"X86ISD::AND", SDTBinaryArithWithFlags,
Dan Gohman4361bbf2010-01-05 00:44:20 +0000220 [SDNPCommutative]>;
Bill Wendlingab55ebd2008-12-12 00:56:36 +0000221
Evan Cheng73f24c92009-03-30 21:36:47 +0000222def X86mul_imm : SDNode<"X86ISD::MUL_IMM", SDTIntBinOp>;
223
Michael J. Spencere9c253e2010-10-21 01:41:01 +0000224def X86WinAlloca : SDNode<"X86ISD::WIN_ALLOCA", SDTX86Void,
Chris Lattner036609b2010-12-23 18:28:41 +0000225 [SDNPHasChain, SDNPInGlue, SDNPOutGlue]>;
Michael J. Spencere9c253e2010-10-21 01:41:01 +0000226
Eric Christopher30ef0e52010-06-03 04:07:48 +0000227def X86TLSCall : SDNode<"X86ISD::TLSCALL", SDT_X86TLSCALL,
Chris Lattner036609b2010-12-23 18:28:41 +0000228 [SDNPHasChain, SDNPOptInGlue, SDNPOutGlue]>;
Anton Korobeynikov043f3c22010-03-06 19:32:29 +0000229
Evan Chengaed7c722005-12-17 01:24:02 +0000230//===----------------------------------------------------------------------===//
231// X86 Operand Definitions.
232//
233
Dan Gohmana4714e02009-07-30 01:56:29 +0000234// A version of ptr_rc which excludes SP, ESP, and RSP. This is used for
235// the index operand of an address, to conform to x86 encoding restrictions.
236def ptr_rc_nosp : PointerLikeRegClass<1>;
Chris Lattner7680e732009-06-20 19:34:09 +0000237
Chris Lattner66fa1dc2004-08-11 02:25:00 +0000238// *mem - Operand definitions for the funky X86 addressing mode operands.
239//
Daniel Dunbar338825c2009-08-10 18:41:10 +0000240def X86MemAsmOperand : AsmOperandClass {
241 let Name = "Mem";
Daniel Dunbar54ddf3d2010-05-22 21:02:29 +0000242 let SuperClasses = [];
Daniel Dunbar338825c2009-08-10 18:41:10 +0000243}
Daniel Dunbarc26ae5a2010-05-06 22:39:14 +0000244def X86AbsMemAsmOperand : AsmOperandClass {
245 let Name = "AbsMem";
Chris Lattner599b5312010-07-08 23:46:44 +0000246 let SuperClasses = [X86MemAsmOperand];
Daniel Dunbarc26ae5a2010-05-06 22:39:14 +0000247}
Evan Chengaf78ef52006-05-17 21:21:41 +0000248class X86MemOperand<string printMethod> : Operand<iPTR> {
Nate Begeman391c5d22005-11-30 18:54:35 +0000249 let PrintMethod = printMethod;
Dan Gohmana4714e02009-07-30 01:56:29 +0000250 let MIOperandInfo = (ops ptr_rc, i8imm, ptr_rc_nosp, i32imm, i8imm);
Daniel Dunbar338825c2009-08-10 18:41:10 +0000251 let ParserMatchClass = X86MemAsmOperand;
Chris Lattner66fa1dc2004-08-11 02:25:00 +0000252}
Nate Begeman391c5d22005-11-30 18:54:35 +0000253
Benjamin Kramer3be41b72011-07-14 21:47:22 +0000254let OperandType = "OPERAND_MEMORY" in {
Sean Callanan9947bbb2009-09-03 00:04:47 +0000255def opaque32mem : X86MemOperand<"printopaquemem">;
256def opaque48mem : X86MemOperand<"printopaquemem">;
257def opaque80mem : X86MemOperand<"printopaquemem">;
Sean Callanan108934c2009-12-18 00:01:26 +0000258def opaque512mem : X86MemOperand<"printopaquemem">;
259
Chris Lattner45432512005-12-17 19:47:05 +0000260def i8mem : X86MemOperand<"printi8mem">;
261def i16mem : X86MemOperand<"printi16mem">;
262def i32mem : X86MemOperand<"printi32mem">;
263def i64mem : X86MemOperand<"printi64mem">;
Evan Cheng470a6ad2006-02-22 02:26:30 +0000264def i128mem : X86MemOperand<"printi128mem">;
Bruno Cardoso Lopes94143ee2010-07-19 23:32:44 +0000265def i256mem : X86MemOperand<"printi256mem">;
Chris Lattner45432512005-12-17 19:47:05 +0000266def f32mem : X86MemOperand<"printf32mem">;
267def f64mem : X86MemOperand<"printf64mem">;
Dale Johannesen59a58732007-08-05 18:49:15 +0000268def f80mem : X86MemOperand<"printf80mem">;
Evan Cheng223547a2006-01-31 22:28:30 +0000269def f128mem : X86MemOperand<"printf128mem">;
Bruno Cardoso Lopese86b01c2010-07-09 18:27:43 +0000270def f256mem : X86MemOperand<"printf256mem">;
Benjamin Kramer3be41b72011-07-14 21:47:22 +0000271}
Nate Begeman391c5d22005-11-30 18:54:35 +0000272
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000273// A version of i8mem for use on x86-64 that uses GR64_NOREX instead of
274// plain GR64, so that it doesn't potentially require a REX prefix.
275def i8mem_NOREX : Operand<i64> {
276 let PrintMethod = "printi8mem";
Dan Gohmana4714e02009-07-30 01:56:29 +0000277 let MIOperandInfo = (ops GR64_NOREX, i8imm, GR64_NOREX_NOSP, i32imm, i8imm);
Daniel Dunbar338825c2009-08-10 18:41:10 +0000278 let ParserMatchClass = X86MemAsmOperand;
Benjamin Kramer3be41b72011-07-14 21:47:22 +0000279 let OperandType = "OPERAND_MEMORY";
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000280}
281
NAKAMURA Takumi7754f852011-01-26 02:04:09 +0000282// GPRs available for tailcall.
283// It represents GR64_TC or GR64_TCW64.
284def ptr_rc_tailcall : PointerLikeRegClass<2>;
285
Evan Chengf48ef032010-03-14 03:48:46 +0000286// Special i32mem for addresses of load folding tail calls. These are not
287// allowed to use callee-saved registers since they must be scheduled
288// after callee-saved register are popped.
289def i32mem_TC : Operand<i32> {
290 let PrintMethod = "printi32mem";
291 let MIOperandInfo = (ops GR32_TC, i8imm, GR32_TC, i32imm, i8imm);
292 let ParserMatchClass = X86MemAsmOperand;
Benjamin Kramer3be41b72011-07-14 21:47:22 +0000293 let OperandType = "OPERAND_MEMORY";
Evan Chengf48ef032010-03-14 03:48:46 +0000294}
295
Chris Lattner41efbfa2010-10-05 06:37:31 +0000296// Special i64mem for addresses of load folding tail calls. These are not
297// allowed to use callee-saved registers since they must be scheduled
298// after callee-saved register are popped.
299def i64mem_TC : Operand<i64> {
300 let PrintMethod = "printi64mem";
NAKAMURA Takumi7754f852011-01-26 02:04:09 +0000301 let MIOperandInfo = (ops ptr_rc_tailcall, i8imm,
302 ptr_rc_tailcall, i32imm, i8imm);
Chris Lattner41efbfa2010-10-05 06:37:31 +0000303 let ParserMatchClass = X86MemAsmOperand;
Benjamin Kramer3be41b72011-07-14 21:47:22 +0000304 let OperandType = "OPERAND_MEMORY";
Chris Lattner41efbfa2010-10-05 06:37:31 +0000305}
Evan Cheng25ab6902006-09-08 06:48:29 +0000306
Benjamin Kramer3be41b72011-07-14 21:47:22 +0000307let OperandType = "OPERAND_PCREL",
308 ParserMatchClass = X86AbsMemAsmOperand,
Daniel Dunbarb834f5d2010-01-30 01:02:48 +0000309 PrintMethod = "print_pcrel_imm" in {
Daniel Dunbar728e5eb2010-01-30 00:24:12 +0000310def i32imm_pcrel : Operand<i32>;
Chris Lattner9fc05222010-07-07 22:27:31 +0000311def i16imm_pcrel : Operand<i16>;
Daniel Dunbar728e5eb2010-01-30 00:24:12 +0000312
313def offset8 : Operand<i64>;
314def offset16 : Operand<i64>;
315def offset32 : Operand<i64>;
316def offset64 : Operand<i64>;
317
318// Branch targets have OtherVT type and print as pc-relative values.
319def brtarget : Operand<OtherVT>;
320def brtarget8 : Operand<OtherVT>;
321
322}
323
Nate Begeman16b04f32005-07-15 00:38:55 +0000324def SSECC : Operand<i8> {
325 let PrintMethod = "printSSECC";
Benjamin Kramer3be41b72011-07-14 21:47:22 +0000326 let OperandType = "OPERAND_IMMEDIATE";
Nate Begeman16b04f32005-07-15 00:38:55 +0000327}
Chris Lattner66fa1dc2004-08-11 02:25:00 +0000328
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000329class ImmSExtAsmOperandClass : AsmOperandClass {
Daniel Dunbar54ddf3d2010-05-22 21:02:29 +0000330 let SuperClasses = [ImmAsmOperand];
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000331 let RenderMethod = "addImmOperands";
Daniel Dunbar1fe591d2010-05-20 20:20:39 +0000332}
333
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000334// Sign-extended immediate classes. We don't need to define the full lattice
335// here because there is no instruction with an ambiguity between ImmSExti64i32
336// and ImmSExti32i8.
337//
338// The strange ranges come from the fact that the assembler always works with
339// 64-bit immediates, but for a 16-bit target value we want to accept both "-1"
340// (which will be a -1ULL), and "0xFF" (-1 in 16-bits).
341
Chris Lattner599b5312010-07-08 23:46:44 +0000342// [0, 0x7FFFFFFF] |
343// [0xFFFFFFFF80000000, 0xFFFFFFFFFFFFFFFF]
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000344def ImmSExti64i32AsmOperand : ImmSExtAsmOperandClass {
345 let Name = "ImmSExti64i32";
346}
347
Chris Lattner599b5312010-07-08 23:46:44 +0000348// [0, 0x0000007F] | [0x000000000000FF80, 0x000000000000FFFF] |
349// [0xFFFFFFFFFFFFFF80, 0xFFFFFFFFFFFFFFFF]
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000350def ImmSExti16i8AsmOperand : ImmSExtAsmOperandClass {
351 let Name = "ImmSExti16i8";
352 let SuperClasses = [ImmSExti64i32AsmOperand];
353}
354
Chris Lattner599b5312010-07-08 23:46:44 +0000355// [0, 0x0000007F] | [0x00000000FFFFFF80, 0x00000000FFFFFFFF] |
356// [0xFFFFFFFFFFFFFF80, 0xFFFFFFFFFFFFFFFF]
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000357def ImmSExti32i8AsmOperand : ImmSExtAsmOperandClass {
358 let Name = "ImmSExti32i8";
359}
360
Chris Lattner599b5312010-07-08 23:46:44 +0000361// [0, 0x0000007F] |
362// [0xFFFFFFFFFFFFFF80, 0xFFFFFFFFFFFFFFFF]
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000363def ImmSExti64i8AsmOperand : ImmSExtAsmOperandClass {
364 let Name = "ImmSExti64i8";
Chris Lattner599b5312010-07-08 23:46:44 +0000365 let SuperClasses = [ImmSExti16i8AsmOperand, ImmSExti32i8AsmOperand,
366 ImmSExti64i32AsmOperand];
Daniel Dunbar338825c2009-08-10 18:41:10 +0000367}
368
Chris Lattnerf124d5e2005-11-18 01:04:42 +0000369// A couple of more descriptive operand definitions.
370// 16-bits but only 8 bits are significant.
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000371def i16i8imm : Operand<i16> {
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000372 let ParserMatchClass = ImmSExti16i8AsmOperand;
Benjamin Kramer3be41b72011-07-14 21:47:22 +0000373 let OperandType = "OPERAND_IMMEDIATE";
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000374}
Chris Lattnerf124d5e2005-11-18 01:04:42 +0000375// 32-bits but only 8 bits are significant.
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000376def i32i8imm : Operand<i32> {
Daniel Dunbar62e4c672010-05-22 21:02:33 +0000377 let ParserMatchClass = ImmSExti32i8AsmOperand;
Benjamin Kramer3be41b72011-07-14 21:47:22 +0000378 let OperandType = "OPERAND_IMMEDIATE";
Daniel Dunbar5fe63382009-08-09 07:20:21 +0000379}
Chris Lattnerf124d5e2005-11-18 01:04:42 +0000380
Chris Lattner41efbfa2010-10-05 06:37:31 +0000381// 64-bits but only 32 bits are significant.
382def i64i32imm : Operand<i64> {
383 let ParserMatchClass = ImmSExti64i32AsmOperand;
Benjamin Kramer3be41b72011-07-14 21:47:22 +0000384 let OperandType = "OPERAND_IMMEDIATE";
Chris Lattner41efbfa2010-10-05 06:37:31 +0000385}
386
387// 64-bits but only 32 bits are significant, and those bits are treated as being
388// pc relative.
389def i64i32imm_pcrel : Operand<i64> {
390 let PrintMethod = "print_pcrel_imm";
391 let ParserMatchClass = X86AbsMemAsmOperand;
392}
393
394// 64-bits but only 8 bits are significant.
395def i64i8imm : Operand<i64> {
396 let ParserMatchClass = ImmSExti64i8AsmOperand;
397}
398
399def lea64_32mem : Operand<i32> {
400 let PrintMethod = "printi32mem";
401 let AsmOperandLowerMethod = "lower_lea64_32mem";
402 let MIOperandInfo = (ops GR32, i8imm, GR32_NOSP, i32imm, i8imm);
403 let ParserMatchClass = X86MemAsmOperand;
404}
405
406
Evan Chengaed7c722005-12-17 01:24:02 +0000407//===----------------------------------------------------------------------===//
408// X86 Complex Pattern Definitions.
409//
410
Evan Chengec693f72005-12-08 02:01:35 +0000411// Define X86 specific addressing mode.
Chris Lattnerb86faa12010-09-21 22:07:31 +0000412def addr : ComplexPattern<iPTR, 5, "SelectAddr", [], [SDNPWantParent]>;
Chris Lattner599b5312010-07-08 23:46:44 +0000413def lea32addr : ComplexPattern<i32, 5, "SelectLEAAddr",
Dan Gohmana98634b2009-08-02 16:09:17 +0000414 [add, sub, mul, X86mul_imm, shl, or, frameindex],
415 []>;
Chris Lattner599b5312010-07-08 23:46:44 +0000416def tls32addr : ComplexPattern<i32, 5, "SelectTLSADDRAddr",
Chris Lattner5c0b16d2009-06-20 20:38:48 +0000417 [tglobaltlsaddr], []>;
Evan Chengec693f72005-12-08 02:01:35 +0000418
Chris Lattner41efbfa2010-10-05 06:37:31 +0000419def lea64addr : ComplexPattern<i64, 5, "SelectLEAAddr",
420 [add, sub, mul, X86mul_imm, shl, or, frameindex,
421 X86WrapperRIP], []>;
422
423def tls64addr : ComplexPattern<i64, 5, "SelectTLSADDRAddr",
424 [tglobaltlsaddr], []>;
425
Evan Chengaed7c722005-12-17 01:24:02 +0000426//===----------------------------------------------------------------------===//
Evan Chengbbc8ddb2005-12-20 22:59:51 +0000427// X86 Instruction Predicate Definitions.
Chris Lattner314a1132010-03-14 18:31:44 +0000428def HasCMov : Predicate<"Subtarget->hasCMov()">;
429def NoCMov : Predicate<"!Subtarget->hasCMov()">;
Nate Begeman5812b102010-12-03 22:29:15 +0000430
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000431def HasMMX : Predicate<"Subtarget->hasMMX()">;
Chris Lattner548abfc2010-10-03 18:08:05 +0000432def Has3DNow : Predicate<"Subtarget->has3DNow()">;
433def Has3DNowA : Predicate<"Subtarget->has3DNowA()">;
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000434def HasSSE1 : Predicate<"Subtarget->hasSSE1()">;
435def HasSSE2 : Predicate<"Subtarget->hasSSE2()">;
436def HasSSE3 : Predicate<"Subtarget->hasSSE3()">;
437def HasSSSE3 : Predicate<"Subtarget->hasSSSE3()">;
438def HasSSE41 : Predicate<"Subtarget->hasSSE41()">;
439def HasSSE42 : Predicate<"Subtarget->hasSSE42()">;
440def HasSSE4A : Predicate<"Subtarget->hasSSE4A()">;
Nate Begeman5812b102010-12-03 22:29:15 +0000441
David Greene343dadb2009-06-26 22:46:54 +0000442def HasAVX : Predicate<"Subtarget->hasAVX()">;
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000443def HasXMMInt : Predicate<"Subtarget->hasXMMInt()">;
444
445def HasAES : Predicate<"Subtarget->hasAES()">;
Bruno Cardoso Lopescdae7e82010-07-23 01:17:51 +0000446def HasCLMUL : Predicate<"Subtarget->hasCLMUL()">;
David Greene343dadb2009-06-26 22:46:54 +0000447def HasFMA3 : Predicate<"Subtarget->hasFMA3()">;
448def HasFMA4 : Predicate<"Subtarget->hasFMA4()">;
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000449def FPStackf32 : Predicate<"!Subtarget->hasXMM()">;
450def FPStackf64 : Predicate<"!Subtarget->hasXMMInt()">;
Evan Chengebdeeab2011-07-08 01:53:10 +0000451def In32BitMode : Predicate<"!Subtarget->is64Bit()">,
452 AssemblerPredicate<"!Mode64Bit">;
453def In64BitMode : Predicate<"Subtarget->is64Bit()">,
454 AssemblerPredicate<"Mode64Bit">;
Anton Korobeynikovcf6b7392009-08-03 08:12:53 +0000455def IsWin64 : Predicate<"Subtarget->isTargetWin64()">;
456def NotWin64 : Predicate<"!Subtarget->isTargetWin64()">;
Anton Korobeynikovd7697d02009-08-06 11:23:24 +0000457def SmallCode : Predicate<"TM.getCodeModel() == CodeModel::Small">;
458def KernelCode : Predicate<"TM.getCodeModel() == CodeModel::Kernel">;
459def FarData : Predicate<"TM.getCodeModel() != CodeModel::Small &&"
Anton Korobeynikov186fa1d2009-08-06 09:11:19 +0000460 "TM.getCodeModel() != CodeModel::Kernel">;
Anton Korobeynikovd7697d02009-08-06 11:23:24 +0000461def NearData : Predicate<"TM.getCodeModel() == CodeModel::Small ||"
462 "TM.getCodeModel() == CodeModel::Kernel">;
Evan Cheng28b514392006-12-05 19:50:18 +0000463def IsStatic : Predicate<"TM.getRelocationModel() == Reloc::Static">;
Evan Chengcb0f06e2010-03-25 00:10:31 +0000464def IsNotPIC : Predicate<"TM.getRelocationModel() != Reloc::PIC_">;
Evan Chengb1f49812009-12-22 17:47:23 +0000465def OptForSize : Predicate<"OptForSize">;
Evan Chengb7a75a52008-09-26 23:41:32 +0000466def OptForSpeed : Predicate<"!OptForSize">;
Evan Chengccb69762009-01-02 05:35:45 +0000467def FastBTMem : Predicate<"!Subtarget->isBTMemSlow()">;
Evan Chengd7f666a2009-05-20 04:53:57 +0000468def CallImmAddr : Predicate<"Subtarget->IsLegalToCallImmediateAddr(TM)">;
Evan Chengbbc8ddb2005-12-20 22:59:51 +0000469
470//===----------------------------------------------------------------------===//
Evan Chengc64a1a92007-07-31 08:04:03 +0000471// X86 Instruction Format Definitions.
Evan Chengaed7c722005-12-17 01:24:02 +0000472//
473
Evan Chengc64a1a92007-07-31 08:04:03 +0000474include "X86InstrFormats.td"
Chris Lattner1cca5e32003-08-03 21:54:21 +0000475
Alkis Evlogimenos5ab29b52004-02-28 22:02:05 +0000476//===----------------------------------------------------------------------===//
Chris Lattner54379062011-04-17 21:38:24 +0000477// Pattern fragments.
Chris Lattnerf124d5e2005-11-18 01:04:42 +0000478//
Evan Chengd9558e02006-01-06 00:43:03 +0000479
480// X86 specific condition code. These correspond to CondCode in
Nate Begeman9a225302007-05-06 04:00:55 +0000481// X86InstrInfo.h. They must be kept in synch.
Dan Gohman653456c2009-01-07 00:15:08 +0000482def X86_COND_A : PatLeaf<(i8 0)>; // alt. COND_NBE
483def X86_COND_AE : PatLeaf<(i8 1)>; // alt. COND_NC
484def X86_COND_B : PatLeaf<(i8 2)>; // alt. COND_C
485def X86_COND_BE : PatLeaf<(i8 3)>; // alt. COND_NA
486def X86_COND_E : PatLeaf<(i8 4)>; // alt. COND_Z
487def X86_COND_G : PatLeaf<(i8 5)>; // alt. COND_NLE
488def X86_COND_GE : PatLeaf<(i8 6)>; // alt. COND_NL
489def X86_COND_L : PatLeaf<(i8 7)>; // alt. COND_NGE
490def X86_COND_LE : PatLeaf<(i8 8)>; // alt. COND_NG
491def X86_COND_NE : PatLeaf<(i8 9)>; // alt. COND_NZ
Evan Chengd9558e02006-01-06 00:43:03 +0000492def X86_COND_NO : PatLeaf<(i8 10)>;
Dan Gohman653456c2009-01-07 00:15:08 +0000493def X86_COND_NP : PatLeaf<(i8 11)>; // alt. COND_PO
Evan Chengd9558e02006-01-06 00:43:03 +0000494def X86_COND_NS : PatLeaf<(i8 12)>;
Dan Gohman653456c2009-01-07 00:15:08 +0000495def X86_COND_O : PatLeaf<(i8 13)>;
496def X86_COND_P : PatLeaf<(i8 14)>; // alt. COND_PE
497def X86_COND_S : PatLeaf<(i8 15)>;
Evan Chengd9558e02006-01-06 00:43:03 +0000498
Chris Lattner202a7a12011-04-18 06:36:55 +0000499let FastIselShouldIgnore = 1 in { // FastIsel should ignore all simm8 instrs.
Nick Lewycky52a83992011-04-20 03:19:42 +0000500 def i16immSExt8 : ImmLeaf<i16, [{ return Imm == (int8_t)Imm; }]>;
501 def i32immSExt8 : ImmLeaf<i32, [{ return Imm == (int8_t)Imm; }]>;
502 def i64immSExt8 : ImmLeaf<i64, [{ return Imm == (int8_t)Imm; }]>;
Chris Lattner202a7a12011-04-18 06:36:55 +0000503}
504
Chris Lattner5662bc92011-04-17 22:12:55 +0000505def i64immSExt32 : ImmLeaf<i64, [{ return Imm == (int32_t)Imm; }]>;
Chris Lattner7ed13912011-04-17 22:05:17 +0000506
507
Chris Lattner5662bc92011-04-17 22:12:55 +0000508// i64immZExt32 predicate - True if the 64-bit immediate fits in a 32-bit
509// unsigned field.
510def i64immZExt32 : ImmLeaf<i64, [{ return (uint64_t)Imm == (uint32_t)Imm; }]>;
Chris Lattner7ed13912011-04-17 22:05:17 +0000511
Chris Lattner5662bc92011-04-17 22:12:55 +0000512def i64immZExt32SExt8 : ImmLeaf<i64, [{
513 return (uint64_t)Imm == (uint32_t)Imm && (int32_t)Imm == (int8_t)Imm;
Rafael Espindoladba81cf2010-10-13 13:31:20 +0000514}]>;
515
Evan Cheng605c4152005-12-13 01:57:51 +0000516// Helper fragments for loads.
Evan Chengb6564432008-05-13 18:59:59 +0000517// It's always safe to treat a anyext i16 load as a i32 load if the i16 is
518// known to be 32-bit aligned or better. Ditto for i8 to i16.
Dan Gohman33586292008-10-15 06:50:19 +0000519def loadi16 : PatFrag<(ops node:$ptr), (i16 (unindexedload node:$ptr)), [{
Dan Gohman67ca6be2008-08-20 15:24:22 +0000520 LoadSDNode *LD = cast<LoadSDNode>(N);
Dan Gohman67ca6be2008-08-20 15:24:22 +0000521 ISD::LoadExtType ExtType = LD->getExtensionType();
522 if (ExtType == ISD::NON_EXTLOAD)
523 return true;
524 if (ExtType == ISD::EXTLOAD)
525 return LD->getAlignment() >= 2 && !LD->isVolatile();
Evan Chengfa7fd332008-05-13 00:54:02 +0000526 return false;
527}]>;
528
Chris Lattnerf85eff72010-03-03 01:52:59 +0000529def loadi16_anyext : PatFrag<(ops node:$ptr), (i32 (unindexedload node:$ptr)),[{
Evan Chengca57f782008-09-24 23:27:55 +0000530 LoadSDNode *LD = cast<LoadSDNode>(N);
Evan Chengca57f782008-09-24 23:27:55 +0000531 ISD::LoadExtType ExtType = LD->getExtensionType();
532 if (ExtType == ISD::EXTLOAD)
533 return LD->getAlignment() >= 2 && !LD->isVolatile();
534 return false;
535}]>;
536
Dan Gohman33586292008-10-15 06:50:19 +0000537def loadi32 : PatFrag<(ops node:$ptr), (i32 (unindexedload node:$ptr)), [{
Dan Gohman67ca6be2008-08-20 15:24:22 +0000538 LoadSDNode *LD = cast<LoadSDNode>(N);
Dan Gohman67ca6be2008-08-20 15:24:22 +0000539 ISD::LoadExtType ExtType = LD->getExtensionType();
540 if (ExtType == ISD::NON_EXTLOAD)
541 return true;
542 if (ExtType == ISD::EXTLOAD)
543 return LD->getAlignment() >= 4 && !LD->isVolatile();
Evan Chengfa7fd332008-05-13 00:54:02 +0000544 return false;
545}]>;
546
Chris Lattnerb86faa12010-09-21 22:07:31 +0000547def loadi8 : PatFrag<(ops node:$ptr), (i8 (load node:$ptr))>;
548def loadi64 : PatFrag<(ops node:$ptr), (i64 (load node:$ptr))>;
549def loadf32 : PatFrag<(ops node:$ptr), (f32 (load node:$ptr))>;
550def loadf64 : PatFrag<(ops node:$ptr), (f64 (load node:$ptr))>;
551def loadf80 : PatFrag<(ops node:$ptr), (f80 (load node:$ptr))>;
Evan Cheng7a7e8372005-12-14 02:22:27 +0000552
Evan Cheng466685d2006-10-09 20:57:25 +0000553def sextloadi16i8 : PatFrag<(ops node:$ptr), (i16 (sextloadi8 node:$ptr))>;
554def sextloadi32i8 : PatFrag<(ops node:$ptr), (i32 (sextloadi8 node:$ptr))>;
555def sextloadi32i16 : PatFrag<(ops node:$ptr), (i32 (sextloadi16 node:$ptr))>;
Chris Lattner41efbfa2010-10-05 06:37:31 +0000556def sextloadi64i8 : PatFrag<(ops node:$ptr), (i64 (sextloadi8 node:$ptr))>;
557def sextloadi64i16 : PatFrag<(ops node:$ptr), (i64 (sextloadi16 node:$ptr))>;
558def sextloadi64i32 : PatFrag<(ops node:$ptr), (i64 (sextloadi32 node:$ptr))>;
Evan Cheng7a7e8372005-12-14 02:22:27 +0000559
Evan Cheng466685d2006-10-09 20:57:25 +0000560def zextloadi8i1 : PatFrag<(ops node:$ptr), (i8 (zextloadi1 node:$ptr))>;
561def zextloadi16i1 : PatFrag<(ops node:$ptr), (i16 (zextloadi1 node:$ptr))>;
562def zextloadi32i1 : PatFrag<(ops node:$ptr), (i32 (zextloadi1 node:$ptr))>;
563def zextloadi16i8 : PatFrag<(ops node:$ptr), (i16 (zextloadi8 node:$ptr))>;
564def zextloadi32i8 : PatFrag<(ops node:$ptr), (i32 (zextloadi8 node:$ptr))>;
565def zextloadi32i16 : PatFrag<(ops node:$ptr), (i32 (zextloadi16 node:$ptr))>;
Chris Lattner41efbfa2010-10-05 06:37:31 +0000566def zextloadi64i1 : PatFrag<(ops node:$ptr), (i64 (zextloadi1 node:$ptr))>;
567def zextloadi64i8 : PatFrag<(ops node:$ptr), (i64 (zextloadi8 node:$ptr))>;
568def zextloadi64i16 : PatFrag<(ops node:$ptr), (i64 (zextloadi16 node:$ptr))>;
569def zextloadi64i32 : PatFrag<(ops node:$ptr), (i64 (zextloadi32 node:$ptr))>;
Evan Cheng7a7e8372005-12-14 02:22:27 +0000570
Evan Cheng466685d2006-10-09 20:57:25 +0000571def extloadi8i1 : PatFrag<(ops node:$ptr), (i8 (extloadi1 node:$ptr))>;
572def extloadi16i1 : PatFrag<(ops node:$ptr), (i16 (extloadi1 node:$ptr))>;
573def extloadi32i1 : PatFrag<(ops node:$ptr), (i32 (extloadi1 node:$ptr))>;
574def extloadi16i8 : PatFrag<(ops node:$ptr), (i16 (extloadi8 node:$ptr))>;
575def extloadi32i8 : PatFrag<(ops node:$ptr), (i32 (extloadi8 node:$ptr))>;
576def extloadi32i16 : PatFrag<(ops node:$ptr), (i32 (extloadi16 node:$ptr))>;
Chris Lattner41efbfa2010-10-05 06:37:31 +0000577def extloadi64i1 : PatFrag<(ops node:$ptr), (i64 (extloadi1 node:$ptr))>;
578def extloadi64i8 : PatFrag<(ops node:$ptr), (i64 (extloadi8 node:$ptr))>;
579def extloadi64i16 : PatFrag<(ops node:$ptr), (i64 (extloadi16 node:$ptr))>;
580def extloadi64i32 : PatFrag<(ops node:$ptr), (i64 (extloadi32 node:$ptr))>;
Evan Cheng747a90d2006-02-21 02:24:38 +0000581
Chris Lattnerce2bcc82008-02-19 17:37:35 +0000582
583// An 'and' node with a single use.
584def and_su : PatFrag<(ops node:$lhs, node:$rhs), (and node:$lhs, node:$rhs), [{
Evan Cheng07b7ea12008-03-04 00:40:35 +0000585 return N->hasOneUse();
Chris Lattnerce2bcc82008-02-19 17:37:35 +0000586}]>;
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000587// An 'srl' node with a single use.
588def srl_su : PatFrag<(ops node:$lhs, node:$rhs), (srl node:$lhs, node:$rhs), [{
589 return N->hasOneUse();
590}]>;
591// An 'trunc' node with a single use.
592def trunc_su : PatFrag<(ops node:$src), (trunc node:$src), [{
593 return N->hasOneUse();
594}]>;
Chris Lattnerce2bcc82008-02-19 17:37:35 +0000595
Chris Lattnerf124d5e2005-11-18 01:04:42 +0000596//===----------------------------------------------------------------------===//
Chris Lattner434c7cb2010-10-05 05:32:15 +0000597// Instruction list.
Chris Lattner1cca5e32003-08-03 21:54:21 +0000598//
599
Evan Cheng4a460802006-01-11 00:33:36 +0000600// Nop
Sean Callanan74e52102009-07-23 23:39:34 +0000601let neverHasSideEffects = 1 in {
Chris Lattnerba7e7562008-01-10 07:59:24 +0000602 def NOOP : I<0x90, RawFrm, (outs), (ins), "nop", []>;
Sean Callanan108934c2009-12-18 00:01:26 +0000603 def NOOPW : I<0x1f, MRM0m, (outs), (ins i16mem:$zero),
604 "nop{w}\t$zero", []>, TB, OpSize;
Sean Callanan74e52102009-07-23 23:39:34 +0000605 def NOOPL : I<0x1f, MRM0m, (outs), (ins i32mem:$zero),
Sean Callanan108934c2009-12-18 00:01:26 +0000606 "nop{l}\t$zero", []>, TB;
Sean Callanan74e52102009-07-23 23:39:34 +0000607}
Evan Cheng4a460802006-01-11 00:33:36 +0000608
Chris Lattner1cca5e32003-08-03 21:54:21 +0000609
Sean Callanan8d708542009-09-16 02:57:13 +0000610// Constructing a stack frame.
Chris Lattner40cc3f82010-09-17 18:02:29 +0000611def ENTER : Ii16<0xC8, RawFrmImm8, (outs), (ins i16imm:$len, i8imm:$lvl),
612 "enter\t$len, $lvl", []>;
Sean Callanan8d708542009-09-16 02:57:13 +0000613
Chris Lattnerba7e7562008-01-10 07:59:24 +0000614let Defs = [EBP, ESP], Uses = [EBP, ESP], mayLoad = 1, neverHasSideEffects=1 in
Chris Lattner30bf2d82004-08-10 20:17:41 +0000615def LEAVE : I<0xC9, RawFrm,
Daniel Dunbardf4c47b2010-07-19 07:21:01 +0000616 (outs), (ins), "leave", []>, Requires<[In32BitMode]>;
Evan Cheng071a2792007-09-11 19:55:27 +0000617
Chris Lattner5673e1d2010-10-05 06:41:40 +0000618let Defs = [RBP,RSP], Uses = [RBP,RSP], mayLoad = 1, neverHasSideEffects = 1 in
619def LEAVE64 : I<0xC9, RawFrm,
620 (outs), (ins), "leave", []>, Requires<[In64BitMode]>;
621
Chris Lattner87be16a2010-10-05 06:04:14 +0000622//===----------------------------------------------------------------------===//
Chris Lattner5673e1d2010-10-05 06:41:40 +0000623// Miscellaneous Instructions.
Chris Lattner87be16a2010-10-05 06:04:14 +0000624//
Sean Callanan108934c2009-12-18 00:01:26 +0000625
Chris Lattnerba7e7562008-01-10 07:59:24 +0000626let Defs = [ESP], Uses = [ESP], neverHasSideEffects=1 in {
Sean Callanan1f24e012009-09-10 18:29:13 +0000627let mayLoad = 1 in {
628def POP16r : I<0x58, AddRegFrm, (outs GR16:$reg), (ins), "pop{w}\t$reg", []>,
629 OpSize;
630def POP32r : I<0x58, AddRegFrm, (outs GR32:$reg), (ins), "pop{l}\t$reg", []>;
631def POP16rmr: I<0x8F, MRM0r, (outs GR16:$reg), (ins), "pop{w}\t$reg", []>,
632 OpSize;
633def POP16rmm: I<0x8F, MRM0m, (outs i16mem:$dst), (ins), "pop{w}\t$dst", []>,
634 OpSize;
635def POP32rmr: I<0x8F, MRM0r, (outs GR32:$reg), (ins), "pop{l}\t$reg", []>;
636def POP32rmm: I<0x8F, MRM0m, (outs i32mem:$dst), (ins), "pop{l}\t$dst", []>;
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000637
638def POPF16 : I<0x9D, RawFrm, (outs), (ins), "popf{w}", []>, OpSize;
639def POPF32 : I<0x9D, RawFrm, (outs), (ins), "popf{l|d}", []>,
640 Requires<[In32BitMode]>;
Sean Callanan1f24e012009-09-10 18:29:13 +0000641}
Chris Lattner1cca5e32003-08-03 21:54:21 +0000642
Sean Callanan1f24e012009-09-10 18:29:13 +0000643let mayStore = 1 in {
644def PUSH16r : I<0x50, AddRegFrm, (outs), (ins GR16:$reg), "push{w}\t$reg",[]>,
645 OpSize;
Evan Cheng2f245ba2007-09-26 01:29:06 +0000646def PUSH32r : I<0x50, AddRegFrm, (outs), (ins GR32:$reg), "push{l}\t$reg",[]>;
Sean Callanan1f24e012009-09-10 18:29:13 +0000647def PUSH16rmr: I<0xFF, MRM6r, (outs), (ins GR16:$reg), "push{w}\t$reg",[]>,
648 OpSize;
649def PUSH16rmm: I<0xFF, MRM6m, (outs), (ins i16mem:$src), "push{w}\t$src",[]>,
650 OpSize;
651def PUSH32rmr: I<0xFF, MRM6r, (outs), (ins GR32:$reg), "push{l}\t$reg",[]>;
652def PUSH32rmm: I<0xFF, MRM6m, (outs), (ins i32mem:$src), "push{l}\t$src",[]>;
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +0000653
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000654def PUSHi8 : Ii8<0x6a, RawFrm, (outs), (ins i32i8imm:$imm),
Bill Wendling927788c2009-06-15 20:59:31 +0000655 "push{l}\t$imm", []>;
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000656def PUSHi16 : Ii16<0x68, RawFrm, (outs), (ins i16imm:$imm),
Kevin Enderby3c979b02010-05-03 20:45:05 +0000657 "push{w}\t$imm", []>, OpSize;
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000658def PUSHi32 : Ii32<0x68, RawFrm, (outs), (ins i32imm:$imm),
Bill Wendling927788c2009-06-15 20:59:31 +0000659 "push{l}\t$imm", []>;
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000660
Dan Gohmane5e4ff92010-05-20 16:16:00 +0000661def PUSHF16 : I<0x9C, RawFrm, (outs), (ins), "pushf{w}", []>, OpSize;
662def PUSHF32 : I<0x9C, RawFrm, (outs), (ins), "pushf{l|d}", []>,
663 Requires<[In32BitMode]>;
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000664
Sean Callanan108934c2009-12-18 00:01:26 +0000665}
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000666}
667
668let Defs = [RSP], Uses = [RSP], neverHasSideEffects=1 in {
669let mayLoad = 1 in {
670def POP64r : I<0x58, AddRegFrm,
671 (outs GR64:$reg), (ins), "pop{q}\t$reg", []>;
672def POP64rmr: I<0x8F, MRM0r, (outs GR64:$reg), (ins), "pop{q}\t$reg", []>;
673def POP64rmm: I<0x8F, MRM0m, (outs i64mem:$dst), (ins), "pop{q}\t$dst", []>;
674}
675let mayStore = 1 in {
676def PUSH64r : I<0x50, AddRegFrm,
677 (outs), (ins GR64:$reg), "push{q}\t$reg", []>;
678def PUSH64rmr: I<0xFF, MRM6r, (outs), (ins GR64:$reg), "push{q}\t$reg", []>;
679def PUSH64rmm: I<0xFF, MRM6m, (outs), (ins i64mem:$src), "push{q}\t$src", []>;
680}
681}
682
683let Defs = [RSP], Uses = [RSP], neverHasSideEffects = 1, mayStore = 1 in {
Kevin Enderbyd521f2d2011-07-06 17:23:46 +0000684def PUSH64i8 : Ii8<0x6a, RawFrm, (outs), (ins i64i8imm:$imm),
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000685 "push{q}\t$imm", []>;
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000686def PUSH64i16 : Ii16<0x68, RawFrm, (outs), (ins i16imm:$imm),
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000687 "push{q}\t$imm", []>;
688def PUSH64i32 : Ii32<0x68, RawFrm, (outs), (ins i64i32imm:$imm),
689 "push{q}\t$imm", []>;
690}
691
692let Defs = [RSP, EFLAGS], Uses = [RSP], mayLoad = 1, neverHasSideEffects=1 in
693def POPF64 : I<0x9D, RawFrm, (outs), (ins), "popfq", []>,
694 Requires<[In64BitMode]>;
695let Defs = [RSP], Uses = [RSP, EFLAGS], mayStore = 1, neverHasSideEffects=1 in
696def PUSHF64 : I<0x9C, RawFrm, (outs), (ins), "pushfq", []>,
697 Requires<[In64BitMode]>;
698
699
Evan Cheng2f245ba2007-09-26 01:29:06 +0000700
Nico Weber50b9efc2010-06-23 20:00:58 +0000701let Defs = [EDI, ESI, EBP, EBX, EDX, ECX, EAX, ESP], Uses = [ESP],
702 mayLoad=1, neverHasSideEffects=1 in {
703def POPA32 : I<0x61, RawFrm, (outs), (ins), "popa{l}", []>,
704 Requires<[In32BitMode]>;
705}
706let Defs = [ESP], Uses = [EDI, ESI, EBP, EBX, EDX, ECX, EAX, ESP],
707 mayStore=1, neverHasSideEffects=1 in {
708def PUSHA32 : I<0x60, RawFrm, (outs), (ins), "pusha{l}", []>,
709 Requires<[In32BitMode]>;
710}
711
Chris Lattner8917cd32010-10-05 06:52:26 +0000712let Constraints = "$src = $dst" in { // GR32 = bswap GR32
713def BSWAP32r : I<0xC8, AddRegFrm,
714 (outs GR32:$dst), (ins GR32:$src),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000715 "bswap{l}\t$dst",
Chris Lattner8917cd32010-10-05 06:52:26 +0000716 [(set GR32:$dst, (bswap GR32:$src))]>, TB;
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000717
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000718def BSWAP64r : RI<0xC8, AddRegFrm, (outs GR64:$dst), (ins GR64:$src),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000719 "bswap{q}\t$dst",
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000720 [(set GR64:$dst, (bswap GR64:$src))]>, TB;
Chris Lattner8917cd32010-10-05 06:52:26 +0000721} // Constraints = "$src = $dst"
Chris Lattner1cca5e32003-08-03 21:54:21 +0000722
Evan Cheng18efe262007-12-14 02:13:44 +0000723// Bit scan instructions.
724let Defs = [EFLAGS] in {
Evan Chengfd9e4732007-12-14 18:49:43 +0000725def BSF16rr : I<0xBC, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src),
Dan Gohman1a8001e2007-12-14 15:10:00 +0000726 "bsf{w}\t{$src, $dst|$dst, $src}",
Kevin Enderby9ac72822010-04-28 23:20:40 +0000727 [(set GR16:$dst, EFLAGS, (X86bsf GR16:$src))]>, TB, OpSize;
Evan Cheng18efe262007-12-14 02:13:44 +0000728def BSF16rm : I<0xBC, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
Dan Gohman1a8001e2007-12-14 15:10:00 +0000729 "bsf{w}\t{$src, $dst|$dst, $src}",
Kevin Enderby9ac72822010-04-28 23:20:40 +0000730 [(set GR16:$dst, EFLAGS, (X86bsf (loadi16 addr:$src)))]>, TB,
731 OpSize;
Evan Chengfd9e4732007-12-14 18:49:43 +0000732def BSF32rr : I<0xBC, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
Dan Gohman1a8001e2007-12-14 15:10:00 +0000733 "bsf{l}\t{$src, $dst|$dst, $src}",
Chris Lattnerd486d772010-03-28 05:07:17 +0000734 [(set GR32:$dst, EFLAGS, (X86bsf GR32:$src))]>, TB;
Evan Cheng18efe262007-12-14 02:13:44 +0000735def BSF32rm : I<0xBC, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
Dan Gohman1a8001e2007-12-14 15:10:00 +0000736 "bsf{l}\t{$src, $dst|$dst, $src}",
Chris Lattnerd486d772010-03-28 05:07:17 +0000737 [(set GR32:$dst, EFLAGS, (X86bsf (loadi32 addr:$src)))]>, TB;
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000738def BSF64rr : RI<0xBC, MRMSrcReg, (outs GR64:$dst), (ins GR64:$src),
739 "bsf{q}\t{$src, $dst|$dst, $src}",
740 [(set GR64:$dst, EFLAGS, (X86bsf GR64:$src))]>, TB;
741def BSF64rm : RI<0xBC, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
742 "bsf{q}\t{$src, $dst|$dst, $src}",
743 [(set GR64:$dst, EFLAGS, (X86bsf (loadi64 addr:$src)))]>, TB;
Evan Cheng18efe262007-12-14 02:13:44 +0000744
Evan Chengfd9e4732007-12-14 18:49:43 +0000745def BSR16rr : I<0xBD, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src),
Dan Gohman1a8001e2007-12-14 15:10:00 +0000746 "bsr{w}\t{$src, $dst|$dst, $src}",
Kevin Enderby9ac72822010-04-28 23:20:40 +0000747 [(set GR16:$dst, EFLAGS, (X86bsr GR16:$src))]>, TB, OpSize;
Evan Cheng18efe262007-12-14 02:13:44 +0000748def BSR16rm : I<0xBD, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
Dan Gohman1a8001e2007-12-14 15:10:00 +0000749 "bsr{w}\t{$src, $dst|$dst, $src}",
Kevin Enderby9ac72822010-04-28 23:20:40 +0000750 [(set GR16:$dst, EFLAGS, (X86bsr (loadi16 addr:$src)))]>, TB,
751 OpSize;
Evan Chengfd9e4732007-12-14 18:49:43 +0000752def BSR32rr : I<0xBD, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
Dan Gohman1a8001e2007-12-14 15:10:00 +0000753 "bsr{l}\t{$src, $dst|$dst, $src}",
Chris Lattnerd486d772010-03-28 05:07:17 +0000754 [(set GR32:$dst, EFLAGS, (X86bsr GR32:$src))]>, TB;
Evan Cheng18efe262007-12-14 02:13:44 +0000755def BSR32rm : I<0xBD, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
Dan Gohman1a8001e2007-12-14 15:10:00 +0000756 "bsr{l}\t{$src, $dst|$dst, $src}",
Chris Lattnerd486d772010-03-28 05:07:17 +0000757 [(set GR32:$dst, EFLAGS, (X86bsr (loadi32 addr:$src)))]>, TB;
Chris Lattnerd8cc2722010-10-05 06:47:35 +0000758def BSR64rr : RI<0xBD, MRMSrcReg, (outs GR64:$dst), (ins GR64:$src),
759 "bsr{q}\t{$src, $dst|$dst, $src}",
760 [(set GR64:$dst, EFLAGS, (X86bsr GR64:$src))]>, TB;
761def BSR64rm : RI<0xBD, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
762 "bsr{q}\t{$src, $dst|$dst, $src}",
763 [(set GR64:$dst, EFLAGS, (X86bsr (loadi64 addr:$src)))]>, TB;
Evan Cheng18efe262007-12-14 02:13:44 +0000764} // Defs = [EFLAGS]
765
Chris Lattner915e5e52004-02-12 17:53:22 +0000766
Kevin Enderby12ce0de2010-02-03 21:04:42 +0000767// These uses the DF flag in the EFLAGS register to inc or dec EDI and ESI
768let Defs = [EDI,ESI], Uses = [EDI,ESI,EFLAGS] in {
769def MOVSB : I<0xA4, RawFrm, (outs), (ins), "{movsb}", []>;
770def MOVSW : I<0xA5, RawFrm, (outs), (ins), "{movsw}", []>, OpSize;
771def MOVSD : I<0xA5, RawFrm, (outs), (ins), "{movsl|movsd}", []>;
Chris Lattnerd3f033d2010-10-05 06:27:48 +0000772def MOVSQ : RI<0xA5, RawFrm, (outs), (ins), "movsq", []>;
Kevin Enderby12ce0de2010-02-03 21:04:42 +0000773}
774
Kevin Enderby12ce0de2010-02-03 21:04:42 +0000775// These uses the DF flag in the EFLAGS register to inc or dec EDI and ESI
776let Defs = [EDI], Uses = [AL,EDI,EFLAGS] in
777def STOSB : I<0xAA, RawFrm, (outs), (ins), "{stosb}", []>;
778let Defs = [EDI], Uses = [AX,EDI,EFLAGS] in
779def STOSW : I<0xAB, RawFrm, (outs), (ins), "{stosw}", []>, OpSize;
780let Defs = [EDI], Uses = [EAX,EDI,EFLAGS] in
781def STOSD : I<0xAB, RawFrm, (outs), (ins), "{stosl|stosd}", []>;
Chris Lattnerd3f033d2010-10-05 06:27:48 +0000782let Defs = [RCX,RDI], Uses = [RAX,RCX,RDI,EFLAGS] in
783def STOSQ : RI<0xAB, RawFrm, (outs), (ins), "stosq", []>;
Kevin Enderby12ce0de2010-02-03 21:04:42 +0000784
Sean Callanana82e4652009-09-12 00:37:19 +0000785def SCAS8 : I<0xAE, RawFrm, (outs), (ins), "scas{b}", []>;
786def SCAS16 : I<0xAF, RawFrm, (outs), (ins), "scas{w}", []>, OpSize;
787def SCAS32 : I<0xAF, RawFrm, (outs), (ins), "scas{l}", []>;
Chris Lattnerd3f033d2010-10-05 06:27:48 +0000788def SCAS64 : RI<0xAF, RawFrm, (outs), (ins), "scasq", []>;
Sean Callanana82e4652009-09-12 00:37:19 +0000789
Sean Callanan6f8f4622009-09-12 02:25:20 +0000790def CMPS8 : I<0xA6, RawFrm, (outs), (ins), "cmps{b}", []>;
791def CMPS16 : I<0xA7, RawFrm, (outs), (ins), "cmps{w}", []>, OpSize;
792def CMPS32 : I<0xA7, RawFrm, (outs), (ins), "cmps{l}", []>;
Chris Lattnerd3f033d2010-10-05 06:27:48 +0000793def CMPS64 : RI<0xA7, RawFrm, (outs), (ins), "cmpsq", []>;
Sean Callanan6f8f4622009-09-12 02:25:20 +0000794
Chris Lattner02552de2009-08-11 16:58:39 +0000795
Chris Lattner1cca5e32003-08-03 21:54:21 +0000796//===----------------------------------------------------------------------===//
Chris Lattner434c7cb2010-10-05 05:32:15 +0000797// Move Instructions.
Chris Lattner1cca5e32003-08-03 21:54:21 +0000798//
Chris Lattner748a2fe2010-10-05 20:49:15 +0000799
Chris Lattnerba7e7562008-01-10 07:59:24 +0000800let neverHasSideEffects = 1 in {
Evan Cheng64d80e32007-07-19 01:14:50 +0000801def MOV8rr : I<0x88, MRMDestReg, (outs GR8 :$dst), (ins GR8 :$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000802 "mov{b}\t{$src, $dst|$dst, $src}", []>;
Evan Cheng64d80e32007-07-19 01:14:50 +0000803def MOV16rr : I<0x89, MRMDestReg, (outs GR16:$dst), (ins GR16:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000804 "mov{w}\t{$src, $dst|$dst, $src}", []>, OpSize;
Evan Cheng64d80e32007-07-19 01:14:50 +0000805def MOV32rr : I<0x89, MRMDestReg, (outs GR32:$dst), (ins GR32:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000806 "mov{l}\t{$src, $dst|$dst, $src}", []>;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000807def MOV64rr : RI<0x89, MRMDestReg, (outs GR64:$dst), (ins GR64:$src),
808 "mov{q}\t{$src, $dst|$dst, $src}", []>;
Chris Lattnerba7e7562008-01-10 07:59:24 +0000809}
Evan Cheng359e9372008-06-18 08:13:07 +0000810let isReMaterializable = 1, isAsCheapAsAMove = 1 in {
Evan Cheng64d80e32007-07-19 01:14:50 +0000811def MOV8ri : Ii8 <0xB0, AddRegFrm, (outs GR8 :$dst), (ins i8imm :$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000812 "mov{b}\t{$src, $dst|$dst, $src}",
Evan Cheng069287d2006-05-16 07:21:53 +0000813 [(set GR8:$dst, imm:$src)]>;
Evan Cheng64d80e32007-07-19 01:14:50 +0000814def MOV16ri : Ii16<0xB8, AddRegFrm, (outs GR16:$dst), (ins i16imm:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000815 "mov{w}\t{$src, $dst|$dst, $src}",
Evan Cheng069287d2006-05-16 07:21:53 +0000816 [(set GR16:$dst, imm:$src)]>, OpSize;
Evan Cheng64d80e32007-07-19 01:14:50 +0000817def MOV32ri : Ii32<0xB8, AddRegFrm, (outs GR32:$dst), (ins i32imm:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000818 "mov{l}\t{$src, $dst|$dst, $src}",
Evan Cheng069287d2006-05-16 07:21:53 +0000819 [(set GR32:$dst, imm:$src)]>;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000820def MOV64ri : RIi64<0xB8, AddRegFrm, (outs GR64:$dst), (ins i64imm:$src),
821 "movabs{q}\t{$src, $dst|$dst, $src}",
822 [(set GR64:$dst, imm:$src)]>;
823def MOV64ri32 : RIi32<0xC7, MRM0r, (outs GR64:$dst), (ins i64i32imm:$src),
824 "mov{q}\t{$src, $dst|$dst, $src}",
825 [(set GR64:$dst, i64immSExt32:$src)]>;
Dan Gohmand45eddd2007-06-26 00:48:07 +0000826}
Kevin Enderby12ce0de2010-02-03 21:04:42 +0000827
Evan Cheng64d80e32007-07-19 01:14:50 +0000828def MOV8mi : Ii8 <0xC6, MRM0m, (outs), (ins i8mem :$dst, i8imm :$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000829 "mov{b}\t{$src, $dst|$dst, $src}",
Evan Chengb51a0592005-12-10 00:48:20 +0000830 [(store (i8 imm:$src), addr:$dst)]>;
Evan Cheng64d80e32007-07-19 01:14:50 +0000831def MOV16mi : Ii16<0xC7, MRM0m, (outs), (ins i16mem:$dst, i16imm:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000832 "mov{w}\t{$src, $dst|$dst, $src}",
Evan Chengb51a0592005-12-10 00:48:20 +0000833 [(store (i16 imm:$src), addr:$dst)]>, OpSize;
Evan Cheng64d80e32007-07-19 01:14:50 +0000834def MOV32mi : Ii32<0xC7, MRM0m, (outs), (ins i32mem:$dst, i32imm:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000835 "mov{l}\t{$src, $dst|$dst, $src}",
Evan Chengb51a0592005-12-10 00:48:20 +0000836 [(store (i32 imm:$src), addr:$dst)]>;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000837def MOV64mi32 : RIi32<0xC7, MRM0m, (outs), (ins i64mem:$dst, i64i32imm:$src),
838 "mov{q}\t{$src, $dst|$dst, $src}",
839 [(store i64immSExt32:$src, addr:$dst)]>;
Chris Lattner1cca5e32003-08-03 21:54:21 +0000840
Chris Lattnerb5505d02010-05-13 00:02:47 +0000841/// moffs8, moffs16 and moffs32 versions of moves. The immediate is a
842/// 32-bit offset from the PC. These are only valid in x86-32 mode.
Chris Lattner2745f6e2010-05-12 22:48:24 +0000843def MOV8o8a : Ii32 <0xA0, RawFrm, (outs), (ins offset8:$src),
Daniel Dunbar6c2c9a22010-07-19 06:14:44 +0000844 "mov{b}\t{$src, %al|%al, $src}", []>,
845 Requires<[In32BitMode]>;
Chris Lattner2745f6e2010-05-12 22:48:24 +0000846def MOV16o16a : Ii32 <0xA1, RawFrm, (outs), (ins offset16:$src),
Daniel Dunbar6c2c9a22010-07-19 06:14:44 +0000847 "mov{w}\t{$src, %ax|%ax, $src}", []>, OpSize,
848 Requires<[In32BitMode]>;
Sean Callanan108934c2009-12-18 00:01:26 +0000849def MOV32o32a : Ii32 <0xA1, RawFrm, (outs), (ins offset32:$src),
Daniel Dunbar6c2c9a22010-07-19 06:14:44 +0000850 "mov{l}\t{$src, %eax|%eax, $src}", []>,
851 Requires<[In32BitMode]>;
Chris Lattner2745f6e2010-05-12 22:48:24 +0000852def MOV8ao8 : Ii32 <0xA2, RawFrm, (outs offset8:$dst), (ins),
Daniel Dunbar6c2c9a22010-07-19 06:14:44 +0000853 "mov{b}\t{%al, $dst|$dst, %al}", []>,
854 Requires<[In32BitMode]>;
Chris Lattner2745f6e2010-05-12 22:48:24 +0000855def MOV16ao16 : Ii32 <0xA3, RawFrm, (outs offset16:$dst), (ins),
Daniel Dunbar6c2c9a22010-07-19 06:14:44 +0000856 "mov{w}\t{%ax, $dst|$dst, %ax}", []>, OpSize,
857 Requires<[In32BitMode]>;
Sean Callanan108934c2009-12-18 00:01:26 +0000858def MOV32ao32 : Ii32 <0xA3, RawFrm, (outs offset32:$dst), (ins),
Daniel Dunbar6c2c9a22010-07-19 06:14:44 +0000859 "mov{l}\t{%eax, $dst|$dst, %eax}", []>,
860 Requires<[In32BitMode]>;
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000861
Chris Lattner748a2fe2010-10-05 20:49:15 +0000862// FIXME: These definitions are utterly broken
863// Just leave them commented out for now because they're useless outside
864// of the large code model, and most compilers won't generate the instructions
865// in question.
866/*
867def MOV64o8a : RIi8<0xA0, RawFrm, (outs), (ins offset8:$src),
868 "mov{q}\t{$src, %rax|%rax, $src}", []>;
869def MOV64o64a : RIi32<0xA1, RawFrm, (outs), (ins offset64:$src),
870 "mov{q}\t{$src, %rax|%rax, $src}", []>;
871def MOV64ao8 : RIi8<0xA2, RawFrm, (outs offset8:$dst), (ins),
872 "mov{q}\t{%rax, $dst|$dst, %rax}", []>;
873def MOV64ao64 : RIi32<0xA3, RawFrm, (outs offset64:$dst), (ins),
874 "mov{q}\t{%rax, $dst|$dst, %rax}", []>;
875*/
876
Sean Callanan38fee0e2009-09-15 18:47:29 +0000877
Daniel Dunbardcbab9c2010-05-26 22:21:28 +0000878let isCodeGenOnly = 1 in {
Sean Callanan108934c2009-12-18 00:01:26 +0000879def MOV8rr_REV : I<0x8A, MRMSrcReg, (outs GR8:$dst), (ins GR8:$src),
880 "mov{b}\t{$src, $dst|$dst, $src}", []>;
881def MOV16rr_REV : I<0x8B, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src),
882 "mov{w}\t{$src, $dst|$dst, $src}", []>, OpSize;
883def MOV32rr_REV : I<0x8B, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
884 "mov{l}\t{$src, $dst|$dst, $src}", []>;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000885def MOV64rr_REV : RI<0x8B, MRMSrcReg, (outs GR64:$dst), (ins GR64:$src),
886 "mov{q}\t{$src, $dst|$dst, $src}", []>;
Daniel Dunbardcbab9c2010-05-26 22:21:28 +0000887}
Sean Callanan108934c2009-12-18 00:01:26 +0000888
Dan Gohmanbc9d98b2010-02-27 23:47:46 +0000889let canFoldAsLoad = 1, isReMaterializable = 1 in {
Evan Cheng64d80e32007-07-19 01:14:50 +0000890def MOV8rm : I<0x8A, MRMSrcMem, (outs GR8 :$dst), (ins i8mem :$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000891 "mov{b}\t{$src, $dst|$dst, $src}",
Chris Lattnerc2406f22009-04-10 00:16:23 +0000892 [(set GR8:$dst, (loadi8 addr:$src))]>;
Evan Cheng64d80e32007-07-19 01:14:50 +0000893def MOV16rm : I<0x8B, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000894 "mov{w}\t{$src, $dst|$dst, $src}",
Chris Lattnerc2406f22009-04-10 00:16:23 +0000895 [(set GR16:$dst, (loadi16 addr:$src))]>, OpSize;
Evan Cheng64d80e32007-07-19 01:14:50 +0000896def MOV32rm : I<0x8B, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000897 "mov{l}\t{$src, $dst|$dst, $src}",
Chris Lattnerc2406f22009-04-10 00:16:23 +0000898 [(set GR32:$dst, (loadi32 addr:$src))]>;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000899def MOV64rm : RI<0x8B, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
900 "mov{q}\t{$src, $dst|$dst, $src}",
901 [(set GR64:$dst, (load addr:$src))]>;
Evan Cheng2f394262007-08-30 05:49:43 +0000902}
Chris Lattner1cca5e32003-08-03 21:54:21 +0000903
Evan Cheng64d80e32007-07-19 01:14:50 +0000904def MOV8mr : I<0x88, MRMDestMem, (outs), (ins i8mem :$dst, GR8 :$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000905 "mov{b}\t{$src, $dst|$dst, $src}",
Evan Cheng069287d2006-05-16 07:21:53 +0000906 [(store GR8:$src, addr:$dst)]>;
Evan Cheng64d80e32007-07-19 01:14:50 +0000907def MOV16mr : I<0x89, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000908 "mov{w}\t{$src, $dst|$dst, $src}",
Evan Cheng069287d2006-05-16 07:21:53 +0000909 [(store GR16:$src, addr:$dst)]>, OpSize;
Evan Cheng64d80e32007-07-19 01:14:50 +0000910def MOV32mr : I<0x89, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
Dan Gohmanb1576f52007-07-31 20:11:57 +0000911 "mov{l}\t{$src, $dst|$dst, $src}",
Evan Cheng069287d2006-05-16 07:21:53 +0000912 [(store GR32:$src, addr:$dst)]>;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000913def MOV64mr : RI<0x89, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src),
914 "mov{q}\t{$src, $dst|$dst, $src}",
915 [(store GR64:$src, addr:$dst)]>;
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000916
Dan Gohman4af325d2009-04-27 16:41:36 +0000917// Versions of MOV8rr, MOV8mr, and MOV8rm that use i8mem_NOREX and GR8_NOREX so
918// that they can be used for copying and storing h registers, which can't be
919// encoded when a REX prefix is present.
Daniel Dunbarcf246b72010-07-19 06:14:49 +0000920let isCodeGenOnly = 1 in {
Dan Gohman6d9305c2009-04-15 00:04:23 +0000921let neverHasSideEffects = 1 in
Dan Gohmandf7dfc72009-04-15 19:48:57 +0000922def MOV8rr_NOREX : I<0x88, MRMDestReg,
923 (outs GR8_NOREX:$dst), (ins GR8_NOREX:$src),
Dan Gohman6d9305c2009-04-15 00:04:23 +0000924 "mov{b}\t{$src, $dst|$dst, $src} # NOREX", []>;
Evan Cheng8c147402009-04-30 00:58:57 +0000925let mayStore = 1 in
Dan Gohman6d9305c2009-04-15 00:04:23 +0000926def MOV8mr_NOREX : I<0x88, MRMDestMem,
927 (outs), (ins i8mem_NOREX:$dst, GR8_NOREX:$src),
928 "mov{b}\t{$src, $dst|$dst, $src} # NOREX", []>;
Evan Cheng8c147402009-04-30 00:58:57 +0000929let mayLoad = 1,
Dan Gohmanbc9d98b2010-02-27 23:47:46 +0000930 canFoldAsLoad = 1, isReMaterializable = 1 in
Dan Gohman4af325d2009-04-27 16:41:36 +0000931def MOV8rm_NOREX : I<0x8A, MRMSrcMem,
932 (outs GR8_NOREX:$dst), (ins i8mem_NOREX:$src),
933 "mov{b}\t{$src, $dst|$dst, $src} # NOREX", []>;
Daniel Dunbarcf246b72010-07-19 06:14:49 +0000934}
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000935
Evan Cheng0488db92007-09-25 01:57:46 +0000936
Alkis Evlogimenos5ab29b52004-02-28 22:02:05 +0000937// Condition code ops, incl. set if equal/not equal/...
Chris Lattnerba7e7562008-01-10 07:59:24 +0000938let Defs = [EFLAGS], Uses = [AH], neverHasSideEffects = 1 in
Evan Cheng071a2792007-09-11 19:55:27 +0000939def SAHF : I<0x9E, RawFrm, (outs), (ins), "sahf", []>; // flags = AH
Chris Lattnerba7e7562008-01-10 07:59:24 +0000940let Defs = [AH], Uses = [EFLAGS], neverHasSideEffects = 1 in
Evan Cheng071a2792007-09-11 19:55:27 +0000941def LAHF : I<0x9F, RawFrm, (outs), (ins), "lahf", []>; // AH = flags
Alkis Evlogimenos5ab29b52004-02-28 22:02:05 +0000942
Sean Callanana09caa52009-09-02 00:55:49 +0000943
Chris Lattner748a2fe2010-10-05 20:49:15 +0000944//===----------------------------------------------------------------------===//
945// Bit tests instructions: BT, BTS, BTR, BTC.
Daniel Dunbar1e8ee892010-03-09 22:50:40 +0000946
Dan Gohmanc7a37d42008-12-23 22:45:23 +0000947let Defs = [EFLAGS] in {
Dan Gohman0c89b7e2009-01-13 20:32:45 +0000948def BT16rr : I<0xA3, MRMDestReg, (outs), (ins GR16:$src1, GR16:$src2),
Dan Gohmanc7a37d42008-12-23 22:45:23 +0000949 "bt{w}\t{$src2, $src1|$src1, $src2}",
Chris Lattnere3486a42010-03-19 00:01:11 +0000950 [(set EFLAGS, (X86bt GR16:$src1, GR16:$src2))]>, OpSize, TB;
Dan Gohman0c89b7e2009-01-13 20:32:45 +0000951def BT32rr : I<0xA3, MRMDestReg, (outs), (ins GR32:$src1, GR32:$src2),
Dan Gohmanc7a37d42008-12-23 22:45:23 +0000952 "bt{l}\t{$src2, $src1|$src1, $src2}",
Chris Lattnere3486a42010-03-19 00:01:11 +0000953 [(set EFLAGS, (X86bt GR32:$src1, GR32:$src2))]>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000954def BT64rr : RI<0xA3, MRMDestReg, (outs), (ins GR64:$src1, GR64:$src2),
955 "bt{q}\t{$src2, $src1|$src1, $src2}",
956 [(set EFLAGS, (X86bt GR64:$src1, GR64:$src2))]>, TB;
Dan Gohmanf31408d2009-01-13 23:23:30 +0000957
958// Unlike with the register+register form, the memory+register form of the
959// bt instruction does not ignore the high bits of the index. From ISel's
Sean Callanan108934c2009-12-18 00:01:26 +0000960// perspective, this is pretty bizarre. Make these instructions disassembly
961// only for now.
962
963def BT16mr : I<0xA3, MRMDestMem, (outs), (ins i16mem:$src1, GR16:$src2),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000964 "bt{w}\t{$src2, $src1|$src1, $src2}",
Dan Gohmanf31408d2009-01-13 23:23:30 +0000965// [(X86bt (loadi16 addr:$src1), GR16:$src2),
Sean Callanan108934c2009-12-18 00:01:26 +0000966// (implicit EFLAGS)]
967 []
968 >, OpSize, TB, Requires<[FastBTMem]>;
969def BT32mr : I<0xA3, MRMDestMem, (outs), (ins i32mem:$src1, GR32:$src2),
Michael J. Spencer6e56b182010-10-20 23:40:27 +0000970 "bt{l}\t{$src2, $src1|$src1, $src2}",
Dan Gohmanf31408d2009-01-13 23:23:30 +0000971// [(X86bt (loadi32 addr:$src1), GR32:$src2),
Sean Callanan108934c2009-12-18 00:01:26 +0000972// (implicit EFLAGS)]
973 []
974 >, TB, Requires<[FastBTMem]>;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000975def BT64mr : RI<0xA3, MRMDestMem, (outs), (ins i64mem:$src1, GR64:$src2),
976 "bt{q}\t{$src2, $src1|$src1, $src2}",
977// [(X86bt (loadi64 addr:$src1), GR64:$src2),
978// (implicit EFLAGS)]
979 []
980 >, TB;
Dan Gohman4afe15b2009-01-13 20:33:23 +0000981
982def BT16ri8 : Ii8<0xBA, MRM4r, (outs), (ins GR16:$src1, i16i8imm:$src2),
983 "bt{w}\t{$src2, $src1|$src1, $src2}",
Chris Lattnere3486a42010-03-19 00:01:11 +0000984 [(set EFLAGS, (X86bt GR16:$src1, i16immSExt8:$src2))]>,
985 OpSize, TB;
Dan Gohman4afe15b2009-01-13 20:33:23 +0000986def BT32ri8 : Ii8<0xBA, MRM4r, (outs), (ins GR32:$src1, i32i8imm:$src2),
987 "bt{l}\t{$src2, $src1|$src1, $src2}",
Chris Lattnere3486a42010-03-19 00:01:11 +0000988 [(set EFLAGS, (X86bt GR32:$src1, i32immSExt8:$src2))]>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +0000989def BT64ri8 : RIi8<0xBA, MRM4r, (outs), (ins GR64:$src1, i64i8imm:$src2),
990 "bt{q}\t{$src2, $src1|$src1, $src2}",
991 [(set EFLAGS, (X86bt GR64:$src1, i64immSExt8:$src2))]>, TB;
992
Dan Gohman4afe15b2009-01-13 20:33:23 +0000993// Note that these instructions don't need FastBTMem because that
994// only applies when the other operand is in a register. When it's
995// an immediate, bt is still fast.
996def BT16mi8 : Ii8<0xBA, MRM4m, (outs), (ins i16mem:$src1, i16i8imm:$src2),
997 "bt{w}\t{$src2, $src1|$src1, $src2}",
Chris Lattnere3486a42010-03-19 00:01:11 +0000998 [(set EFLAGS, (X86bt (loadi16 addr:$src1), i16immSExt8:$src2))
999 ]>, OpSize, TB;
Dan Gohman4afe15b2009-01-13 20:33:23 +00001000def BT32mi8 : Ii8<0xBA, MRM4m, (outs), (ins i32mem:$src1, i32i8imm:$src2),
1001 "bt{l}\t{$src2, $src1|$src1, $src2}",
Chris Lattnere3486a42010-03-19 00:01:11 +00001002 [(set EFLAGS, (X86bt (loadi32 addr:$src1), i32immSExt8:$src2))
1003 ]>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001004def BT64mi8 : RIi8<0xBA, MRM4m, (outs), (ins i64mem:$src1, i64i8imm:$src2),
1005 "bt{q}\t{$src2, $src1|$src1, $src2}",
1006 [(set EFLAGS, (X86bt (loadi64 addr:$src1),
1007 i64immSExt8:$src2))]>, TB;
1008
Sean Callanan108934c2009-12-18 00:01:26 +00001009
1010def BTC16rr : I<0xBB, MRMDestReg, (outs), (ins GR16:$src1, GR16:$src2),
1011 "btc{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1012def BTC32rr : I<0xBB, MRMDestReg, (outs), (ins GR32:$src1, GR32:$src2),
1013 "btc{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001014def BTC64rr : RI<0xBB, MRMDestReg, (outs), (ins GR64:$src1, GR64:$src2),
1015 "btc{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001016def BTC16mr : I<0xBB, MRMDestMem, (outs), (ins i16mem:$src1, GR16:$src2),
1017 "btc{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1018def BTC32mr : I<0xBB, MRMDestMem, (outs), (ins i32mem:$src1, GR32:$src2),
1019 "btc{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001020def BTC64mr : RI<0xBB, MRMDestMem, (outs), (ins i64mem:$src1, GR64:$src2),
1021 "btc{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001022def BTC16ri8 : Ii8<0xBA, MRM7r, (outs), (ins GR16:$src1, i16i8imm:$src2),
1023 "btc{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1024def BTC32ri8 : Ii8<0xBA, MRM7r, (outs), (ins GR32:$src1, i32i8imm:$src2),
1025 "btc{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001026def BTC64ri8 : RIi8<0xBA, MRM7r, (outs), (ins GR64:$src1, i64i8imm:$src2),
1027 "btc{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001028def BTC16mi8 : Ii8<0xBA, MRM7m, (outs), (ins i16mem:$src1, i16i8imm:$src2),
1029 "btc{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1030def BTC32mi8 : Ii8<0xBA, MRM7m, (outs), (ins i32mem:$src1, i32i8imm:$src2),
1031 "btc{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001032def BTC64mi8 : RIi8<0xBA, MRM7m, (outs), (ins i64mem:$src1, i64i8imm:$src2),
1033 "btc{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001034
1035def BTR16rr : I<0xB3, MRMDestReg, (outs), (ins GR16:$src1, GR16:$src2),
1036 "btr{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1037def BTR32rr : I<0xB3, MRMDestReg, (outs), (ins GR32:$src1, GR32:$src2),
1038 "btr{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001039def BTR64rr : RI<0xB3, MRMDestReg, (outs), (ins GR64:$src1, GR64:$src2),
1040 "btr{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001041def BTR16mr : I<0xB3, MRMDestMem, (outs), (ins i16mem:$src1, GR16:$src2),
1042 "btr{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1043def BTR32mr : I<0xB3, MRMDestMem, (outs), (ins i32mem:$src1, GR32:$src2),
1044 "btr{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001045def BTR64mr : RI<0xB3, MRMDestMem, (outs), (ins i64mem:$src1, GR64:$src2),
1046 "btr{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001047def BTR16ri8 : Ii8<0xBA, MRM6r, (outs), (ins GR16:$src1, i16i8imm:$src2),
1048 "btr{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1049def BTR32ri8 : Ii8<0xBA, MRM6r, (outs), (ins GR32:$src1, i32i8imm:$src2),
1050 "btr{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001051def BTR64ri8 : RIi8<0xBA, MRM6r, (outs), (ins GR64:$src1, i64i8imm:$src2),
1052 "btr{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001053def BTR16mi8 : Ii8<0xBA, MRM6m, (outs), (ins i16mem:$src1, i16i8imm:$src2),
1054 "btr{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1055def BTR32mi8 : Ii8<0xBA, MRM6m, (outs), (ins i32mem:$src1, i32i8imm:$src2),
1056 "btr{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001057def BTR64mi8 : RIi8<0xBA, MRM6m, (outs), (ins i64mem:$src1, i64i8imm:$src2),
1058 "btr{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001059
1060def BTS16rr : I<0xAB, MRMDestReg, (outs), (ins GR16:$src1, GR16:$src2),
1061 "bts{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1062def BTS32rr : I<0xAB, MRMDestReg, (outs), (ins GR32:$src1, GR32:$src2),
1063 "bts{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001064def BTS64rr : RI<0xAB, MRMDestReg, (outs), (ins GR64:$src1, GR64:$src2),
1065 "bts{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001066def BTS16mr : I<0xAB, MRMDestMem, (outs), (ins i16mem:$src1, GR16:$src2),
1067 "bts{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1068def BTS32mr : I<0xAB, MRMDestMem, (outs), (ins i32mem:$src1, GR32:$src2),
1069 "bts{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001070def BTS64mr : RI<0xAB, MRMDestMem, (outs), (ins i64mem:$src1, GR64:$src2),
1071 "bts{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001072def BTS16ri8 : Ii8<0xBA, MRM5r, (outs), (ins GR16:$src1, i16i8imm:$src2),
1073 "bts{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1074def BTS32ri8 : Ii8<0xBA, MRM5r, (outs), (ins GR32:$src1, i32i8imm:$src2),
1075 "bts{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001076def BTS64ri8 : RIi8<0xBA, MRM5r, (outs), (ins GR64:$src1, i64i8imm:$src2),
1077 "bts{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001078def BTS16mi8 : Ii8<0xBA, MRM5m, (outs), (ins i16mem:$src1, i16i8imm:$src2),
1079 "bts{w}\t{$src2, $src1|$src1, $src2}", []>, OpSize, TB;
1080def BTS32mi8 : Ii8<0xBA, MRM5m, (outs), (ins i32mem:$src1, i32i8imm:$src2),
1081 "bts{l}\t{$src2, $src1|$src1, $src2}", []>, TB;
Chris Lattner748a2fe2010-10-05 20:49:15 +00001082def BTS64mi8 : RIi8<0xBA, MRM5m, (outs), (ins i64mem:$src1, i64i8imm:$src2),
1083 "bts{q}\t{$src2, $src1|$src1, $src2}", []>, TB;
Dan Gohmanc7a37d42008-12-23 22:45:23 +00001084} // Defs = [EFLAGS]
1085
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001086
1087//===----------------------------------------------------------------------===//
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001088// Atomic support
1089//
Andrew Lenharthea7da502008-03-01 13:37:02 +00001090
Eric Christopher9a9d2752010-07-22 02:48:34 +00001091
Evan Chengbb6939d2008-04-19 01:20:30 +00001092// Atomic swap. These are just normal xchg instructions. But since a memory
1093// operand is referenced, the atomicity is ensured.
Dan Gohman165660e2008-08-06 15:52:50 +00001094let Constraints = "$val = $dst" in {
Chris Lattner010496c2010-10-05 06:22:35 +00001095def XCHG8rm : I<0x86, MRMSrcMem, (outs GR8:$dst), (ins GR8:$val, i8mem:$ptr),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001096 "xchg{b}\t{$val, $ptr|$ptr, $val}",
Chris Lattner010496c2010-10-05 06:22:35 +00001097 [(set GR8:$dst, (atomic_swap_8 addr:$ptr, GR8:$val))]>;
Chris Lattner5bde7342010-11-06 08:20:59 +00001098def XCHG16rm : I<0x87, MRMSrcMem, (outs GR16:$dst),(ins GR16:$val, i16mem:$ptr),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001099 "xchg{w}\t{$val, $ptr|$ptr, $val}",
1100 [(set GR16:$dst, (atomic_swap_16 addr:$ptr, GR16:$val))]>,
Evan Chengbb6939d2008-04-19 01:20:30 +00001101 OpSize;
Chris Lattner5bde7342010-11-06 08:20:59 +00001102def XCHG32rm : I<0x87, MRMSrcMem, (outs GR32:$dst),(ins GR32:$val, i32mem:$ptr),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001103 "xchg{l}\t{$val, $ptr|$ptr, $val}",
Chris Lattner010496c2010-10-05 06:22:35 +00001104 [(set GR32:$dst, (atomic_swap_32 addr:$ptr, GR32:$val))]>;
Chris Lattner5bde7342010-11-06 08:20:59 +00001105def XCHG64rm : RI<0x87, MRMSrcMem, (outs GR64:$dst),(ins GR64:$val,i64mem:$ptr),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001106 "xchg{q}\t{$val, $ptr|$ptr, $val}",
Chris Lattner010496c2010-10-05 06:22:35 +00001107 [(set GR64:$dst, (atomic_swap_64 addr:$ptr, GR64:$val))]>;
Sean Callanan108934c2009-12-18 00:01:26 +00001108
Sean Callanan108934c2009-12-18 00:01:26 +00001109def XCHG8rr : I<0x86, MRMSrcReg, (outs GR8:$dst), (ins GR8:$val, GR8:$src),
1110 "xchg{b}\t{$val, $src|$src, $val}", []>;
Chris Lattner010496c2010-10-05 06:22:35 +00001111def XCHG16rr : I<0x87, MRMSrcReg, (outs GR16:$dst), (ins GR16:$val, GR16:$src),
1112 "xchg{w}\t{$val, $src|$src, $val}", []>, OpSize;
1113def XCHG32rr : I<0x87, MRMSrcReg, (outs GR32:$dst), (ins GR32:$val, GR32:$src),
1114 "xchg{l}\t{$val, $src|$src, $val}", []>;
1115def XCHG64rr : RI<0x87, MRMSrcReg, (outs GR64:$dst), (ins GR64:$val,GR64:$src),
1116 "xchg{q}\t{$val, $src|$src, $val}", []>;
Evan Chengbb6939d2008-04-19 01:20:30 +00001117}
1118
Sean Callanan108934c2009-12-18 00:01:26 +00001119def XCHG16ar : I<0x90, AddRegFrm, (outs), (ins GR16:$src),
1120 "xchg{w}\t{$src, %ax|%ax, $src}", []>, OpSize;
1121def XCHG32ar : I<0x90, AddRegFrm, (outs), (ins GR32:$src),
1122 "xchg{l}\t{$src, %eax|%eax, $src}", []>;
Chris Lattner010496c2010-10-05 06:22:35 +00001123def XCHG64ar : RI<0x90, AddRegFrm, (outs), (ins GR64:$src),
1124 "xchg{q}\t{$src, %rax|%rax, $src}", []>;
Sean Callanan108934c2009-12-18 00:01:26 +00001125
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001126
Andrew Lenharthea7da502008-03-01 13:37:02 +00001127
Sean Callanan108934c2009-12-18 00:01:26 +00001128def XADD8rr : I<0xC0, MRMDestReg, (outs GR8:$dst), (ins GR8:$src),
1129 "xadd{b}\t{$src, $dst|$dst, $src}", []>, TB;
1130def XADD16rr : I<0xC1, MRMDestReg, (outs GR16:$dst), (ins GR16:$src),
1131 "xadd{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
1132def XADD32rr : I<0xC1, MRMDestReg, (outs GR32:$dst), (ins GR32:$src),
1133 "xadd{l}\t{$src, $dst|$dst, $src}", []>, TB;
Chris Lattner010496c2010-10-05 06:22:35 +00001134def XADD64rr : RI<0xC1, MRMDestReg, (outs GR64:$dst), (ins GR64:$src),
1135 "xadd{q}\t{$src, $dst|$dst, $src}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001136
Dan Gohman7f357ec2010-05-14 16:34:55 +00001137let mayLoad = 1, mayStore = 1 in {
Sean Callanan108934c2009-12-18 00:01:26 +00001138def XADD8rm : I<0xC0, MRMDestMem, (outs), (ins i8mem:$dst, GR8:$src),
1139 "xadd{b}\t{$src, $dst|$dst, $src}", []>, TB;
1140def XADD16rm : I<0xC1, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src),
1141 "xadd{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
1142def XADD32rm : I<0xC1, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
1143 "xadd{l}\t{$src, $dst|$dst, $src}", []>, TB;
Chris Lattner010496c2010-10-05 06:22:35 +00001144def XADD64rm : RI<0xC1, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src),
1145 "xadd{q}\t{$src, $dst|$dst, $src}", []>, TB;
1146
Dan Gohman7f357ec2010-05-14 16:34:55 +00001147}
Sean Callanan108934c2009-12-18 00:01:26 +00001148
1149def CMPXCHG8rr : I<0xB0, MRMDestReg, (outs GR8:$dst), (ins GR8:$src),
1150 "cmpxchg{b}\t{$src, $dst|$dst, $src}", []>, TB;
1151def CMPXCHG16rr : I<0xB1, MRMDestReg, (outs GR16:$dst), (ins GR16:$src),
1152 "cmpxchg{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
1153def CMPXCHG32rr : I<0xB1, MRMDestReg, (outs GR32:$dst), (ins GR32:$src),
1154 "cmpxchg{l}\t{$src, $dst|$dst, $src}", []>, TB;
Chris Lattner010496c2010-10-05 06:22:35 +00001155def CMPXCHG64rr : RI<0xB1, MRMDestReg, (outs GR64:$dst), (ins GR64:$src),
1156 "cmpxchg{q}\t{$src, $dst|$dst, $src}", []>, TB;
Sean Callanan108934c2009-12-18 00:01:26 +00001157
Dan Gohman7f357ec2010-05-14 16:34:55 +00001158let mayLoad = 1, mayStore = 1 in {
Sean Callanan108934c2009-12-18 00:01:26 +00001159def CMPXCHG8rm : I<0xB0, MRMDestMem, (outs), (ins i8mem:$dst, GR8:$src),
1160 "cmpxchg{b}\t{$src, $dst|$dst, $src}", []>, TB;
1161def CMPXCHG16rm : I<0xB1, MRMDestMem, (outs), (ins i16mem:$dst, GR16:$src),
1162 "cmpxchg{w}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
1163def CMPXCHG32rm : I<0xB1, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
1164 "cmpxchg{l}\t{$src, $dst|$dst, $src}", []>, TB;
Chris Lattner010496c2010-10-05 06:22:35 +00001165def CMPXCHG64rm : RI<0xB1, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src),
1166 "cmpxchg{q}\t{$src, $dst|$dst, $src}", []>, TB;
Dan Gohman7f357ec2010-05-14 16:34:55 +00001167}
Sean Callanan108934c2009-12-18 00:01:26 +00001168
Evan Chengb093bd02010-01-08 01:29:19 +00001169let Defs = [EAX, EDX, EFLAGS], Uses = [EAX, EBX, ECX, EDX] in
Sean Callanan108934c2009-12-18 00:01:26 +00001170def CMPXCHG8B : I<0xC7, MRM1m, (outs), (ins i64mem:$dst),
1171 "cmpxchg8b\t$dst", []>, TB;
1172
Chris Lattner010496c2010-10-05 06:22:35 +00001173let Defs = [RAX, RDX, EFLAGS], Uses = [RAX, RBX, RCX, RDX] in
1174def CMPXCHG16B : RI<0xC7, MRM1m, (outs), (ins i128mem:$dst),
1175 "cmpxchg16b\t$dst", []>, TB;
Evan Cheng37b73872009-07-30 08:33:02 +00001176
Evan Cheng37b73872009-07-30 08:33:02 +00001177
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001178
Kevin Enderby12ce0de2010-02-03 21:04:42 +00001179// Lock instruction prefix
1180def LOCK_PREFIX : I<0xF0, RawFrm, (outs), (ins), "lock", []>;
1181
Rafael Espindolabeb68982010-11-23 11:23:24 +00001182// Rex64 instruction prefix
1183def REX64_PREFIX : I<0x48, RawFrm, (outs), (ins), "rex64", []>;
1184
Rafael Espindolabfd2d262010-11-27 20:29:45 +00001185// Data16 instruction prefix
1186def DATA16_PREFIX : I<0x66, RawFrm, (outs), (ins), "data16", []>;
1187
Kevin Enderby12ce0de2010-02-03 21:04:42 +00001188// Repeat string operation instruction prefixes
1189// These uses the DF flag in the EFLAGS register to inc or dec ECX
1190let Defs = [ECX], Uses = [ECX,EFLAGS] in {
1191// Repeat (used with INS, OUTS, MOVS, LODS and STOS)
1192def REP_PREFIX : I<0xF3, RawFrm, (outs), (ins), "rep", []>;
1193// Repeat while not equal (used with CMPS and SCAS)
1194def REPNE_PREFIX : I<0xF2, RawFrm, (outs), (ins), "repne", []>;
1195}
1196
Kevin Enderby12ce0de2010-02-03 21:04:42 +00001197
Sean Callanan9a86f102009-09-16 22:59:28 +00001198// String manipulation instructions
Sean Callanan9a86f102009-09-16 22:59:28 +00001199def LODSB : I<0xAC, RawFrm, (outs), (ins), "lodsb", []>;
1200def LODSW : I<0xAD, RawFrm, (outs), (ins), "lodsw", []>, OpSize;
Sean Callanan108934c2009-12-18 00:01:26 +00001201def LODSD : I<0xAD, RawFrm, (outs), (ins), "lods{l|d}", []>;
Chris Lattner010496c2010-10-05 06:22:35 +00001202def LODSQ : RI<0xAD, RawFrm, (outs), (ins), "lodsq", []>;
Sean Callanan108934c2009-12-18 00:01:26 +00001203
1204def OUTSB : I<0x6E, RawFrm, (outs), (ins), "outsb", []>;
1205def OUTSW : I<0x6F, RawFrm, (outs), (ins), "outsw", []>, OpSize;
1206def OUTSD : I<0x6F, RawFrm, (outs), (ins), "outs{l|d}", []>;
1207
Sean Callanan108934c2009-12-18 00:01:26 +00001208
1209// Flag instructions
Sean Callanan108934c2009-12-18 00:01:26 +00001210def CLC : I<0xF8, RawFrm, (outs), (ins), "clc", []>;
1211def STC : I<0xF9, RawFrm, (outs), (ins), "stc", []>;
1212def CLI : I<0xFA, RawFrm, (outs), (ins), "cli", []>;
1213def STI : I<0xFB, RawFrm, (outs), (ins), "sti", []>;
1214def CLD : I<0xFC, RawFrm, (outs), (ins), "cld", []>;
1215def STD : I<0xFD, RawFrm, (outs), (ins), "std", []>;
1216def CMC : I<0xF5, RawFrm, (outs), (ins), "cmc", []>;
1217
1218def CLTS : I<0x06, RawFrm, (outs), (ins), "clts", []>, TB;
1219
1220// Table lookup instructions
Sean Callanan108934c2009-12-18 00:01:26 +00001221def XLAT : I<0xD7, RawFrm, (outs), (ins), "xlatb", []>;
1222
Kevin Enderby7aef62f2010-10-18 17:04:36 +00001223// ASCII Adjust After Addition
1224// sets AL, AH and CF and AF of EFLAGS and uses AL and AF of EFLAGS
1225def AAA : I<0x37, RawFrm, (outs), (ins), "aaa", []>, Requires<[In32BitMode]>;
Evan Cheng510e4782006-01-09 23:10:28 +00001226
Kevin Enderby7aef62f2010-10-18 17:04:36 +00001227// ASCII Adjust AX Before Division
1228// sets AL, AH and EFLAGS and uses AL and AH
1229def AAD8i8 : Ii8<0xD5, RawFrm, (outs), (ins i8imm:$src),
1230 "aad\t$src", []>, Requires<[In32BitMode]>;
1231
1232// ASCII Adjust AX After Multiply
1233// sets AL, AH and EFLAGS and uses AL
1234def AAM8i8 : Ii8<0xD4, RawFrm, (outs), (ins i8imm:$src),
1235 "aam\t$src", []>, Requires<[In32BitMode]>;
1236
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001237// ASCII Adjust AL After Subtraction - sets
Kevin Enderby7aef62f2010-10-18 17:04:36 +00001238// sets AL, AH and CF and AF of EFLAGS and uses AL and AF of EFLAGS
1239def AAS : I<0x3F, RawFrm, (outs), (ins), "aas", []>, Requires<[In32BitMode]>;
1240
1241// Decimal Adjust AL after Addition
1242// sets AL, CF and AF of EFLAGS and uses AL, CF and AF of EFLAGS
1243def DAA : I<0x27, RawFrm, (outs), (ins), "daa", []>, Requires<[In32BitMode]>;
1244
1245// Decimal Adjust AL after Subtraction
1246// sets AL, CF and AF of EFLAGS and uses AL, CF and AF of EFLAGS
1247def DAS : I<0x2F, RawFrm, (outs), (ins), "das", []>, Requires<[In32BitMode]>;
1248
1249// Check Array Index Against Bounds
1250def BOUNDS16rm : I<0x62, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src),
1251 "bound\t{$src, $dst|$dst, $src}", []>, OpSize,
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001252 Requires<[In32BitMode]>;
Kevin Enderby7aef62f2010-10-18 17:04:36 +00001253def BOUNDS32rm : I<0x62, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
1254 "bound\t{$src, $dst|$dst, $src}", []>,
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001255 Requires<[In32BitMode]>;
Kevin Enderby7aef62f2010-10-18 17:04:36 +00001256
1257// Adjust RPL Field of Segment Selector
1258def ARPL16rr : I<0x63, MRMDestReg, (outs GR16:$src), (ins GR16:$dst),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001259 "arpl\t{$src, $dst|$dst, $src}", []>, Requires<[In32BitMode]>;
Kevin Enderby7aef62f2010-10-18 17:04:36 +00001260def ARPL16mr : I<0x63, MRMSrcMem, (outs GR16:$src), (ins i16mem:$dst),
Michael J. Spencer6e56b182010-10-20 23:40:27 +00001261 "arpl\t{$src, $dst|$dst, $src}", []>, Requires<[In32BitMode]>;
Dan Gohmane220c4b2009-09-18 19:59:53 +00001262
Bill Wendlingd350e022008-12-12 21:15:41 +00001263//===----------------------------------------------------------------------===//
Chris Lattner434c7cb2010-10-05 05:32:15 +00001264// Subsystems.
Evan Cheng4e4c71e2006-02-21 20:00:20 +00001265//===----------------------------------------------------------------------===//
1266
Chris Lattner6367cfc2010-10-05 16:39:12 +00001267include "X86InstrArithmetic.td"
Chris Lattner35649fc2010-10-05 06:33:16 +00001268include "X86InstrCMovSetCC.td"
Chris Lattner8917cd32010-10-05 06:52:26 +00001269include "X86InstrExtension.td"
Chris Lattner87be16a2010-10-05 06:04:14 +00001270include "X86InstrControl.td"
Chris Lattner5f58e842010-10-05 07:00:12 +00001271include "X86InstrShiftRotate.td"
Chris Lattner87be16a2010-10-05 06:04:14 +00001272
Chris Lattner6367cfc2010-10-05 16:39:12 +00001273// X87 Floating Point Stack.
1274include "X86InstrFPStack.td"
1275
David Greene51898d72010-02-09 23:52:19 +00001276// SIMD support (SSE, MMX and AVX)
David Greene51898d72010-02-09 23:52:19 +00001277include "X86InstrFragmentsSIMD.td"
1278
Bruno Cardoso Lopes6b7e9162010-07-23 00:54:35 +00001279// FMA - Fused Multiply-Add support (requires FMA)
Bruno Cardoso Lopes6b7e9162010-07-23 00:54:35 +00001280include "X86InstrFMA.td"
1281
Chris Lattner434c7cb2010-10-05 05:32:15 +00001282// SSE, MMX and 3DNow! vector support.
Evan Cheng4e4c71e2006-02-21 20:00:20 +00001283include "X86InstrSSE.td"
Evan Cheng80f54042008-04-25 18:19:54 +00001284include "X86InstrMMX.td"
Chris Lattner7330d972010-10-02 23:06:23 +00001285include "X86Instr3DNow.td"
1286
Chris Lattnerd071b832010-10-05 06:06:53 +00001287include "X86InstrVMX.td"
1288
Chris Lattner434c7cb2010-10-05 05:32:15 +00001289// System instructions.
1290include "X86InstrSystem.td"
Chris Lattner87be16a2010-10-05 06:04:14 +00001291
1292// Compiler Pseudo Instructions and Pat Patterns
1293include "X86InstrCompiler.td"
1294
Chris Lattner674c1dc2010-10-30 17:36:36 +00001295//===----------------------------------------------------------------------===//
Chris Lattnerefd8dad2010-11-01 23:07:52 +00001296// Assembler Mnemonic Aliases
Chris Lattner674c1dc2010-10-30 17:36:36 +00001297//===----------------------------------------------------------------------===//
1298
Chris Lattner99f53522010-11-01 21:06:34 +00001299def : MnemonicAlias<"call", "calll">, Requires<[In32BitMode]>;
1300def : MnemonicAlias<"call", "callq">, Requires<[In64BitMode]>;
1301
Chris Lattner674c1dc2010-10-30 17:36:36 +00001302def : MnemonicAlias<"cbw", "cbtw">;
1303def : MnemonicAlias<"cwd", "cwtd">;
1304def : MnemonicAlias<"cdq", "cltd">;
1305def : MnemonicAlias<"cwde", "cwtl">;
1306def : MnemonicAlias<"cdqe", "cltq">;
Chris Lattner8b260a72010-10-30 18:07:17 +00001307
Chris Lattner269f10b2010-11-12 18:54:56 +00001308// lret maps to lretl, it is not ambiguous with lretq.
1309def : MnemonicAlias<"lret", "lretl">;
1310
Joerg Sonnenberger97755a02011-02-17 23:36:39 +00001311def : MnemonicAlias<"leavel", "leave">, Requires<[In32BitMode]>;
1312def : MnemonicAlias<"leaveq", "leave">, Requires<[In64BitMode]>;
1313
Joerg Sonnenbergerd86f4822011-02-22 00:43:07 +00001314def : MnemonicAlias<"loopz", "loope">;
1315def : MnemonicAlias<"loopnz", "loopne">;
1316
Chris Lattner693173f2010-10-30 19:23:13 +00001317def : MnemonicAlias<"pop", "popl">, Requires<[In32BitMode]>;
1318def : MnemonicAlias<"pop", "popq">, Requires<[In64BitMode]>;
1319def : MnemonicAlias<"popf", "popfl">, Requires<[In32BitMode]>;
1320def : MnemonicAlias<"popf", "popfq">, Requires<[In64BitMode]>;
Chris Lattner8b260a72010-10-30 18:07:17 +00001321def : MnemonicAlias<"popfd", "popfl">;
1322
Chris Lattnera33b93f2010-10-31 18:43:46 +00001323// FIXME: This is wrong for "push reg". "push %bx" should turn into pushw in
1324// all modes. However: "push (addr)" and "push $42" should default to
1325// pushl/pushq depending on the current mode. Similar for "pop %bx"
Chris Lattner693173f2010-10-30 19:23:13 +00001326def : MnemonicAlias<"push", "pushl">, Requires<[In32BitMode]>;
1327def : MnemonicAlias<"push", "pushq">, Requires<[In64BitMode]>;
1328def : MnemonicAlias<"pushf", "pushfl">, Requires<[In32BitMode]>;
1329def : MnemonicAlias<"pushf", "pushfq">, Requires<[In64BitMode]>;
1330def : MnemonicAlias<"pushfd", "pushfl">;
1331
Chris Lattner6f96b082010-10-30 18:17:33 +00001332def : MnemonicAlias<"repe", "rep">;
1333def : MnemonicAlias<"repz", "rep">;
1334def : MnemonicAlias<"repnz", "repne">;
1335
Chris Lattner693173f2010-10-30 19:23:13 +00001336def : MnemonicAlias<"retl", "ret">, Requires<[In32BitMode]>;
1337def : MnemonicAlias<"retq", "ret">, Requires<[In64BitMode]>;
1338
Chris Lattnera17a9a02010-10-30 18:14:54 +00001339def : MnemonicAlias<"salb", "shlb">;
1340def : MnemonicAlias<"salw", "shlw">;
1341def : MnemonicAlias<"sall", "shll">;
1342def : MnemonicAlias<"salq", "shlq">;
1343
Chris Lattner674c1dc2010-10-30 17:36:36 +00001344def : MnemonicAlias<"smovb", "movsb">;
1345def : MnemonicAlias<"smovw", "movsw">;
1346def : MnemonicAlias<"smovl", "movsl">;
1347def : MnemonicAlias<"smovq", "movsq">;
1348
Chris Lattner674c1dc2010-10-30 17:36:36 +00001349def : MnemonicAlias<"ud2a", "ud2">;
1350def : MnemonicAlias<"verrw", "verr">;
1351
Chris Lattner99f53522010-11-01 21:06:34 +00001352// System instruction aliases.
1353def : MnemonicAlias<"iret", "iretl">;
1354def : MnemonicAlias<"sysret", "sysretl">;
1355
1356def : MnemonicAlias<"lgdtl", "lgdt">, Requires<[In32BitMode]>;
1357def : MnemonicAlias<"lgdtq", "lgdt">, Requires<[In64BitMode]>;
1358def : MnemonicAlias<"lidtl", "lidt">, Requires<[In32BitMode]>;
1359def : MnemonicAlias<"lidtq", "lidt">, Requires<[In64BitMode]>;
1360def : MnemonicAlias<"sgdtl", "sgdt">, Requires<[In32BitMode]>;
1361def : MnemonicAlias<"sgdtq", "sgdt">, Requires<[In64BitMode]>;
1362def : MnemonicAlias<"sidtl", "sidt">, Requires<[In32BitMode]>;
1363def : MnemonicAlias<"sidtq", "sidt">, Requires<[In64BitMode]>;
1364
Chris Lattner674c1dc2010-10-30 17:36:36 +00001365
Chris Lattner8b260a72010-10-30 18:07:17 +00001366// Floating point stack aliases.
1367def : MnemonicAlias<"fcmovz", "fcmove">;
1368def : MnemonicAlias<"fcmova", "fcmovnbe">;
1369def : MnemonicAlias<"fcmovnae", "fcmovb">;
1370def : MnemonicAlias<"fcmovna", "fcmovbe">;
1371def : MnemonicAlias<"fcmovae", "fcmovnb">;
Chris Lattnerdb287882010-11-06 21:37:06 +00001372def : MnemonicAlias<"fcomip", "fcompi">;
Chris Lattner8b260a72010-10-30 18:07:17 +00001373def : MnemonicAlias<"fildq", "fildll">;
1374def : MnemonicAlias<"fldcww", "fldcw">;
1375def : MnemonicAlias<"fnstcww", "fnstcw">;
1376def : MnemonicAlias<"fnstsww", "fnstsw">;
Chris Lattnerdb287882010-11-06 21:37:06 +00001377def : MnemonicAlias<"fucomip", "fucompi">;
Chris Lattner8b260a72010-10-30 18:07:17 +00001378def : MnemonicAlias<"fwait", "wait">;
1379
1380
Chris Lattner8cb441c2010-10-30 17:56:50 +00001381class CondCodeAlias<string Prefix,string Suffix, string OldCond, string NewCond>
1382 : MnemonicAlias<!strconcat(Prefix, OldCond, Suffix),
1383 !strconcat(Prefix, NewCond, Suffix)>;
Chris Lattnerb69fc282010-10-30 17:51:45 +00001384
1385/// IntegerCondCodeMnemonicAlias - This multiclass defines a bunch of
1386/// MnemonicAlias's that canonicalize the condition code in a mnemonic, for
1387/// example "setz" -> "sete".
Chris Lattner8cb441c2010-10-30 17:56:50 +00001388multiclass IntegerCondCodeMnemonicAlias<string Prefix, string Suffix> {
1389 def C : CondCodeAlias<Prefix, Suffix, "c", "b">; // setc -> setb
1390 def Z : CondCodeAlias<Prefix, Suffix, "z" , "e">; // setz -> sete
1391 def NA : CondCodeAlias<Prefix, Suffix, "na", "be">; // setna -> setbe
1392 def NB : CondCodeAlias<Prefix, Suffix, "nb", "ae">; // setnb -> setae
1393 def NC : CondCodeAlias<Prefix, Suffix, "nc", "ae">; // setnc -> setae
1394 def NG : CondCodeAlias<Prefix, Suffix, "ng", "le">; // setng -> setle
1395 def NL : CondCodeAlias<Prefix, Suffix, "nl", "ge">; // setnl -> setge
1396 def NZ : CondCodeAlias<Prefix, Suffix, "nz", "ne">; // setnz -> setne
1397 def PE : CondCodeAlias<Prefix, Suffix, "pe", "p">; // setpe -> setp
1398 def PO : CondCodeAlias<Prefix, Suffix, "po", "np">; // setpo -> setnp
Chris Lattnerb69fc282010-10-30 17:51:45 +00001399
Chris Lattner8cb441c2010-10-30 17:56:50 +00001400 def NAE : CondCodeAlias<Prefix, Suffix, "nae", "b">; // setnae -> setb
1401 def NBE : CondCodeAlias<Prefix, Suffix, "nbe", "a">; // setnbe -> seta
1402 def NGE : CondCodeAlias<Prefix, Suffix, "nge", "l">; // setnge -> setl
1403 def NLE : CondCodeAlias<Prefix, Suffix, "nle", "g">; // setnle -> setg
Chris Lattnerb69fc282010-10-30 17:51:45 +00001404}
1405
1406// Aliases for set<CC>
Chris Lattner8cb441c2010-10-30 17:56:50 +00001407defm : IntegerCondCodeMnemonicAlias<"set", "">;
Chris Lattnerb69fc282010-10-30 17:51:45 +00001408// Aliases for j<CC>
Chris Lattner8cb441c2010-10-30 17:56:50 +00001409defm : IntegerCondCodeMnemonicAlias<"j", "">;
1410// Aliases for cmov<CC>{w,l,q}
1411defm : IntegerCondCodeMnemonicAlias<"cmov", "w">;
1412defm : IntegerCondCodeMnemonicAlias<"cmov", "l">;
1413defm : IntegerCondCodeMnemonicAlias<"cmov", "q">;
Chris Lattner674c1dc2010-10-30 17:36:36 +00001414
Chris Lattnerefd8dad2010-11-01 23:07:52 +00001415
1416//===----------------------------------------------------------------------===//
1417// Assembler Instruction Aliases
1418//===----------------------------------------------------------------------===//
1419
Chris Lattner98c870f2010-11-06 19:25:43 +00001420// aad/aam default to base 10 if no operand is specified.
1421def : InstAlias<"aad", (AAD8i8 10)>;
1422def : InstAlias<"aam", (AAM8i8 10)>;
1423
Chris Lattner824a9072011-02-19 21:06:36 +00001424// Disambiguate the mem/imm form of bt-without-a-suffix as btl.
1425def : InstAlias<"bt $imm, $mem", (BT32mi8 i32mem:$mem, i32i8imm:$imm)>;
1426
Chris Lattner41409852010-11-06 07:31:43 +00001427// clr aliases.
1428def : InstAlias<"clrb $reg", (XOR8rr GR8 :$reg, GR8 :$reg)>;
1429def : InstAlias<"clrw $reg", (XOR16rr GR16:$reg, GR16:$reg)>;
1430def : InstAlias<"clrl $reg", (XOR32rr GR32:$reg, GR32:$reg)>;
1431def : InstAlias<"clrq $reg", (XOR64rr GR64:$reg, GR64:$reg)>;
1432
Chris Lattner689cf3c2010-11-06 22:41:18 +00001433// div and idiv aliases for explicit A register.
1434def : InstAlias<"divb $src, %al", (DIV8r GR8 :$src)>;
1435def : InstAlias<"divw $src, %ax", (DIV16r GR16:$src)>;
1436def : InstAlias<"divl $src, %eax", (DIV32r GR32:$src)>;
1437def : InstAlias<"divq $src, %rax", (DIV64r GR64:$src)>;
1438def : InstAlias<"divb $src, %al", (DIV8m i8mem :$src)>;
1439def : InstAlias<"divw $src, %ax", (DIV16m i16mem:$src)>;
1440def : InstAlias<"divl $src, %eax", (DIV32m i32mem:$src)>;
1441def : InstAlias<"divq $src, %rax", (DIV64m i64mem:$src)>;
1442def : InstAlias<"idivb $src, %al", (IDIV8r GR8 :$src)>;
1443def : InstAlias<"idivw $src, %ax", (IDIV16r GR16:$src)>;
1444def : InstAlias<"idivl $src, %eax", (IDIV32r GR32:$src)>;
1445def : InstAlias<"idivq $src, %rax", (IDIV64r GR64:$src)>;
1446def : InstAlias<"idivb $src, %al", (IDIV8m i8mem :$src)>;
1447def : InstAlias<"idivw $src, %ax", (IDIV16m i16mem:$src)>;
1448def : InstAlias<"idivl $src, %eax", (IDIV32m i32mem:$src)>;
1449def : InstAlias<"idivq $src, %rax", (IDIV64m i64mem:$src)>;
1450
1451
1452
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001453// Various unary fpstack operations default to operating on on ST1.
1454// For example, "fxch" -> "fxch %st(1)"
Bill Wendlingc6df9882011-04-14 01:11:51 +00001455def : InstAlias<"faddp", (ADD_FPrST0 ST1), 0>;
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001456def : InstAlias<"fsubp", (SUBR_FPrST0 ST1)>;
1457def : InstAlias<"fsubrp", (SUB_FPrST0 ST1)>;
1458def : InstAlias<"fmulp", (MUL_FPrST0 ST1)>;
1459def : InstAlias<"fdivp", (DIVR_FPrST0 ST1)>;
1460def : InstAlias<"fdivrp", (DIV_FPrST0 ST1)>;
1461def : InstAlias<"fxch", (XCH_F ST1)>;
1462def : InstAlias<"fcomi", (COM_FIr ST1)>;
Chris Lattnerdb287882010-11-06 21:37:06 +00001463def : InstAlias<"fcompi", (COM_FIPr ST1)>;
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001464def : InstAlias<"fucom", (UCOM_Fr ST1)>;
1465def : InstAlias<"fucomp", (UCOM_FPr ST1)>;
1466def : InstAlias<"fucomi", (UCOM_FIr ST1)>;
Chris Lattnerdb287882010-11-06 21:37:06 +00001467def : InstAlias<"fucompi", (UCOM_FIPr ST1)>;
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001468
1469// Handle fmul/fadd/fsub/fdiv instructions with explicitly written st(0) op.
1470// For example, "fadd %st(4), %st(0)" -> "fadd %st(4)". We also disambiguate
1471// instructions like "fadd %st(0), %st(0)" as "fadd %st(0)" for consistency with
1472// gas.
Bill Wendlingc6df9882011-04-14 01:11:51 +00001473multiclass FpUnaryAlias<string Mnemonic, Instruction Inst, bit EmitAlias = 1> {
1474 def : InstAlias<!strconcat(Mnemonic, " $op, %st(0)"),
1475 (Inst RST:$op), EmitAlias>;
1476 def : InstAlias<!strconcat(Mnemonic, " %st(0), %st(0)"),
1477 (Inst ST0), EmitAlias>;
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001478}
1479
1480defm : FpUnaryAlias<"fadd", ADD_FST0r>;
Bill Wendlingc6df9882011-04-14 01:11:51 +00001481defm : FpUnaryAlias<"faddp", ADD_FPrST0, 0>;
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001482defm : FpUnaryAlias<"fsub", SUB_FST0r>;
1483defm : FpUnaryAlias<"fsubp", SUBR_FPrST0>;
1484defm : FpUnaryAlias<"fsubr", SUBR_FST0r>;
1485defm : FpUnaryAlias<"fsubrp", SUB_FPrST0>;
1486defm : FpUnaryAlias<"fmul", MUL_FST0r>;
1487defm : FpUnaryAlias<"fmulp", MUL_FPrST0>;
1488defm : FpUnaryAlias<"fdiv", DIV_FST0r>;
1489defm : FpUnaryAlias<"fdivp", DIVR_FPrST0>;
1490defm : FpUnaryAlias<"fdivr", DIVR_FST0r>;
1491defm : FpUnaryAlias<"fdivrp", DIV_FPrST0>;
Bill Wendlingc6df9882011-04-14 01:11:51 +00001492defm : FpUnaryAlias<"fcomi", COM_FIr, 0>;
1493defm : FpUnaryAlias<"fucomi", UCOM_FIr, 0>;
Chris Lattnerdb287882010-11-06 21:37:06 +00001494defm : FpUnaryAlias<"fcompi", COM_FIPr>;
1495defm : FpUnaryAlias<"fucompi", UCOM_FIPr>;
Chris Lattner235705b2010-11-06 20:55:09 +00001496
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001497
1498// Handle "f{mulp,addp} st(0), $op" the same as "f{mulp,addp} $op", since they
Nick Lewyckyc00210c2010-12-30 22:10:49 +00001499// commute. We also allow fdiv[r]p/fsubrp even though they don't commute,
1500// solely because gas supports it.
Bill Wendlingc6df9882011-04-14 01:11:51 +00001501def : InstAlias<"faddp %st(0), $op", (ADD_FPrST0 RST:$op), 0>;
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001502def : InstAlias<"fmulp %st(0), $op", (MUL_FPrST0 RST:$op)>;
Chris Lattner92f920c2011-05-22 22:31:57 +00001503def : InstAlias<"fsubp %st(0), $op", (SUBR_FPrST0 RST:$op)>;
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001504def : InstAlias<"fsubrp %st(0), $op", (SUB_FPrST0 RST:$op)>;
Nick Lewyckyc00210c2010-12-30 22:10:49 +00001505def : InstAlias<"fdivp %st(0), $op", (DIVR_FPrST0 RST:$op)>;
Chris Lattner3af0e7d2010-11-06 20:47:38 +00001506def : InstAlias<"fdivrp %st(0), $op", (DIV_FPrST0 RST:$op)>;
Chris Lattner90fd7972010-11-06 19:57:21 +00001507
Nick Lewyckyc00210c2010-12-30 22:10:49 +00001508// We accept "fnstsw %eax" even though it only writes %ax.
Chris Lattnerdea546b2010-11-06 18:58:32 +00001509def : InstAlias<"fnstsw %eax", (FNSTSW8r)>;
1510def : InstAlias<"fnstsw %al" , (FNSTSW8r)>;
1511def : InstAlias<"fnstsw" , (FNSTSW8r)>;
1512
Chris Lattner8caa2902010-11-06 07:48:45 +00001513// lcall and ljmp aliases. This seems to be an odd mapping in 64-bit mode, but
1514// this is compatible with what GAS does.
1515def : InstAlias<"lcall $seg, $off", (FARCALL32i i32imm:$off, i16imm:$seg)>;
1516def : InstAlias<"ljmp $seg, $off", (FARJMP32i i32imm:$off, i16imm:$seg)>;
1517def : InstAlias<"lcall *$dst", (FARCALL32m opaque48mem:$dst)>;
1518def : InstAlias<"ljmp *$dst", (FARJMP32m opaque48mem:$dst)>;
1519
Chris Lattner9c1dbc62010-11-06 18:44:26 +00001520// "imul <imm>, B" is an alias for "imul <imm>, B, B".
1521def : InstAlias<"imulw $imm, $r", (IMUL16rri GR16:$r, GR16:$r, i16imm:$imm)>;
1522def : InstAlias<"imulw $imm, $r", (IMUL16rri8 GR16:$r, GR16:$r, i16i8imm:$imm)>;
1523def : InstAlias<"imull $imm, $r", (IMUL32rri GR32:$r, GR32:$r, i32imm:$imm)>;
1524def : InstAlias<"imull $imm, $r", (IMUL32rri8 GR32:$r, GR32:$r, i32i8imm:$imm)>;
1525def : InstAlias<"imulq $imm, $r",(IMUL64rri32 GR64:$r, GR64:$r,i64i32imm:$imm)>;
1526def : InstAlias<"imulq $imm, $r", (IMUL64rri8 GR64:$r, GR64:$r, i64i8imm:$imm)>;
1527
Chris Lattner7e925cc2010-11-06 18:52:40 +00001528// inb %dx -> inb %al, %dx
1529def : InstAlias<"inb %dx", (IN8rr)>;
1530def : InstAlias<"inw %dx", (IN16rr)>;
1531def : InstAlias<"inl %dx", (IN32rr)>;
1532def : InstAlias<"inb $port", (IN8ri i8imm:$port)>;
Chris Lattnerdea546b2010-11-06 18:58:32 +00001533def : InstAlias<"inw $port", (IN16ri i8imm:$port)>;
Chris Lattner7e925cc2010-11-06 18:52:40 +00001534def : InstAlias<"inl $port", (IN32ri i8imm:$port)>;
1535
Chris Lattner9c1dbc62010-11-06 18:44:26 +00001536
Chris Lattner8caa2902010-11-06 07:48:45 +00001537// jmp and call aliases for lcall and ljmp. jmp $42,$5 -> ljmp
1538def : InstAlias<"call $seg, $off", (FARCALL32i i32imm:$off, i16imm:$seg)>;
1539def : InstAlias<"jmp $seg, $off", (FARJMP32i i32imm:$off, i16imm:$seg)>;
1540def : InstAlias<"callw $seg, $off", (FARCALL16i i16imm:$off, i16imm:$seg)>;
1541def : InstAlias<"jmpw $seg, $off", (FARJMP16i i16imm:$off, i16imm:$seg)>;
1542def : InstAlias<"calll $seg, $off", (FARCALL32i i32imm:$off, i16imm:$seg)>;
1543def : InstAlias<"jmpl $seg, $off", (FARJMP32i i32imm:$off, i16imm:$seg)>;
1544
Chris Lattner04a75ab2010-11-06 22:35:34 +00001545// Force mov without a suffix with a segment and mem to prefer the 'l' form of
1546// the move. All segment/mem forms are equivalent, this has the shortest
1547// encoding.
1548def : InstAlias<"mov $mem, $seg", (MOV32sm SEGMENT_REG:$seg, i32mem:$mem)>;
1549def : InstAlias<"mov $seg, $mem", (MOV32ms i32mem:$mem, SEGMENT_REG:$seg)>;
Chris Lattner8caa2902010-11-06 07:48:45 +00001550
Chris Lattner9c1dbc62010-11-06 18:44:26 +00001551// Match 'movq <largeimm>, <reg>' as an alias for movabsq.
1552def : InstAlias<"movq $imm, $reg", (MOV64ri GR64:$reg, i64imm:$imm)>;
1553
Chris Lattnercbf5d742010-11-21 08:18:57 +00001554// Match 'movq GR64, MMX' as an alias for movd.
Bill Wendlingeef965f2011-04-13 23:36:21 +00001555def : InstAlias<"movq $src, $dst",
Bill Wendlingc6df9882011-04-14 01:11:51 +00001556 (MMX_MOVD64to64rr VR64:$dst, GR64:$src), 0>;
Bill Wendlingeef965f2011-04-13 23:36:21 +00001557def : InstAlias<"movq $src, $dst",
Bill Wendlingc6df9882011-04-14 01:11:51 +00001558 (MMX_MOVD64from64rr GR64:$dst, VR64:$src), 0>;
Chris Lattnercbf5d742010-11-21 08:18:57 +00001559
Chris Lattner8caa2902010-11-06 07:48:45 +00001560// movsd with no operands (as opposed to the SSE scalar move of a double) is an
1561// alias for movsl. (as in rep; movsd)
1562def : InstAlias<"movsd", (MOVSD)>;
1563
Chris Lattnerefd8dad2010-11-01 23:07:52 +00001564// movsx aliases
Stuart Hastings0e29ed02011-05-20 19:04:40 +00001565def : InstAlias<"movsx $src, $dst", (MOVSX16rr8 GR16:$dst, GR8:$src), 0>;
1566def : InstAlias<"movsx $src, $dst", (MOVSX16rm8 GR16:$dst, i8mem:$src), 0>;
Bill Wendlingd336de32011-04-14 01:46:37 +00001567def : InstAlias<"movsx $src, $dst", (MOVSX32rr8 GR32:$dst, GR8:$src), 0>;
1568def : InstAlias<"movsx $src, $dst", (MOVSX32rr16 GR32:$dst, GR16:$src), 0>;
1569def : InstAlias<"movsx $src, $dst", (MOVSX64rr8 GR64:$dst, GR8:$src), 0>;
1570def : InstAlias<"movsx $src, $dst", (MOVSX64rr16 GR64:$dst, GR16:$src), 0>;
1571def : InstAlias<"movsx $src, $dst", (MOVSX64rr32 GR64:$dst, GR32:$src), 0>;
Chris Lattnerefd8dad2010-11-01 23:07:52 +00001572
1573// movzx aliases
Stuart Hastings0e29ed02011-05-20 19:04:40 +00001574def : InstAlias<"movzx $src, $dst", (MOVZX16rr8 GR16:$dst, GR8:$src), 0>;
1575def : InstAlias<"movzx $src, $dst", (MOVZX16rm8 GR16:$dst, i8mem:$src), 0>;
Bill Wendlingd336de32011-04-14 01:46:37 +00001576def : InstAlias<"movzx $src, $dst", (MOVZX32rr8 GR32:$dst, GR8:$src), 0>;
1577def : InstAlias<"movzx $src, $dst", (MOVZX32rr16 GR32:$dst, GR16:$src), 0>;
1578def : InstAlias<"movzx $src, $dst", (MOVZX64rr8_Q GR64:$dst, GR8:$src), 0>;
1579def : InstAlias<"movzx $src, $dst", (MOVZX64rr16_Q GR64:$dst, GR16:$src), 0>;
Chris Lattnerefd8dad2010-11-01 23:07:52 +00001580// Note: No GR32->GR64 movzx form.
1581
Chris Lattner7e925cc2010-11-06 18:52:40 +00001582// outb %dx -> outb %al, %dx
1583def : InstAlias<"outb %dx", (OUT8rr)>;
1584def : InstAlias<"outw %dx", (OUT16rr)>;
1585def : InstAlias<"outl %dx", (OUT32rr)>;
1586def : InstAlias<"outb $port", (OUT8ir i8imm:$port)>;
1587def : InstAlias<"outw $port", (OUT16ir i8imm:$port)>;
1588def : InstAlias<"outl $port", (OUT32ir i8imm:$port)>;
1589
Chris Lattner9c1dbc62010-11-06 18:44:26 +00001590// 'sldt <mem>' can be encoded with either sldtw or sldtq with the same
1591// effect (both store to a 16-bit mem). Force to sldtw to avoid ambiguity
1592// errors, since its encoding is the most compact.
1593def : InstAlias<"sldt $mem", (SLDT16m i16mem:$mem)>;
1594
Chris Lattnerd5b2f1a2010-11-06 22:25:39 +00001595// shld/shrd op,op -> shld op, op, 1
1596def : InstAlias<"shldw $r1, $r2", (SHLD16rri8 GR16:$r1, GR16:$r2, 1)>;
1597def : InstAlias<"shldl $r1, $r2", (SHLD32rri8 GR32:$r1, GR32:$r2, 1)>;
1598def : InstAlias<"shldq $r1, $r2", (SHLD64rri8 GR64:$r1, GR64:$r2, 1)>;
1599def : InstAlias<"shrdw $r1, $r2", (SHRD16rri8 GR16:$r1, GR16:$r2, 1)>;
1600def : InstAlias<"shrdl $r1, $r2", (SHRD32rri8 GR32:$r1, GR32:$r2, 1)>;
1601def : InstAlias<"shrdq $r1, $r2", (SHRD64rri8 GR64:$r1, GR64:$r2, 1)>;
1602
1603def : InstAlias<"shldw $mem, $reg", (SHLD16mri8 i16mem:$mem, GR16:$reg, 1)>;
1604def : InstAlias<"shldl $mem, $reg", (SHLD32mri8 i32mem:$mem, GR32:$reg, 1)>;
1605def : InstAlias<"shldq $mem, $reg", (SHLD64mri8 i64mem:$mem, GR64:$reg, 1)>;
1606def : InstAlias<"shrdw $mem, $reg", (SHRD16mri8 i16mem:$mem, GR16:$reg, 1)>;
1607def : InstAlias<"shrdl $mem, $reg", (SHRD32mri8 i32mem:$mem, GR32:$reg, 1)>;
1608def : InstAlias<"shrdq $mem, $reg", (SHRD64mri8 i64mem:$mem, GR64:$reg, 1)>;
1609
1610/* FIXME: This is disabled because the asm matcher is currently incapable of
1611 * matching a fixed immediate like $1.
Chris Lattner17671512010-11-06 22:05:43 +00001612// "shl X, $1" is an alias for "shl X".
1613multiclass ShiftRotateByOneAlias<string Mnemonic, string Opc> {
Chris Lattner8c24b0c2010-11-06 21:23:40 +00001614 def : InstAlias<!strconcat(Mnemonic, "b $op, $$1"),
1615 (!cast<Instruction>(!strconcat(Opc, "8r1")) GR8:$op)>;
1616 def : InstAlias<!strconcat(Mnemonic, "w $op, $$1"),
1617 (!cast<Instruction>(!strconcat(Opc, "16r1")) GR16:$op)>;
1618 def : InstAlias<!strconcat(Mnemonic, "l $op, $$1"),
1619 (!cast<Instruction>(!strconcat(Opc, "32r1")) GR32:$op)>;
1620 def : InstAlias<!strconcat(Mnemonic, "q $op, $$1"),
1621 (!cast<Instruction>(!strconcat(Opc, "64r1")) GR64:$op)>;
1622 def : InstAlias<!strconcat(Mnemonic, "b $op, $$1"),
1623 (!cast<Instruction>(!strconcat(Opc, "8m1")) i8mem:$op)>;
1624 def : InstAlias<!strconcat(Mnemonic, "w $op, $$1"),
1625 (!cast<Instruction>(!strconcat(Opc, "16m1")) i16mem:$op)>;
1626 def : InstAlias<!strconcat(Mnemonic, "l $op, $$1"),
1627 (!cast<Instruction>(!strconcat(Opc, "32m1")) i32mem:$op)>;
1628 def : InstAlias<!strconcat(Mnemonic, "q $op, $$1"),
1629 (!cast<Instruction>(!strconcat(Opc, "64m1")) i64mem:$op)>;
1630}
1631
Chris Lattner17671512010-11-06 22:05:43 +00001632defm : ShiftRotateByOneAlias<"rcl", "RCL">;
1633defm : ShiftRotateByOneAlias<"rcr", "RCR">;
1634defm : ShiftRotateByOneAlias<"rol", "ROL">;
1635defm : ShiftRotateByOneAlias<"ror", "ROR">;
Chris Lattnerd5b2f1a2010-11-06 22:25:39 +00001636FIXME */
Chris Lattner8c24b0c2010-11-06 21:23:40 +00001637
Chris Lattner5bde7342010-11-06 08:20:59 +00001638// test: We accept "testX <reg>, <mem>" and "testX <mem>, <reg>" as synonyms.
1639def : InstAlias<"testb $val, $mem", (TEST8rm GR8 :$val, i8mem :$mem)>;
1640def : InstAlias<"testw $val, $mem", (TEST16rm GR16:$val, i16mem:$mem)>;
1641def : InstAlias<"testl $val, $mem", (TEST32rm GR32:$val, i32mem:$mem)>;
1642def : InstAlias<"testq $val, $mem", (TEST64rm GR64:$val, i64mem:$mem)>;
1643
1644// xchg: We accept "xchgX <reg>, <mem>" and "xchgX <mem>, <reg>" as synonyms.
1645def : InstAlias<"xchgb $mem, $val", (XCHG8rm GR8 :$val, i8mem :$mem)>;
1646def : InstAlias<"xchgw $mem, $val", (XCHG16rm GR16:$val, i16mem:$mem)>;
1647def : InstAlias<"xchgl $mem, $val", (XCHG32rm GR32:$val, i32mem:$mem)>;
1648def : InstAlias<"xchgq $mem, $val", (XCHG64rm GR64:$val, i64mem:$mem)>;