2003-08-03 21:54:21 +00:00
|
|
|
//===- X86InstrInfo.td - Describe the X86 Instruction Set -------*- C++ -*-===//
|
2003-10-21 15:17:13 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2003-08-03 21:54:21 +00:00
|
|
|
//
|
|
|
|
// This file describes the X86 instruction set, defining the instructions, and
|
|
|
|
// properties of the instructions which are needed for code generation, machine
|
|
|
|
// code emission, and analysis.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2005-12-17 01:24:02 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// X86 specific DAG Nodes.
|
|
|
|
//
|
|
|
|
|
2006-01-09 18:33:28 +00:00
|
|
|
def SDTIntShiftDOp: SDTypeProfile<1, 3,
|
|
|
|
[SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>,
|
|
|
|
SDTCisInt<0>, SDTCisInt<3>]>;
|
|
|
|
|
2006-01-26 00:29:36 +00:00
|
|
|
def SDTX86CmpTest : SDTypeProfile<0, 2, [SDTCisSameAs<0, 1>]>;
|
2005-12-17 01:24:02 +00:00
|
|
|
|
2006-01-26 00:29:36 +00:00
|
|
|
def SDTX86Cmov : SDTypeProfile<1, 3,
|
2005-12-17 01:24:02 +00:00
|
|
|
[SDTCisSameAs<0, 1>, SDTCisSameAs<1, 2>,
|
2006-01-26 00:29:36 +00:00
|
|
|
SDTCisVT<3, i8>]>;
|
2005-12-17 01:24:02 +00:00
|
|
|
|
2006-01-26 00:29:36 +00:00
|
|
|
def SDTX86BrCond : SDTypeProfile<0, 2,
|
|
|
|
[SDTCisVT<0, OtherVT>, SDTCisVT<1, i8>]>;
|
2005-12-17 01:24:02 +00:00
|
|
|
|
2006-01-26 00:29:36 +00:00
|
|
|
def SDTX86SetCC : SDTypeProfile<1, 1,
|
|
|
|
[SDTCisVT<0, i8>, SDTCisVT<1, i8>]>;
|
2005-12-21 20:21:51 +00:00
|
|
|
|
2006-01-06 00:43:03 +00:00
|
|
|
def SDTX86Ret : SDTypeProfile<0, 1, [SDTCisVT<0, i16>]>;
|
2005-12-19 23:12:38 +00:00
|
|
|
|
2006-01-09 18:33:28 +00:00
|
|
|
def SDT_X86CallSeqStart : SDTypeProfile<0, 1, [ SDTCisVT<0, i32> ]>;
|
|
|
|
def SDT_X86CallSeqEnd : SDTypeProfile<0, 2, [ SDTCisVT<0, i32>,
|
|
|
|
SDTCisVT<1, i32> ]>;
|
|
|
|
|
2006-09-08 06:48:29 +00:00
|
|
|
def SDT_X86Call : SDTypeProfile<0, 1, [SDTCisVT<0, iPTR>]>;
|
2006-01-09 18:33:28 +00:00
|
|
|
|
2006-01-11 22:15:48 +00:00
|
|
|
def SDTX86RepStr : SDTypeProfile<0, 1, [SDTCisVT<0, OtherVT>]>;
|
|
|
|
|
2006-01-09 18:33:28 +00:00
|
|
|
def SDTX86RdTsc : SDTypeProfile<0, 0, []>;
|
2005-12-21 02:39:21 +00:00
|
|
|
|
2006-02-25 10:02:21 +00:00
|
|
|
def SDTX86Wrapper : SDTypeProfile<1, 1, [SDTCisSameAs<0, 1>, SDTCisPtrTy<0>]>;
|
|
|
|
|
2006-01-09 18:33:28 +00:00
|
|
|
def X86shld : SDNode<"X86ISD::SHLD", SDTIntShiftDOp>;
|
|
|
|
def X86shrd : SDNode<"X86ISD::SHRD", SDTIntShiftDOp>;
|
2005-12-21 02:39:21 +00:00
|
|
|
|
2006-01-26 00:29:36 +00:00
|
|
|
def X86cmp : SDNode<"X86ISD::CMP" , SDTX86CmpTest,
|
2006-09-11 02:19:56 +00:00
|
|
|
[SDNPHasChain, SDNPOutFlag]>;
|
2005-12-21 02:39:21 +00:00
|
|
|
|
2006-01-09 18:33:28 +00:00
|
|
|
def X86cmov : SDNode<"X86ISD::CMOV", SDTX86Cmov,
|
2006-01-26 00:29:36 +00:00
|
|
|
[SDNPInFlag, SDNPOutFlag]>;
|
2006-01-09 18:33:28 +00:00
|
|
|
def X86brcond : SDNode<"X86ISD::BRCOND", SDTX86BrCond,
|
2006-01-26 00:29:36 +00:00
|
|
|
[SDNPHasChain, SDNPInFlag]>;
|
2006-01-12 08:27:59 +00:00
|
|
|
def X86setcc : SDNode<"X86ISD::SETCC", SDTX86SetCC,
|
2006-01-26 00:29:36 +00:00
|
|
|
[SDNPInFlag, SDNPOutFlag]>;
|
2005-12-21 02:39:21 +00:00
|
|
|
|
2006-01-09 18:33:28 +00:00
|
|
|
def X86retflag : SDNode<"X86ISD::RET_FLAG", SDTX86Ret,
|
|
|
|
[SDNPHasChain, SDNPOptInFlag]>;
|
2005-12-21 02:39:21 +00:00
|
|
|
|
2006-01-09 18:33:28 +00:00
|
|
|
def X86callseq_start :
|
|
|
|
SDNode<"ISD::CALLSEQ_START", SDT_X86CallSeqStart,
|
2006-08-11 09:03:33 +00:00
|
|
|
[SDNPHasChain, SDNPOutFlag]>;
|
2006-01-09 18:33:28 +00:00
|
|
|
def X86callseq_end :
|
|
|
|
SDNode<"ISD::CALLSEQ_END", SDT_X86CallSeqEnd,
|
2006-01-24 05:17:12 +00:00
|
|
|
[SDNPHasChain, SDNPInFlag, SDNPOutFlag]>;
|
2005-12-21 02:39:21 +00:00
|
|
|
|
2006-01-09 18:33:28 +00:00
|
|
|
def X86call : SDNode<"X86ISD::CALL", SDT_X86Call,
|
|
|
|
[SDNPHasChain, SDNPOutFlag, SDNPOptInFlag]>;
|
2005-12-17 01:24:02 +00:00
|
|
|
|
2006-05-20 01:40:16 +00:00
|
|
|
def X86tailcall: SDNode<"X86ISD::TAILCALL", SDT_X86Call,
|
2006-04-27 08:40:39 +00:00
|
|
|
[SDNPHasChain, SDNPOutFlag, SDNPOptInFlag]>;
|
|
|
|
|
2006-01-11 22:15:48 +00:00
|
|
|
def X86rep_stos: SDNode<"X86ISD::REP_STOS", SDTX86RepStr,
|
2006-03-07 23:34:23 +00:00
|
|
|
[SDNPHasChain, SDNPInFlag, SDNPOutFlag]>;
|
2006-01-11 22:15:48 +00:00
|
|
|
def X86rep_movs: SDNode<"X86ISD::REP_MOVS", SDTX86RepStr,
|
2006-03-07 23:34:23 +00:00
|
|
|
[SDNPHasChain, SDNPInFlag, SDNPOutFlag]>;
|
2006-01-11 22:15:48 +00:00
|
|
|
|
2006-01-09 18:33:28 +00:00
|
|
|
def X86rdtsc : SDNode<"X86ISD::RDTSC_DAG",SDTX86RdTsc,
|
|
|
|
[SDNPHasChain, SDNPOutFlag]>;
|
2006-01-05 00:27:02 +00:00
|
|
|
|
2006-02-25 10:02:21 +00:00
|
|
|
def X86Wrapper : SDNode<"X86ISD::Wrapper", SDTX86Wrapper>;
|
|
|
|
|
2005-12-17 01:24:02 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// X86 Operand Definitions.
|
|
|
|
//
|
|
|
|
|
2004-08-11 02:25:00 +00:00
|
|
|
// *mem - Operand definitions for the funky X86 addressing mode operands.
|
|
|
|
//
|
2006-05-17 21:21:41 +00:00
|
|
|
class X86MemOperand<string printMethod> : Operand<iPTR> {
|
2005-11-30 18:54:35 +00:00
|
|
|
let PrintMethod = printMethod;
|
2005-11-19 07:01:30 +00:00
|
|
|
let NumMIOperands = 4;
|
2006-09-08 06:48:29 +00:00
|
|
|
let MIOperandInfo = (ops ptr_rc, i8imm, ptr_rc, i32imm);
|
2004-08-11 02:25:00 +00:00
|
|
|
}
|
2005-11-30 18:54:35 +00:00
|
|
|
|
2005-12-17 19:47:05 +00:00
|
|
|
def i8mem : X86MemOperand<"printi8mem">;
|
|
|
|
def i16mem : X86MemOperand<"printi16mem">;
|
|
|
|
def i32mem : X86MemOperand<"printi32mem">;
|
|
|
|
def i64mem : X86MemOperand<"printi64mem">;
|
2006-02-22 02:26:30 +00:00
|
|
|
def i128mem : X86MemOperand<"printi128mem">;
|
2005-12-17 19:47:05 +00:00
|
|
|
def f32mem : X86MemOperand<"printf32mem">;
|
|
|
|
def f64mem : X86MemOperand<"printf64mem">;
|
2006-01-31 22:28:30 +00:00
|
|
|
def f128mem : X86MemOperand<"printf128mem">;
|
2005-11-30 18:54:35 +00:00
|
|
|
|
2006-09-08 06:48:29 +00:00
|
|
|
def lea32mem : Operand<i32> {
|
|
|
|
let PrintMethod = "printi32mem";
|
|
|
|
let NumMIOperands = 4;
|
|
|
|
let MIOperandInfo = (ops GR32, i8imm, GR32, i32imm);
|
|
|
|
}
|
|
|
|
|
2005-07-15 00:38:55 +00:00
|
|
|
def SSECC : Operand<i8> {
|
|
|
|
let PrintMethod = "printSSECC";
|
|
|
|
}
|
2004-08-11 02:25:00 +00:00
|
|
|
|
2006-02-18 00:15:05 +00:00
|
|
|
def piclabel: Operand<i32> {
|
|
|
|
let PrintMethod = "printPICLabel";
|
|
|
|
}
|
|
|
|
|
2005-11-18 01:04:42 +00:00
|
|
|
// A couple of more descriptive operand definitions.
|
|
|
|
// 16-bits but only 8 bits are significant.
|
|
|
|
def i16i8imm : Operand<i16>;
|
|
|
|
// 32-bits but only 8 bits are significant.
|
|
|
|
def i32i8imm : Operand<i32>;
|
|
|
|
|
2005-12-04 08:19:43 +00:00
|
|
|
// Branch targets have OtherVT type.
|
|
|
|
def brtarget : Operand<OtherVT>;
|
|
|
|
|
2005-12-17 01:24:02 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// X86 Complex Pattern Definitions.
|
|
|
|
//
|
|
|
|
|
2005-12-08 02:01:35 +00:00
|
|
|
// Define X86 specific addressing mode.
|
2006-10-11 21:03:53 +00:00
|
|
|
def addr : ComplexPattern<iPTR, 4, "SelectAddr", [], []>;
|
2006-09-08 06:48:29 +00:00
|
|
|
def lea32addr : ComplexPattern<i32, 4, "SelectLEAAddr",
|
2006-10-11 21:03:53 +00:00
|
|
|
[add, mul, shl, or, frameindex], []>;
|
2005-12-08 02:01:35 +00:00
|
|
|
|
2005-12-17 01:24:02 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// X86 Instruction Format Definitions.
|
|
|
|
//
|
|
|
|
|
2003-08-03 21:54:21 +00:00
|
|
|
// Format specifies the encoding used by the instruction. This is part of the
|
|
|
|
// ad-hoc solution used to emit machine instruction encodings by our machine
|
|
|
|
// code emitter.
|
2006-02-01 06:13:50 +00:00
|
|
|
class Format<bits<6> val> {
|
|
|
|
bits<6> Value = val;
|
2003-08-03 21:54:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
def Pseudo : Format<0>; def RawFrm : Format<1>;
|
|
|
|
def AddRegFrm : Format<2>; def MRMDestReg : Format<3>;
|
|
|
|
def MRMDestMem : Format<4>; def MRMSrcReg : Format<5>;
|
|
|
|
def MRMSrcMem : Format<6>;
|
2004-02-27 18:55:12 +00:00
|
|
|
def MRM0r : Format<16>; def MRM1r : Format<17>; def MRM2r : Format<18>;
|
|
|
|
def MRM3r : Format<19>; def MRM4r : Format<20>; def MRM5r : Format<21>;
|
|
|
|
def MRM6r : Format<22>; def MRM7r : Format<23>;
|
|
|
|
def MRM0m : Format<24>; def MRM1m : Format<25>; def MRM2m : Format<26>;
|
|
|
|
def MRM3m : Format<27>; def MRM4m : Format<28>; def MRM5m : Format<29>;
|
|
|
|
def MRM6m : Format<30>; def MRM7m : Format<31>;
|
2006-02-01 06:13:50 +00:00
|
|
|
def MRMInitReg : Format<32>;
|
2003-08-03 21:54:21 +00:00
|
|
|
|
2005-12-20 22:59:51 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// X86 Instruction Predicate Definitions.
|
2006-09-08 06:48:29 +00:00
|
|
|
def HasMMX : Predicate<"Subtarget->hasMMX()">;
|
|
|
|
def HasSSE1 : Predicate<"Subtarget->hasSSE1()">;
|
|
|
|
def HasSSE2 : Predicate<"Subtarget->hasSSE2()">;
|
|
|
|
def HasSSE3 : Predicate<"Subtarget->hasSSE3()">;
|
|
|
|
def FPStack : Predicate<"!Subtarget->hasSSE2()">;
|
|
|
|
def In32BitMode : Predicate<"!Subtarget->is64Bit()">;
|
|
|
|
def In64BitMode : Predicate<"Subtarget->is64Bit()">;
|
2005-12-20 22:59:51 +00:00
|
|
|
|
2005-12-17 01:24:02 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// X86 specific pattern fragments.
|
|
|
|
//
|
|
|
|
|
2004-02-28 22:02:05 +00:00
|
|
|
// ImmType - This specifies the immediate type used by an instruction. This is
|
2003-08-03 21:54:21 +00:00
|
|
|
// part of the ad-hoc solution used to emit machine instruction encodings by our
|
|
|
|
// machine code emitter.
|
2006-09-08 06:48:29 +00:00
|
|
|
class ImmType<bits<3> val> {
|
|
|
|
bits<3> Value = val;
|
2004-02-28 22:02:05 +00:00
|
|
|
}
|
|
|
|
def NoImm : ImmType<0>;
|
|
|
|
def Imm8 : ImmType<1>;
|
|
|
|
def Imm16 : ImmType<2>;
|
|
|
|
def Imm32 : ImmType<3>;
|
2006-09-08 06:48:29 +00:00
|
|
|
def Imm64 : ImmType<4>;
|
2004-02-28 22:02:05 +00:00
|
|
|
|
2003-08-03 21:54:21 +00:00
|
|
|
// FPFormat - This specifies what form this FP instruction has. This is used by
|
|
|
|
// the Floating-Point stackifier pass.
|
|
|
|
class FPFormat<bits<3> val> {
|
|
|
|
bits<3> Value = val;
|
|
|
|
}
|
|
|
|
def NotFP : FPFormat<0>;
|
|
|
|
def ZeroArgFP : FPFormat<1>;
|
|
|
|
def OneArgFP : FPFormat<2>;
|
|
|
|
def OneArgFPRW : FPFormat<3>;
|
|
|
|
def TwoArgFP : FPFormat<4>;
|
2004-06-11 04:41:24 +00:00
|
|
|
def CompareFP : FPFormat<5>;
|
|
|
|
def CondMovFP : FPFormat<6>;
|
|
|
|
def SpecialFP : FPFormat<7>;
|
2003-08-03 21:54:21 +00:00
|
|
|
|
|
|
|
|
2004-10-03 20:35:00 +00:00
|
|
|
class X86Inst<bits<8> opcod, Format f, ImmType i, dag ops, string AsmStr>
|
|
|
|
: Instruction {
|
2003-08-04 04:59:56 +00:00
|
|
|
let Namespace = "X86";
|
2003-08-03 21:54:21 +00:00
|
|
|
|
|
|
|
bits<8> Opcode = opcod;
|
|
|
|
Format Form = f;
|
2006-02-01 06:13:50 +00:00
|
|
|
bits<6> FormBits = Form.Value;
|
2004-02-28 22:02:05 +00:00
|
|
|
ImmType ImmT = i;
|
2006-09-08 06:48:29 +00:00
|
|
|
bits<3> ImmTypeBits = ImmT.Value;
|
2003-08-03 21:54:21 +00:00
|
|
|
|
2004-08-11 07:12:04 +00:00
|
|
|
dag OperandList = ops;
|
|
|
|
string AsmString = AsmStr;
|
|
|
|
|
2004-04-08 20:31:47 +00:00
|
|
|
//
|
2003-08-03 21:54:21 +00:00
|
|
|
// Attributes specific to X86 instructions...
|
2004-04-08 20:31:47 +00:00
|
|
|
//
|
2006-09-08 06:48:29 +00:00
|
|
|
bit hasOpSizePrefix = 0; // Does this inst have a 0x66 prefix?
|
|
|
|
bit hasAdSizePrefix = 0; // Does this inst have a 0x67 prefix?
|
2004-04-08 20:31:47 +00:00
|
|
|
|
2003-08-03 21:54:21 +00:00
|
|
|
bits<4> Prefix = 0; // Which prefix byte does this inst have?
|
2006-09-08 06:48:29 +00:00
|
|
|
bit hasREX_WPrefix = 0; // Does this inst requires the REX.W prefix?
|
2003-08-03 21:54:21 +00:00
|
|
|
FPFormat FPForm; // What flavor of FP instruction is this?
|
|
|
|
bits<3> FPFormBits = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Prefix byte classes which are used to indicate to the ad-hoc machine code
|
|
|
|
// emitter that various prefix bytes are required.
|
|
|
|
class OpSize { bit hasOpSizePrefix = 1; }
|
2006-09-08 06:48:29 +00:00
|
|
|
class AdSize { bit hasAdSizePrefix = 1; }
|
|
|
|
class REX_W { bit hasREX_WPrefix = 1; }
|
2003-08-03 21:54:21 +00:00
|
|
|
class TB { bits<4> Prefix = 1; }
|
2004-02-12 17:53:22 +00:00
|
|
|
class REP { bits<4> Prefix = 2; }
|
|
|
|
class D8 { bits<4> Prefix = 3; }
|
|
|
|
class D9 { bits<4> Prefix = 4; }
|
|
|
|
class DA { bits<4> Prefix = 5; }
|
|
|
|
class DB { bits<4> Prefix = 6; }
|
|
|
|
class DC { bits<4> Prefix = 7; }
|
|
|
|
class DD { bits<4> Prefix = 8; }
|
|
|
|
class DE { bits<4> Prefix = 9; }
|
|
|
|
class DF { bits<4> Prefix = 10; }
|
2005-06-27 21:20:31 +00:00
|
|
|
class XD { bits<4> Prefix = 11; }
|
|
|
|
class XS { bits<4> Prefix = 12; }
|
2003-08-03 21:54:21 +00:00
|
|
|
|
|
|
|
|
2005-11-18 01:04:42 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Pattern fragments...
|
|
|
|
//
|
2006-01-06 00:43:03 +00:00
|
|
|
|
|
|
|
// X86 specific condition code. These correspond to CondCode in
|
|
|
|
// X86ISelLowering.h. They must be kept in synch.
|
|
|
|
def X86_COND_A : PatLeaf<(i8 0)>;
|
|
|
|
def X86_COND_AE : PatLeaf<(i8 1)>;
|
|
|
|
def X86_COND_B : PatLeaf<(i8 2)>;
|
|
|
|
def X86_COND_BE : PatLeaf<(i8 3)>;
|
|
|
|
def X86_COND_E : PatLeaf<(i8 4)>;
|
|
|
|
def X86_COND_G : PatLeaf<(i8 5)>;
|
|
|
|
def X86_COND_GE : PatLeaf<(i8 6)>;
|
|
|
|
def X86_COND_L : PatLeaf<(i8 7)>;
|
|
|
|
def X86_COND_LE : PatLeaf<(i8 8)>;
|
|
|
|
def X86_COND_NE : PatLeaf<(i8 9)>;
|
|
|
|
def X86_COND_NO : PatLeaf<(i8 10)>;
|
|
|
|
def X86_COND_NP : PatLeaf<(i8 11)>;
|
|
|
|
def X86_COND_NS : PatLeaf<(i8 12)>;
|
|
|
|
def X86_COND_O : PatLeaf<(i8 13)>;
|
|
|
|
def X86_COND_P : PatLeaf<(i8 14)>;
|
|
|
|
def X86_COND_S : PatLeaf<(i8 15)>;
|
|
|
|
|
2005-12-13 00:14:11 +00:00
|
|
|
def i16immSExt8 : PatLeaf<(i16 imm), [{
|
|
|
|
// i16immSExt8 predicate - True if the 16-bit immediate fits in a 8-bit
|
2005-12-13 00:01:09 +00:00
|
|
|
// sign extended field.
|
2006-05-19 18:40:54 +00:00
|
|
|
return (int16_t)N->getValue() == (int8_t)N->getValue();
|
2005-11-18 01:04:42 +00:00
|
|
|
}]>;
|
|
|
|
|
2005-12-13 00:14:11 +00:00
|
|
|
def i32immSExt8 : PatLeaf<(i32 imm), [{
|
|
|
|
// i32immSExt8 predicate - True if the 32-bit immediate fits in a 8-bit
|
2005-12-13 00:01:09 +00:00
|
|
|
// sign extended field.
|
2006-05-19 18:40:54 +00:00
|
|
|
return (int32_t)N->getValue() == (int8_t)N->getValue();
|
2005-12-13 00:01:09 +00:00
|
|
|
}]>;
|
|
|
|
|
2005-12-13 01:57:51 +00:00
|
|
|
// Helper fragments for loads.
|
2005-12-14 02:22:27 +00:00
|
|
|
def loadi8 : PatFrag<(ops node:$ptr), (i8 (load node:$ptr))>;
|
|
|
|
def loadi16 : PatFrag<(ops node:$ptr), (i16 (load node:$ptr))>;
|
|
|
|
def loadi32 : PatFrag<(ops node:$ptr), (i32 (load node:$ptr))>;
|
2006-04-03 20:53:28 +00:00
|
|
|
def loadi64 : PatFrag<(ops node:$ptr), (i64 (load node:$ptr))>;
|
2006-03-17 19:55:52 +00:00
|
|
|
|
2005-12-20 22:59:51 +00:00
|
|
|
def loadf32 : PatFrag<(ops node:$ptr), (f32 (load node:$ptr))>;
|
|
|
|
def loadf64 : PatFrag<(ops node:$ptr), (f64 (load node:$ptr))>;
|
2005-12-14 02:22:27 +00:00
|
|
|
|
2006-10-09 20:57:25 +00:00
|
|
|
def sextloadi16i1 : PatFrag<(ops node:$ptr), (i16 (sextloadi1 node:$ptr))>;
|
|
|
|
def sextloadi32i1 : PatFrag<(ops node:$ptr), (i32 (sextloadi1 node:$ptr))>;
|
|
|
|
def sextloadi16i8 : PatFrag<(ops node:$ptr), (i16 (sextloadi8 node:$ptr))>;
|
|
|
|
def sextloadi32i8 : PatFrag<(ops node:$ptr), (i32 (sextloadi8 node:$ptr))>;
|
|
|
|
def sextloadi32i16 : PatFrag<(ops node:$ptr), (i32 (sextloadi16 node:$ptr))>;
|
|
|
|
|
|
|
|
def zextloadi8i1 : PatFrag<(ops node:$ptr), (i8 (zextloadi1 node:$ptr))>;
|
|
|
|
def zextloadi16i1 : PatFrag<(ops node:$ptr), (i16 (zextloadi1 node:$ptr))>;
|
|
|
|
def zextloadi32i1 : PatFrag<(ops node:$ptr), (i32 (zextloadi1 node:$ptr))>;
|
|
|
|
def zextloadi16i8 : PatFrag<(ops node:$ptr), (i16 (zextloadi8 node:$ptr))>;
|
|
|
|
def zextloadi32i8 : PatFrag<(ops node:$ptr), (i32 (zextloadi8 node:$ptr))>;
|
|
|
|
def zextloadi32i16 : PatFrag<(ops node:$ptr), (i32 (zextloadi16 node:$ptr))>;
|
|
|
|
|
|
|
|
def extloadi8i1 : PatFrag<(ops node:$ptr), (i8 (extloadi1 node:$ptr))>;
|
|
|
|
def extloadi16i1 : PatFrag<(ops node:$ptr), (i16 (extloadi1 node:$ptr))>;
|
|
|
|
def extloadi32i1 : PatFrag<(ops node:$ptr), (i32 (extloadi1 node:$ptr))>;
|
|
|
|
def extloadi16i8 : PatFrag<(ops node:$ptr), (i16 (extloadi8 node:$ptr))>;
|
|
|
|
def extloadi32i8 : PatFrag<(ops node:$ptr), (i32 (extloadi8 node:$ptr))>;
|
|
|
|
def extloadi32i16 : PatFrag<(ops node:$ptr), (i32 (extloadi16 node:$ptr))>;
|
2006-02-21 02:24:38 +00:00
|
|
|
|
2004-02-28 22:02:05 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Instruction templates...
|
2006-09-08 06:48:29 +00:00
|
|
|
//
|
2004-02-28 22:02:05 +00:00
|
|
|
|
2005-11-29 19:38:52 +00:00
|
|
|
class I<bits<8> o, Format f, dag ops, string asm, list<dag> pattern>
|
|
|
|
: X86Inst<o, f, NoImm, ops, asm> {
|
|
|
|
let Pattern = pattern;
|
2006-07-19 00:27:29 +00:00
|
|
|
let CodeSize = 3;
|
2005-11-29 19:38:52 +00:00
|
|
|
}
|
2005-11-18 01:04:42 +00:00
|
|
|
class Ii8 <bits<8> o, Format f, dag ops, string asm, list<dag> pattern>
|
|
|
|
: X86Inst<o, f, Imm8 , ops, asm> {
|
|
|
|
let Pattern = pattern;
|
2006-07-19 00:27:29 +00:00
|
|
|
let CodeSize = 3;
|
2005-11-18 01:04:42 +00:00
|
|
|
}
|
2005-11-17 02:01:55 +00:00
|
|
|
class Ii16<bits<8> o, Format f, dag ops, string asm, list<dag> pattern>
|
|
|
|
: X86Inst<o, f, Imm16, ops, asm> {
|
|
|
|
let Pattern = pattern;
|
2006-07-19 00:27:29 +00:00
|
|
|
let CodeSize = 3;
|
2005-11-17 02:01:55 +00:00
|
|
|
}
|
2005-11-16 22:59:19 +00:00
|
|
|
class Ii32<bits<8> o, Format f, dag ops, string asm, list<dag> pattern>
|
|
|
|
: X86Inst<o, f, Imm32, ops, asm> {
|
|
|
|
let Pattern = pattern;
|
2006-07-19 00:27:29 +00:00
|
|
|
let CodeSize = 3;
|
2005-11-16 22:59:19 +00:00
|
|
|
}
|
2004-02-28 22:02:05 +00:00
|
|
|
|
2003-08-03 21:54:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Instruction list...
|
|
|
|
//
|
|
|
|
|
2006-10-12 17:42:56 +00:00
|
|
|
// ADJCALLSTACKDOWN/UP implicitly use/def ESP because they may be expanded into
|
|
|
|
// a stack adjustment and the codegen must know that they may modify the stack
|
|
|
|
// pointer before prolog-epilog rewriting occurs.
|
2006-01-05 00:27:02 +00:00
|
|
|
def ADJCALLSTACKDOWN : I<0, Pseudo, (ops i32imm:$amt), "#ADJCALLSTACKDOWN",
|
2006-10-12 17:42:56 +00:00
|
|
|
[(X86callseq_start imm:$amt)]>, Imp<[ESP],[ESP]>;
|
2005-09-14 21:10:24 +00:00
|
|
|
def ADJCALLSTACKUP : I<0, Pseudo, (ops i32imm:$amt1, i32imm:$amt2),
|
2006-01-05 00:27:02 +00:00
|
|
|
"#ADJCALLSTACKUP",
|
2006-10-12 17:42:56 +00:00
|
|
|
[(X86callseq_end imm:$amt1, imm:$amt2)]>,
|
|
|
|
Imp<[ESP],[ESP]>;
|
2005-11-29 19:38:52 +00:00
|
|
|
def IMPLICIT_USE : I<0, Pseudo, (ops variable_ops), "#IMPLICIT_USE", []>;
|
|
|
|
def IMPLICIT_DEF : I<0, Pseudo, (ops variable_ops), "#IMPLICIT_DEF", []>;
|
2006-05-16 07:21:53 +00:00
|
|
|
def IMPLICIT_DEF_GR8 : I<0, Pseudo, (ops GR8:$dst),
|
2006-01-09 23:10:28 +00:00
|
|
|
"#IMPLICIT_DEF $dst",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (undef))]>;
|
|
|
|
def IMPLICIT_DEF_GR16 : I<0, Pseudo, (ops GR16:$dst),
|
2006-01-09 23:10:28 +00:00
|
|
|
"#IMPLICIT_DEF $dst",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (undef))]>;
|
|
|
|
def IMPLICIT_DEF_GR32 : I<0, Pseudo, (ops GR32:$dst),
|
2006-01-09 23:10:28 +00:00
|
|
|
"#IMPLICIT_DEF $dst",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (undef))]>;
|
2006-01-11 00:33:36 +00:00
|
|
|
|
|
|
|
// Nop
|
|
|
|
def NOOP : I<0x90, RawFrm, (ops), "nop", []>;
|
|
|
|
|
2006-05-05 05:40:20 +00:00
|
|
|
// Truncate
|
2006-09-08 06:48:29 +00:00
|
|
|
def TRUNC_32_to8 : I<0x88, MRMDestReg, (ops GR8:$dst, GR32_:$src),
|
|
|
|
"mov{b} {${src:subreg8}, $dst|$dst, ${src:subreg8}", []>;
|
|
|
|
def TRUNC_16_to8 : I<0x88, MRMDestReg, (ops GR8:$dst, GR16_:$src),
|
|
|
|
"mov{b} {${src:subreg8}, $dst|$dst, ${src:subreg8}}", []>;
|
|
|
|
def TRUNC_32to16 : I<0x89, MRMDestReg, (ops GR16:$dst, GR32:$src),
|
|
|
|
"mov{w} {${src:subreg16}, $dst|$dst, ${src:subreg16}}",
|
|
|
|
[(set GR16:$dst, (trunc GR32:$src))]>;
|
2006-05-05 05:40:20 +00:00
|
|
|
|
2003-08-03 21:54:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Control Flow Instructions...
|
|
|
|
//
|
|
|
|
|
2005-05-13 17:56:48 +00:00
|
|
|
// Return instructions.
|
2005-12-26 09:11:45 +00:00
|
|
|
let isTerminator = 1, isReturn = 1, isBarrier = 1,
|
|
|
|
hasCtrlDep = 1, noResults = 1 in {
|
2006-01-09 18:33:28 +00:00
|
|
|
def RET : I<0xC3, RawFrm, (ops), "ret", [(X86retflag 0)]>;
|
|
|
|
def RETI : Ii16<0xC2, RawFrm, (ops i16imm:$amt), "ret $amt",
|
|
|
|
[(X86retflag imm:$amt)]>;
|
2005-12-23 22:14:32 +00:00
|
|
|
}
|
2003-08-03 21:54:21 +00:00
|
|
|
|
|
|
|
// All branches are RawFrm, Void, Branch, and Terminators
|
2005-12-26 09:11:45 +00:00
|
|
|
let isBranch = 1, isTerminator = 1, noResults = 1 in
|
2005-12-04 08:19:43 +00:00
|
|
|
class IBr<bits<8> opcode, dag ops, string asm, list<dag> pattern> :
|
|
|
|
I<opcode, RawFrm, ops, asm, pattern>;
|
2003-08-03 21:54:21 +00:00
|
|
|
|
2006-04-22 18:53:45 +00:00
|
|
|
// Indirect branches
|
2006-09-07 19:03:48 +00:00
|
|
|
let isBranch = 1, isBarrier = 1 in
|
2005-12-04 08:19:43 +00:00
|
|
|
def JMP : IBr<0xE9, (ops brtarget:$dst), "jmp $dst", [(br bb:$dst)]>;
|
2005-12-19 23:12:38 +00:00
|
|
|
|
2006-04-22 18:53:45 +00:00
|
|
|
let isBranch = 1, isTerminator = 1, noResults = 1, isBarrier = 1 in {
|
2006-05-16 07:21:53 +00:00
|
|
|
def JMP32r : I<0xFF, MRM4r, (ops GR32:$dst), "jmp{l} {*}$dst",
|
|
|
|
[(brind GR32:$dst)]>;
|
2006-04-22 18:53:45 +00:00
|
|
|
def JMP32m : I<0xFF, MRM4m, (ops i32mem:$dst), "jmp{l} {*}$dst",
|
2006-09-08 06:48:29 +00:00
|
|
|
[(brind (loadi32 addr:$dst))]>;
|
2006-04-22 18:53:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Conditional branches
|
2005-12-19 23:12:38 +00:00
|
|
|
def JE : IBr<0x84, (ops brtarget:$dst), "je $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(X86brcond bb:$dst, X86_COND_E)]>, TB;
|
2005-12-19 23:12:38 +00:00
|
|
|
def JNE : IBr<0x85, (ops brtarget:$dst), "jne $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(X86brcond bb:$dst, X86_COND_NE)]>, TB;
|
2005-12-19 23:12:38 +00:00
|
|
|
def JL : IBr<0x8C, (ops brtarget:$dst), "jl $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(X86brcond bb:$dst, X86_COND_L)]>, TB;
|
2005-12-19 23:12:38 +00:00
|
|
|
def JLE : IBr<0x8E, (ops brtarget:$dst), "jle $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(X86brcond bb:$dst, X86_COND_LE)]>, TB;
|
2005-12-19 23:12:38 +00:00
|
|
|
def JG : IBr<0x8F, (ops brtarget:$dst), "jg $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(X86brcond bb:$dst, X86_COND_G)]>, TB;
|
2005-12-19 23:12:38 +00:00
|
|
|
def JGE : IBr<0x8D, (ops brtarget:$dst), "jge $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(X86brcond bb:$dst, X86_COND_GE)]>, TB;
|
2005-12-19 23:12:38 +00:00
|
|
|
|
2005-12-04 08:19:43 +00:00
|
|
|
def JB : IBr<0x82, (ops brtarget:$dst), "jb $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(X86brcond bb:$dst, X86_COND_B)]>, TB;
|
2005-12-19 23:12:38 +00:00
|
|
|
def JBE : IBr<0x86, (ops brtarget:$dst), "jbe $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(X86brcond bb:$dst, X86_COND_BE)]>, TB;
|
2005-12-19 23:12:38 +00:00
|
|
|
def JA : IBr<0x87, (ops brtarget:$dst), "ja $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(X86brcond bb:$dst, X86_COND_A)]>, TB;
|
2005-12-19 23:12:38 +00:00
|
|
|
def JAE : IBr<0x83, (ops brtarget:$dst), "jae $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(X86brcond bb:$dst, X86_COND_AE)]>, TB;
|
2005-12-19 23:12:38 +00:00
|
|
|
|
2006-01-06 00:43:03 +00:00
|
|
|
def JS : IBr<0x88, (ops brtarget:$dst), "js $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(X86brcond bb:$dst, X86_COND_S)]>, TB;
|
2006-01-06 00:43:03 +00:00
|
|
|
def JNS : IBr<0x89, (ops brtarget:$dst), "jns $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(X86brcond bb:$dst, X86_COND_NS)]>, TB;
|
2006-01-06 00:43:03 +00:00
|
|
|
def JP : IBr<0x8A, (ops brtarget:$dst), "jp $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(X86brcond bb:$dst, X86_COND_P)]>, TB;
|
2006-01-06 00:43:03 +00:00
|
|
|
def JNP : IBr<0x8B, (ops brtarget:$dst), "jnp $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(X86brcond bb:$dst, X86_COND_NP)]>, TB;
|
2006-01-11 00:33:36 +00:00
|
|
|
def JO : IBr<0x80, (ops brtarget:$dst), "jo $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(X86brcond bb:$dst, X86_COND_O)]>, TB;
|
2006-01-11 00:33:36 +00:00
|
|
|
def JNO : IBr<0x81, (ops brtarget:$dst), "jno $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(X86brcond bb:$dst, X86_COND_NO)]>, TB;
|
2003-08-03 21:54:21 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Call Instructions...
|
|
|
|
//
|
2006-01-09 18:33:28 +00:00
|
|
|
let isCall = 1, noResults = 1 in
|
2003-08-03 21:54:21 +00:00
|
|
|
// All calls clobber the non-callee saved registers...
|
2005-07-06 18:59:04 +00:00
|
|
|
let Defs = [EAX, ECX, EDX, FP0, FP1, FP2, FP3, FP4, FP5, FP6, ST0,
|
2005-07-15 00:38:55 +00:00
|
|
|
XMM0, XMM1, XMM2, XMM3, XMM4, XMM5, XMM6, XMM7] in {
|
2006-06-14 22:24:55 +00:00
|
|
|
def CALLpcrel32 : I<0xE8, RawFrm, (ops i32imm:$dst, variable_ops),
|
|
|
|
"call ${dst:call}", []>;
|
|
|
|
def CALL32r : I<0xFF, MRM2r, (ops GR32:$dst, variable_ops),
|
|
|
|
"call {*}$dst", [(X86call GR32:$dst)]>;
|
|
|
|
def CALL32m : I<0xFF, MRM2m, (ops i32mem:$dst, variable_ops),
|
|
|
|
"call {*}$dst", []>;
|
2003-08-03 21:54:21 +00:00
|
|
|
}
|
|
|
|
|
2005-05-15 03:10:37 +00:00
|
|
|
// Tail call stuff.
|
2005-12-26 09:11:45 +00:00
|
|
|
let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, noResults = 1 in
|
2006-09-22 21:43:59 +00:00
|
|
|
def TAILJMPd : IBr<0xE9, (ops i32imm:$dst), "jmp ${dst:call} # TAIL CALL",
|
|
|
|
[]>;
|
2005-12-26 09:11:45 +00:00
|
|
|
let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, noResults = 1 in
|
2006-09-22 21:43:59 +00:00
|
|
|
def TAILJMPr : I<0xFF, MRM4r, (ops GR32:$dst), "jmp {*}$dst # TAIL CALL",
|
|
|
|
[]>;
|
2005-12-26 09:11:45 +00:00
|
|
|
let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1, noResults = 1 in
|
2005-11-29 19:38:52 +00:00
|
|
|
def TAILJMPm : I<0xFF, MRM4m, (ops i32mem:$dst),
|
|
|
|
"jmp {*}$dst # TAIL CALL", []>;
|
2005-05-15 03:10:37 +00:00
|
|
|
|
2003-08-03 21:54:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Miscellaneous Instructions...
|
|
|
|
//
|
2004-08-10 20:17:41 +00:00
|
|
|
def LEAVE : I<0xC9, RawFrm,
|
2005-11-29 19:38:52 +00:00
|
|
|
(ops), "leave", []>, Imp<[EBP,ESP],[EBP,ESP]>;
|
2004-08-10 20:17:41 +00:00
|
|
|
def POP32r : I<0x58, AddRegFrm,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR32:$reg), "pop{l} $reg", []>, Imp<[ESP],[ESP]>;
|
2003-08-03 21:54:21 +00:00
|
|
|
|
2006-02-18 00:15:05 +00:00
|
|
|
def MovePCtoStack : I<0, Pseudo, (ops piclabel:$label),
|
|
|
|
"call $label", []>;
|
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
let isTwoAddress = 1 in // GR32 = bswap GR32
|
2004-08-10 20:17:41 +00:00
|
|
|
def BSWAP32r : I<0xC8, AddRegFrm,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR32:$dst, GR32:$src),
|
2006-01-14 03:14:10 +00:00
|
|
|
"bswap{l} $dst",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (bswap GR32:$src))]>, TB;
|
2004-08-01 09:52:59 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def XCHG8rr : I<0x86, MRMDestReg, // xchg GR8, GR8
|
|
|
|
(ops GR8:$src1, GR8:$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"xchg{b} {$src2|$src1}, {$src1|$src2}", []>;
|
2006-05-16 07:21:53 +00:00
|
|
|
def XCHG16rr : I<0x87, MRMDestReg, // xchg GR16, GR16
|
|
|
|
(ops GR16:$src1, GR16:$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"xchg{w} {$src2|$src1}, {$src1|$src2}", []>, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def XCHG32rr : I<0x87, MRMDestReg, // xchg GR32, GR32
|
|
|
|
(ops GR32:$src1, GR32:$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"xchg{l} {$src2|$src1}, {$src1|$src2}", []>;
|
2004-10-03 20:35:00 +00:00
|
|
|
|
|
|
|
def XCHG8mr : I<0x86, MRMDestMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops i8mem:$src1, GR8:$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"xchg{b} {$src2|$src1}, {$src1|$src2}", []>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def XCHG16mr : I<0x87, MRMDestMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops i16mem:$src1, GR16:$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"xchg{w} {$src2|$src1}, {$src1|$src2}", []>, OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def XCHG32mr : I<0x87, MRMDestMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops i32mem:$src1, GR32:$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"xchg{l} {$src2|$src1}, {$src1|$src2}", []>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def XCHG8rm : I<0x86, MRMSrcMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR8:$src1, i8mem:$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"xchg{b} {$src2|$src1}, {$src1|$src2}", []>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def XCHG16rm : I<0x87, MRMSrcMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR16:$src1, i16mem:$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"xchg{w} {$src2|$src1}, {$src1|$src2}", []>, OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def XCHG32rm : I<0x87, MRMSrcMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR32:$src1, i32mem:$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"xchg{l} {$src2|$src1}, {$src1|$src2}", []>;
|
2004-10-03 20:35:00 +00:00
|
|
|
|
|
|
|
def LEA16r : I<0x8D, MRMSrcMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR16:$dst, i32mem:$src),
|
2005-11-29 19:38:52 +00:00
|
|
|
"lea{w} {$src|$dst}, {$dst|$src}", []>, OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def LEA32r : I<0x8D, MRMSrcMem,
|
2006-09-08 06:48:29 +00:00
|
|
|
(ops GR32:$dst, lea32mem:$src),
|
2005-12-08 02:01:35 +00:00
|
|
|
"lea{l} {$src|$dst}, {$dst|$src}",
|
2006-09-08 06:48:29 +00:00
|
|
|
[(set GR32:$dst, lea32addr:$src)]>, Requires<[In32BitMode]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
|
2006-01-11 22:15:48 +00:00
|
|
|
def REP_MOVSB : I<0xA4, RawFrm, (ops), "{rep;movsb|rep movsb}",
|
|
|
|
[(X86rep_movs i8)]>,
|
2004-08-10 20:17:41 +00:00
|
|
|
Imp<[ECX,EDI,ESI], [ECX,EDI,ESI]>, REP;
|
2006-01-11 22:15:48 +00:00
|
|
|
def REP_MOVSW : I<0xA5, RawFrm, (ops), "{rep;movsw|rep movsw}",
|
|
|
|
[(X86rep_movs i16)]>,
|
2004-08-10 20:17:41 +00:00
|
|
|
Imp<[ECX,EDI,ESI], [ECX,EDI,ESI]>, REP, OpSize;
|
2006-06-02 21:09:10 +00:00
|
|
|
def REP_MOVSD : I<0xA5, RawFrm, (ops), "{rep;movsl|rep movsd}",
|
2006-01-11 22:15:48 +00:00
|
|
|
[(X86rep_movs i32)]>,
|
2004-08-10 20:17:41 +00:00
|
|
|
Imp<[ECX,EDI,ESI], [ECX,EDI,ESI]>, REP;
|
|
|
|
|
2006-01-11 22:15:48 +00:00
|
|
|
def REP_STOSB : I<0xAA, RawFrm, (ops), "{rep;stosb|rep stosb}",
|
|
|
|
[(X86rep_stos i8)]>,
|
2004-08-10 20:17:41 +00:00
|
|
|
Imp<[AL,ECX,EDI], [ECX,EDI]>, REP;
|
2006-01-11 22:15:48 +00:00
|
|
|
def REP_STOSW : I<0xAB, RawFrm, (ops), "{rep;stosw|rep stosw}",
|
|
|
|
[(X86rep_stos i16)]>,
|
2004-08-10 20:17:41 +00:00
|
|
|
Imp<[AX,ECX,EDI], [ECX,EDI]>, REP, OpSize;
|
2006-01-11 22:15:48 +00:00
|
|
|
def REP_STOSD : I<0xAB, RawFrm, (ops), "{rep;stosl|rep stosd}",
|
|
|
|
[(X86rep_stos i32)]>,
|
2004-08-10 20:17:41 +00:00
|
|
|
Imp<[EAX,ECX,EDI], [ECX,EDI]>, REP;
|
|
|
|
|
2004-04-08 20:31:47 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Input/Output Instructions...
|
|
|
|
//
|
2004-08-10 20:17:41 +00:00
|
|
|
def IN8rr : I<0xEC, RawFrm, (ops),
|
2005-12-20 07:38:38 +00:00
|
|
|
"in{b} {%dx, %al|%AL, %DX}",
|
2006-03-03 00:19:58 +00:00
|
|
|
[]>, Imp<[DX], [AL]>;
|
2004-08-10 20:17:41 +00:00
|
|
|
def IN16rr : I<0xED, RawFrm, (ops),
|
2005-12-20 07:38:38 +00:00
|
|
|
"in{w} {%dx, %ax|%AX, %DX}",
|
2006-03-03 00:19:58 +00:00
|
|
|
[]>, Imp<[DX], [AX]>, OpSize;
|
2004-08-10 20:17:41 +00:00
|
|
|
def IN32rr : I<0xED, RawFrm, (ops),
|
2005-12-20 07:38:38 +00:00
|
|
|
"in{l} {%dx, %eax|%EAX, %DX}",
|
2006-03-03 00:19:58 +00:00
|
|
|
[]>, Imp<[DX],[EAX]>;
|
2005-12-20 07:38:38 +00:00
|
|
|
|
|
|
|
def IN8ri : Ii8<0xE4, RawFrm, (ops i16i8imm:$port),
|
|
|
|
"in{b} {$port, %al|%AL, $port}",
|
2006-03-03 00:19:58 +00:00
|
|
|
[]>,
|
2005-12-20 07:38:38 +00:00
|
|
|
Imp<[], [AL]>;
|
|
|
|
def IN16ri : Ii8<0xE5, RawFrm, (ops i16i8imm:$port),
|
|
|
|
"in{w} {$port, %ax|%AX, $port}",
|
2006-03-03 00:19:58 +00:00
|
|
|
[]>,
|
2005-12-20 07:38:38 +00:00
|
|
|
Imp<[], [AX]>, OpSize;
|
|
|
|
def IN32ri : Ii8<0xE5, RawFrm, (ops i16i8imm:$port),
|
|
|
|
"in{l} {$port, %eax|%EAX, $port}",
|
2006-03-03 00:19:58 +00:00
|
|
|
[]>,
|
2005-12-20 07:38:38 +00:00
|
|
|
Imp<[],[EAX]>;
|
2004-08-10 20:17:41 +00:00
|
|
|
|
2005-12-05 23:09:43 +00:00
|
|
|
def OUT8rr : I<0xEE, RawFrm, (ops),
|
|
|
|
"out{b} {%al, %dx|%DX, %AL}",
|
2006-03-03 00:19:58 +00:00
|
|
|
[]>, Imp<[DX, AL], []>;
|
2005-12-05 23:09:43 +00:00
|
|
|
def OUT16rr : I<0xEF, RawFrm, (ops),
|
|
|
|
"out{w} {%ax, %dx|%DX, %AX}",
|
2006-03-03 00:19:58 +00:00
|
|
|
[]>, Imp<[DX, AX], []>, OpSize;
|
2005-12-05 23:09:43 +00:00
|
|
|
def OUT32rr : I<0xEF, RawFrm, (ops),
|
|
|
|
"out{l} {%eax, %dx|%DX, %EAX}",
|
2006-03-03 00:19:58 +00:00
|
|
|
[]>, Imp<[DX, EAX], []>;
|
2005-12-05 23:09:43 +00:00
|
|
|
|
|
|
|
def OUT8ir : Ii8<0xE6, RawFrm, (ops i16i8imm:$port),
|
|
|
|
"out{b} {%al, $port|$port, %AL}",
|
2006-03-03 00:19:58 +00:00
|
|
|
[]>,
|
2005-12-20 07:38:38 +00:00
|
|
|
Imp<[AL], []>;
|
2005-12-05 23:09:43 +00:00
|
|
|
def OUT16ir : Ii8<0xE7, RawFrm, (ops i16i8imm:$port),
|
|
|
|
"out{w} {%ax, $port|$port, %AX}",
|
2006-03-03 00:19:58 +00:00
|
|
|
[]>,
|
2005-12-20 07:38:38 +00:00
|
|
|
Imp<[AX], []>, OpSize;
|
2005-12-05 23:09:43 +00:00
|
|
|
def OUT32ir : Ii8<0xE7, RawFrm, (ops i16i8imm:$port),
|
|
|
|
"out{l} {%eax, $port|$port, %EAX}",
|
2006-03-03 00:19:58 +00:00
|
|
|
[]>,
|
2005-12-20 07:38:38 +00:00
|
|
|
Imp<[EAX], []>;
|
2004-02-14 04:45:37 +00:00
|
|
|
|
2003-08-03 21:54:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Move Instructions...
|
|
|
|
//
|
2006-05-16 07:21:53 +00:00
|
|
|
def MOV8rr : I<0x88, MRMDestReg, (ops GR8 :$dst, GR8 :$src),
|
2005-11-29 19:38:52 +00:00
|
|
|
"mov{b} {$src, $dst|$dst, $src}", []>;
|
2006-05-16 07:21:53 +00:00
|
|
|
def MOV16rr : I<0x89, MRMDestReg, (ops GR16:$dst, GR16:$src),
|
2005-11-29 19:38:52 +00:00
|
|
|
"mov{w} {$src, $dst|$dst, $src}", []>, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def MOV32rr : I<0x89, MRMDestReg, (ops GR32:$dst, GR32:$src),
|
2005-11-29 19:38:52 +00:00
|
|
|
"mov{l} {$src, $dst|$dst, $src}", []>;
|
2006-05-16 07:21:53 +00:00
|
|
|
def MOV8ri : Ii8 <0xB0, AddRegFrm, (ops GR8 :$dst, i8imm :$src),
|
2005-11-18 01:04:42 +00:00
|
|
|
"mov{b} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, imm:$src)]>;
|
|
|
|
def MOV16ri : Ii16<0xB8, AddRegFrm, (ops GR16:$dst, i16imm:$src),
|
2005-11-18 01:04:42 +00:00
|
|
|
"mov{w} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, imm:$src)]>, OpSize;
|
|
|
|
def MOV32ri : Ii32<0xB8, AddRegFrm, (ops GR32:$dst, i32imm:$src),
|
2005-11-18 01:04:42 +00:00
|
|
|
"mov{l} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, imm:$src)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def MOV8mi : Ii8 <0xC6, MRM0m, (ops i8mem :$dst, i8imm :$src),
|
2005-12-10 00:48:20 +00:00
|
|
|
"mov{b} {$src, $dst|$dst, $src}",
|
|
|
|
[(store (i8 imm:$src), addr:$dst)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def MOV16mi : Ii16<0xC7, MRM0m, (ops i16mem:$dst, i16imm:$src),
|
2005-12-10 00:48:20 +00:00
|
|
|
"mov{w} {$src, $dst|$dst, $src}",
|
|
|
|
[(store (i16 imm:$src), addr:$dst)]>, OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def MOV32mi : Ii32<0xC7, MRM0m, (ops i32mem:$dst, i32imm:$src),
|
2005-12-10 00:48:20 +00:00
|
|
|
"mov{l} {$src, $dst|$dst, $src}",
|
|
|
|
[(store (i32 imm:$src), addr:$dst)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def MOV8rm : I<0x8A, MRMSrcMem, (ops GR8 :$dst, i8mem :$src),
|
2005-12-08 02:01:35 +00:00
|
|
|
"mov{b} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (load addr:$src))]>;
|
|
|
|
def MOV16rm : I<0x8B, MRMSrcMem, (ops GR16:$dst, i16mem:$src),
|
2005-12-08 02:01:35 +00:00
|
|
|
"mov{w} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (load addr:$src))]>, OpSize;
|
|
|
|
def MOV32rm : I<0x8B, MRMSrcMem, (ops GR32:$dst, i32mem:$src),
|
2005-12-08 02:01:35 +00:00
|
|
|
"mov{l} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (load addr:$src))]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def MOV8mr : I<0x88, MRMDestMem, (ops i8mem :$dst, GR8 :$src),
|
2005-12-10 00:48:20 +00:00
|
|
|
"mov{b} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store GR8:$src, addr:$dst)]>;
|
|
|
|
def MOV16mr : I<0x89, MRMDestMem, (ops i16mem:$dst, GR16:$src),
|
2005-12-10 00:48:20 +00:00
|
|
|
"mov{w} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store GR16:$src, addr:$dst)]>, OpSize;
|
|
|
|
def MOV32mr : I<0x89, MRMDestMem, (ops i32mem:$dst, GR32:$src),
|
2005-12-10 00:48:20 +00:00
|
|
|
"mov{l} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store GR32:$src, addr:$dst)]>;
|
2005-06-27 21:20:31 +00:00
|
|
|
|
2003-08-03 21:54:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Fixed-Register Multiplication and Division Instructions...
|
|
|
|
//
|
2003-08-04 04:59:56 +00:00
|
|
|
|
|
|
|
// Extra precision multiplication
|
2006-05-16 07:21:53 +00:00
|
|
|
def MUL8r : I<0xF6, MRM4r, (ops GR8:$src), "mul{b} $src",
|
2006-01-15 10:05:20 +00:00
|
|
|
// FIXME: Used for 8-bit mul, ignore result upper 8 bits.
|
|
|
|
// This probably ought to be moved to a def : Pat<> if the
|
|
|
|
// syntax can be accepted.
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set AL, (mul AL, GR8:$src))]>,
|
|
|
|
Imp<[AL],[AX]>; // AL,AH = AL*GR8
|
|
|
|
def MUL16r : I<0xF7, MRM4r, (ops GR16:$src), "mul{w} $src", []>,
|
|
|
|
Imp<[AX],[AX,DX]>, OpSize; // AX,DX = AX*GR16
|
|
|
|
def MUL32r : I<0xF7, MRM4r, (ops GR32:$src), "mul{l} $src", []>,
|
|
|
|
Imp<[EAX],[EAX,EDX]>; // EAX,EDX = EAX*GR32
|
2004-08-11 04:31:00 +00:00
|
|
|
def MUL8m : I<0xF6, MRM4m, (ops i8mem :$src),
|
2006-01-15 10:05:20 +00:00
|
|
|
"mul{b} $src",
|
|
|
|
// FIXME: Used for 8-bit mul, ignore result upper 8 bits.
|
|
|
|
// This probably ought to be moved to a def : Pat<> if the
|
|
|
|
// syntax can be accepted.
|
|
|
|
[(set AL, (mul AL, (loadi8 addr:$src)))]>,
|
|
|
|
Imp<[AL],[AX]>; // AL,AH = AL*[mem8]
|
2004-08-11 04:31:00 +00:00
|
|
|
def MUL16m : I<0xF7, MRM4m, (ops i16mem:$src),
|
2005-11-29 19:38:52 +00:00
|
|
|
"mul{w} $src", []>, Imp<[AX],[AX,DX]>,
|
|
|
|
OpSize; // AX,DX = AX*[mem16]
|
2004-08-11 04:31:00 +00:00
|
|
|
def MUL32m : I<0xF7, MRM4m, (ops i32mem:$src),
|
2005-11-29 19:38:52 +00:00
|
|
|
"mul{l} $src", []>, Imp<[EAX],[EAX,EDX]>;// EAX,EDX = EAX*[mem32]
|
2003-08-04 04:59:56 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def IMUL8r : I<0xF6, MRM5r, (ops GR8:$src), "imul{b} $src", []>,
|
|
|
|
Imp<[AL],[AX]>; // AL,AH = AL*GR8
|
|
|
|
def IMUL16r : I<0xF7, MRM5r, (ops GR16:$src), "imul{w} $src", []>,
|
|
|
|
Imp<[AX],[AX,DX]>, OpSize; // AX,DX = AX*GR16
|
|
|
|
def IMUL32r : I<0xF7, MRM5r, (ops GR32:$src), "imul{l} $src", []>,
|
|
|
|
Imp<[EAX],[EAX,EDX]>; // EAX,EDX = EAX*GR32
|
2005-04-06 04:19:22 +00:00
|
|
|
def IMUL8m : I<0xF6, MRM5m, (ops i8mem :$src),
|
2005-11-29 19:38:52 +00:00
|
|
|
"imul{b} $src", []>, Imp<[AL],[AX]>; // AL,AH = AL*[mem8]
|
2005-04-06 04:19:22 +00:00
|
|
|
def IMUL16m : I<0xF7, MRM5m, (ops i16mem:$src),
|
2005-11-29 19:38:52 +00:00
|
|
|
"imul{w} $src", []>, Imp<[AX],[AX,DX]>,
|
|
|
|
OpSize; // AX,DX = AX*[mem16]
|
2005-04-06 04:19:22 +00:00
|
|
|
def IMUL32m : I<0xF7, MRM5m, (ops i32mem:$src),
|
2005-11-29 19:38:52 +00:00
|
|
|
"imul{l} $src", []>,
|
|
|
|
Imp<[EAX],[EAX,EDX]>; // EAX,EDX = EAX*[mem32]
|
2005-04-06 04:19:22 +00:00
|
|
|
|
2003-08-04 04:59:56 +00:00
|
|
|
// unsigned division/remainder
|
2006-05-16 07:21:53 +00:00
|
|
|
def DIV8r : I<0xF6, MRM6r, (ops GR8:$src), // AX/r8 = AL,AH
|
2005-11-29 19:38:52 +00:00
|
|
|
"div{b} $src", []>, Imp<[AX],[AX]>;
|
2006-05-16 07:21:53 +00:00
|
|
|
def DIV16r : I<0xF7, MRM6r, (ops GR16:$src), // DX:AX/r16 = AX,DX
|
2005-11-29 19:38:52 +00:00
|
|
|
"div{w} $src", []>, Imp<[AX,DX],[AX,DX]>, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def DIV32r : I<0xF7, MRM6r, (ops GR32:$src), // EDX:EAX/r32 = EAX,EDX
|
2005-11-29 19:38:52 +00:00
|
|
|
"div{l} $src", []>, Imp<[EAX,EDX],[EAX,EDX]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def DIV8m : I<0xF6, MRM6m, (ops i8mem:$src), // AX/[mem8] = AL,AH
|
2005-11-29 19:38:52 +00:00
|
|
|
"div{b} $src", []>, Imp<[AX],[AX]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def DIV16m : I<0xF7, MRM6m, (ops i16mem:$src), // DX:AX/[mem16] = AX,DX
|
2005-11-29 19:38:52 +00:00
|
|
|
"div{w} $src", []>, Imp<[AX,DX],[AX,DX]>, OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def DIV32m : I<0xF7, MRM6m, (ops i32mem:$src), // EDX:EAX/[mem32] = EAX,EDX
|
2005-11-29 19:38:52 +00:00
|
|
|
"div{l} $src", []>, Imp<[EAX,EDX],[EAX,EDX]>;
|
2003-08-04 04:59:56 +00:00
|
|
|
|
2004-08-01 09:52:59 +00:00
|
|
|
// Signed division/remainder.
|
2006-05-16 07:21:53 +00:00
|
|
|
def IDIV8r : I<0xF6, MRM7r, (ops GR8:$src), // AX/r8 = AL,AH
|
2005-11-29 19:38:52 +00:00
|
|
|
"idiv{b} $src", []>, Imp<[AX],[AX]>;
|
2006-05-16 07:21:53 +00:00
|
|
|
def IDIV16r: I<0xF7, MRM7r, (ops GR16:$src), // DX:AX/r16 = AX,DX
|
2005-11-29 19:38:52 +00:00
|
|
|
"idiv{w} $src", []>, Imp<[AX,DX],[AX,DX]>, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def IDIV32r: I<0xF7, MRM7r, (ops GR32:$src), // EDX:EAX/r32 = EAX,EDX
|
2005-11-29 19:38:52 +00:00
|
|
|
"idiv{l} $src", []>, Imp<[EAX,EDX],[EAX,EDX]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def IDIV8m : I<0xF6, MRM7m, (ops i8mem:$src), // AX/[mem8] = AL,AH
|
2005-11-29 19:38:52 +00:00
|
|
|
"idiv{b} $src", []>, Imp<[AX],[AX]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def IDIV16m: I<0xF7, MRM7m, (ops i16mem:$src), // DX:AX/[mem16] = AX,DX
|
2005-11-29 19:38:52 +00:00
|
|
|
"idiv{w} $src", []>, Imp<[AX,DX],[AX,DX]>, OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def IDIV32m: I<0xF7, MRM7m, (ops i32mem:$src), // EDX:EAX/[mem32] = EAX,EDX
|
2005-11-29 19:38:52 +00:00
|
|
|
"idiv{l} $src", []>, Imp<[EAX,EDX],[EAX,EDX]>;
|
2003-08-04 04:59:56 +00:00
|
|
|
|
2003-08-03 21:54:21 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Two address Instructions...
|
|
|
|
//
|
2004-02-28 22:02:05 +00:00
|
|
|
let isTwoAddress = 1 in {
|
|
|
|
|
2004-03-12 17:59:56 +00:00
|
|
|
// Conditional moves
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVB16rr : I<0x42, MRMSrcReg, // if <u, GR16 = GR16
|
|
|
|
(ops GR16:$dst, GR16:$src1, GR16:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovb {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_B))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVB16rm : I<0x42, MRMSrcMem, // if <u, GR16 = [mem16]
|
|
|
|
(ops GR16:$dst, GR16:$src1, i16mem:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovb {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_B))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVB32rr : I<0x42, MRMSrcReg, // if <u, GR32 = GR32
|
|
|
|
(ops GR32:$dst, GR32:$src1, GR32:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovb {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_B))]>,
|
|
|
|
TB;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVB32rm : I<0x42, MRMSrcMem, // if <u, GR32 = [mem32]
|
|
|
|
(ops GR32:$dst, GR32:$src1, i32mem:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovb {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_B))]>,
|
|
|
|
TB;
|
2004-10-03 20:35:00 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVAE16rr: I<0x43, MRMSrcReg, // if >=u, GR16 = GR16
|
|
|
|
(ops GR16:$dst, GR16:$src1, GR16:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovae {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_AE))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVAE16rm: I<0x43, MRMSrcMem, // if >=u, GR16 = [mem16]
|
|
|
|
(ops GR16:$dst, GR16:$src1, i16mem:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovae {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_AE))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVAE32rr: I<0x43, MRMSrcReg, // if >=u, GR32 = GR32
|
|
|
|
(ops GR32:$dst, GR32:$src1, GR32:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovae {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_AE))]>,
|
|
|
|
TB;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVAE32rm: I<0x43, MRMSrcMem, // if >=u, GR32 = [mem32]
|
|
|
|
(ops GR32:$dst, GR32:$src1, i32mem:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovae {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_AE))]>,
|
|
|
|
TB;
|
2004-10-03 20:35:00 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVE16rr : I<0x44, MRMSrcReg, // if ==, GR16 = GR16
|
|
|
|
(ops GR16:$dst, GR16:$src1, GR16:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmove {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_E))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVE16rm : I<0x44, MRMSrcMem, // if ==, GR16 = [mem16]
|
|
|
|
(ops GR16:$dst, GR16:$src1, i16mem:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmove {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_E))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVE32rr : I<0x44, MRMSrcReg, // if ==, GR32 = GR32
|
|
|
|
(ops GR32:$dst, GR32:$src1, GR32:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmove {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_E))]>,
|
|
|
|
TB;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVE32rm : I<0x44, MRMSrcMem, // if ==, GR32 = [mem32]
|
|
|
|
(ops GR32:$dst, GR32:$src1, i32mem:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmove {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_E))]>,
|
|
|
|
TB;
|
2004-10-03 20:35:00 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVNE16rr: I<0x45, MRMSrcReg, // if !=, GR16 = GR16
|
|
|
|
(ops GR16:$dst, GR16:$src1, GR16:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovne {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_NE))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVNE16rm: I<0x45, MRMSrcMem, // if !=, GR16 = [mem16]
|
|
|
|
(ops GR16:$dst, GR16:$src1, i16mem:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovne {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_NE))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVNE32rr: I<0x45, MRMSrcReg, // if !=, GR32 = GR32
|
|
|
|
(ops GR32:$dst, GR32:$src1, GR32:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovne {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_NE))]>,
|
|
|
|
TB;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVNE32rm: I<0x45, MRMSrcMem, // if !=, GR32 = [mem32]
|
|
|
|
(ops GR32:$dst, GR32:$src1, i32mem:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovne {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_NE))]>,
|
|
|
|
TB;
|
2004-10-03 20:35:00 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVBE16rr: I<0x46, MRMSrcReg, // if <=u, GR16 = GR16
|
|
|
|
(ops GR16:$dst, GR16:$src1, GR16:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovbe {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_BE))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVBE16rm: I<0x46, MRMSrcMem, // if <=u, GR16 = [mem16]
|
|
|
|
(ops GR16:$dst, GR16:$src1, i16mem:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovbe {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_BE))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVBE32rr: I<0x46, MRMSrcReg, // if <=u, GR32 = GR32
|
|
|
|
(ops GR32:$dst, GR32:$src1, GR32:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovbe {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_BE))]>,
|
|
|
|
TB;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVBE32rm: I<0x46, MRMSrcMem, // if <=u, GR32 = [mem32]
|
|
|
|
(ops GR32:$dst, GR32:$src1, i32mem:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovbe {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_BE))]>,
|
|
|
|
TB;
|
2004-10-03 20:35:00 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVA16rr : I<0x47, MRMSrcReg, // if >u, GR16 = GR16
|
|
|
|
(ops GR16:$dst, GR16:$src1, GR16:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmova {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_A))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVA16rm : I<0x47, MRMSrcMem, // if >u, GR16 = [mem16]
|
|
|
|
(ops GR16:$dst, GR16:$src1, i16mem:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmova {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_A))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVA32rr : I<0x47, MRMSrcReg, // if >u, GR32 = GR32
|
|
|
|
(ops GR32:$dst, GR32:$src1, GR32:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmova {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_A))]>,
|
|
|
|
TB;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVA32rm : I<0x47, MRMSrcMem, // if >u, GR32 = [mem32]
|
|
|
|
(ops GR32:$dst, GR32:$src1, i32mem:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmova {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_A))]>,
|
|
|
|
TB;
|
2005-12-17 01:24:02 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVL16rr : I<0x4C, MRMSrcReg, // if <s, GR16 = GR16
|
|
|
|
(ops GR16:$dst, GR16:$src1, GR16:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovl {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_L))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVL16rm : I<0x4C, MRMSrcMem, // if <s, GR16 = [mem16]
|
|
|
|
(ops GR16:$dst, GR16:$src1, i16mem:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovl {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_L))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVL32rr : I<0x4C, MRMSrcReg, // if <s, GR32 = GR32
|
|
|
|
(ops GR32:$dst, GR32:$src1, GR32:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovl {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_L))]>,
|
|
|
|
TB;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVL32rm : I<0x4C, MRMSrcMem, // if <s, GR32 = [mem32]
|
|
|
|
(ops GR32:$dst, GR32:$src1, i32mem:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovl {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_L))]>,
|
|
|
|
TB;
|
2005-12-17 01:24:02 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVGE16rr: I<0x4D, MRMSrcReg, // if >=s, GR16 = GR16
|
|
|
|
(ops GR16:$dst, GR16:$src1, GR16:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovge {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_GE))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVGE16rm: I<0x4D, MRMSrcMem, // if >=s, GR16 = [mem16]
|
|
|
|
(ops GR16:$dst, GR16:$src1, i16mem:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovge {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_GE))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVGE32rr: I<0x4D, MRMSrcReg, // if >=s, GR32 = GR32
|
|
|
|
(ops GR32:$dst, GR32:$src1, GR32:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovge {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_GE))]>,
|
|
|
|
TB;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVGE32rm: I<0x4D, MRMSrcMem, // if >=s, GR32 = [mem32]
|
|
|
|
(ops GR32:$dst, GR32:$src1, i32mem:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovge {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_GE))]>,
|
|
|
|
TB;
|
2005-12-17 01:24:02 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVLE16rr: I<0x4E, MRMSrcReg, // if <=s, GR16 = GR16
|
|
|
|
(ops GR16:$dst, GR16:$src1, GR16:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovle {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_LE))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVLE16rm: I<0x4E, MRMSrcMem, // if <=s, GR16 = [mem16]
|
|
|
|
(ops GR16:$dst, GR16:$src1, i16mem:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovle {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_LE))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVLE32rr: I<0x4E, MRMSrcReg, // if <=s, GR32 = GR32
|
|
|
|
(ops GR32:$dst, GR32:$src1, GR32:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovle {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_LE))]>,
|
|
|
|
TB;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVLE32rm: I<0x4E, MRMSrcMem, // if <=s, GR32 = [mem32]
|
|
|
|
(ops GR32:$dst, GR32:$src1, i32mem:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovle {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_LE))]>,
|
|
|
|
TB;
|
2005-12-17 01:24:02 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVG16rr : I<0x4F, MRMSrcReg, // if >s, GR16 = GR16
|
|
|
|
(ops GR16:$dst, GR16:$src1, GR16:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovg {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_G))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVG16rm : I<0x4F, MRMSrcMem, // if >s, GR16 = [mem16]
|
|
|
|
(ops GR16:$dst, GR16:$src1, i16mem:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovg {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_G))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVG32rr : I<0x4F, MRMSrcReg, // if >s, GR32 = GR32
|
|
|
|
(ops GR32:$dst, GR32:$src1, GR32:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovg {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_G))]>,
|
|
|
|
TB;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVG32rm : I<0x4F, MRMSrcMem, // if >s, GR32 = [mem32]
|
|
|
|
(ops GR32:$dst, GR32:$src1, i32mem:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmovg {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_G))]>,
|
|
|
|
TB;
|
2004-10-03 20:35:00 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVS16rr : I<0x48, MRMSrcReg, // if signed, GR16 = GR16
|
|
|
|
(ops GR16:$dst, GR16:$src1, GR16:$src2),
|
2006-01-06 00:43:03 +00:00
|
|
|
"cmovs {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_S))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVS16rm : I<0x48, MRMSrcMem, // if signed, GR16 = [mem16]
|
|
|
|
(ops GR16:$dst, GR16:$src1, i16mem:$src2),
|
2006-01-06 00:43:03 +00:00
|
|
|
"cmovs {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_S))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVS32rr : I<0x48, MRMSrcReg, // if signed, GR32 = GR32
|
|
|
|
(ops GR32:$dst, GR32:$src1, GR32:$src2),
|
2006-01-06 00:43:03 +00:00
|
|
|
"cmovs {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_S))]>,
|
|
|
|
TB;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVS32rm : I<0x48, MRMSrcMem, // if signed, GR32 = [mem32]
|
|
|
|
(ops GR32:$dst, GR32:$src1, i32mem:$src2),
|
2006-01-06 00:43:03 +00:00
|
|
|
"cmovs {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_S))]>,
|
|
|
|
TB;
|
2004-10-03 20:35:00 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVNS16rr: I<0x49, MRMSrcReg, // if !signed, GR16 = GR16
|
|
|
|
(ops GR16:$dst, GR16:$src1, GR16:$src2),
|
2006-01-06 00:43:03 +00:00
|
|
|
"cmovns {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_NS))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVNS16rm: I<0x49, MRMSrcMem, // if !signed, GR16 = [mem16]
|
|
|
|
(ops GR16:$dst, GR16:$src1, i16mem:$src2),
|
2006-01-06 00:43:03 +00:00
|
|
|
"cmovns {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_NS))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVNS32rr: I<0x49, MRMSrcReg, // if !signed, GR32 = GR32
|
|
|
|
(ops GR32:$dst, GR32:$src1, GR32:$src2),
|
2006-01-06 00:43:03 +00:00
|
|
|
"cmovns {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_NS))]>,
|
|
|
|
TB;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVNS32rm: I<0x49, MRMSrcMem, // if !signed, GR32 = [mem32]
|
|
|
|
(ops GR32:$dst, GR32:$src1, i32mem:$src2),
|
2006-01-06 00:43:03 +00:00
|
|
|
"cmovns {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_NS))]>,
|
|
|
|
TB;
|
2004-10-03 20:35:00 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVP16rr : I<0x4A, MRMSrcReg, // if parity, GR16 = GR16
|
|
|
|
(ops GR16:$dst, GR16:$src1, GR16:$src2),
|
2006-01-06 00:43:03 +00:00
|
|
|
"cmovp {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_P))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVP16rm : I<0x4A, MRMSrcMem, // if parity, GR16 = [mem16]
|
|
|
|
(ops GR16:$dst, GR16:$src1, i16mem:$src2),
|
2006-01-06 00:43:03 +00:00
|
|
|
"cmovp {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_P))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVP32rr : I<0x4A, MRMSrcReg, // if parity, GR32 = GR32
|
|
|
|
(ops GR32:$dst, GR32:$src1, GR32:$src2),
|
2006-01-06 00:43:03 +00:00
|
|
|
"cmovp {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_P))]>,
|
|
|
|
TB;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVP32rm : I<0x4A, MRMSrcMem, // if parity, GR32 = [mem32]
|
|
|
|
(ops GR32:$dst, GR32:$src1, i32mem:$src2),
|
2006-01-06 00:43:03 +00:00
|
|
|
"cmovp {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_P))]>,
|
|
|
|
TB;
|
2005-01-10 22:09:33 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVNP16rr : I<0x4B, MRMSrcReg, // if !parity, GR16 = GR16
|
|
|
|
(ops GR16:$dst, GR16:$src1, GR16:$src2),
|
2006-01-06 00:43:03 +00:00
|
|
|
"cmovnp {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, GR16:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_NP))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVNP16rm : I<0x4B, MRMSrcMem, // if !parity, GR16 = [mem16]
|
|
|
|
(ops GR16:$dst, GR16:$src1, i16mem:$src2),
|
2006-01-06 00:43:03 +00:00
|
|
|
"cmovnp {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86cmov GR16:$src1, (loadi16 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_NP))]>,
|
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVNP32rr : I<0x4B, MRMSrcReg, // if !parity, GR32 = GR32
|
|
|
|
(ops GR32:$dst, GR32:$src1, GR32:$src2),
|
2006-01-06 00:43:03 +00:00
|
|
|
"cmovnp {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, GR32:$src2,
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_NP))]>,
|
|
|
|
TB;
|
2006-05-16 07:21:53 +00:00
|
|
|
def CMOVNP32rm : I<0x4B, MRMSrcMem, // if !parity, GR32 = [mem32]
|
|
|
|
(ops GR32:$dst, GR32:$src1, i32mem:$src2),
|
2006-01-06 00:43:03 +00:00
|
|
|
"cmovnp {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86cmov GR32:$src1, (loadi32 addr:$src2),
|
2006-01-26 00:29:36 +00:00
|
|
|
X86_COND_NP))]>,
|
|
|
|
TB;
|
2005-01-10 22:09:33 +00:00
|
|
|
|
|
|
|
|
2003-10-19 19:25:35 +00:00
|
|
|
// unary instructions
|
2006-07-19 00:27:29 +00:00
|
|
|
let CodeSize = 2 in {
|
2006-05-16 07:21:53 +00:00
|
|
|
def NEG8r : I<0xF6, MRM3r, (ops GR8 :$dst, GR8 :$src), "neg{b} $dst",
|
|
|
|
[(set GR8:$dst, (ineg GR8:$src))]>;
|
|
|
|
def NEG16r : I<0xF7, MRM3r, (ops GR16:$dst, GR16:$src), "neg{w} $dst",
|
|
|
|
[(set GR16:$dst, (ineg GR16:$src))]>, OpSize;
|
|
|
|
def NEG32r : I<0xF7, MRM3r, (ops GR32:$dst, GR32:$src), "neg{l} $dst",
|
|
|
|
[(set GR32:$dst, (ineg GR32:$src))]>;
|
2004-08-11 04:31:00 +00:00
|
|
|
let isTwoAddress = 0 in {
|
2005-12-13 00:54:44 +00:00
|
|
|
def NEG8m : I<0xF6, MRM3m, (ops i8mem :$dst), "neg{b} $dst",
|
2005-12-13 01:57:51 +00:00
|
|
|
[(store (ineg (loadi8 addr:$dst)), addr:$dst)]>;
|
2005-12-13 00:54:44 +00:00
|
|
|
def NEG16m : I<0xF7, MRM3m, (ops i16mem:$dst), "neg{w} $dst",
|
2005-12-13 01:57:51 +00:00
|
|
|
[(store (ineg (loadi16 addr:$dst)), addr:$dst)]>, OpSize;
|
2005-12-13 00:54:44 +00:00
|
|
|
def NEG32m : I<0xF7, MRM3m, (ops i32mem:$dst), "neg{l} $dst",
|
2005-12-13 01:57:51 +00:00
|
|
|
[(store (ineg (loadi32 addr:$dst)), addr:$dst)]>;
|
|
|
|
|
2004-08-11 04:31:00 +00:00
|
|
|
}
|
A big X86 instruction rename. The instructions are renamed to make
their names more decriptive. A name consists of the base name, a
default operand size followed by a character per operand with an
optional special size. For example:
ADD8rr -> add, 8-bit register, 8-bit register
IMUL16rmi -> imul, 16-bit register, 16-bit memory, 16-bit immediate
IMUL16rmi8 -> imul, 16-bit register, 16-bit memory, 8-bit immediate
MOVSX32rm16 -> movsx, 32-bit register, 16-bit memory
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11995 91177308-0d34-0410-b5e6-96231b3b80d8
2004-02-29 08:50:03 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def NOT8r : I<0xF6, MRM2r, (ops GR8 :$dst, GR8 :$src), "not{b} $dst",
|
|
|
|
[(set GR8:$dst, (not GR8:$src))]>;
|
|
|
|
def NOT16r : I<0xF7, MRM2r, (ops GR16:$dst, GR16:$src), "not{w} $dst",
|
|
|
|
[(set GR16:$dst, (not GR16:$src))]>, OpSize;
|
|
|
|
def NOT32r : I<0xF7, MRM2r, (ops GR32:$dst, GR32:$src), "not{l} $dst",
|
|
|
|
[(set GR32:$dst, (not GR32:$src))]>;
|
2004-08-11 04:31:00 +00:00
|
|
|
let isTwoAddress = 0 in {
|
2005-12-13 00:54:44 +00:00
|
|
|
def NOT8m : I<0xF6, MRM2m, (ops i8mem :$dst), "not{b} $dst",
|
2005-12-13 01:57:51 +00:00
|
|
|
[(store (not (loadi8 addr:$dst)), addr:$dst)]>;
|
2005-12-13 00:54:44 +00:00
|
|
|
def NOT16m : I<0xF7, MRM2m, (ops i16mem:$dst), "not{w} $dst",
|
2005-12-13 01:57:51 +00:00
|
|
|
[(store (not (loadi16 addr:$dst)), addr:$dst)]>, OpSize;
|
2005-12-13 00:54:44 +00:00
|
|
|
def NOT32m : I<0xF7, MRM2m, (ops i32mem:$dst), "not{l} $dst",
|
2005-12-13 01:57:51 +00:00
|
|
|
[(store (not (loadi32 addr:$dst)), addr:$dst)]>;
|
2004-08-11 04:31:00 +00:00
|
|
|
}
|
2006-07-19 00:27:29 +00:00
|
|
|
} // CodeSize
|
A big X86 instruction rename. The instructions are renamed to make
their names more decriptive. A name consists of the base name, a
default operand size followed by a character per operand with an
optional special size. For example:
ADD8rr -> add, 8-bit register, 8-bit register
IMUL16rmi -> imul, 16-bit register, 16-bit memory, 16-bit immediate
IMUL16rmi8 -> imul, 16-bit register, 16-bit memory, 8-bit immediate
MOVSX32rm16 -> movsx, 32-bit register, 16-bit memory
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11995 91177308-0d34-0410-b5e6-96231b3b80d8
2004-02-29 08:50:03 +00:00
|
|
|
|
2005-12-10 00:48:20 +00:00
|
|
|
// TODO: inc/dec is slow for P4, but fast for Pentium-M.
|
2006-07-19 00:27:29 +00:00
|
|
|
let CodeSize = 2 in
|
2006-05-16 07:21:53 +00:00
|
|
|
def INC8r : I<0xFE, MRM0r, (ops GR8 :$dst, GR8 :$src), "inc{b} $dst",
|
|
|
|
[(set GR8:$dst, (add GR8:$src, 1))]>;
|
2006-07-19 00:27:29 +00:00
|
|
|
let isConvertibleToThreeAddress = 1, CodeSize = 1 in { // Can xform into LEA.
|
2006-07-11 19:49:49 +00:00
|
|
|
def INC16r : I<0x40, AddRegFrm, (ops GR16:$dst, GR16:$src), "inc{w} $dst",
|
2006-09-08 06:48:29 +00:00
|
|
|
[(set GR16:$dst, (add GR16:$src, 1))]>,
|
|
|
|
OpSize, Requires<[In32BitMode]>;
|
2006-07-11 19:49:49 +00:00
|
|
|
def INC32r : I<0x40, AddRegFrm, (ops GR32:$dst, GR32:$src), "inc{l} $dst",
|
2006-09-08 06:48:29 +00:00
|
|
|
[(set GR32:$dst, (add GR32:$src, 1))]>, Requires<[In32BitMode]>;
|
2005-01-02 02:35:46 +00:00
|
|
|
}
|
2006-07-19 00:27:29 +00:00
|
|
|
let isTwoAddress = 0, CodeSize = 2 in {
|
2005-12-13 01:02:47 +00:00
|
|
|
def INC8m : I<0xFE, MRM0m, (ops i8mem :$dst), "inc{b} $dst",
|
2005-12-13 01:57:51 +00:00
|
|
|
[(store (add (loadi8 addr:$dst), 1), addr:$dst)]>;
|
2005-12-13 01:02:47 +00:00
|
|
|
def INC16m : I<0xFF, MRM0m, (ops i16mem:$dst), "inc{w} $dst",
|
2005-12-13 01:57:51 +00:00
|
|
|
[(store (add (loadi16 addr:$dst), 1), addr:$dst)]>, OpSize;
|
2005-12-13 01:02:47 +00:00
|
|
|
def INC32m : I<0xFF, MRM0m, (ops i32mem:$dst), "inc{l} $dst",
|
2005-12-13 01:57:51 +00:00
|
|
|
[(store (add (loadi32 addr:$dst), 1), addr:$dst)]>;
|
2004-08-11 04:31:00 +00:00
|
|
|
}
|
A big X86 instruction rename. The instructions are renamed to make
their names more decriptive. A name consists of the base name, a
default operand size followed by a character per operand with an
optional special size. For example:
ADD8rr -> add, 8-bit register, 8-bit register
IMUL16rmi -> imul, 16-bit register, 16-bit memory, 16-bit immediate
IMUL16rmi8 -> imul, 16-bit register, 16-bit memory, 8-bit immediate
MOVSX32rm16 -> movsx, 32-bit register, 16-bit memory
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11995 91177308-0d34-0410-b5e6-96231b3b80d8
2004-02-29 08:50:03 +00:00
|
|
|
|
2006-07-19 00:27:29 +00:00
|
|
|
let CodeSize = 2 in
|
2006-05-16 07:21:53 +00:00
|
|
|
def DEC8r : I<0xFE, MRM1r, (ops GR8 :$dst, GR8 :$src), "dec{b} $dst",
|
|
|
|
[(set GR8:$dst, (add GR8:$src, -1))]>;
|
2006-07-19 00:27:29 +00:00
|
|
|
let isConvertibleToThreeAddress = 1, CodeSize = 1 in { // Can xform into LEA.
|
2006-07-11 19:49:49 +00:00
|
|
|
def DEC16r : I<0x48, AddRegFrm, (ops GR16:$dst, GR16:$src), "dec{w} $dst",
|
2006-09-08 06:48:29 +00:00
|
|
|
[(set GR16:$dst, (add GR16:$src, -1))]>,
|
|
|
|
OpSize, Requires<[In32BitMode]>;
|
2006-07-11 19:49:49 +00:00
|
|
|
def DEC32r : I<0x48, AddRegFrm, (ops GR32:$dst, GR32:$src), "dec{l} $dst",
|
2006-09-08 06:48:29 +00:00
|
|
|
[(set GR32:$dst, (add GR32:$src, -1))]>, Requires<[In32BitMode]>;
|
2005-01-02 02:35:46 +00:00
|
|
|
}
|
2004-08-11 04:31:00 +00:00
|
|
|
|
2006-07-19 00:27:29 +00:00
|
|
|
let isTwoAddress = 0, CodeSize = 2 in {
|
2005-12-13 01:02:47 +00:00
|
|
|
def DEC8m : I<0xFE, MRM1m, (ops i8mem :$dst), "dec{b} $dst",
|
2005-12-13 01:57:51 +00:00
|
|
|
[(store (add (loadi8 addr:$dst), -1), addr:$dst)]>;
|
2005-12-13 01:02:47 +00:00
|
|
|
def DEC16m : I<0xFF, MRM1m, (ops i16mem:$dst), "dec{w} $dst",
|
2005-12-13 01:57:51 +00:00
|
|
|
[(store (add (loadi16 addr:$dst), -1), addr:$dst)]>, OpSize;
|
2005-12-13 01:02:47 +00:00
|
|
|
def DEC32m : I<0xFF, MRM1m, (ops i32mem:$dst), "dec{l} $dst",
|
2005-12-13 01:57:51 +00:00
|
|
|
[(store (add (loadi32 addr:$dst), -1), addr:$dst)]>;
|
2004-08-11 04:31:00 +00:00
|
|
|
}
|
2004-02-28 22:02:05 +00:00
|
|
|
|
|
|
|
// Logical operators...
|
2005-01-02 02:35:46 +00:00
|
|
|
let isCommutable = 1 in { // X = AND Y, Z --> X = AND Z, Y
|
2004-10-03 20:35:00 +00:00
|
|
|
def AND8rr : I<0x20, MRMDestReg,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR8 :$dst, GR8 :$src1, GR8 :$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"and{b} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (and GR8:$src1, GR8:$src2))]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def AND16rr : I<0x21, MRMDestReg,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR16:$dst, GR16:$src1, GR16:$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"and{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (and GR16:$src1, GR16:$src2))]>, OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def AND32rr : I<0x21, MRMDestReg,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR32:$dst, GR32:$src1, GR32:$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"and{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (and GR32:$src1, GR32:$src2))]>;
|
2005-01-02 02:35:46 +00:00
|
|
|
}
|
2004-10-03 20:35:00 +00:00
|
|
|
|
|
|
|
def AND8rm : I<0x22, MRMSrcMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR8 :$dst, GR8 :$src1, i8mem :$src2),
|
2005-12-13 01:41:36 +00:00
|
|
|
"and{b} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (and GR8:$src1, (load addr:$src2)))]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def AND16rm : I<0x23, MRMSrcMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR16:$dst, GR16:$src1, i16mem:$src2),
|
2005-12-13 01:41:36 +00:00
|
|
|
"and{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (and GR16:$src1, (load addr:$src2)))]>, OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def AND32rm : I<0x23, MRMSrcMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR32:$dst, GR32:$src1, i32mem:$src2),
|
2005-12-13 01:41:36 +00:00
|
|
|
"and{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (and GR32:$src1, (load addr:$src2)))]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
|
|
|
|
def AND8ri : Ii8<0x80, MRM4r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR8 :$dst, GR8 :$src1, i8imm :$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"and{b} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (and GR8:$src1, imm:$src2))]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def AND16ri : Ii16<0x81, MRM4r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR16:$dst, GR16:$src1, i16imm:$src2),
|
2005-11-17 02:01:55 +00:00
|
|
|
"and{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (and GR16:$src1, imm:$src2))]>, OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def AND32ri : Ii32<0x81, MRM4r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR32:$dst, GR32:$src1, i32imm:$src2),
|
2005-11-16 22:59:19 +00:00
|
|
|
"and{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (and GR32:$src1, imm:$src2))]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def AND16ri8 : Ii8<0x83, MRM4r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR16:$dst, GR16:$src1, i16i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"and{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (and GR16:$src1, i16immSExt8:$src2))]>,
|
2005-12-13 00:14:11 +00:00
|
|
|
OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def AND32ri8 : Ii8<0x83, MRM4r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR32:$dst, GR32:$src1, i32i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"and{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (and GR32:$src1, i32immSExt8:$src2))]>;
|
2004-08-11 05:07:25 +00:00
|
|
|
|
|
|
|
let isTwoAddress = 0 in {
|
2004-10-03 20:35:00 +00:00
|
|
|
def AND8mr : I<0x20, MRMDestMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops i8mem :$dst, GR8 :$src),
|
2005-12-13 01:41:36 +00:00
|
|
|
"and{b} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (and (load addr:$dst), GR8:$src), addr:$dst)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def AND16mr : I<0x21, MRMDestMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops i16mem:$dst, GR16:$src),
|
2005-12-13 01:41:36 +00:00
|
|
|
"and{w} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (and (load addr:$dst), GR16:$src), addr:$dst)]>,
|
2005-12-13 01:41:36 +00:00
|
|
|
OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def AND32mr : I<0x21, MRMDestMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops i32mem:$dst, GR32:$src),
|
2005-12-13 01:41:36 +00:00
|
|
|
"and{l} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (and (load addr:$dst), GR32:$src), addr:$dst)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def AND8mi : Ii8<0x80, MRM4m,
|
|
|
|
(ops i8mem :$dst, i8imm :$src),
|
2005-12-13 01:41:36 +00:00
|
|
|
"and{b} {$src, $dst|$dst, $src}",
|
2005-12-13 02:40:18 +00:00
|
|
|
[(store (and (loadi8 addr:$dst), imm:$src), addr:$dst)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def AND16mi : Ii16<0x81, MRM4m,
|
|
|
|
(ops i16mem:$dst, i16imm:$src),
|
2005-12-13 01:41:36 +00:00
|
|
|
"and{w} {$src, $dst|$dst, $src}",
|
2005-12-13 02:40:18 +00:00
|
|
|
[(store (and (loadi16 addr:$dst), imm:$src), addr:$dst)]>,
|
2005-12-13 01:41:36 +00:00
|
|
|
OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def AND32mi : Ii32<0x81, MRM4m,
|
|
|
|
(ops i32mem:$dst, i32imm:$src),
|
2005-12-13 01:41:36 +00:00
|
|
|
"and{l} {$src, $dst|$dst, $src}",
|
2005-12-13 02:40:18 +00:00
|
|
|
[(store (and (loadi32 addr:$dst), imm:$src), addr:$dst)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def AND16mi8 : Ii8<0x83, MRM4m,
|
2005-12-13 01:41:36 +00:00
|
|
|
(ops i16mem:$dst, i16i8imm :$src),
|
|
|
|
"and{w} {$src, $dst|$dst, $src}",
|
|
|
|
[(store (and (load addr:$dst), i16immSExt8:$src), addr:$dst)]>,
|
|
|
|
OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def AND32mi8 : Ii8<0x83, MRM4m,
|
2005-12-13 01:41:36 +00:00
|
|
|
(ops i32mem:$dst, i32i8imm :$src),
|
|
|
|
"and{l} {$src, $dst|$dst, $src}",
|
2006-01-14 01:18:49 +00:00
|
|
|
[(store (and (load addr:$dst), i32immSExt8:$src), addr:$dst)]>;
|
2004-08-11 05:07:25 +00:00
|
|
|
}
|
|
|
|
|
A big X86 instruction rename. The instructions are renamed to make
their names more decriptive. A name consists of the base name, a
default operand size followed by a character per operand with an
optional special size. For example:
ADD8rr -> add, 8-bit register, 8-bit register
IMUL16rmi -> imul, 16-bit register, 16-bit memory, 16-bit immediate
IMUL16rmi8 -> imul, 16-bit register, 16-bit memory, 8-bit immediate
MOVSX32rm16 -> movsx, 32-bit register, 16-bit memory
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11995 91177308-0d34-0410-b5e6-96231b3b80d8
2004-02-29 08:50:03 +00:00
|
|
|
|
2005-01-02 02:35:46 +00:00
|
|
|
let isCommutable = 1 in { // X = OR Y, Z --> X = OR Z, Y
|
2006-05-16 07:21:53 +00:00
|
|
|
def OR8rr : I<0x08, MRMDestReg, (ops GR8 :$dst, GR8 :$src1, GR8 :$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"or{b} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (or GR8:$src1, GR8:$src2))]>;
|
|
|
|
def OR16rr : I<0x09, MRMDestReg, (ops GR16:$dst, GR16:$src1, GR16:$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"or{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (or GR16:$src1, GR16:$src2))]>, OpSize;
|
|
|
|
def OR32rr : I<0x09, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"or{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (or GR32:$src1, GR32:$src2))]>;
|
2005-01-02 02:35:46 +00:00
|
|
|
}
|
2006-05-16 07:21:53 +00:00
|
|
|
def OR8rm : I<0x0A, MRMSrcMem , (ops GR8 :$dst, GR8 :$src1, i8mem :$src2),
|
2005-12-13 01:41:36 +00:00
|
|
|
"or{b} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (or GR8:$src1, (load addr:$src2)))]>;
|
|
|
|
def OR16rm : I<0x0B, MRMSrcMem , (ops GR16:$dst, GR16:$src1, i16mem:$src2),
|
2005-12-13 01:41:36 +00:00
|
|
|
"or{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (or GR16:$src1, (load addr:$src2)))]>, OpSize;
|
|
|
|
def OR32rm : I<0x0B, MRMSrcMem , (ops GR32:$dst, GR32:$src1, i32mem:$src2),
|
2005-12-13 01:41:36 +00:00
|
|
|
"or{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (or GR32:$src1, (load addr:$src2)))]>;
|
A big X86 instruction rename. The instructions are renamed to make
their names more decriptive. A name consists of the base name, a
default operand size followed by a character per operand with an
optional special size. For example:
ADD8rr -> add, 8-bit register, 8-bit register
IMUL16rmi -> imul, 16-bit register, 16-bit memory, 16-bit immediate
IMUL16rmi8 -> imul, 16-bit register, 16-bit memory, 8-bit immediate
MOVSX32rm16 -> movsx, 32-bit register, 16-bit memory
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11995 91177308-0d34-0410-b5e6-96231b3b80d8
2004-02-29 08:50:03 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def OR8ri : Ii8 <0x80, MRM1r, (ops GR8 :$dst, GR8 :$src1, i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"or{b} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (or GR8:$src1, imm:$src2))]>;
|
|
|
|
def OR16ri : Ii16<0x81, MRM1r, (ops GR16:$dst, GR16:$src1, i16imm:$src2),
|
2005-11-17 02:01:55 +00:00
|
|
|
"or{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (or GR16:$src1, imm:$src2))]>, OpSize;
|
|
|
|
def OR32ri : Ii32<0x81, MRM1r, (ops GR32:$dst, GR32:$src1, i32imm:$src2),
|
2005-11-16 22:59:19 +00:00
|
|
|
"or{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (or GR32:$src1, imm:$src2))]>;
|
A big X86 instruction rename. The instructions are renamed to make
their names more decriptive. A name consists of the base name, a
default operand size followed by a character per operand with an
optional special size. For example:
ADD8rr -> add, 8-bit register, 8-bit register
IMUL16rmi -> imul, 16-bit register, 16-bit memory, 16-bit immediate
IMUL16rmi8 -> imul, 16-bit register, 16-bit memory, 8-bit immediate
MOVSX32rm16 -> movsx, 32-bit register, 16-bit memory
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11995 91177308-0d34-0410-b5e6-96231b3b80d8
2004-02-29 08:50:03 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def OR16ri8 : Ii8<0x83, MRM1r, (ops GR16:$dst, GR16:$src1, i16i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"or{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (or GR16:$src1, i16immSExt8:$src2))]>, OpSize;
|
|
|
|
def OR32ri8 : Ii8<0x83, MRM1r, (ops GR32:$dst, GR32:$src1, i32i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"or{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (or GR32:$src1, i32immSExt8:$src2))]>;
|
2004-08-11 04:31:00 +00:00
|
|
|
let isTwoAddress = 0 in {
|
2006-05-16 07:21:53 +00:00
|
|
|
def OR8mr : I<0x08, MRMDestMem, (ops i8mem:$dst, GR8:$src),
|
2005-12-13 01:41:36 +00:00
|
|
|
"or{b} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (or (load addr:$dst), GR8:$src), addr:$dst)]>;
|
|
|
|
def OR16mr : I<0x09, MRMDestMem, (ops i16mem:$dst, GR16:$src),
|
2005-12-13 01:41:36 +00:00
|
|
|
"or{w} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (or (load addr:$dst), GR16:$src), addr:$dst)]>, OpSize;
|
|
|
|
def OR32mr : I<0x09, MRMDestMem, (ops i32mem:$dst, GR32:$src),
|
2005-12-13 01:41:36 +00:00
|
|
|
"or{l} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (or (load addr:$dst), GR32:$src), addr:$dst)]>;
|
2004-08-11 05:31:07 +00:00
|
|
|
def OR8mi : Ii8<0x80, MRM1m, (ops i8mem :$dst, i8imm:$src),
|
2005-12-13 01:41:36 +00:00
|
|
|
"or{b} {$src, $dst|$dst, $src}",
|
2005-12-13 02:40:18 +00:00
|
|
|
[(store (or (loadi8 addr:$dst), imm:$src), addr:$dst)]>;
|
2004-08-11 05:31:07 +00:00
|
|
|
def OR16mi : Ii16<0x81, MRM1m, (ops i16mem:$dst, i16imm:$src),
|
2005-12-13 01:41:36 +00:00
|
|
|
"or{w} {$src, $dst|$dst, $src}",
|
2005-12-13 02:40:18 +00:00
|
|
|
[(store (or (loadi16 addr:$dst), imm:$src), addr:$dst)]>,
|
2005-12-13 01:41:36 +00:00
|
|
|
OpSize;
|
2004-08-11 05:31:07 +00:00
|
|
|
def OR32mi : Ii32<0x81, MRM1m, (ops i32mem:$dst, i32imm:$src),
|
2005-12-13 01:41:36 +00:00
|
|
|
"or{l} {$src, $dst|$dst, $src}",
|
2005-12-13 02:40:18 +00:00
|
|
|
[(store (or (loadi32 addr:$dst), imm:$src), addr:$dst)]>;
|
2005-12-13 01:41:36 +00:00
|
|
|
def OR16mi8 : Ii8<0x83, MRM1m, (ops i16mem:$dst, i16i8imm:$src),
|
|
|
|
"or{w} {$src, $dst|$dst, $src}",
|
|
|
|
[(store (or (load addr:$dst), i16immSExt8:$src), addr:$dst)]>,
|
|
|
|
OpSize;
|
|
|
|
def OR32mi8 : Ii8<0x83, MRM1m, (ops i32mem:$dst, i32i8imm:$src),
|
|
|
|
"or{l} {$src, $dst|$dst, $src}",
|
|
|
|
[(store (or (load addr:$dst), i32immSExt8:$src), addr:$dst)]>;
|
2004-08-11 04:31:00 +00:00
|
|
|
}
|
A big X86 instruction rename. The instructions are renamed to make
their names more decriptive. A name consists of the base name, a
default operand size followed by a character per operand with an
optional special size. For example:
ADD8rr -> add, 8-bit register, 8-bit register
IMUL16rmi -> imul, 16-bit register, 16-bit memory, 16-bit immediate
IMUL16rmi8 -> imul, 16-bit register, 16-bit memory, 8-bit immediate
MOVSX32rm16 -> movsx, 32-bit register, 16-bit memory
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11995 91177308-0d34-0410-b5e6-96231b3b80d8
2004-02-29 08:50:03 +00:00
|
|
|
|
|
|
|
|
2005-01-02 02:35:46 +00:00
|
|
|
let isCommutable = 1 in { // X = XOR Y, Z --> X = XOR Z, Y
|
2004-10-03 20:35:00 +00:00
|
|
|
def XOR8rr : I<0x30, MRMDestReg,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR8 :$dst, GR8 :$src1, GR8 :$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"xor{b} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (xor GR8:$src1, GR8:$src2))]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def XOR16rr : I<0x31, MRMDestReg,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR16:$dst, GR16:$src1, GR16:$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"xor{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (xor GR16:$src1, GR16:$src2))]>, OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def XOR32rr : I<0x31, MRMDestReg,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR32:$dst, GR32:$src1, GR32:$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"xor{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (xor GR32:$src1, GR32:$src2))]>;
|
2005-01-02 02:35:46 +00:00
|
|
|
}
|
|
|
|
|
2004-10-03 20:35:00 +00:00
|
|
|
def XOR8rm : I<0x32, MRMSrcMem ,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR8 :$dst, GR8:$src1, i8mem :$src2),
|
2005-12-13 01:41:36 +00:00
|
|
|
"xor{b} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (xor GR8:$src1, (load addr:$src2)))]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def XOR16rm : I<0x33, MRMSrcMem ,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR16:$dst, GR16:$src1, i16mem:$src2),
|
2005-12-13 01:41:36 +00:00
|
|
|
"xor{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (xor GR16:$src1, (load addr:$src2)))]>, OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def XOR32rm : I<0x33, MRMSrcMem ,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR32:$dst, GR32:$src1, i32mem:$src2),
|
2005-12-13 01:41:36 +00:00
|
|
|
"xor{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (xor GR32:$src1, (load addr:$src2)))]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
|
|
|
|
def XOR8ri : Ii8<0x80, MRM6r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR8:$dst, GR8:$src1, i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"xor{b} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (xor GR8:$src1, imm:$src2))]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def XOR16ri : Ii16<0x81, MRM6r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR16:$dst, GR16:$src1, i16imm:$src2),
|
2005-11-17 02:01:55 +00:00
|
|
|
"xor{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (xor GR16:$src1, imm:$src2))]>, OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def XOR32ri : Ii32<0x81, MRM6r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR32:$dst, GR32:$src1, i32imm:$src2),
|
2005-11-16 22:59:19 +00:00
|
|
|
"xor{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (xor GR32:$src1, imm:$src2))]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def XOR16ri8 : Ii8<0x83, MRM6r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR16:$dst, GR16:$src1, i16i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"xor{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (xor GR16:$src1, i16immSExt8:$src2))]>,
|
2005-12-13 00:14:11 +00:00
|
|
|
OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def XOR32ri8 : Ii8<0x83, MRM6r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR32:$dst, GR32:$src1, i32i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"xor{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (xor GR32:$src1, i32immSExt8:$src2))]>;
|
2004-08-11 04:31:00 +00:00
|
|
|
let isTwoAddress = 0 in {
|
2004-10-03 20:35:00 +00:00
|
|
|
def XOR8mr : I<0x30, MRMDestMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops i8mem :$dst, GR8 :$src),
|
2005-12-13 01:41:36 +00:00
|
|
|
"xor{b} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (xor (load addr:$dst), GR8:$src), addr:$dst)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def XOR16mr : I<0x31, MRMDestMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops i16mem:$dst, GR16:$src),
|
2005-12-13 01:41:36 +00:00
|
|
|
"xor{w} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (xor (load addr:$dst), GR16:$src), addr:$dst)]>,
|
2005-12-13 01:41:36 +00:00
|
|
|
OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def XOR32mr : I<0x31, MRMDestMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops i32mem:$dst, GR32:$src),
|
2005-12-13 01:41:36 +00:00
|
|
|
"xor{l} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (xor (load addr:$dst), GR32:$src), addr:$dst)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def XOR8mi : Ii8<0x80, MRM6m,
|
|
|
|
(ops i8mem :$dst, i8imm :$src),
|
2005-12-13 01:41:36 +00:00
|
|
|
"xor{b} {$src, $dst|$dst, $src}",
|
2005-12-13 02:40:18 +00:00
|
|
|
[(store (xor (loadi8 addr:$dst), imm:$src), addr:$dst)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def XOR16mi : Ii16<0x81, MRM6m,
|
|
|
|
(ops i16mem:$dst, i16imm:$src),
|
2005-12-13 01:41:36 +00:00
|
|
|
"xor{w} {$src, $dst|$dst, $src}",
|
2005-12-13 02:40:18 +00:00
|
|
|
[(store (xor (loadi16 addr:$dst), imm:$src), addr:$dst)]>,
|
2005-12-13 01:41:36 +00:00
|
|
|
OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def XOR32mi : Ii32<0x81, MRM6m,
|
|
|
|
(ops i32mem:$dst, i32imm:$src),
|
2005-12-13 01:41:36 +00:00
|
|
|
"xor{l} {$src, $dst|$dst, $src}",
|
2005-12-13 02:40:18 +00:00
|
|
|
[(store (xor (loadi32 addr:$dst), imm:$src), addr:$dst)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def XOR16mi8 : Ii8<0x83, MRM6m,
|
2005-12-13 01:41:36 +00:00
|
|
|
(ops i16mem:$dst, i16i8imm :$src),
|
|
|
|
"xor{w} {$src, $dst|$dst, $src}",
|
|
|
|
[(store (xor (load addr:$dst), i16immSExt8:$src), addr:$dst)]>,
|
|
|
|
OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def XOR32mi8 : Ii8<0x83, MRM6m,
|
2005-12-13 01:41:36 +00:00
|
|
|
(ops i32mem:$dst, i32i8imm :$src),
|
|
|
|
"xor{l} {$src, $dst|$dst, $src}",
|
|
|
|
[(store (xor (load addr:$dst), i32immSExt8:$src), addr:$dst)]>;
|
2004-08-11 04:31:00 +00:00
|
|
|
}
|
2003-10-19 19:25:35 +00:00
|
|
|
|
2004-02-28 22:02:05 +00:00
|
|
|
// Shift instructions
|
2006-05-16 07:21:53 +00:00
|
|
|
def SHL8rCL : I<0xD2, MRM4r, (ops GR8 :$dst, GR8 :$src),
|
2005-12-01 00:43:55 +00:00
|
|
|
"shl{b} {%cl, $dst|$dst, %CL}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (shl GR8:$src, CL))]>, Imp<[CL],[]>;
|
|
|
|
def SHL16rCL : I<0xD3, MRM4r, (ops GR16:$dst, GR16:$src),
|
2005-12-01 00:43:55 +00:00
|
|
|
"shl{w} {%cl, $dst|$dst, %CL}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (shl GR16:$src, CL))]>, Imp<[CL],[]>, OpSize;
|
|
|
|
def SHL32rCL : I<0xD3, MRM4r, (ops GR32:$dst, GR32:$src),
|
2005-12-01 00:43:55 +00:00
|
|
|
"shl{l} {%cl, $dst|$dst, %CL}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (shl GR32:$src, CL))]>, Imp<[CL],[]>;
|
2005-01-02 02:35:46 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def SHL8ri : Ii8<0xC0, MRM4r, (ops GR8 :$dst, GR8 :$src1, i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"shl{b} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (shl GR8:$src1, (i8 imm:$src2)))]>;
|
2005-01-02 02:35:46 +00:00
|
|
|
let isConvertibleToThreeAddress = 1 in { // Can transform into LEA.
|
2006-05-16 07:21:53 +00:00
|
|
|
def SHL16ri : Ii8<0xC1, MRM4r, (ops GR16:$dst, GR16:$src1, i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"shl{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (shl GR16:$src1, (i8 imm:$src2)))]>, OpSize;
|
|
|
|
def SHL32ri : Ii8<0xC1, MRM4r, (ops GR32:$dst, GR32:$src1, i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"shl{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (shl GR32:$src1, (i8 imm:$src2)))]>;
|
2005-01-02 02:35:46 +00:00
|
|
|
}
|
2004-08-11 05:07:25 +00:00
|
|
|
|
2006-06-29 00:36:51 +00:00
|
|
|
// Shift left by one. Not used because (add x, x) is slightly cheaper.
|
|
|
|
def SHL8r1 : I<0xD0, MRM4r, (ops GR8 :$dst, GR8 :$src1),
|
2006-07-20 21:37:39 +00:00
|
|
|
"shl{b} $dst", []>;
|
2006-06-29 00:36:51 +00:00
|
|
|
def SHL16r1 : I<0xD1, MRM4r, (ops GR16:$dst, GR16:$src1),
|
2006-07-20 21:37:39 +00:00
|
|
|
"shl{w} $dst", []>, OpSize;
|
2006-06-29 00:36:51 +00:00
|
|
|
def SHL32r1 : I<0xD1, MRM4r, (ops GR32:$dst, GR32:$src1),
|
2006-07-20 21:37:39 +00:00
|
|
|
"shl{l} $dst", []>;
|
2006-06-29 00:36:51 +00:00
|
|
|
|
2004-08-11 05:07:25 +00:00
|
|
|
let isTwoAddress = 0 in {
|
2004-10-03 20:35:00 +00:00
|
|
|
def SHL8mCL : I<0xD2, MRM4m, (ops i8mem :$dst),
|
2005-12-13 02:34:51 +00:00
|
|
|
"shl{b} {%cl, $dst|$dst, %CL}",
|
|
|
|
[(store (shl (loadi8 addr:$dst), CL), addr:$dst)]>,
|
|
|
|
Imp<[CL],[]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def SHL16mCL : I<0xD3, MRM4m, (ops i16mem:$dst),
|
2005-12-13 02:34:51 +00:00
|
|
|
"shl{w} {%cl, $dst|$dst, %CL}",
|
|
|
|
[(store (shl (loadi16 addr:$dst), CL), addr:$dst)]>,
|
|
|
|
Imp<[CL],[]>, OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def SHL32mCL : I<0xD3, MRM4m, (ops i32mem:$dst),
|
2005-12-13 02:34:51 +00:00
|
|
|
"shl{l} {%cl, $dst|$dst, %CL}",
|
|
|
|
[(store (shl (loadi32 addr:$dst), CL), addr:$dst)]>,
|
|
|
|
Imp<[CL],[]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def SHL8mi : Ii8<0xC0, MRM4m, (ops i8mem :$dst, i8imm:$src),
|
2005-12-13 02:34:51 +00:00
|
|
|
"shl{b} {$src, $dst|$dst, $src}",
|
|
|
|
[(store (shl (loadi8 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def SHL16mi : Ii8<0xC1, MRM4m, (ops i16mem:$dst, i8imm:$src),
|
2005-12-13 02:34:51 +00:00
|
|
|
"shl{w} {$src, $dst|$dst, $src}",
|
|
|
|
[(store (shl (loadi16 addr:$dst), (i8 imm:$src)), addr:$dst)]>,
|
|
|
|
OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def SHL32mi : Ii8<0xC1, MRM4m, (ops i32mem:$dst, i8imm:$src),
|
2005-12-13 02:34:51 +00:00
|
|
|
"shl{l} {$src, $dst|$dst, $src}",
|
|
|
|
[(store (shl (loadi32 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
|
2006-06-29 00:36:51 +00:00
|
|
|
|
|
|
|
// Shift by 1
|
|
|
|
def SHL8m1 : I<0xD0, MRM4m, (ops i8mem :$dst),
|
|
|
|
"shl{b} $dst",
|
|
|
|
[(store (shl (loadi8 addr:$dst), (i8 1)), addr:$dst)]>;
|
|
|
|
def SHL16m1 : I<0xD1, MRM4m, (ops i16mem:$dst),
|
|
|
|
"shl{w} $dst",
|
|
|
|
[(store (shl (loadi16 addr:$dst), (i8 1)), addr:$dst)]>,
|
|
|
|
OpSize;
|
|
|
|
def SHL32m1 : I<0xD1, MRM4m, (ops i32mem:$dst),
|
|
|
|
"shl{l} $dst",
|
|
|
|
[(store (shl (loadi32 addr:$dst), (i8 1)), addr:$dst)]>;
|
2004-08-11 05:07:25 +00:00
|
|
|
}
|
A big X86 instruction rename. The instructions are renamed to make
their names more decriptive. A name consists of the base name, a
default operand size followed by a character per operand with an
optional special size. For example:
ADD8rr -> add, 8-bit register, 8-bit register
IMUL16rmi -> imul, 16-bit register, 16-bit memory, 16-bit immediate
IMUL16rmi8 -> imul, 16-bit register, 16-bit memory, 8-bit immediate
MOVSX32rm16 -> movsx, 32-bit register, 16-bit memory
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11995 91177308-0d34-0410-b5e6-96231b3b80d8
2004-02-29 08:50:03 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def SHR8rCL : I<0xD2, MRM5r, (ops GR8 :$dst, GR8 :$src),
|
2005-12-01 00:43:55 +00:00
|
|
|
"shr{b} {%cl, $dst|$dst, %CL}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (srl GR8:$src, CL))]>, Imp<[CL],[]>;
|
|
|
|
def SHR16rCL : I<0xD3, MRM5r, (ops GR16:$dst, GR16:$src),
|
2005-12-01 00:43:55 +00:00
|
|
|
"shr{w} {%cl, $dst|$dst, %CL}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (srl GR16:$src, CL))]>, Imp<[CL],[]>, OpSize;
|
|
|
|
def SHR32rCL : I<0xD3, MRM5r, (ops GR32:$dst, GR32:$src),
|
2005-12-01 00:43:55 +00:00
|
|
|
"shr{l} {%cl, $dst|$dst, %CL}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (srl GR32:$src, CL))]>, Imp<[CL],[]>;
|
A big X86 instruction rename. The instructions are renamed to make
their names more decriptive. A name consists of the base name, a
default operand size followed by a character per operand with an
optional special size. For example:
ADD8rr -> add, 8-bit register, 8-bit register
IMUL16rmi -> imul, 16-bit register, 16-bit memory, 16-bit immediate
IMUL16rmi8 -> imul, 16-bit register, 16-bit memory, 8-bit immediate
MOVSX32rm16 -> movsx, 32-bit register, 16-bit memory
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11995 91177308-0d34-0410-b5e6-96231b3b80d8
2004-02-29 08:50:03 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def SHR8ri : Ii8<0xC0, MRM5r, (ops GR8:$dst, GR8:$src1, i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"shr{b} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (srl GR8:$src1, (i8 imm:$src2)))]>;
|
|
|
|
def SHR16ri : Ii8<0xC1, MRM5r, (ops GR16:$dst, GR16:$src1, i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"shr{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (srl GR16:$src1, (i8 imm:$src2)))]>, OpSize;
|
|
|
|
def SHR32ri : Ii8<0xC1, MRM5r, (ops GR32:$dst, GR32:$src1, i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"shr{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (srl GR32:$src1, (i8 imm:$src2)))]>;
|
2004-08-11 05:07:25 +00:00
|
|
|
|
2006-06-29 00:36:51 +00:00
|
|
|
// Shift by 1
|
|
|
|
def SHR8r1 : I<0xD0, MRM5r, (ops GR8:$dst, GR8:$src1),
|
|
|
|
"shr{b} $dst",
|
|
|
|
[(set GR8:$dst, (srl GR8:$src1, (i8 1)))]>;
|
|
|
|
def SHR16r1 : I<0xD1, MRM5r, (ops GR16:$dst, GR16:$src1),
|
|
|
|
"shr{w} $dst",
|
|
|
|
[(set GR16:$dst, (srl GR16:$src1, (i8 1)))]>, OpSize;
|
|
|
|
def SHR32r1 : I<0xD1, MRM5r, (ops GR32:$dst, GR32:$src1),
|
|
|
|
"shr{l} $dst",
|
|
|
|
[(set GR32:$dst, (srl GR32:$src1, (i8 1)))]>;
|
|
|
|
|
2004-08-11 04:31:00 +00:00
|
|
|
let isTwoAddress = 0 in {
|
2004-10-03 20:35:00 +00:00
|
|
|
def SHR8mCL : I<0xD2, MRM5m, (ops i8mem :$dst),
|
2005-12-13 07:24:22 +00:00
|
|
|
"shr{b} {%cl, $dst|$dst, %CL}",
|
|
|
|
[(store (srl (loadi8 addr:$dst), CL), addr:$dst)]>,
|
|
|
|
Imp<[CL],[]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def SHR16mCL : I<0xD3, MRM5m, (ops i16mem:$dst),
|
2005-12-13 07:24:22 +00:00
|
|
|
"shr{w} {%cl, $dst|$dst, %CL}",
|
|
|
|
[(store (srl (loadi16 addr:$dst), CL), addr:$dst)]>,
|
|
|
|
Imp<[CL],[]>, OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def SHR32mCL : I<0xD3, MRM5m, (ops i32mem:$dst),
|
2005-12-13 07:24:22 +00:00
|
|
|
"shr{l} {%cl, $dst|$dst, %CL}",
|
|
|
|
[(store (srl (loadi32 addr:$dst), CL), addr:$dst)]>,
|
|
|
|
Imp<[CL],[]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def SHR8mi : Ii8<0xC0, MRM5m, (ops i8mem :$dst, i8imm:$src),
|
2005-12-13 07:24:22 +00:00
|
|
|
"shr{b} {$src, $dst|$dst, $src}",
|
|
|
|
[(store (srl (loadi8 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def SHR16mi : Ii8<0xC1, MRM5m, (ops i16mem:$dst, i8imm:$src),
|
2005-12-13 07:24:22 +00:00
|
|
|
"shr{w} {$src, $dst|$dst, $src}",
|
|
|
|
[(store (srl (loadi16 addr:$dst), (i8 imm:$src)), addr:$dst)]>,
|
|
|
|
OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def SHR32mi : Ii8<0xC1, MRM5m, (ops i32mem:$dst, i8imm:$src),
|
2005-12-13 07:24:22 +00:00
|
|
|
"shr{l} {$src, $dst|$dst, $src}",
|
|
|
|
[(store (srl (loadi32 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
|
2006-06-29 00:36:51 +00:00
|
|
|
|
|
|
|
// Shift by 1
|
|
|
|
def SHR8m1 : I<0xD0, MRM5m, (ops i8mem :$dst),
|
|
|
|
"shr{b} $dst",
|
|
|
|
[(store (srl (loadi8 addr:$dst), (i8 1)), addr:$dst)]>;
|
|
|
|
def SHR16m1 : I<0xD1, MRM5m, (ops i16mem:$dst),
|
|
|
|
"shr{w} $dst",
|
|
|
|
[(store (srl (loadi16 addr:$dst), (i8 1)), addr:$dst)]>,OpSize;
|
|
|
|
def SHR32m1 : I<0xD1, MRM5m, (ops i32mem:$dst),
|
|
|
|
"shr{l} $dst",
|
|
|
|
[(store (srl (loadi32 addr:$dst), (i8 1)), addr:$dst)]>;
|
2004-08-11 04:31:00 +00:00
|
|
|
}
|
A big X86 instruction rename. The instructions are renamed to make
their names more decriptive. A name consists of the base name, a
default operand size followed by a character per operand with an
optional special size. For example:
ADD8rr -> add, 8-bit register, 8-bit register
IMUL16rmi -> imul, 16-bit register, 16-bit memory, 16-bit immediate
IMUL16rmi8 -> imul, 16-bit register, 16-bit memory, 8-bit immediate
MOVSX32rm16 -> movsx, 32-bit register, 16-bit memory
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11995 91177308-0d34-0410-b5e6-96231b3b80d8
2004-02-29 08:50:03 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def SAR8rCL : I<0xD2, MRM7r, (ops GR8 :$dst, GR8 :$src),
|
2005-12-01 00:43:55 +00:00
|
|
|
"sar{b} {%cl, $dst|$dst, %CL}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (sra GR8:$src, CL))]>, Imp<[CL],[]>;
|
|
|
|
def SAR16rCL : I<0xD3, MRM7r, (ops GR16:$dst, GR16:$src),
|
2005-12-01 00:43:55 +00:00
|
|
|
"sar{w} {%cl, $dst|$dst, %CL}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (sra GR16:$src, CL))]>, Imp<[CL],[]>, OpSize;
|
|
|
|
def SAR32rCL : I<0xD3, MRM7r, (ops GR32:$dst, GR32:$src),
|
2005-12-01 00:43:55 +00:00
|
|
|
"sar{l} {%cl, $dst|$dst, %CL}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (sra GR32:$src, CL))]>, Imp<[CL],[]>;
|
A big X86 instruction rename. The instructions are renamed to make
their names more decriptive. A name consists of the base name, a
default operand size followed by a character per operand with an
optional special size. For example:
ADD8rr -> add, 8-bit register, 8-bit register
IMUL16rmi -> imul, 16-bit register, 16-bit memory, 16-bit immediate
IMUL16rmi8 -> imul, 16-bit register, 16-bit memory, 8-bit immediate
MOVSX32rm16 -> movsx, 32-bit register, 16-bit memory
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11995 91177308-0d34-0410-b5e6-96231b3b80d8
2004-02-29 08:50:03 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def SAR8ri : Ii8<0xC0, MRM7r, (ops GR8 :$dst, GR8 :$src1, i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"sar{b} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (sra GR8:$src1, (i8 imm:$src2)))]>;
|
|
|
|
def SAR16ri : Ii8<0xC1, MRM7r, (ops GR16:$dst, GR16:$src1, i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"sar{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (sra GR16:$src1, (i8 imm:$src2)))]>,
|
2005-12-05 02:40:25 +00:00
|
|
|
OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def SAR32ri : Ii8<0xC1, MRM7r, (ops GR32:$dst, GR32:$src1, i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"sar{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (sra GR32:$src1, (i8 imm:$src2)))]>;
|
2006-06-29 00:36:51 +00:00
|
|
|
|
|
|
|
// Shift by 1
|
|
|
|
def SAR8r1 : I<0xD0, MRM7r, (ops GR8 :$dst, GR8 :$src1),
|
|
|
|
"sar{b} $dst",
|
|
|
|
[(set GR8:$dst, (sra GR8:$src1, (i8 1)))]>;
|
|
|
|
def SAR16r1 : I<0xD1, MRM7r, (ops GR16:$dst, GR16:$src1),
|
|
|
|
"sar{w} $dst",
|
|
|
|
[(set GR16:$dst, (sra GR16:$src1, (i8 1)))]>, OpSize;
|
|
|
|
def SAR32r1 : I<0xD1, MRM7r, (ops GR32:$dst, GR32:$src1),
|
|
|
|
"sar{l} $dst",
|
|
|
|
[(set GR32:$dst, (sra GR32:$src1, (i8 1)))]>;
|
|
|
|
|
2004-08-11 05:07:25 +00:00
|
|
|
let isTwoAddress = 0 in {
|
2004-10-03 20:35:00 +00:00
|
|
|
def SAR8mCL : I<0xD2, MRM7m, (ops i8mem :$dst),
|
2005-12-13 07:24:22 +00:00
|
|
|
"sar{b} {%cl, $dst|$dst, %CL}",
|
|
|
|
[(store (sra (loadi8 addr:$dst), CL), addr:$dst)]>,
|
|
|
|
Imp<[CL],[]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def SAR16mCL : I<0xD3, MRM7m, (ops i16mem:$dst),
|
2005-12-13 07:24:22 +00:00
|
|
|
"sar{w} {%cl, $dst|$dst, %CL}",
|
|
|
|
[(store (sra (loadi16 addr:$dst), CL), addr:$dst)]>,
|
|
|
|
Imp<[CL],[]>, OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def SAR32mCL : I<0xD3, MRM7m, (ops i32mem:$dst),
|
2005-12-13 07:24:22 +00:00
|
|
|
"sar{l} {%cl, $dst|$dst, %CL}",
|
|
|
|
[(store (sra (loadi32 addr:$dst), CL), addr:$dst)]>,
|
|
|
|
Imp<[CL],[]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def SAR8mi : Ii8<0xC0, MRM7m, (ops i8mem :$dst, i8imm:$src),
|
2005-12-13 07:24:22 +00:00
|
|
|
"sar{b} {$src, $dst|$dst, $src}",
|
|
|
|
[(store (sra (loadi8 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def SAR16mi : Ii8<0xC1, MRM7m, (ops i16mem:$dst, i8imm:$src),
|
2005-12-13 07:24:22 +00:00
|
|
|
"sar{w} {$src, $dst|$dst, $src}",
|
|
|
|
[(store (sra (loadi16 addr:$dst), (i8 imm:$src)), addr:$dst)]>,
|
|
|
|
OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def SAR32mi : Ii8<0xC1, MRM7m, (ops i32mem:$dst, i8imm:$src),
|
2005-12-13 07:24:22 +00:00
|
|
|
"sar{l} {$src, $dst|$dst, $src}",
|
|
|
|
[(store (sra (loadi32 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
|
2006-06-29 00:36:51 +00:00
|
|
|
|
|
|
|
// Shift by 1
|
|
|
|
def SAR8m1 : I<0xD0, MRM7m, (ops i8mem :$dst),
|
|
|
|
"sar{b} $dst",
|
|
|
|
[(store (sra (loadi8 addr:$dst), (i8 1)), addr:$dst)]>;
|
|
|
|
def SAR16m1 : I<0xD1, MRM7m, (ops i16mem:$dst),
|
|
|
|
"sar{w} $dst",
|
|
|
|
[(store (sra (loadi16 addr:$dst), (i8 1)), addr:$dst)]>,
|
|
|
|
OpSize;
|
|
|
|
def SAR32m1 : I<0xD1, MRM7m, (ops i32mem:$dst),
|
|
|
|
"sar{l} $dst",
|
|
|
|
[(store (sra (loadi32 addr:$dst), (i8 1)), addr:$dst)]>;
|
2004-08-11 05:07:25 +00:00
|
|
|
}
|
A big X86 instruction rename. The instructions are renamed to make
their names more decriptive. A name consists of the base name, a
default operand size followed by a character per operand with an
optional special size. For example:
ADD8rr -> add, 8-bit register, 8-bit register
IMUL16rmi -> imul, 16-bit register, 16-bit memory, 16-bit immediate
IMUL16rmi8 -> imul, 16-bit register, 16-bit memory, 8-bit immediate
MOVSX32rm16 -> movsx, 32-bit register, 16-bit memory
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11995 91177308-0d34-0410-b5e6-96231b3b80d8
2004-02-29 08:50:03 +00:00
|
|
|
|
2005-01-19 07:50:03 +00:00
|
|
|
// Rotate instructions
|
|
|
|
// FIXME: provide shorter instructions when imm8 == 1
|
2006-05-16 07:21:53 +00:00
|
|
|
def ROL8rCL : I<0xD2, MRM0r, (ops GR8 :$dst, GR8 :$src),
|
2006-01-11 23:20:05 +00:00
|
|
|
"rol{b} {%cl, $dst|$dst, %CL}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (rotl GR8:$src, CL))]>, Imp<[CL],[]>;
|
|
|
|
def ROL16rCL : I<0xD3, MRM0r, (ops GR16:$dst, GR16:$src),
|
2006-01-11 23:20:05 +00:00
|
|
|
"rol{w} {%cl, $dst|$dst, %CL}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (rotl GR16:$src, CL))]>, Imp<[CL],[]>, OpSize;
|
|
|
|
def ROL32rCL : I<0xD3, MRM0r, (ops GR32:$dst, GR32:$src),
|
2006-01-11 23:20:05 +00:00
|
|
|
"rol{l} {%cl, $dst|$dst, %CL}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (rotl GR32:$src, CL))]>, Imp<[CL],[]>;
|
2005-01-19 07:50:03 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def ROL8ri : Ii8<0xC0, MRM0r, (ops GR8 :$dst, GR8 :$src1, i8imm:$src2),
|
2006-01-11 23:20:05 +00:00
|
|
|
"rol{b} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (rotl GR8:$src1, (i8 imm:$src2)))]>;
|
|
|
|
def ROL16ri : Ii8<0xC1, MRM0r, (ops GR16:$dst, GR16:$src1, i8imm:$src2),
|
2006-01-11 23:20:05 +00:00
|
|
|
"rol{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (rotl GR16:$src1, (i8 imm:$src2)))]>, OpSize;
|
|
|
|
def ROL32ri : Ii8<0xC1, MRM0r, (ops GR32:$dst, GR32:$src1, i8imm:$src2),
|
2006-01-11 23:20:05 +00:00
|
|
|
"rol{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (rotl GR32:$src1, (i8 imm:$src2)))]>;
|
2005-01-19 07:50:03 +00:00
|
|
|
|
2006-06-29 00:36:51 +00:00
|
|
|
// Rotate by 1
|
|
|
|
def ROL8r1 : I<0xD0, MRM0r, (ops GR8 :$dst, GR8 :$src1),
|
|
|
|
"rol{b} $dst",
|
|
|
|
[(set GR8:$dst, (rotl GR8:$src1, (i8 1)))]>;
|
|
|
|
def ROL16r1 : I<0xD1, MRM0r, (ops GR16:$dst, GR16:$src1),
|
|
|
|
"rol{w} $dst",
|
|
|
|
[(set GR16:$dst, (rotl GR16:$src1, (i8 1)))]>, OpSize;
|
|
|
|
def ROL32r1 : I<0xD1, MRM0r, (ops GR32:$dst, GR32:$src1),
|
|
|
|
"rol{l} $dst",
|
|
|
|
[(set GR32:$dst, (rotl GR32:$src1, (i8 1)))]>;
|
|
|
|
|
2005-01-19 07:50:03 +00:00
|
|
|
let isTwoAddress = 0 in {
|
|
|
|
def ROL8mCL : I<0xD2, MRM0m, (ops i8mem :$dst),
|
2006-01-11 23:20:05 +00:00
|
|
|
"rol{b} {%cl, $dst|$dst, %CL}",
|
|
|
|
[(store (rotl (loadi8 addr:$dst), CL), addr:$dst)]>,
|
|
|
|
Imp<[CL],[]>;
|
2005-01-19 07:50:03 +00:00
|
|
|
def ROL16mCL : I<0xD3, MRM0m, (ops i16mem:$dst),
|
2006-01-11 23:20:05 +00:00
|
|
|
"rol{w} {%cl, $dst|$dst, %CL}",
|
|
|
|
[(store (rotl (loadi16 addr:$dst), CL), addr:$dst)]>,
|
|
|
|
Imp<[CL],[]>, OpSize;
|
2005-01-19 07:50:03 +00:00
|
|
|
def ROL32mCL : I<0xD3, MRM0m, (ops i32mem:$dst),
|
2006-01-11 23:20:05 +00:00
|
|
|
"rol{l} {%cl, $dst|$dst, %CL}",
|
|
|
|
[(store (rotl (loadi32 addr:$dst), CL), addr:$dst)]>,
|
|
|
|
Imp<[CL],[]>;
|
2005-01-19 07:50:03 +00:00
|
|
|
def ROL8mi : Ii8<0xC0, MRM0m, (ops i8mem :$dst, i8imm:$src),
|
2006-01-11 23:20:05 +00:00
|
|
|
"rol{b} {$src, $dst|$dst, $src}",
|
|
|
|
[(store (rotl (loadi8 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
|
2005-01-19 07:50:03 +00:00
|
|
|
def ROL16mi : Ii8<0xC1, MRM0m, (ops i16mem:$dst, i8imm:$src),
|
2006-01-11 23:20:05 +00:00
|
|
|
"rol{w} {$src, $dst|$dst, $src}",
|
|
|
|
[(store (rotl (loadi16 addr:$dst), (i8 imm:$src)), addr:$dst)]>,
|
|
|
|
OpSize;
|
2005-01-19 07:50:03 +00:00
|
|
|
def ROL32mi : Ii8<0xC1, MRM0m, (ops i32mem:$dst, i8imm:$src),
|
2006-01-11 23:20:05 +00:00
|
|
|
"rol{l} {$src, $dst|$dst, $src}",
|
|
|
|
[(store (rotl (loadi32 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
|
2006-06-29 00:36:51 +00:00
|
|
|
|
|
|
|
// Rotate by 1
|
|
|
|
def ROL8m1 : I<0xD0, MRM0m, (ops i8mem :$dst),
|
|
|
|
"rol{b} $dst",
|
|
|
|
[(store (rotl (loadi8 addr:$dst), (i8 1)), addr:$dst)]>;
|
|
|
|
def ROL16m1 : I<0xD1, MRM0m, (ops i16mem:$dst),
|
|
|
|
"rol{w} $dst",
|
|
|
|
[(store (rotl (loadi16 addr:$dst), (i8 1)), addr:$dst)]>,
|
|
|
|
OpSize;
|
|
|
|
def ROL32m1 : I<0xD1, MRM0m, (ops i32mem:$dst),
|
|
|
|
"rol{l} $dst",
|
|
|
|
[(store (rotl (loadi32 addr:$dst), (i8 1)), addr:$dst)]>;
|
2005-01-19 07:50:03 +00:00
|
|
|
}
|
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def ROR8rCL : I<0xD2, MRM1r, (ops GR8 :$dst, GR8 :$src),
|
2006-01-11 23:20:05 +00:00
|
|
|
"ror{b} {%cl, $dst|$dst, %CL}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (rotr GR8:$src, CL))]>, Imp<[CL],[]>;
|
|
|
|
def ROR16rCL : I<0xD3, MRM1r, (ops GR16:$dst, GR16:$src),
|
2006-01-11 23:20:05 +00:00
|
|
|
"ror{w} {%cl, $dst|$dst, %CL}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (rotr GR16:$src, CL))]>, Imp<[CL],[]>, OpSize;
|
|
|
|
def ROR32rCL : I<0xD3, MRM1r, (ops GR32:$dst, GR32:$src),
|
2006-01-11 23:20:05 +00:00
|
|
|
"ror{l} {%cl, $dst|$dst, %CL}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (rotr GR32:$src, CL))]>, Imp<[CL],[]>;
|
2005-01-19 07:50:03 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def ROR8ri : Ii8<0xC0, MRM1r, (ops GR8 :$dst, GR8 :$src1, i8imm:$src2),
|
2006-01-11 23:20:05 +00:00
|
|
|
"ror{b} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (rotr GR8:$src1, (i8 imm:$src2)))]>;
|
|
|
|
def ROR16ri : Ii8<0xC1, MRM1r, (ops GR16:$dst, GR16:$src1, i8imm:$src2),
|
2006-01-11 23:20:05 +00:00
|
|
|
"ror{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (rotr GR16:$src1, (i8 imm:$src2)))]>, OpSize;
|
|
|
|
def ROR32ri : Ii8<0xC1, MRM1r, (ops GR32:$dst, GR32:$src1, i8imm:$src2),
|
2006-01-11 23:20:05 +00:00
|
|
|
"ror{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (rotr GR32:$src1, (i8 imm:$src2)))]>;
|
2006-06-29 00:36:51 +00:00
|
|
|
|
|
|
|
// Rotate by 1
|
|
|
|
def ROR8r1 : I<0xD0, MRM1r, (ops GR8 :$dst, GR8 :$src1),
|
|
|
|
"ror{b} $dst",
|
|
|
|
[(set GR8:$dst, (rotr GR8:$src1, (i8 1)))]>;
|
|
|
|
def ROR16r1 : I<0xD1, MRM1r, (ops GR16:$dst, GR16:$src1),
|
|
|
|
"ror{w} $dst",
|
|
|
|
[(set GR16:$dst, (rotr GR16:$src1, (i8 1)))]>, OpSize;
|
|
|
|
def ROR32r1 : I<0xD1, MRM1r, (ops GR32:$dst, GR32:$src1),
|
|
|
|
"ror{l} $dst",
|
|
|
|
[(set GR32:$dst, (rotr GR32:$src1, (i8 1)))]>;
|
|
|
|
|
2005-01-19 07:50:03 +00:00
|
|
|
let isTwoAddress = 0 in {
|
|
|
|
def ROR8mCL : I<0xD2, MRM1m, (ops i8mem :$dst),
|
2006-01-11 23:20:05 +00:00
|
|
|
"ror{b} {%cl, $dst|$dst, %CL}",
|
|
|
|
[(store (rotr (loadi8 addr:$dst), CL), addr:$dst)]>,
|
|
|
|
Imp<[CL],[]>;
|
2005-01-19 07:50:03 +00:00
|
|
|
def ROR16mCL : I<0xD3, MRM1m, (ops i16mem:$dst),
|
2006-01-11 23:20:05 +00:00
|
|
|
"ror{w} {%cl, $dst|$dst, %CL}",
|
|
|
|
[(store (rotr (loadi16 addr:$dst), CL), addr:$dst)]>,
|
|
|
|
Imp<[CL],[]>, OpSize;
|
2005-01-19 07:50:03 +00:00
|
|
|
def ROR32mCL : I<0xD3, MRM1m, (ops i32mem:$dst),
|
2006-01-11 23:20:05 +00:00
|
|
|
"ror{l} {%cl, $dst|$dst, %CL}",
|
|
|
|
[(store (rotr (loadi32 addr:$dst), CL), addr:$dst)]>,
|
|
|
|
Imp<[CL],[]>;
|
2005-01-19 07:50:03 +00:00
|
|
|
def ROR8mi : Ii8<0xC0, MRM1m, (ops i8mem :$dst, i8imm:$src),
|
2006-01-11 23:20:05 +00:00
|
|
|
"ror{b} {$src, $dst|$dst, $src}",
|
|
|
|
[(store (rotr (loadi8 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
|
2005-01-19 07:50:03 +00:00
|
|
|
def ROR16mi : Ii8<0xC1, MRM1m, (ops i16mem:$dst, i8imm:$src),
|
2006-01-11 23:20:05 +00:00
|
|
|
"ror{w} {$src, $dst|$dst, $src}",
|
|
|
|
[(store (rotr (loadi16 addr:$dst), (i8 imm:$src)), addr:$dst)]>,
|
|
|
|
OpSize;
|
2005-01-19 07:50:03 +00:00
|
|
|
def ROR32mi : Ii8<0xC1, MRM1m, (ops i32mem:$dst, i8imm:$src),
|
2006-01-11 23:20:05 +00:00
|
|
|
"ror{l} {$src, $dst|$dst, $src}",
|
|
|
|
[(store (rotr (loadi32 addr:$dst), (i8 imm:$src)), addr:$dst)]>;
|
2006-06-29 00:36:51 +00:00
|
|
|
|
|
|
|
// Rotate by 1
|
|
|
|
def ROR8m1 : I<0xD0, MRM1m, (ops i8mem :$dst),
|
|
|
|
"ror{b} $dst",
|
|
|
|
[(store (rotr (loadi8 addr:$dst), (i8 1)), addr:$dst)]>;
|
|
|
|
def ROR16m1 : I<0xD1, MRM1m, (ops i16mem:$dst),
|
|
|
|
"ror{w} $dst",
|
|
|
|
[(store (rotr (loadi16 addr:$dst), (i8 1)), addr:$dst)]>,
|
|
|
|
OpSize;
|
|
|
|
def ROR32m1 : I<0xD1, MRM1m, (ops i32mem:$dst),
|
|
|
|
"ror{l} $dst",
|
|
|
|
[(store (rotr (loadi32 addr:$dst), (i8 1)), addr:$dst)]>;
|
2005-01-19 07:50:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Double shift instructions (generalizations of rotate)
|
2006-05-16 07:21:53 +00:00
|
|
|
def SHLD32rrCL : I<0xA5, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2),
|
2006-01-09 18:33:28 +00:00
|
|
|
"shld{l} {%cl, $src2, $dst|$dst, $src2, %CL}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86shld GR32:$src1, GR32:$src2, CL))]>,
|
2004-10-03 20:35:00 +00:00
|
|
|
Imp<[CL],[]>, TB;
|
2006-05-16 07:21:53 +00:00
|
|
|
def SHRD32rrCL : I<0xAD, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2),
|
2006-01-09 18:33:28 +00:00
|
|
|
"shrd{l} {%cl, $src2, $dst|$dst, $src2, %CL}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86shrd GR32:$src1, GR32:$src2, CL))]>,
|
2004-10-03 20:35:00 +00:00
|
|
|
Imp<[CL],[]>, TB;
|
2006-05-16 07:21:53 +00:00
|
|
|
def SHLD16rrCL : I<0xA5, MRMDestReg, (ops GR16:$dst, GR16:$src1, GR16:$src2),
|
2006-01-09 18:33:28 +00:00
|
|
|
"shld{w} {%cl, $src2, $dst|$dst, $src2, %CL}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86shld GR16:$src1, GR16:$src2, CL))]>,
|
2005-01-19 07:31:24 +00:00
|
|
|
Imp<[CL],[]>, TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def SHRD16rrCL : I<0xAD, MRMDestReg, (ops GR16:$dst, GR16:$src1, GR16:$src2),
|
2006-01-09 18:33:28 +00:00
|
|
|
"shrd{w} {%cl, $src2, $dst|$dst, $src2, %CL}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86shrd GR16:$src1, GR16:$src2, CL))]>,
|
2005-01-19 07:31:24 +00:00
|
|
|
Imp<[CL],[]>, TB, OpSize;
|
Teach the code generator that shrd/shld is commutable if it has an immediate.
This allows us to generate this:
foo:
mov %EAX, DWORD PTR [%ESP + 4]
mov %EDX, DWORD PTR [%ESP + 8]
shld %EDX, %EDX, 2
shl %EAX, 2
ret
instead of this:
foo:
mov %EAX, DWORD PTR [%ESP + 4]
mov %ECX, DWORD PTR [%ESP + 8]
mov %EDX, %EAX
shrd %EDX, %ECX, 30
shl %EAX, 2
ret
Note the magically transmogrifying immediate.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19686 91177308-0d34-0410-b5e6-96231b3b80d8
2005-01-19 07:11:01 +00:00
|
|
|
|
|
|
|
let isCommutable = 1 in { // These instructions commute to each other.
|
2004-10-03 20:35:00 +00:00
|
|
|
def SHLD32rri8 : Ii8<0xA4, MRMDestReg,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR32:$dst, GR32:$src1, GR32:$src2, i8imm:$src3),
|
2006-01-09 18:33:28 +00:00
|
|
|
"shld{l} {$src3, $src2, $dst|$dst, $src2, $src3}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86shld GR32:$src1, GR32:$src2,
|
2006-01-09 18:33:28 +00:00
|
|
|
(i8 imm:$src3)))]>,
|
|
|
|
TB;
|
2004-10-03 20:35:00 +00:00
|
|
|
def SHRD32rri8 : Ii8<0xAC, MRMDestReg,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR32:$dst, GR32:$src1, GR32:$src2, i8imm:$src3),
|
2006-01-09 18:33:28 +00:00
|
|
|
"shrd{l} {$src3, $src2, $dst|$dst, $src2, $src3}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (X86shrd GR32:$src1, GR32:$src2,
|
2006-01-09 18:33:28 +00:00
|
|
|
(i8 imm:$src3)))]>,
|
|
|
|
TB;
|
2005-01-19 07:31:24 +00:00
|
|
|
def SHLD16rri8 : Ii8<0xA4, MRMDestReg,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR16:$dst, GR16:$src1, GR16:$src2, i8imm:$src3),
|
2006-01-09 18:33:28 +00:00
|
|
|
"shld{w} {$src3, $src2, $dst|$dst, $src2, $src3}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86shld GR16:$src1, GR16:$src2,
|
2006-01-09 18:33:28 +00:00
|
|
|
(i8 imm:$src3)))]>,
|
2005-01-19 07:31:24 +00:00
|
|
|
TB, OpSize;
|
|
|
|
def SHRD16rri8 : Ii8<0xAC, MRMDestReg,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR16:$dst, GR16:$src1, GR16:$src2, i8imm:$src3),
|
2006-01-09 18:33:28 +00:00
|
|
|
"shrd{w} {$src3, $src2, $dst|$dst, $src2, $src3}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (X86shrd GR16:$src1, GR16:$src2,
|
2006-01-09 18:33:28 +00:00
|
|
|
(i8 imm:$src3)))]>,
|
2005-01-19 07:31:24 +00:00
|
|
|
TB, OpSize;
|
Teach the code generator that shrd/shld is commutable if it has an immediate.
This allows us to generate this:
foo:
mov %EAX, DWORD PTR [%ESP + 4]
mov %EDX, DWORD PTR [%ESP + 8]
shld %EDX, %EDX, 2
shl %EAX, 2
ret
instead of this:
foo:
mov %EAX, DWORD PTR [%ESP + 4]
mov %ECX, DWORD PTR [%ESP + 8]
mov %EDX, %EAX
shrd %EDX, %ECX, 30
shl %EAX, 2
ret
Note the magically transmogrifying immediate.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19686 91177308-0d34-0410-b5e6-96231b3b80d8
2005-01-19 07:11:01 +00:00
|
|
|
}
|
2004-08-11 04:31:00 +00:00
|
|
|
|
|
|
|
let isTwoAddress = 0 in {
|
2006-05-16 07:21:53 +00:00
|
|
|
def SHLD32mrCL : I<0xA5, MRMDestMem, (ops i32mem:$dst, GR32:$src2),
|
2006-01-09 18:33:28 +00:00
|
|
|
"shld{l} {%cl, $src2, $dst|$dst, $src2, %CL}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (X86shld (loadi32 addr:$dst), GR32:$src2, CL),
|
2006-01-09 18:33:28 +00:00
|
|
|
addr:$dst)]>,
|
2004-10-03 20:35:00 +00:00
|
|
|
Imp<[CL],[]>, TB;
|
2006-05-16 07:21:53 +00:00
|
|
|
def SHRD32mrCL : I<0xAD, MRMDestMem, (ops i32mem:$dst, GR32:$src2),
|
2006-01-09 18:33:28 +00:00
|
|
|
"shrd{l} {%cl, $src2, $dst|$dst, $src2, %CL}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (X86shrd (loadi32 addr:$dst), GR32:$src2, CL),
|
2006-01-09 18:33:28 +00:00
|
|
|
addr:$dst)]>,
|
2004-10-03 20:35:00 +00:00
|
|
|
Imp<[CL],[]>, TB;
|
|
|
|
def SHLD32mri8 : Ii8<0xA4, MRMDestMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops i32mem:$dst, GR32:$src2, i8imm:$src3),
|
2006-01-09 18:33:28 +00:00
|
|
|
"shld{l} {$src3, $src2, $dst|$dst, $src2, $src3}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (X86shld (loadi32 addr:$dst), GR32:$src2,
|
2006-01-09 18:33:28 +00:00
|
|
|
(i8 imm:$src3)), addr:$dst)]>,
|
2005-11-18 01:04:42 +00:00
|
|
|
TB;
|
2004-10-03 20:35:00 +00:00
|
|
|
def SHRD32mri8 : Ii8<0xAC, MRMDestMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops i32mem:$dst, GR32:$src2, i8imm:$src3),
|
2006-01-09 18:33:28 +00:00
|
|
|
"shrd{l} {$src3, $src2, $dst|$dst, $src2, $src3}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (X86shrd (loadi32 addr:$dst), GR32:$src2,
|
2006-01-09 18:33:28 +00:00
|
|
|
(i8 imm:$src3)), addr:$dst)]>,
|
2005-11-18 01:04:42 +00:00
|
|
|
TB;
|
2005-01-19 07:31:24 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def SHLD16mrCL : I<0xA5, MRMDestMem, (ops i16mem:$dst, GR16:$src2),
|
2006-01-09 18:33:28 +00:00
|
|
|
"shld{w} {%cl, $src2, $dst|$dst, $src2, %CL}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (X86shld (loadi16 addr:$dst), GR16:$src2, CL),
|
2006-01-09 18:33:28 +00:00
|
|
|
addr:$dst)]>,
|
2005-01-19 07:31:24 +00:00
|
|
|
Imp<[CL],[]>, TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def SHRD16mrCL : I<0xAD, MRMDestMem, (ops i16mem:$dst, GR16:$src2),
|
2006-01-09 18:33:28 +00:00
|
|
|
"shrd{w} {%cl, $src2, $dst|$dst, $src2, %CL}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (X86shrd (loadi16 addr:$dst), GR16:$src2, CL),
|
2006-01-09 18:33:28 +00:00
|
|
|
addr:$dst)]>,
|
2005-01-19 07:31:24 +00:00
|
|
|
Imp<[CL],[]>, TB, OpSize;
|
|
|
|
def SHLD16mri8 : Ii8<0xA4, MRMDestMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops i16mem:$dst, GR16:$src2, i8imm:$src3),
|
2006-01-09 18:33:28 +00:00
|
|
|
"shld{w} {$src3, $src2, $dst|$dst, $src2, $src3}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (X86shld (loadi16 addr:$dst), GR16:$src2,
|
2006-01-09 18:33:28 +00:00
|
|
|
(i8 imm:$src3)), addr:$dst)]>,
|
2005-01-19 07:31:24 +00:00
|
|
|
TB, OpSize;
|
|
|
|
def SHRD16mri8 : Ii8<0xAC, MRMDestMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops i16mem:$dst, GR16:$src2, i8imm:$src3),
|
2006-01-09 18:33:28 +00:00
|
|
|
"shrd{w} {$src3, $src2, $dst|$dst, $src2, $src3}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (X86shrd (loadi16 addr:$dst), GR16:$src2,
|
2006-01-09 18:33:28 +00:00
|
|
|
(i8 imm:$src3)), addr:$dst)]>,
|
2005-01-19 07:31:24 +00:00
|
|
|
TB, OpSize;
|
2004-08-01 08:13:11 +00:00
|
|
|
}
|
|
|
|
|
2003-10-19 19:25:35 +00:00
|
|
|
|
2005-01-02 02:35:46 +00:00
|
|
|
// Arithmetic.
|
|
|
|
let isCommutable = 1 in { // X = ADD Y, Z --> X = ADD Z, Y
|
2006-05-16 07:21:53 +00:00
|
|
|
def ADD8rr : I<0x00, MRMDestReg, (ops GR8 :$dst, GR8 :$src1, GR8 :$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"add{b} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (add GR8:$src1, GR8:$src2))]>;
|
2005-01-02 02:35:46 +00:00
|
|
|
let isConvertibleToThreeAddress = 1 in { // Can transform into LEA.
|
2006-05-16 07:21:53 +00:00
|
|
|
def ADD16rr : I<0x01, MRMDestReg, (ops GR16:$dst, GR16:$src1, GR16:$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"add{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (add GR16:$src1, GR16:$src2))]>, OpSize;
|
|
|
|
def ADD32rr : I<0x01, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"add{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
|
2005-01-02 02:35:46 +00:00
|
|
|
} // end isConvertibleToThreeAddress
|
|
|
|
} // end isCommutable
|
2006-05-16 07:21:53 +00:00
|
|
|
def ADD8rm : I<0x02, MRMSrcMem, (ops GR8 :$dst, GR8 :$src1, i8mem :$src2),
|
2005-12-09 22:48:48 +00:00
|
|
|
"add{b} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (add GR8:$src1, (load addr:$src2)))]>;
|
|
|
|
def ADD16rm : I<0x03, MRMSrcMem, (ops GR16:$dst, GR16:$src1, i16mem:$src2),
|
2005-12-09 22:48:48 +00:00
|
|
|
"add{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (add GR16:$src1, (load addr:$src2)))]>, OpSize;
|
|
|
|
def ADD32rm : I<0x03, MRMSrcMem, (ops GR32:$dst, GR32:$src1, i32mem:$src2),
|
2005-12-09 22:48:48 +00:00
|
|
|
"add{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (add GR32:$src1, (load addr:$src2)))]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def ADD8ri : Ii8<0x80, MRM0r, (ops GR8:$dst, GR8:$src1, i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"add{b} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (add GR8:$src1, imm:$src2))]>;
|
2005-01-02 02:35:46 +00:00
|
|
|
|
|
|
|
let isConvertibleToThreeAddress = 1 in { // Can transform into LEA.
|
2006-05-16 07:21:53 +00:00
|
|
|
def ADD16ri : Ii16<0x81, MRM0r, (ops GR16:$dst, GR16:$src1, i16imm:$src2),
|
2005-11-17 02:01:55 +00:00
|
|
|
"add{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (add GR16:$src1, imm:$src2))]>, OpSize;
|
|
|
|
def ADD32ri : Ii32<0x81, MRM0r, (ops GR32:$dst, GR32:$src1, i32imm:$src2),
|
2005-11-16 22:59:19 +00:00
|
|
|
"add{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (add GR32:$src1, imm:$src2))]>;
|
|
|
|
def ADD16ri8 : Ii8<0x83, MRM0r, (ops GR16:$dst, GR16:$src1, i16i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"add{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (add GR16:$src1, i16immSExt8:$src2))]>,
|
2005-12-13 00:14:11 +00:00
|
|
|
OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def ADD32ri8 : Ii8<0x83, MRM0r, (ops GR32:$dst, GR32:$src1, i32i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"add{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (add GR32:$src1, i32immSExt8:$src2))]>;
|
2006-05-19 18:40:54 +00:00
|
|
|
}
|
2004-08-11 04:31:00 +00:00
|
|
|
|
|
|
|
let isTwoAddress = 0 in {
|
2006-05-16 07:21:53 +00:00
|
|
|
def ADD8mr : I<0x00, MRMDestMem, (ops i8mem :$dst, GR8 :$src2),
|
2005-12-12 19:45:23 +00:00
|
|
|
"add{b} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (add (load addr:$dst), GR8:$src2), addr:$dst)]>;
|
|
|
|
def ADD16mr : I<0x01, MRMDestMem, (ops i16mem:$dst, GR16:$src2),
|
2005-12-12 19:45:23 +00:00
|
|
|
"add{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (add (load addr:$dst), GR16:$src2), addr:$dst)]>,
|
2005-12-13 00:14:11 +00:00
|
|
|
OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def ADD32mr : I<0x01, MRMDestMem, (ops i32mem:$dst, GR32:$src2),
|
2005-12-12 19:45:23 +00:00
|
|
|
"add{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (add (load addr:$dst), GR32:$src2), addr:$dst)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def ADD8mi : Ii8<0x80, MRM0m, (ops i8mem :$dst, i8imm :$src2),
|
2005-12-12 19:45:23 +00:00
|
|
|
"add{b} {$src2, $dst|$dst, $src2}",
|
2005-12-13 02:40:18 +00:00
|
|
|
[(store (add (loadi8 addr:$dst), imm:$src2), addr:$dst)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def ADD16mi : Ii16<0x81, MRM0m, (ops i16mem:$dst, i16imm:$src2),
|
2005-12-12 19:45:23 +00:00
|
|
|
"add{w} {$src2, $dst|$dst, $src2}",
|
2005-12-13 02:40:18 +00:00
|
|
|
[(store (add (loadi16 addr:$dst), imm:$src2), addr:$dst)]>,
|
2005-12-13 00:14:11 +00:00
|
|
|
OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def ADD32mi : Ii32<0x81, MRM0m, (ops i32mem:$dst, i32imm:$src2),
|
2005-12-12 19:45:23 +00:00
|
|
|
"add{l} {$src2, $dst|$dst, $src2}",
|
2005-12-13 02:40:18 +00:00
|
|
|
[(store (add (loadi32 addr:$dst), imm:$src2), addr:$dst)]>;
|
2005-12-12 19:45:23 +00:00
|
|
|
def ADD16mi8 : Ii8<0x83, MRM0m, (ops i16mem:$dst, i16i8imm :$src2),
|
|
|
|
"add{w} {$src2, $dst|$dst, $src2}",
|
2005-12-13 00:14:11 +00:00
|
|
|
[(store (add (load addr:$dst), i16immSExt8:$src2), addr:$dst)]>,
|
|
|
|
OpSize;
|
2005-12-12 19:45:23 +00:00
|
|
|
def ADD32mi8 : Ii8<0x83, MRM0m, (ops i32mem:$dst, i32i8imm :$src2),
|
|
|
|
"add{l} {$src2, $dst|$dst, $src2}",
|
2005-12-13 00:14:11 +00:00
|
|
|
[(store (add (load addr:$dst), i32immSExt8:$src2), addr:$dst)]>;
|
2004-08-11 04:31:00 +00:00
|
|
|
}
|
A big X86 instruction rename. The instructions are renamed to make
their names more decriptive. A name consists of the base name, a
default operand size followed by a character per operand with an
optional special size. For example:
ADD8rr -> add, 8-bit register, 8-bit register
IMUL16rmi -> imul, 16-bit register, 16-bit memory, 16-bit immediate
IMUL16rmi8 -> imul, 16-bit register, 16-bit memory, 8-bit immediate
MOVSX32rm16 -> movsx, 32-bit register, 16-bit memory
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11995 91177308-0d34-0410-b5e6-96231b3b80d8
2004-02-29 08:50:03 +00:00
|
|
|
|
2005-01-03 01:27:59 +00:00
|
|
|
let isCommutable = 1 in { // X = ADC Y, Z --> X = ADC Z, Y
|
2006-05-16 07:21:53 +00:00
|
|
|
def ADC32rr : I<0x11, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2),
|
2006-01-09 18:33:28 +00:00
|
|
|
"adc{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (adde GR32:$src1, GR32:$src2))]>;
|
2005-01-03 01:27:59 +00:00
|
|
|
}
|
2006-05-16 07:21:53 +00:00
|
|
|
def ADC32rm : I<0x13, MRMSrcMem , (ops GR32:$dst, GR32:$src1, i32mem:$src2),
|
2006-01-09 18:33:28 +00:00
|
|
|
"adc{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (adde GR32:$src1, (load addr:$src2)))]>;
|
|
|
|
def ADC32ri : Ii32<0x81, MRM2r, (ops GR32:$dst, GR32:$src1, i32imm:$src2),
|
2006-01-09 18:33:28 +00:00
|
|
|
"adc{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (adde GR32:$src1, imm:$src2))]>;
|
|
|
|
def ADC32ri8 : Ii8<0x83, MRM2r, (ops GR32:$dst, GR32:$src1, i32i8imm:$src2),
|
2006-01-09 18:33:28 +00:00
|
|
|
"adc{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (adde GR32:$src1, i32immSExt8:$src2))]>;
|
2004-08-11 04:31:00 +00:00
|
|
|
|
|
|
|
let isTwoAddress = 0 in {
|
2006-05-16 07:21:53 +00:00
|
|
|
def ADC32mr : I<0x11, MRMDestMem, (ops i32mem:$dst, GR32:$src2),
|
2006-01-09 18:33:28 +00:00
|
|
|
"adc{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (adde (load addr:$dst), GR32:$src2), addr:$dst)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def ADC32mi : Ii32<0x81, MRM2m, (ops i32mem:$dst, i32imm:$src2),
|
2006-01-09 18:33:28 +00:00
|
|
|
"adc{l} {$src2, $dst|$dst, $src2}",
|
2006-02-17 05:43:56 +00:00
|
|
|
[(store (adde (loadi32 addr:$dst), imm:$src2), addr:$dst)]>;
|
2006-01-09 18:33:28 +00:00
|
|
|
def ADC32mi8 : Ii8<0x83, MRM2m, (ops i32mem:$dst, i32i8imm :$src2),
|
|
|
|
"adc{l} {$src2, $dst|$dst, $src2}",
|
2006-02-17 05:43:56 +00:00
|
|
|
[(store (adde (load addr:$dst), i32immSExt8:$src2), addr:$dst)]>;
|
2004-08-11 04:31:00 +00:00
|
|
|
}
|
A big X86 instruction rename. The instructions are renamed to make
their names more decriptive. A name consists of the base name, a
default operand size followed by a character per operand with an
optional special size. For example:
ADD8rr -> add, 8-bit register, 8-bit register
IMUL16rmi -> imul, 16-bit register, 16-bit memory, 16-bit immediate
IMUL16rmi8 -> imul, 16-bit register, 16-bit memory, 8-bit immediate
MOVSX32rm16 -> movsx, 32-bit register, 16-bit memory
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11995 91177308-0d34-0410-b5e6-96231b3b80d8
2004-02-29 08:50:03 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def SUB8rr : I<0x28, MRMDestReg, (ops GR8 :$dst, GR8 :$src1, GR8 :$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"sub{b} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (sub GR8:$src1, GR8:$src2))]>;
|
|
|
|
def SUB16rr : I<0x29, MRMDestReg, (ops GR16:$dst, GR16:$src1, GR16:$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"sub{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (sub GR16:$src1, GR16:$src2))]>, OpSize;
|
|
|
|
def SUB32rr : I<0x29, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"sub{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (sub GR32:$src1, GR32:$src2))]>;
|
|
|
|
def SUB8rm : I<0x2A, MRMSrcMem, (ops GR8 :$dst, GR8 :$src1, i8mem :$src2),
|
2005-12-12 21:54:05 +00:00
|
|
|
"sub{b} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (sub GR8:$src1, (load addr:$src2)))]>;
|
|
|
|
def SUB16rm : I<0x2B, MRMSrcMem, (ops GR16:$dst, GR16:$src1, i16mem:$src2),
|
2005-12-12 21:54:05 +00:00
|
|
|
"sub{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (sub GR16:$src1, (load addr:$src2)))]>, OpSize;
|
|
|
|
def SUB32rm : I<0x2B, MRMSrcMem, (ops GR32:$dst, GR32:$src1, i32mem:$src2),
|
2005-12-12 21:54:05 +00:00
|
|
|
"sub{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (sub GR32:$src1, (load addr:$src2)))]>;
|
A big X86 instruction rename. The instructions are renamed to make
their names more decriptive. A name consists of the base name, a
default operand size followed by a character per operand with an
optional special size. For example:
ADD8rr -> add, 8-bit register, 8-bit register
IMUL16rmi -> imul, 16-bit register, 16-bit memory, 16-bit immediate
IMUL16rmi8 -> imul, 16-bit register, 16-bit memory, 8-bit immediate
MOVSX32rm16 -> movsx, 32-bit register, 16-bit memory
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11995 91177308-0d34-0410-b5e6-96231b3b80d8
2004-02-29 08:50:03 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def SUB8ri : Ii8 <0x80, MRM5r, (ops GR8:$dst, GR8:$src1, i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"sub{b} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (sub GR8:$src1, imm:$src2))]>;
|
|
|
|
def SUB16ri : Ii16<0x81, MRM5r, (ops GR16:$dst, GR16:$src1, i16imm:$src2),
|
2005-11-17 02:01:55 +00:00
|
|
|
"sub{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (sub GR16:$src1, imm:$src2))]>, OpSize;
|
|
|
|
def SUB32ri : Ii32<0x81, MRM5r, (ops GR32:$dst, GR32:$src1, i32imm:$src2),
|
2005-11-16 22:59:19 +00:00
|
|
|
"sub{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (sub GR32:$src1, imm:$src2))]>;
|
|
|
|
def SUB16ri8 : Ii8<0x83, MRM5r, (ops GR16:$dst, GR16:$src1, i16i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"sub{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (sub GR16:$src1, i16immSExt8:$src2))]>,
|
2005-12-13 00:14:11 +00:00
|
|
|
OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def SUB32ri8 : Ii8<0x83, MRM5r, (ops GR32:$dst, GR32:$src1, i32i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"sub{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (sub GR32:$src1, i32immSExt8:$src2))]>;
|
2004-08-11 04:31:00 +00:00
|
|
|
let isTwoAddress = 0 in {
|
2006-05-16 07:21:53 +00:00
|
|
|
def SUB8mr : I<0x28, MRMDestMem, (ops i8mem :$dst, GR8 :$src2),
|
2005-12-12 21:54:05 +00:00
|
|
|
"sub{b} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (sub (load addr:$dst), GR8:$src2), addr:$dst)]>;
|
|
|
|
def SUB16mr : I<0x29, MRMDestMem, (ops i16mem:$dst, GR16:$src2),
|
2005-12-12 21:54:05 +00:00
|
|
|
"sub{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (sub (load addr:$dst), GR16:$src2), addr:$dst)]>,
|
2005-12-13 00:14:11 +00:00
|
|
|
OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def SUB32mr : I<0x29, MRMDestMem, (ops i32mem:$dst, GR32:$src2),
|
2005-12-12 21:54:05 +00:00
|
|
|
"sub{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (sub (load addr:$dst), GR32:$src2), addr:$dst)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def SUB8mi : Ii8<0x80, MRM5m, (ops i8mem :$dst, i8imm:$src2),
|
2005-12-12 21:54:05 +00:00
|
|
|
"sub{b} {$src2, $dst|$dst, $src2}",
|
2005-12-13 02:40:18 +00:00
|
|
|
[(store (sub (loadi8 addr:$dst), imm:$src2), addr:$dst)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def SUB16mi : Ii16<0x81, MRM5m, (ops i16mem:$dst, i16imm:$src2),
|
2005-12-12 21:54:05 +00:00
|
|
|
"sub{w} {$src2, $dst|$dst, $src2}",
|
2005-12-13 02:40:18 +00:00
|
|
|
[(store (sub (loadi16 addr:$dst), imm:$src2), addr:$dst)]>,
|
2005-12-13 00:14:11 +00:00
|
|
|
OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def SUB32mi : Ii32<0x81, MRM5m, (ops i32mem:$dst, i32imm:$src2),
|
2005-12-12 21:54:05 +00:00
|
|
|
"sub{l} {$src2, $dst|$dst, $src2}",
|
2005-12-13 02:40:18 +00:00
|
|
|
[(store (sub (loadi32 addr:$dst), imm:$src2), addr:$dst)]>;
|
2005-12-12 21:54:05 +00:00
|
|
|
def SUB16mi8 : Ii8<0x83, MRM5m, (ops i16mem:$dst, i16i8imm :$src2),
|
|
|
|
"sub{w} {$src2, $dst|$dst, $src2}",
|
2005-12-13 00:14:11 +00:00
|
|
|
[(store (sub (load addr:$dst), i16immSExt8:$src2), addr:$dst)]>,
|
|
|
|
OpSize;
|
2005-12-12 21:54:05 +00:00
|
|
|
def SUB32mi8 : Ii8<0x83, MRM5m, (ops i32mem:$dst, i32i8imm :$src2),
|
|
|
|
"sub{l} {$src2, $dst|$dst, $src2}",
|
2005-12-13 00:14:11 +00:00
|
|
|
[(store (sub (load addr:$dst), i32immSExt8:$src2), addr:$dst)]>;
|
2004-08-11 04:31:00 +00:00
|
|
|
}
|
A big X86 instruction rename. The instructions are renamed to make
their names more decriptive. A name consists of the base name, a
default operand size followed by a character per operand with an
optional special size. For example:
ADD8rr -> add, 8-bit register, 8-bit register
IMUL16rmi -> imul, 16-bit register, 16-bit memory, 16-bit immediate
IMUL16rmi8 -> imul, 16-bit register, 16-bit memory, 8-bit immediate
MOVSX32rm16 -> movsx, 32-bit register, 16-bit memory
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11995 91177308-0d34-0410-b5e6-96231b3b80d8
2004-02-29 08:50:03 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def SBB32rr : I<0x19, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2),
|
2006-01-09 18:33:28 +00:00
|
|
|
"sbb{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (sube GR32:$src1, GR32:$src2))]>;
|
2004-10-06 04:01:02 +00:00
|
|
|
|
2004-08-11 04:31:00 +00:00
|
|
|
let isTwoAddress = 0 in {
|
2006-05-16 07:21:53 +00:00
|
|
|
def SBB32mr : I<0x19, MRMDestMem, (ops i32mem:$dst, GR32:$src2),
|
2006-01-09 18:33:28 +00:00
|
|
|
"sbb{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(store (sube (load addr:$dst), GR32:$src2), addr:$dst)]>;
|
2004-10-06 04:01:02 +00:00
|
|
|
def SBB8mi : Ii32<0x80, MRM3m, (ops i8mem:$dst, i8imm:$src2),
|
2006-01-09 18:33:28 +00:00
|
|
|
"sbb{b} {$src2, $dst|$dst, $src2}",
|
2006-02-17 05:43:56 +00:00
|
|
|
[(store (sube (loadi8 addr:$dst), imm:$src2), addr:$dst)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def SBB32mi : Ii32<0x81, MRM3m, (ops i32mem:$dst, i32imm:$src2),
|
2006-01-09 18:33:28 +00:00
|
|
|
"sbb{l} {$src2, $dst|$dst, $src2}",
|
2006-02-17 05:43:56 +00:00
|
|
|
[(store (sube (loadi32 addr:$dst), imm:$src2), addr:$dst)]>;
|
2006-01-09 18:33:28 +00:00
|
|
|
def SBB32mi8 : Ii8<0x83, MRM3m, (ops i32mem:$dst, i32i8imm :$src2),
|
|
|
|
"sbb{l} {$src2, $dst|$dst, $src2}",
|
2006-02-17 05:43:56 +00:00
|
|
|
[(store (sube (load addr:$dst), i32immSExt8:$src2), addr:$dst)]>;
|
2004-08-11 04:31:00 +00:00
|
|
|
}
|
2006-05-16 07:21:53 +00:00
|
|
|
def SBB32rm : I<0x1B, MRMSrcMem, (ops GR32:$dst, GR32:$src1, i32mem:$src2),
|
2006-01-09 18:33:28 +00:00
|
|
|
"sbb{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (sube GR32:$src1, (load addr:$src2)))]>;
|
|
|
|
def SBB32ri : Ii32<0x81, MRM3r, (ops GR32:$dst, GR32:$src1, i32imm:$src2),
|
2006-01-09 18:33:28 +00:00
|
|
|
"sbb{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (sube GR32:$src1, imm:$src2))]>;
|
|
|
|
def SBB32ri8 : Ii8<0x83, MRM3r, (ops GR32:$dst, GR32:$src1, i32i8imm:$src2),
|
2006-01-09 18:33:28 +00:00
|
|
|
"sbb{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (sube GR32:$src1, i32immSExt8:$src2))]>;
|
A big X86 instruction rename. The instructions are renamed to make
their names more decriptive. A name consists of the base name, a
default operand size followed by a character per operand with an
optional special size. For example:
ADD8rr -> add, 8-bit register, 8-bit register
IMUL16rmi -> imul, 16-bit register, 16-bit memory, 16-bit immediate
IMUL16rmi8 -> imul, 16-bit register, 16-bit memory, 8-bit immediate
MOVSX32rm16 -> movsx, 32-bit register, 16-bit memory
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11995 91177308-0d34-0410-b5e6-96231b3b80d8
2004-02-29 08:50:03 +00:00
|
|
|
|
2005-01-03 01:27:59 +00:00
|
|
|
let isCommutable = 1 in { // X = IMUL Y, Z --> X = IMUL Z, Y
|
2006-05-16 07:21:53 +00:00
|
|
|
def IMUL16rr : I<0xAF, MRMSrcReg, (ops GR16:$dst, GR16:$src1, GR16:$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"imul{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (mul GR16:$src1, GR16:$src2))]>, TB, OpSize;
|
|
|
|
def IMUL32rr : I<0xAF, MRMSrcReg, (ops GR32:$dst, GR32:$src1, GR32:$src2),
|
2005-11-29 19:38:52 +00:00
|
|
|
"imul{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (mul GR32:$src1, GR32:$src2))]>, TB;
|
2005-01-03 01:27:59 +00:00
|
|
|
}
|
2006-05-16 07:21:53 +00:00
|
|
|
def IMUL16rm : I<0xAF, MRMSrcMem, (ops GR16:$dst, GR16:$src1, i16mem:$src2),
|
2005-12-12 23:47:46 +00:00
|
|
|
"imul{w} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (mul GR16:$src1, (load addr:$src2)))]>,
|
2005-12-13 00:14:11 +00:00
|
|
|
TB, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def IMUL32rm : I<0xAF, MRMSrcMem, (ops GR32:$dst, GR32:$src1, i32mem:$src2),
|
2005-12-12 23:47:46 +00:00
|
|
|
"imul{l} {$src2, $dst|$dst, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (mul GR32:$src1, (load addr:$src2)))]>, TB;
|
2004-02-28 22:02:05 +00:00
|
|
|
|
|
|
|
} // end Two Address instructions
|
2004-02-17 04:26:43 +00:00
|
|
|
|
2004-08-11 05:31:07 +00:00
|
|
|
// Suprisingly enough, these are not two address instructions!
|
2006-05-16 07:21:53 +00:00
|
|
|
def IMUL16rri : Ii16<0x69, MRMSrcReg, // GR16 = GR16*I16
|
|
|
|
(ops GR16:$dst, GR16:$src1, i16imm:$src2),
|
2005-11-17 02:01:55 +00:00
|
|
|
"imul{w} {$src2, $src1, $dst|$dst, $src1, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (mul GR16:$src1, imm:$src2))]>, OpSize;
|
|
|
|
def IMUL32rri : Ii32<0x69, MRMSrcReg, // GR32 = GR32*I32
|
|
|
|
(ops GR32:$dst, GR32:$src1, i32imm:$src2),
|
2005-11-16 22:59:19 +00:00
|
|
|
"imul{l} {$src2, $src1, $dst|$dst, $src1, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (mul GR32:$src1, imm:$src2))]>;
|
|
|
|
def IMUL16rri8 : Ii8<0x6B, MRMSrcReg, // GR16 = GR16*I8
|
|
|
|
(ops GR16:$dst, GR16:$src1, i16i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"imul{w} {$src2, $src1, $dst|$dst, $src1, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (mul GR16:$src1, i16immSExt8:$src2))]>,
|
2005-12-13 00:14:11 +00:00
|
|
|
OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def IMUL32rri8 : Ii8<0x6B, MRMSrcReg, // GR32 = GR32*I8
|
|
|
|
(ops GR32:$dst, GR32:$src1, i32i8imm:$src2),
|
2005-11-18 01:04:42 +00:00
|
|
|
"imul{l} {$src2, $src1, $dst|$dst, $src1, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (mul GR32:$src1, i32immSExt8:$src2))]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def IMUL16rmi : Ii16<0x69, MRMSrcMem, // GR16 = [mem16]*I16
|
|
|
|
(ops GR16:$dst, i16mem:$src1, i16imm:$src2),
|
2005-12-12 23:47:46 +00:00
|
|
|
"imul{w} {$src2, $src1, $dst|$dst, $src1, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (mul (load addr:$src1), imm:$src2))]>,
|
2005-12-12 23:47:46 +00:00
|
|
|
OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def IMUL32rmi : Ii32<0x69, MRMSrcMem, // GR32 = [mem32]*I32
|
|
|
|
(ops GR32:$dst, i32mem:$src1, i32imm:$src2),
|
2005-12-12 23:47:46 +00:00
|
|
|
"imul{l} {$src2, $src1, $dst|$dst, $src1, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (mul (load addr:$src1), imm:$src2))]>;
|
|
|
|
def IMUL16rmi8 : Ii8<0x6B, MRMSrcMem, // GR16 = [mem16]*I8
|
|
|
|
(ops GR16:$dst, i16mem:$src1, i16i8imm :$src2),
|
2005-12-12 23:47:46 +00:00
|
|
|
"imul{w} {$src2, $src1, $dst|$dst, $src1, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (mul (load addr:$src1), i16immSExt8:$src2))]>,
|
2005-12-13 00:14:11 +00:00
|
|
|
OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def IMUL32rmi8 : Ii8<0x6B, MRMSrcMem, // GR32 = [mem32]*I8
|
|
|
|
(ops GR32:$dst, i32mem:$src1, i32i8imm: $src2),
|
2005-12-12 23:47:46 +00:00
|
|
|
"imul{l} {$src2, $src1, $dst|$dst, $src1, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (mul (load addr:$src1), i32immSExt8:$src2))]>;
|
2003-08-03 21:54:21 +00:00
|
|
|
|
2004-02-28 22:02:05 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2003-08-03 21:54:21 +00:00
|
|
|
// Test instructions are just like AND, except they don't generate a result.
|
2004-10-03 20:35:00 +00:00
|
|
|
//
|
2005-01-02 02:35:46 +00:00
|
|
|
let isCommutable = 1 in { // TEST X, Y --> TEST Y, X
|
2006-05-16 07:21:53 +00:00
|
|
|
def TEST8rr : I<0x84, MRMDestReg, (ops GR8:$src1, GR8:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"test{b} {$src2, $src1|$src1, $src2}",
|
2006-09-07 20:33:45 +00:00
|
|
|
[(X86cmp (and GR8:$src1, GR8:$src2), 0)]>;
|
2006-05-16 07:21:53 +00:00
|
|
|
def TEST16rr : I<0x85, MRMDestReg, (ops GR16:$src1, GR16:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"test{w} {$src2, $src1|$src1, $src2}",
|
2006-09-07 20:33:45 +00:00
|
|
|
[(X86cmp (and GR16:$src1, GR16:$src2), 0)]>, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def TEST32rr : I<0x85, MRMDestReg, (ops GR32:$src1, GR32:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"test{l} {$src2, $src1|$src1, $src2}",
|
2006-09-07 20:33:45 +00:00
|
|
|
[(X86cmp (and GR32:$src1, GR32:$src2), 0)]>;
|
2005-01-02 02:35:46 +00:00
|
|
|
}
|
2006-09-11 02:19:56 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def TEST8rm : I<0x84, MRMSrcMem, (ops GR8 :$src1, i8mem :$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"test{b} {$src2, $src1|$src1, $src2}",
|
2006-09-11 02:19:56 +00:00
|
|
|
[(X86cmp (and GR8:$src1, (loadi8 addr:$src2)), 0)]>;
|
2006-05-16 07:21:53 +00:00
|
|
|
def TEST16rm : I<0x85, MRMSrcMem, (ops GR16:$src1, i16mem:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"test{w} {$src2, $src1|$src1, $src2}",
|
2006-09-11 02:19:56 +00:00
|
|
|
[(X86cmp (and GR16:$src1, (loadi16 addr:$src2)), 0)]>,
|
2006-01-26 00:29:36 +00:00
|
|
|
OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def TEST32rm : I<0x85, MRMSrcMem, (ops GR32:$src1, i32mem:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"test{l} {$src2, $src1|$src1, $src2}",
|
2006-09-11 02:19:56 +00:00
|
|
|
[(X86cmp (and GR32:$src1, (loadi32 addr:$src2)), 0)]>;
|
2003-08-03 21:54:21 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def TEST8ri : Ii8 <0xF6, MRM0r, // flags = GR8 & imm8
|
|
|
|
(ops GR8:$src1, i8imm:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"test{b} {$src2, $src1|$src1, $src2}",
|
2006-09-07 20:33:45 +00:00
|
|
|
[(X86cmp (and GR8:$src1, imm:$src2), 0)]>;
|
2006-05-16 07:21:53 +00:00
|
|
|
def TEST16ri : Ii16<0xF7, MRM0r, // flags = GR16 & imm16
|
|
|
|
(ops GR16:$src1, i16imm:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"test{w} {$src2, $src1|$src1, $src2}",
|
2006-09-07 20:33:45 +00:00
|
|
|
[(X86cmp (and GR16:$src1, imm:$src2), 0)]>, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def TEST32ri : Ii32<0xF7, MRM0r, // flags = GR32 & imm32
|
|
|
|
(ops GR32:$src1, i32imm:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"test{l} {$src2, $src1|$src1, $src2}",
|
2006-09-07 20:33:45 +00:00
|
|
|
[(X86cmp (and GR32:$src1, imm:$src2), 0)]>;
|
2006-09-11 02:19:56 +00:00
|
|
|
|
2004-10-04 01:38:10 +00:00
|
|
|
def TEST8mi : Ii8 <0xF6, MRM0m, // flags = [mem8] & imm8
|
2005-12-17 01:24:02 +00:00
|
|
|
(ops i8mem:$src1, i8imm:$src2),
|
|
|
|
"test{b} {$src2, $src1|$src1, $src2}",
|
2006-09-11 02:19:56 +00:00
|
|
|
[(X86cmp (and (loadi8 addr:$src1), imm:$src2), 0)]>;
|
2004-10-04 01:38:10 +00:00
|
|
|
def TEST16mi : Ii16<0xF7, MRM0m, // flags = [mem16] & imm16
|
|
|
|
(ops i16mem:$src1, i16imm:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"test{w} {$src2, $src1|$src1, $src2}",
|
2006-09-11 02:19:56 +00:00
|
|
|
[(X86cmp (and (loadi16 addr:$src1), imm:$src2), 0)]>,
|
2006-01-26 00:29:36 +00:00
|
|
|
OpSize;
|
2004-10-04 01:38:10 +00:00
|
|
|
def TEST32mi : Ii32<0xF7, MRM0m, // flags = [mem32] & imm32
|
|
|
|
(ops i32mem:$src1, i32imm:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"test{l} {$src2, $src1|$src1, $src2}",
|
2006-09-11 02:19:56 +00:00
|
|
|
[(X86cmp (and (loadi32 addr:$src1), imm:$src2), 0)]>;
|
2003-08-03 21:54:21 +00:00
|
|
|
|
|
|
|
|
2004-02-28 22:02:05 +00:00
|
|
|
// Condition code ops, incl. set if equal/not equal/...
|
2005-11-29 19:38:52 +00:00
|
|
|
def SAHF : I<0x9E, RawFrm, (ops), "sahf", []>, Imp<[AH],[]>; // flags = AH
|
|
|
|
def LAHF : I<0x9F, RawFrm, (ops), "lahf", []>, Imp<[],[AH]>; // AH = flags
|
2004-02-28 22:02:05 +00:00
|
|
|
|
2004-10-03 20:35:00 +00:00
|
|
|
def SETEr : I<0x94, MRM0r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR8 :$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"sete $dst",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (X86setcc X86_COND_E))]>,
|
|
|
|
TB; // GR8 = ==
|
2004-10-03 20:35:00 +00:00
|
|
|
def SETEm : I<0x94, MRM0m,
|
2005-12-21 05:34:58 +00:00
|
|
|
(ops i8mem:$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"sete $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(store (X86setcc X86_COND_E), addr:$dst)]>,
|
2005-12-21 20:21:51 +00:00
|
|
|
TB; // [mem8] = ==
|
2004-10-03 20:35:00 +00:00
|
|
|
def SETNEr : I<0x95, MRM0r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR8 :$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"setne $dst",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (X86setcc X86_COND_NE))]>,
|
|
|
|
TB; // GR8 = !=
|
2004-10-03 20:35:00 +00:00
|
|
|
def SETNEm : I<0x95, MRM0m,
|
2005-12-21 05:34:58 +00:00
|
|
|
(ops i8mem:$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"setne $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(store (X86setcc X86_COND_NE), addr:$dst)]>,
|
2005-12-21 20:21:51 +00:00
|
|
|
TB; // [mem8] = !=
|
|
|
|
def SETLr : I<0x9C, MRM0r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR8 :$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"setl $dst",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (X86setcc X86_COND_L))]>,
|
|
|
|
TB; // GR8 = < signed
|
2005-12-21 20:21:51 +00:00
|
|
|
def SETLm : I<0x9C, MRM0m,
|
|
|
|
(ops i8mem:$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"setl $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(store (X86setcc X86_COND_L), addr:$dst)]>,
|
2005-12-21 20:21:51 +00:00
|
|
|
TB; // [mem8] = < signed
|
|
|
|
def SETGEr : I<0x9D, MRM0r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR8 :$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"setge $dst",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (X86setcc X86_COND_GE))]>,
|
|
|
|
TB; // GR8 = >= signed
|
2005-12-21 20:21:51 +00:00
|
|
|
def SETGEm : I<0x9D, MRM0m,
|
|
|
|
(ops i8mem:$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"setge $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(store (X86setcc X86_COND_GE), addr:$dst)]>,
|
2005-12-21 20:21:51 +00:00
|
|
|
TB; // [mem8] = >= signed
|
|
|
|
def SETLEr : I<0x9E, MRM0r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR8 :$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"setle $dst",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (X86setcc X86_COND_LE))]>,
|
|
|
|
TB; // GR8 = <= signed
|
2005-12-21 20:21:51 +00:00
|
|
|
def SETLEm : I<0x9E, MRM0m,
|
|
|
|
(ops i8mem:$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"setle $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(store (X86setcc X86_COND_LE), addr:$dst)]>,
|
2005-12-21 20:21:51 +00:00
|
|
|
TB; // [mem8] = <= signed
|
|
|
|
def SETGr : I<0x9F, MRM0r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR8 :$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"setg $dst",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (X86setcc X86_COND_G))]>,
|
|
|
|
TB; // GR8 = > signed
|
2005-12-21 20:21:51 +00:00
|
|
|
def SETGm : I<0x9F, MRM0m,
|
|
|
|
(ops i8mem:$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"setg $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(store (X86setcc X86_COND_G), addr:$dst)]>,
|
2005-12-21 20:21:51 +00:00
|
|
|
TB; // [mem8] = > signed
|
|
|
|
|
|
|
|
def SETBr : I<0x92, MRM0r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR8 :$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"setb $dst",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (X86setcc X86_COND_B))]>,
|
|
|
|
TB; // GR8 = < unsign
|
2005-12-21 20:21:51 +00:00
|
|
|
def SETBm : I<0x92, MRM0m,
|
|
|
|
(ops i8mem:$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"setb $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(store (X86setcc X86_COND_B), addr:$dst)]>,
|
2005-12-21 20:21:51 +00:00
|
|
|
TB; // [mem8] = < unsign
|
|
|
|
def SETAEr : I<0x93, MRM0r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR8 :$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"setae $dst",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (X86setcc X86_COND_AE))]>,
|
|
|
|
TB; // GR8 = >= unsign
|
2005-12-21 20:21:51 +00:00
|
|
|
def SETAEm : I<0x93, MRM0m,
|
|
|
|
(ops i8mem:$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"setae $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(store (X86setcc X86_COND_AE), addr:$dst)]>,
|
2005-12-21 20:21:51 +00:00
|
|
|
TB; // [mem8] = >= unsign
|
2004-10-03 20:35:00 +00:00
|
|
|
def SETBEr : I<0x96, MRM0r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR8 :$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"setbe $dst",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (X86setcc X86_COND_BE))]>,
|
|
|
|
TB; // GR8 = <= unsign
|
2004-10-03 20:35:00 +00:00
|
|
|
def SETBEm : I<0x96, MRM0m,
|
2005-12-21 05:34:58 +00:00
|
|
|
(ops i8mem:$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"setbe $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(store (X86setcc X86_COND_BE), addr:$dst)]>,
|
2005-12-21 20:21:51 +00:00
|
|
|
TB; // [mem8] = <= unsign
|
2004-10-03 20:35:00 +00:00
|
|
|
def SETAr : I<0x97, MRM0r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR8 :$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"seta $dst",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (X86setcc X86_COND_A))]>,
|
|
|
|
TB; // GR8 = > signed
|
2004-10-03 20:35:00 +00:00
|
|
|
def SETAm : I<0x97, MRM0m,
|
2005-12-21 05:34:58 +00:00
|
|
|
(ops i8mem:$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"seta $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(store (X86setcc X86_COND_A), addr:$dst)]>,
|
2005-12-21 20:21:51 +00:00
|
|
|
TB; // [mem8] = > signed
|
2006-01-06 00:43:03 +00:00
|
|
|
|
2004-10-03 20:35:00 +00:00
|
|
|
def SETSr : I<0x98, MRM0r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR8 :$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"sets $dst",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (X86setcc X86_COND_S))]>,
|
|
|
|
TB; // GR8 = <sign bit>
|
2004-10-03 20:35:00 +00:00
|
|
|
def SETSm : I<0x98, MRM0m,
|
2005-12-21 05:34:58 +00:00
|
|
|
(ops i8mem:$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"sets $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(store (X86setcc X86_COND_S), addr:$dst)]>,
|
2006-01-06 00:43:03 +00:00
|
|
|
TB; // [mem8] = <sign bit>
|
2004-10-03 20:35:00 +00:00
|
|
|
def SETNSr : I<0x99, MRM0r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR8 :$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"setns $dst",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (X86setcc X86_COND_NS))]>,
|
|
|
|
TB; // GR8 = !<sign bit>
|
2004-10-03 20:35:00 +00:00
|
|
|
def SETNSm : I<0x99, MRM0m,
|
2005-12-21 05:34:58 +00:00
|
|
|
(ops i8mem:$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"setns $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(store (X86setcc X86_COND_NS), addr:$dst)]>,
|
2006-01-06 00:43:03 +00:00
|
|
|
TB; // [mem8] = !<sign bit>
|
2004-10-03 20:35:00 +00:00
|
|
|
def SETPr : I<0x9A, MRM0r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR8 :$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"setp $dst",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (X86setcc X86_COND_P))]>,
|
|
|
|
TB; // GR8 = parity
|
2004-10-03 20:35:00 +00:00
|
|
|
def SETPm : I<0x9A, MRM0m,
|
2005-12-21 05:34:58 +00:00
|
|
|
(ops i8mem:$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"setp $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(store (X86setcc X86_COND_P), addr:$dst)]>,
|
2006-01-06 00:43:03 +00:00
|
|
|
TB; // [mem8] = parity
|
2005-01-02 02:35:46 +00:00
|
|
|
def SETNPr : I<0x9B, MRM0r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR8 :$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"setnp $dst",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, (X86setcc X86_COND_NP))]>,
|
|
|
|
TB; // GR8 = not parity
|
2005-01-02 02:35:46 +00:00
|
|
|
def SETNPm : I<0x9B, MRM0m,
|
2005-12-21 05:34:58 +00:00
|
|
|
(ops i8mem:$dst),
|
2006-01-06 00:43:03 +00:00
|
|
|
"setnp $dst",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(store (X86setcc X86_COND_NP), addr:$dst)]>,
|
2006-01-06 00:43:03 +00:00
|
|
|
TB; // [mem8] = not parity
|
2003-08-03 21:54:21 +00:00
|
|
|
|
|
|
|
// Integer comparisons
|
2004-10-03 20:35:00 +00:00
|
|
|
def CMP8rr : I<0x38, MRMDestReg,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR8 :$src1, GR8 :$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmp{b} {$src2, $src1|$src1, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(X86cmp GR8:$src1, GR8:$src2)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def CMP16rr : I<0x39, MRMDestReg,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR16:$src1, GR16:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmp{w} {$src2, $src1|$src1, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(X86cmp GR16:$src1, GR16:$src2)]>, OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def CMP32rr : I<0x39, MRMDestReg,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR32:$src1, GR32:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmp{l} {$src2, $src1|$src1, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(X86cmp GR32:$src1, GR32:$src2)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def CMP8mr : I<0x38, MRMDestMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops i8mem :$src1, GR8 :$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmp{b} {$src2, $src1|$src1, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(X86cmp (loadi8 addr:$src1), GR8:$src2)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def CMP16mr : I<0x39, MRMDestMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops i16mem:$src1, GR16:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmp{w} {$src2, $src1|$src1, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(X86cmp (loadi16 addr:$src1), GR16:$src2)]>, OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def CMP32mr : I<0x39, MRMDestMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops i32mem:$src1, GR32:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmp{l} {$src2, $src1|$src1, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(X86cmp (loadi32 addr:$src1), GR32:$src2)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def CMP8rm : I<0x3A, MRMSrcMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR8 :$src1, i8mem :$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmp{b} {$src2, $src1|$src1, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(X86cmp GR8:$src1, (loadi8 addr:$src2))]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def CMP16rm : I<0x3B, MRMSrcMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR16:$src1, i16mem:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmp{w} {$src2, $src1|$src1, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(X86cmp GR16:$src1, (loadi16 addr:$src2))]>, OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def CMP32rm : I<0x3B, MRMSrcMem,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR32:$src1, i32mem:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmp{l} {$src2, $src1|$src1, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(X86cmp GR32:$src1, (loadi32 addr:$src2))]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def CMP8ri : Ii8<0x80, MRM7r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR8:$src1, i8imm:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmp{b} {$src2, $src1|$src1, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(X86cmp GR8:$src1, imm:$src2)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def CMP16ri : Ii16<0x81, MRM7r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR16:$src1, i16imm:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmp{w} {$src2, $src1|$src1, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(X86cmp GR16:$src1, imm:$src2)]>, OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def CMP32ri : Ii32<0x81, MRM7r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR32:$src1, i32imm:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmp{l} {$src2, $src1|$src1, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(X86cmp GR32:$src1, imm:$src2)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def CMP8mi : Ii8 <0x80, MRM7m,
|
|
|
|
(ops i8mem :$src1, i8imm :$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmp{b} {$src2, $src1|$src1, $src2}",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(X86cmp (loadi8 addr:$src1), imm:$src2)]>;
|
2004-10-03 20:35:00 +00:00
|
|
|
def CMP16mi : Ii16<0x81, MRM7m,
|
|
|
|
(ops i16mem:$src1, i16imm:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmp{w} {$src2, $src1|$src1, $src2}",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(X86cmp (loadi16 addr:$src1), imm:$src2)]>, OpSize;
|
2004-10-03 20:35:00 +00:00
|
|
|
def CMP32mi : Ii32<0x81, MRM7m,
|
|
|
|
(ops i32mem:$src1, i32imm:$src2),
|
2005-12-17 01:24:02 +00:00
|
|
|
"cmp{l} {$src2, $src1|$src1, $src2}",
|
2006-01-26 00:29:36 +00:00
|
|
|
[(X86cmp (loadi32 addr:$src1), imm:$src2)]>;
|
2006-03-23 16:13:50 +00:00
|
|
|
def CMP16ri8 : Ii8<0x83, MRM7r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR16:$src1, i16i8imm:$src2),
|
2006-03-23 01:29:48 +00:00
|
|
|
"cmp{w} {$src2, $src1|$src1, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(X86cmp GR16:$src1, i16immSExt8:$src2)]>, OpSize;
|
2006-03-23 16:13:50 +00:00
|
|
|
def CMP16mi8 : Ii8<0x83, MRM7m,
|
2006-03-23 01:29:48 +00:00
|
|
|
(ops i16mem:$src1, i16i8imm:$src2),
|
|
|
|
"cmp{w} {$src2, $src1|$src1, $src2}",
|
|
|
|
[(X86cmp (loadi16 addr:$src1), i16immSExt8:$src2)]>, OpSize;
|
2006-03-23 16:13:50 +00:00
|
|
|
def CMP32mi8 : Ii8<0x83, MRM7m,
|
2006-03-23 01:29:48 +00:00
|
|
|
(ops i32mem:$src1, i32i8imm:$src2),
|
|
|
|
"cmp{l} {$src2, $src1|$src1, $src2}",
|
|
|
|
[(X86cmp (loadi32 addr:$src1), i32immSExt8:$src2)]>;
|
2006-03-23 16:13:50 +00:00
|
|
|
def CMP32ri8 : Ii8<0x83, MRM7r,
|
2006-05-16 07:21:53 +00:00
|
|
|
(ops GR32:$src1, i32i8imm:$src2),
|
2006-03-23 01:29:48 +00:00
|
|
|
"cmp{l} {$src2, $src1|$src1, $src2}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(X86cmp GR32:$src1, i32immSExt8:$src2)]>;
|
2003-08-03 21:54:21 +00:00
|
|
|
|
|
|
|
// Sign/Zero extenders
|
2006-05-16 07:21:53 +00:00
|
|
|
def MOVSX16rr8 : I<0xBE, MRMSrcReg, (ops GR16:$dst, GR8 :$src),
|
2005-11-29 19:38:52 +00:00
|
|
|
"movs{bw|x} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (sext GR8:$src))]>, TB, OpSize;
|
|
|
|
def MOVSX16rm8 : I<0xBE, MRMSrcMem, (ops GR16:$dst, i8mem :$src),
|
2005-12-14 02:22:27 +00:00
|
|
|
"movs{bw|x} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (sextloadi16i8 addr:$src))]>, TB, OpSize;
|
|
|
|
def MOVSX32rr8 : I<0xBE, MRMSrcReg, (ops GR32:$dst, GR8 :$src),
|
2005-11-29 19:38:52 +00:00
|
|
|
"movs{bl|x} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (sext GR8:$src))]>, TB;
|
|
|
|
def MOVSX32rm8 : I<0xBE, MRMSrcMem, (ops GR32:$dst, i8mem :$src),
|
2005-12-14 02:22:27 +00:00
|
|
|
"movs{bl|x} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (sextloadi32i8 addr:$src))]>, TB;
|
|
|
|
def MOVSX32rr16: I<0xBF, MRMSrcReg, (ops GR32:$dst, GR16:$src),
|
2005-11-29 19:38:52 +00:00
|
|
|
"movs{wl|x} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (sext GR16:$src))]>, TB;
|
|
|
|
def MOVSX32rm16: I<0xBF, MRMSrcMem, (ops GR32:$dst, i16mem:$src),
|
2005-12-14 02:22:27 +00:00
|
|
|
"movs{wl|x} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (sextloadi32i16 addr:$src))]>, TB;
|
2004-10-03 20:35:00 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def MOVZX16rr8 : I<0xB6, MRMSrcReg, (ops GR16:$dst, GR8 :$src),
|
2005-11-29 19:38:52 +00:00
|
|
|
"movz{bw|x} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (zext GR8:$src))]>, TB, OpSize;
|
|
|
|
def MOVZX16rm8 : I<0xB6, MRMSrcMem, (ops GR16:$dst, i8mem :$src),
|
2005-12-14 02:22:27 +00:00
|
|
|
"movz{bw|x} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, (zextloadi16i8 addr:$src))]>, TB, OpSize;
|
|
|
|
def MOVZX32rr8 : I<0xB6, MRMSrcReg, (ops GR32:$dst, GR8 :$src),
|
2005-11-29 19:38:52 +00:00
|
|
|
"movz{bl|x} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (zext GR8:$src))]>, TB;
|
|
|
|
def MOVZX32rm8 : I<0xB6, MRMSrcMem, (ops GR32:$dst, i8mem :$src),
|
2005-12-14 02:22:27 +00:00
|
|
|
"movz{bl|x} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (zextloadi32i8 addr:$src))]>, TB;
|
|
|
|
def MOVZX32rr16: I<0xB7, MRMSrcReg, (ops GR32:$dst, GR16:$src),
|
2005-11-29 19:38:52 +00:00
|
|
|
"movz{wl|x} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (zext GR16:$src))]>, TB;
|
|
|
|
def MOVZX32rm16: I<0xB7, MRMSrcMem, (ops GR32:$dst, i16mem:$src),
|
2005-12-14 02:22:27 +00:00
|
|
|
"movz{wl|x} {$src, $dst|$dst, $src}",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, (zextloadi32i16 addr:$src))]>, TB;
|
2005-12-14 02:22:27 +00:00
|
|
|
|
2006-05-31 22:05:11 +00:00
|
|
|
def CBW : I<0x98, RawFrm, (ops),
|
|
|
|
"{cbtw|cbw}", []>, Imp<[AL],[AX]>; // AX = signext(AL)
|
|
|
|
def CWDE : I<0x98, RawFrm, (ops),
|
|
|
|
"{cwtl|cwde}", []>, Imp<[AX],[EAX]>; // EAX = signext(AX)
|
|
|
|
|
|
|
|
def CWD : I<0x99, RawFrm, (ops),
|
|
|
|
"{cwtd|cwd}", []>, Imp<[AX],[AX,DX]>; // DX:AX = signext(AX)
|
|
|
|
def CDQ : I<0x99, RawFrm, (ops),
|
|
|
|
"{cltd|cdq}", []>, Imp<[EAX],[EAX,EDX]>; // EDX:EAX = signext(EAX)
|
|
|
|
|
2006-02-21 02:24:38 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Miscellaneous Instructions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def RDTSC : I<0x31, RawFrm, (ops), "rdtsc", [(X86rdtsc)]>,
|
|
|
|
TB, Imp<[],[EAX,EDX]>;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Alias Instructions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Alias instructions that map movr0 to xor.
|
|
|
|
// FIXME: remove when we can teach regalloc that xor reg, reg is ok.
|
2006-05-16 07:21:53 +00:00
|
|
|
def MOV8r0 : I<0x30, MRMInitReg, (ops GR8 :$dst),
|
2006-02-21 02:24:38 +00:00
|
|
|
"xor{b} $dst, $dst",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR8:$dst, 0)]>;
|
|
|
|
def MOV16r0 : I<0x31, MRMInitReg, (ops GR16:$dst),
|
2006-02-21 02:24:38 +00:00
|
|
|
"xor{w} $dst, $dst",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR16:$dst, 0)]>, OpSize;
|
|
|
|
def MOV32r0 : I<0x31, MRMInitReg, (ops GR32:$dst),
|
2006-02-21 02:24:38 +00:00
|
|
|
"xor{l} $dst, $dst",
|
2006-05-16 07:21:53 +00:00
|
|
|
[(set GR32:$dst, 0)]>;
|
2006-02-21 02:24:38 +00:00
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
// Basic operations on GR16 / GR32 subclasses GR16_ and GR32_ which contains only
|
|
|
|
// those registers that have GR8 sub-registers (i.e. AX - DX, EAX - EDX).
|
|
|
|
def MOV16to16_ : I<0x89, MRMDestReg, (ops GR16_:$dst, GR16:$src),
|
2006-05-08 08:01:26 +00:00
|
|
|
"mov{w} {$src, $dst|$dst, $src}", []>, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def MOV32to32_ : I<0x89, MRMDestReg, (ops GR32_:$dst, GR32:$src),
|
2006-05-08 08:01:26 +00:00
|
|
|
"mov{l} {$src, $dst|$dst, $src}", []>;
|
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def MOV16_rr : I<0x89, MRMDestReg, (ops GR16_:$dst, GR16_:$src),
|
2006-05-08 08:01:26 +00:00
|
|
|
"mov{w} {$src, $dst|$dst, $src}", []>, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def MOV32_rr : I<0x89, MRMDestReg, (ops GR32_:$dst, GR32_:$src),
|
2006-05-08 08:01:26 +00:00
|
|
|
"mov{l} {$src, $dst|$dst, $src}", []>;
|
2006-05-16 07:21:53 +00:00
|
|
|
def MOV16_rm : I<0x8B, MRMSrcMem, (ops GR16_:$dst, i16mem:$src),
|
2006-05-08 08:01:26 +00:00
|
|
|
"mov{w} {$src, $dst|$dst, $src}", []>, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def MOV32_rm : I<0x8B, MRMSrcMem, (ops GR32_:$dst, i32mem:$src),
|
2006-05-08 08:01:26 +00:00
|
|
|
"mov{l} {$src, $dst|$dst, $src}", []>;
|
2006-05-16 07:21:53 +00:00
|
|
|
def MOV16_mr : I<0x89, MRMDestMem, (ops i16mem:$dst, GR16_:$src),
|
2006-05-08 08:01:26 +00:00
|
|
|
"mov{w} {$src, $dst|$dst, $src}", []>, OpSize;
|
2006-05-16 07:21:53 +00:00
|
|
|
def MOV32_mr : I<0x89, MRMDestMem, (ops i32mem:$dst, GR32_:$src),
|
2006-05-08 08:01:26 +00:00
|
|
|
"mov{l} {$src, $dst|$dst, $src}", []>;
|
|
|
|
|
2006-03-07 02:02:57 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// DWARF Pseudo Instructions
|
|
|
|
//
|
|
|
|
|
|
|
|
def DWARF_LOC : I<0, Pseudo, (ops i32imm:$line, i32imm:$col, i32imm:$file),
|
|
|
|
"; .loc $file, $line, $col",
|
|
|
|
[(dwarf_loc (i32 imm:$line), (i32 imm:$col),
|
|
|
|
(i32 imm:$file))]>;
|
|
|
|
|
|
|
|
def DWARF_LABEL : I<0, Pseudo, (ops i32imm:$id),
|
|
|
|
"\nLdebug_loc${id:debug}:",
|
|
|
|
[(dwarf_label (i32 imm:$id))]>;
|
|
|
|
|
2006-01-09 23:10:28 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Non-Instruction Patterns
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-09-08 06:48:29 +00:00
|
|
|
// ConstantPool GlobalAddress, ExternalSymbol, and JumpTable
|
2006-02-25 10:02:21 +00:00
|
|
|
def : Pat<(i32 (X86Wrapper tconstpool :$dst)), (MOV32ri tconstpool :$dst)>;
|
2006-04-22 18:53:45 +00:00
|
|
|
def : Pat<(i32 (X86Wrapper tjumptable :$dst)), (MOV32ri tjumptable :$dst)>;
|
2006-02-25 10:02:21 +00:00
|
|
|
def : Pat<(i32 (X86Wrapper tglobaladdr :$dst)), (MOV32ri tglobaladdr :$dst)>;
|
|
|
|
def : Pat<(i32 (X86Wrapper texternalsym:$dst)), (MOV32ri texternalsym:$dst)>;
|
|
|
|
|
2006-05-16 07:21:53 +00:00
|
|
|
def : Pat<(add GR32:$src1, (X86Wrapper tconstpool:$src2)),
|
|
|
|
(ADD32ri GR32:$src1, tconstpool:$src2)>;
|
|
|
|
def : Pat<(add GR32:$src1, (X86Wrapper tjumptable:$src2)),
|
|
|
|
(ADD32ri GR32:$src1, tjumptable:$src2)>;
|
|
|
|
def : Pat<(add GR32:$src1, (X86Wrapper tglobaladdr :$src2)),
|
|
|
|
(ADD32ri GR32:$src1, tglobaladdr:$src2)>;
|
|
|
|
def : Pat<(add GR32:$src1, (X86Wrapper texternalsym:$src2)),
|
|
|
|
(ADD32ri GR32:$src1, texternalsym:$src2)>;
|
2006-02-25 10:02:21 +00:00
|
|
|
|
2006-05-19 07:30:36 +00:00
|
|
|
def : Pat<(store (i32 (X86Wrapper tglobaladdr:$src)), addr:$dst),
|
2006-02-25 10:02:21 +00:00
|
|
|
(MOV32mi addr:$dst, tglobaladdr:$src)>;
|
2006-05-19 07:30:36 +00:00
|
|
|
def : Pat<(store (i32 (X86Wrapper texternalsym:$src)), addr:$dst),
|
2006-02-25 10:02:21 +00:00
|
|
|
(MOV32mi addr:$dst, texternalsym:$src)>;
|
|
|
|
|
2006-01-09 23:10:28 +00:00
|
|
|
// Calls
|
2006-05-16 07:21:53 +00:00
|
|
|
def : Pat<(X86tailcall GR32:$dst),
|
2006-09-08 06:48:29 +00:00
|
|
|
(CALL32r GR32:$dst)>;
|
2006-04-27 08:40:39 +00:00
|
|
|
|
2006-09-08 06:48:29 +00:00
|
|
|
def : Pat<(X86tailcall (i32 tglobaladdr:$dst)),
|
2006-04-27 08:40:39 +00:00
|
|
|
(CALLpcrel32 tglobaladdr:$dst)>;
|
2006-09-08 06:48:29 +00:00
|
|
|
def : Pat<(X86tailcall (i32 texternalsym:$dst)),
|
2006-04-27 08:40:39 +00:00
|
|
|
(CALLpcrel32 texternalsym:$dst)>;
|
|
|
|
|
2006-09-08 06:48:29 +00:00
|
|
|
def : Pat<(X86call (i32 tglobaladdr:$dst)),
|
2006-01-09 23:10:28 +00:00
|
|
|
(CALLpcrel32 tglobaladdr:$dst)>;
|
2006-09-08 06:48:29 +00:00
|
|
|
def : Pat<(X86call (i32 texternalsym:$dst)),
|
2006-01-11 06:09:51 +00:00
|
|
|
(CALLpcrel32 texternalsym:$dst)>;
|
2006-01-09 23:10:28 +00:00
|
|
|
|
|
|
|
// X86 specific add which produces a flag.
|
2006-05-16 07:21:53 +00:00
|
|
|
def : Pat<(addc GR32:$src1, GR32:$src2),
|
|
|
|
(ADD32rr GR32:$src1, GR32:$src2)>;
|
|
|
|
def : Pat<(addc GR32:$src1, (load addr:$src2)),
|
|
|
|
(ADD32rm GR32:$src1, addr:$src2)>;
|
|
|
|
def : Pat<(addc GR32:$src1, imm:$src2),
|
|
|
|
(ADD32ri GR32:$src1, imm:$src2)>;
|
|
|
|
def : Pat<(addc GR32:$src1, i32immSExt8:$src2),
|
|
|
|
(ADD32ri8 GR32:$src1, i32immSExt8:$src2)>;
|
|
|
|
|
|
|
|
def : Pat<(subc GR32:$src1, GR32:$src2),
|
|
|
|
(SUB32rr GR32:$src1, GR32:$src2)>;
|
|
|
|
def : Pat<(subc GR32:$src1, (load addr:$src2)),
|
|
|
|
(SUB32rm GR32:$src1, addr:$src2)>;
|
|
|
|
def : Pat<(subc GR32:$src1, imm:$src2),
|
|
|
|
(SUB32ri GR32:$src1, imm:$src2)>;
|
|
|
|
def : Pat<(subc GR32:$src1, i32immSExt8:$src2),
|
|
|
|
(SUB32ri8 GR32:$src1, i32immSExt8:$src2)>;
|
2006-01-09 23:10:28 +00:00
|
|
|
|
2006-10-13 21:14:26 +00:00
|
|
|
def : Pat<(truncstorei1 (i8 imm:$src), addr:$dst),
|
2006-01-13 21:45:19 +00:00
|
|
|
(MOV8mi addr:$dst, imm:$src)>;
|
2006-10-13 21:14:26 +00:00
|
|
|
def : Pat<(truncstorei1 GR8:$src, addr:$dst),
|
2006-05-16 07:21:53 +00:00
|
|
|
(MOV8mr addr:$dst, GR8:$src)>;
|
2006-01-13 21:45:19 +00:00
|
|
|
|
2006-09-07 20:33:45 +00:00
|
|
|
// Comparisons.
|
|
|
|
|
|
|
|
// TEST R,R is smaller than CMP R,0
|
|
|
|
def : Pat<(X86cmp GR8:$src1, 0),
|
|
|
|
(TEST8rr GR8:$src1, GR8:$src1)>;
|
|
|
|
def : Pat<(X86cmp GR16:$src1, 0),
|
|
|
|
(TEST16rr GR16:$src1, GR16:$src1)>;
|
|
|
|
def : Pat<(X86cmp GR32:$src1, 0),
|
|
|
|
(TEST32rr GR32:$src1, GR32:$src1)>;
|
|
|
|
|
2006-01-09 23:10:28 +00:00
|
|
|
// {s|z}extload bool -> {s|z}extload byte
|
|
|
|
def : Pat<(sextloadi16i1 addr:$src), (MOVSX16rm8 addr:$src)>;
|
|
|
|
def : Pat<(sextloadi32i1 addr:$src), (MOVSX32rm8 addr:$src)>;
|
2006-01-17 07:02:46 +00:00
|
|
|
def : Pat<(zextloadi8i1 addr:$src), (MOV8rm addr:$src)>;
|
2006-01-09 23:10:28 +00:00
|
|
|
def : Pat<(zextloadi16i1 addr:$src), (MOVZX16rm8 addr:$src)>;
|
|
|
|
def : Pat<(zextloadi32i1 addr:$src), (MOVZX32rm8 addr:$src)>;
|
|
|
|
|
|
|
|
// extload bool -> extload byte
|
2006-05-05 08:23:07 +00:00
|
|
|
def : Pat<(extloadi8i1 addr:$src), (MOV8rm addr:$src)>;
|
|
|
|
def : Pat<(extloadi16i1 addr:$src), (MOVZX16rm8 addr:$src)>;
|
|
|
|
def : Pat<(extloadi32i1 addr:$src), (MOVZX32rm8 addr:$src)>;
|
|
|
|
def : Pat<(extloadi16i8 addr:$src), (MOVZX16rm8 addr:$src)>;
|
|
|
|
def : Pat<(extloadi32i8 addr:$src), (MOVZX32rm8 addr:$src)>;
|
|
|
|
def : Pat<(extloadi32i16 addr:$src), (MOVZX32rm16 addr:$src)>;
|
2006-01-09 23:10:28 +00:00
|
|
|
|
|
|
|
// anyext -> zext
|
2006-05-16 07:21:53 +00:00
|
|
|
def : Pat<(i16 (anyext GR8 :$src)), (MOVZX16rr8 GR8 :$src)>;
|
|
|
|
def : Pat<(i32 (anyext GR8 :$src)), (MOVZX32rr8 GR8 :$src)>;
|
|
|
|
def : Pat<(i32 (anyext GR16:$src)), (MOVZX32rr16 GR16:$src)>;
|
2006-03-25 09:45:48 +00:00
|
|
|
def : Pat<(i16 (anyext (loadi8 addr:$src))), (MOVZX16rm8 addr:$src)>;
|
|
|
|
def : Pat<(i32 (anyext (loadi8 addr:$src))), (MOVZX32rm8 addr:$src)>;
|
|
|
|
def : Pat<(i32 (anyext (loadi16 addr:$src))), (MOVZX32rm16 addr:$src)>;
|
2006-01-09 23:10:28 +00:00
|
|
|
|
2006-01-06 02:31:59 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Some peepholes
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// (shl x, 1) ==> (add x, x)
|
2006-05-16 07:21:53 +00:00
|
|
|
def : Pat<(shl GR8 :$src1, (i8 1)), (ADD8rr GR8 :$src1, GR8 :$src1)>;
|
|
|
|
def : Pat<(shl GR16:$src1, (i8 1)), (ADD16rr GR16:$src1, GR16:$src1)>;
|
|
|
|
def : Pat<(shl GR32:$src1, (i8 1)), (ADD32rr GR32:$src1, GR32:$src1)>;
|
2006-01-19 01:56:29 +00:00
|
|
|
|
2006-01-19 23:26:24 +00:00
|
|
|
// (or (x >> c) | (y << (32 - c))) ==> (shrd32 x, y, c)
|
2006-05-16 07:21:53 +00:00
|
|
|
def : Pat<(or (srl GR32:$src1, CL:$amt),
|
|
|
|
(shl GR32:$src2, (sub 32, CL:$amt))),
|
|
|
|
(SHRD32rrCL GR32:$src1, GR32:$src2)>;
|
2006-01-19 01:56:29 +00:00
|
|
|
|
2006-01-20 01:13:30 +00:00
|
|
|
def : Pat<(store (or (srl (loadi32 addr:$dst), CL:$amt),
|
2006-05-16 07:21:53 +00:00
|
|
|
(shl GR32:$src2, (sub 32, CL:$amt))), addr:$dst),
|
|
|
|
(SHRD32mrCL addr:$dst, GR32:$src2)>;
|
2006-01-20 01:13:30 +00:00
|
|
|
|
2006-01-19 23:26:24 +00:00
|
|
|
// (or (x << c) | (y >> (32 - c))) ==> (shld32 x, y, c)
|
2006-05-16 07:21:53 +00:00
|
|
|
def : Pat<(or (shl GR32:$src1, CL:$amt),
|
|
|
|
(srl GR32:$src2, (sub 32, CL:$amt))),
|
|
|
|
(SHLD32rrCL GR32:$src1, GR32:$src2)>;
|
2006-01-19 23:26:24 +00:00
|
|
|
|
2006-01-20 01:13:30 +00:00
|
|
|
def : Pat<(store (or (shl (loadi32 addr:$dst), CL:$amt),
|
2006-05-16 07:21:53 +00:00
|
|
|
(srl GR32:$src2, (sub 32, CL:$amt))), addr:$dst),
|
|
|
|
(SHLD32mrCL addr:$dst, GR32:$src2)>;
|
2006-01-20 01:13:30 +00:00
|
|
|
|
2006-01-19 23:26:24 +00:00
|
|
|
// (or (x >> c) | (y << (16 - c))) ==> (shrd16 x, y, c)
|
2006-05-16 07:21:53 +00:00
|
|
|
def : Pat<(or (srl GR16:$src1, CL:$amt),
|
|
|
|
(shl GR16:$src2, (sub 16, CL:$amt))),
|
|
|
|
(SHRD16rrCL GR16:$src1, GR16:$src2)>;
|
2006-01-19 23:26:24 +00:00
|
|
|
|
2006-01-20 01:13:30 +00:00
|
|
|
def : Pat<(store (or (srl (loadi16 addr:$dst), CL:$amt),
|
2006-05-16 07:21:53 +00:00
|
|
|
(shl GR16:$src2, (sub 16, CL:$amt))), addr:$dst),
|
|
|
|
(SHRD16mrCL addr:$dst, GR16:$src2)>;
|
2006-01-20 01:13:30 +00:00
|
|
|
|
2006-01-19 23:26:24 +00:00
|
|
|
// (or (x << c) | (y >> (16 - c))) ==> (shld16 x, y, c)
|
2006-05-16 07:21:53 +00:00
|
|
|
def : Pat<(or (shl GR16:$src1, CL:$amt),
|
|
|
|
(srl GR16:$src2, (sub 16, CL:$amt))),
|
|
|
|
(SHLD16rrCL GR16:$src1, GR16:$src2)>;
|
2006-01-20 01:13:30 +00:00
|
|
|
|
|
|
|
def : Pat<(store (or (shl (loadi16 addr:$dst), CL:$amt),
|
2006-05-16 07:21:53 +00:00
|
|
|
(srl GR16:$src2, (sub 16, CL:$amt))), addr:$dst),
|
|
|
|
(SHLD16mrCL addr:$dst, GR16:$src2)>;
|
2006-02-21 20:00:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Floating Point Stack Support
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "X86InstrFPStack.td"
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// MMX and XMM Packed Integer support (requires MMX, SSE, and SSE2)
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "X86InstrMMX.td"
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// XMM Floating point support (requires SSE / SSE2)
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "X86InstrSSE.td"
|
2006-09-08 06:48:29 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// X86-64 Support
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "X86InstrX86-64.td"
|