blob: 3ef1cde6f7e53f81662aeaaa0504179923cef162 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//==- X86InstrFPStack.td - Describe the X86 Instruction Set -------*- C++ -*-=//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the Evan Cheng and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file describes the X86 x87 FPU instruction set, defining the
11// instructions, and properties of the instructions which are needed for code
12// generation, machine code emission, and analysis.
13//
14//===----------------------------------------------------------------------===//
15
16//===----------------------------------------------------------------------===//
17// FPStack specific DAG Nodes.
18//===----------------------------------------------------------------------===//
19
20def SDTX86FpGet : SDTypeProfile<1, 0, [SDTCisFP<0>]>;
21def SDTX86FpSet : SDTypeProfile<0, 1, [SDTCisFP<0>]>;
22def SDTX86Fld : SDTypeProfile<1, 2, [SDTCisFP<0>,
23 SDTCisPtrTy<1>,
24 SDTCisVT<2, OtherVT>]>;
25def SDTX86Fst : SDTypeProfile<0, 3, [SDTCisFP<0>,
26 SDTCisPtrTy<1>,
27 SDTCisVT<2, OtherVT>]>;
28def SDTX86Fild : SDTypeProfile<1, 2, [SDTCisFP<0>, SDTCisPtrTy<1>,
29 SDTCisVT<2, OtherVT>]>;
30def SDTX86FpToIMem : SDTypeProfile<0, 2, [SDTCisFP<0>, SDTCisPtrTy<1>]>;
31
32def X86fpget : SDNode<"X86ISD::FP_GET_RESULT", SDTX86FpGet,
33 [SDNPHasChain, SDNPInFlag, SDNPOutFlag]>;
34def X86fpset : SDNode<"X86ISD::FP_SET_RESULT", SDTX86FpSet,
35 [SDNPHasChain, SDNPOutFlag]>;
36def X86fld : SDNode<"X86ISD::FLD", SDTX86Fld,
37 [SDNPHasChain]>;
38def X86fst : SDNode<"X86ISD::FST", SDTX86Fst,
39 [SDNPHasChain, SDNPInFlag]>;
40def X86fild : SDNode<"X86ISD::FILD", SDTX86Fild,
41 [SDNPHasChain]>;
42def X86fildflag : SDNode<"X86ISD::FILD_FLAG",SDTX86Fild,
43 [SDNPHasChain, SDNPOutFlag]>;
44def X86fp_to_i16mem : SDNode<"X86ISD::FP_TO_INT16_IN_MEM", SDTX86FpToIMem,
45 [SDNPHasChain]>;
46def X86fp_to_i32mem : SDNode<"X86ISD::FP_TO_INT32_IN_MEM", SDTX86FpToIMem,
47 [SDNPHasChain]>;
48def X86fp_to_i64mem : SDNode<"X86ISD::FP_TO_INT64_IN_MEM", SDTX86FpToIMem,
49 [SDNPHasChain]>;
50
51//===----------------------------------------------------------------------===//
52// FPStack pattern fragments
53//===----------------------------------------------------------------------===//
54
55def fpimm0 : PatLeaf<(fpimm), [{
56 return N->isExactlyValue(+0.0);
57}]>;
58
59def fpimmneg0 : PatLeaf<(fpimm), [{
60 return N->isExactlyValue(-0.0);
61}]>;
62
63def fpimm1 : PatLeaf<(fpimm), [{
64 return N->isExactlyValue(+1.0);
65}]>;
66
67def fpimmneg1 : PatLeaf<(fpimm), [{
68 return N->isExactlyValue(-1.0);
69}]>;
70
71// Some 'special' instructions
72let usesCustomDAGSchedInserter = 1 in { // Expanded by the scheduler.
73 def FP32_TO_INT16_IN_MEM : I<0, Pseudo,
Evan Chengb783fa32007-07-19 01:14:50 +000074 (outs), (ins i16mem:$dst, RFP32:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +000075 "#FP32_TO_INT16_IN_MEM PSEUDO!",
76 [(X86fp_to_i16mem RFP32:$src, addr:$dst)]>;
77 def FP32_TO_INT32_IN_MEM : I<0, Pseudo,
Evan Chengb783fa32007-07-19 01:14:50 +000078 (outs), (ins i32mem:$dst, RFP32:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +000079 "#FP32_TO_INT32_IN_MEM PSEUDO!",
80 [(X86fp_to_i32mem RFP32:$src, addr:$dst)]>;
81 def FP32_TO_INT64_IN_MEM : I<0, Pseudo,
Evan Chengb783fa32007-07-19 01:14:50 +000082 (outs), (ins i64mem:$dst, RFP32:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +000083 "#FP32_TO_INT64_IN_MEM PSEUDO!",
84 [(X86fp_to_i64mem RFP32:$src, addr:$dst)]>;
85 def FP64_TO_INT16_IN_MEM : I<0, Pseudo,
Evan Chengb783fa32007-07-19 01:14:50 +000086 (outs), (ins i16mem:$dst, RFP64:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +000087 "#FP64_TO_INT16_IN_MEM PSEUDO!",
88 [(X86fp_to_i16mem RFP64:$src, addr:$dst)]>;
89 def FP64_TO_INT32_IN_MEM : I<0, Pseudo,
Evan Chengb783fa32007-07-19 01:14:50 +000090 (outs), (ins i32mem:$dst, RFP64:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +000091 "#FP64_TO_INT32_IN_MEM PSEUDO!",
92 [(X86fp_to_i32mem RFP64:$src, addr:$dst)]>;
93 def FP64_TO_INT64_IN_MEM : I<0, Pseudo,
Evan Chengb783fa32007-07-19 01:14:50 +000094 (outs), (ins i64mem:$dst, RFP64:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +000095 "#FP64_TO_INT64_IN_MEM PSEUDO!",
96 [(X86fp_to_i64mem RFP64:$src, addr:$dst)]>;
97}
98
99let isTerminator = 1 in
100 let Defs = [FP0, FP1, FP2, FP3, FP4, FP5, FP6] in
Evan Chengb783fa32007-07-19 01:14:50 +0000101 def FP_REG_KILL : I<0, Pseudo, (outs), (ins), "#FP_REG_KILL", []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000102
103// All FP Stack operations are represented with three instructions here. The
104// first two instructions, generated by the instruction selector, uses "RFP32"
105// or "RFP64" registers: traditional register files to reference 32-bit or
106// 64-bit floating point values. These sizes apply to the values, not the
107// registers, which are always 64 bits; RFP32 and RFP64 can be copied to
108// each other without losing information. These instructions are all psuedo
109// instructions and use the "_Fp" suffix.
110// In some cases there are additional variants with a mixture of 32-bit and
111// 64-bit registers.
112// The second instruction is defined with FPI, which is the actual instruction
113// emitted by the assembler. These use "RST" registers, although frequently
114// the actual register(s) used are implicit. These are always 64-bits.
115// The FP stackifier pass converts one to the other after register allocation
116// occurs.
117//
118// Note that the FpI instruction should have instruction selection info (e.g.
119// a pattern) and the FPI instruction should have emission info (e.g. opcode
120// encoding and asm printing info).
121
122// FPI - Floating Point Instruction template.
Evan Chengb783fa32007-07-19 01:14:50 +0000123class FPI<bits<8> o, Format F, dag outs, dag ins, string asm>
124 : I<o, F, outs, ins, asm, []> {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000125
126// FpI_ - Floating Point Psuedo Instruction template. Not Predicated.
Evan Chengb783fa32007-07-19 01:14:50 +0000127class FpI_<dag outs, dag ins, FPFormat fp, list<dag> pattern>
128 : X86Inst<0, Pseudo, NoImm, outs, ins, ""> {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000129 let FPForm = fp; let FPFormBits = FPForm.Value;
130 let Pattern = pattern;
131}
132
133// Random Pseudo Instructions.
Evan Chengb783fa32007-07-19 01:14:50 +0000134def FpGETRESULT32 : FpI_<(outs RFP32:$dst), (ins), SpecialFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000135 [(set RFP32:$dst, X86fpget)]>; // FPR = ST(0)
136
Evan Chengb783fa32007-07-19 01:14:50 +0000137def FpGETRESULT64 : FpI_<(outs RFP64:$dst), (ins), SpecialFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000138 [(set RFP64:$dst, X86fpget)]>; // FPR = ST(0)
139
140let noResults = 1 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000141 def FpSETRESULT32 : FpI_<(outs), (ins RFP32:$src), SpecialFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000142 [(X86fpset RFP32:$src)]>, Imp<[], [ST0]>;// ST(0) = FPR
143
Evan Chengb783fa32007-07-19 01:14:50 +0000144 def FpSETRESULT64 : FpI_<(outs), (ins RFP64:$src), SpecialFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000145 [(X86fpset RFP64:$src)]>, Imp<[], [ST0]>;// ST(0) = FPR
146}
147// FpI - Floating Point Psuedo Instruction template. Predicated on FPStack.
Evan Chengb783fa32007-07-19 01:14:50 +0000148class FpI<dag outs, dag ins, FPFormat fp, list<dag> pattern> :
149 FpI_<outs, ins, fp, pattern>, Requires<[FPStack]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000150
151// Register copies. Just copies, the 64->32 version does not truncate.
Evan Chengb783fa32007-07-19 01:14:50 +0000152def MOV_Fp3232 : FpI<(outs RFP32:$dst), (ins RFP32:$src), SpecialFP, []>;
153def MOV_Fp3264 : FpI<(outs RFP64:$dst), (ins RFP32:$src), SpecialFP, []>;
154def MOV_Fp6432 : FpI<(outs RFP32:$dst), (ins RFP64:$src), SpecialFP, []>;
155def MOV_Fp6464 : FpI<(outs RFP64:$dst), (ins RFP64:$src), SpecialFP, []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000156
157// Factoring for arithmetic.
158multiclass FPBinary_rr<SDNode OpNode> {
159// Register op register -> register
160// These are separated out because they have no reversed form.
Evan Chengb783fa32007-07-19 01:14:50 +0000161def _Fp32 : FpI<(outs RFP32:$dst), (ins RFP32:$src1, RFP32:$src2), TwoArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000162 [(set RFP32:$dst, (OpNode RFP32:$src1, RFP32:$src2))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000163def _Fp64 : FpI<(outs RFP64:$dst), (ins RFP64:$src1, RFP64:$src2), TwoArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000164 [(set RFP64:$dst, (OpNode RFP64:$src1, RFP64:$src2))]>;
165}
166// The FopST0 series are not included here because of the irregularities
167// in where the 'r' goes in assembly output.
168multiclass FPBinary<SDNode OpNode, Format fp, string asmstring> {
169// ST(0) = ST(0) + [mem]
Evan Chengb783fa32007-07-19 01:14:50 +0000170def _Fp32m : FpI<(outs RFP32:$dst), (ins RFP32:$src1, f32mem:$src2), OneArgFPRW,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000171 [(set RFP32:$dst,
172 (OpNode RFP32:$src1, (loadf32 addr:$src2)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000173def _Fp64m : FpI<(outs RFP64:$dst), (ins RFP64:$src1, f64mem:$src2), OneArgFPRW,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000174 [(set RFP64:$dst,
175 (OpNode RFP64:$src1, (loadf64 addr:$src2)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000176def _Fp64m32: FpI<(outs RFP64:$dst), (ins RFP64:$src1, f32mem:$src2), OneArgFPRW,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000177 [(set RFP64:$dst,
178 (OpNode RFP64:$src1, (extloadf32 addr:$src2)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000179def _F32m : FPI<0xD8, fp, (outs), (ins f32mem:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000180 !strconcat("f", !strconcat(asmstring, "{s} $src"))>;
Evan Chengb783fa32007-07-19 01:14:50 +0000181def _F64m : FPI<0xDC, fp, (outs), (ins f64mem:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000182 !strconcat("f", !strconcat(asmstring, "{l} $src"))>;
183// ST(0) = ST(0) + [memint]
Evan Chengb783fa32007-07-19 01:14:50 +0000184def _FpI16m32 : FpI<(outs RFP32:$dst), (ins RFP32:$src1, i16mem:$src2), OneArgFPRW,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000185 [(set RFP32:$dst, (OpNode RFP32:$src1,
186 (X86fild addr:$src2, i16)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000187def _FpI32m32 : FpI<(outs RFP32:$dst), (ins RFP32:$src1, i32mem:$src2), OneArgFPRW,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000188 [(set RFP32:$dst, (OpNode RFP32:$src1,
189 (X86fild addr:$src2, i32)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000190def _FpI16m64 : FpI<(outs RFP64:$dst), (ins RFP64:$src1, i16mem:$src2), OneArgFPRW,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000191 [(set RFP64:$dst, (OpNode RFP64:$src1,
192 (X86fild addr:$src2, i16)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000193def _FpI32m64 : FpI<(outs RFP64:$dst), (ins RFP64:$src1, i32mem:$src2), OneArgFPRW,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000194 [(set RFP64:$dst, (OpNode RFP64:$src1,
195 (X86fild addr:$src2, i32)))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000196def _FI16m : FPI<0xDE, fp, (outs), (ins i16mem:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000197 !strconcat("fi", !strconcat(asmstring, "{s} $src"))>;
Evan Chengb783fa32007-07-19 01:14:50 +0000198def _FI32m : FPI<0xDA, fp, (outs), (ins i32mem:$src),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000199 !strconcat("fi", !strconcat(asmstring, "{l} $src"))>;
200}
201
202defm ADD : FPBinary_rr<fadd>;
203defm SUB : FPBinary_rr<fsub>;
204defm MUL : FPBinary_rr<fmul>;
205defm DIV : FPBinary_rr<fdiv>;
206defm ADD : FPBinary<fadd, MRM0m, "add">;
207defm SUB : FPBinary<fsub, MRM4m, "sub">;
208defm SUBR: FPBinary<fsub ,MRM5m, "subr">;
209defm MUL : FPBinary<fmul, MRM1m, "mul">;
210defm DIV : FPBinary<fdiv, MRM6m, "div">;
211defm DIVR: FPBinary<fdiv, MRM7m, "divr">;
212
213class FPST0rInst<bits<8> o, string asm>
Evan Chengb783fa32007-07-19 01:14:50 +0000214 : FPI<o, AddRegFrm, (outs), (ins RST:$op), asm>, D8;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000215class FPrST0Inst<bits<8> o, string asm>
Evan Chengb783fa32007-07-19 01:14:50 +0000216 : FPI<o, AddRegFrm, (outs), (ins RST:$op), asm>, DC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000217class FPrST0PInst<bits<8> o, string asm>
Evan Chengb783fa32007-07-19 01:14:50 +0000218 : FPI<o, AddRegFrm, (outs), (ins RST:$op), asm>, DE;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000219
220// NOTE: GAS and apparently all other AT&T style assemblers have a broken notion
221// of some of the 'reverse' forms of the fsub and fdiv instructions. As such,
222// we have to put some 'r's in and take them out of weird places.
223def ADD_FST0r : FPST0rInst <0xC0, "fadd $op">;
224def ADD_FrST0 : FPrST0Inst <0xC0, "fadd {%st(0), $op|$op, %ST(0)}">;
225def ADD_FPrST0 : FPrST0PInst<0xC0, "faddp $op">;
226def SUBR_FST0r : FPST0rInst <0xE8, "fsubr $op">;
227def SUB_FrST0 : FPrST0Inst <0xE8, "fsub{r} {%st(0), $op|$op, %ST(0)}">;
228def SUB_FPrST0 : FPrST0PInst<0xE8, "fsub{r}p $op">;
229def SUB_FST0r : FPST0rInst <0xE0, "fsub $op">;
230def SUBR_FrST0 : FPrST0Inst <0xE0, "fsub{|r} {%st(0), $op|$op, %ST(0)}">;
231def SUBR_FPrST0 : FPrST0PInst<0xE0, "fsub{|r}p $op">;
232def MUL_FST0r : FPST0rInst <0xC8, "fmul $op">;
233def MUL_FrST0 : FPrST0Inst <0xC8, "fmul {%st(0), $op|$op, %ST(0)}">;
234def MUL_FPrST0 : FPrST0PInst<0xC8, "fmulp $op">;
235def DIVR_FST0r : FPST0rInst <0xF8, "fdivr $op">;
236def DIV_FrST0 : FPrST0Inst <0xF8, "fdiv{r} {%st(0), $op|$op, %ST(0)}">;
237def DIV_FPrST0 : FPrST0PInst<0xF8, "fdiv{r}p $op">;
238def DIV_FST0r : FPST0rInst <0xF0, "fdiv $op">;
239def DIVR_FrST0 : FPrST0Inst <0xF0, "fdiv{|r} {%st(0), $op|$op, %ST(0)}">;
240def DIVR_FPrST0 : FPrST0PInst<0xF0, "fdiv{|r}p $op">;
241
242// Unary operations.
243multiclass FPUnary<SDNode OpNode, bits<8> opcode, string asmstring> {
Evan Chengb783fa32007-07-19 01:14:50 +0000244def _Fp32 : FpI<(outs RFP32:$dst), (ins RFP32:$src), OneArgFPRW,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000245 [(set RFP32:$dst, (OpNode RFP32:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000246def _Fp64 : FpI<(outs RFP64:$dst), (ins RFP64:$src), OneArgFPRW,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000247 [(set RFP64:$dst, (OpNode RFP64:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000248def _F : FPI<opcode, RawFrm, (outs), (ins), asmstring>, D9;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000249}
250
251defm CHS : FPUnary<fneg, 0xE0, "fchs">;
252defm ABS : FPUnary<fabs, 0xE1, "fabs">;
253defm SQRT: FPUnary<fsqrt,0xFA, "fsqrt">;
254defm SIN : FPUnary<fsin, 0xFE, "fsin">;
255defm COS : FPUnary<fcos, 0xFF, "fcos">;
256
Evan Chengb783fa32007-07-19 01:14:50 +0000257def TST_Fp32 : FpI<(outs), (ins RFP32:$src), OneArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000258 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000259def TST_Fp64 : FpI<(outs), (ins RFP64:$src), OneArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000260 []>;
Evan Chengb783fa32007-07-19 01:14:50 +0000261def TST_F : FPI<0xE4, RawFrm, (outs), (ins), "ftst">, D9;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000262
263// Floating point cmovs.
264multiclass FPCMov<PatLeaf cc> {
Evan Chengb783fa32007-07-19 01:14:50 +0000265 def _Fp32 : FpI<(outs RFP32:$dst), (ins RFP32:$src1, RFP32:$src2), CondMovFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000266 [(set RFP32:$dst, (X86cmov RFP32:$src1, RFP32:$src2,
267 cc))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000268 def _Fp64 : FpI<(outs RFP64:$dst), (ins RFP64:$src1, RFP64:$src2), CondMovFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000269 [(set RFP64:$dst, (X86cmov RFP64:$src1, RFP64:$src2,
270 cc))]>;
271}
272let isTwoAddress = 1 in {
273defm CMOVB : FPCMov<X86_COND_B>;
274defm CMOVBE : FPCMov<X86_COND_BE>;
275defm CMOVE : FPCMov<X86_COND_E>;
276defm CMOVP : FPCMov<X86_COND_P>;
277defm CMOVNB : FPCMov<X86_COND_AE>;
278defm CMOVNBE: FPCMov<X86_COND_A>;
279defm CMOVNE : FPCMov<X86_COND_NE>;
280defm CMOVNP : FPCMov<X86_COND_NP>;
281}
282
283// These are not factored because there's no clean way to pass DA/DB.
Evan Chengb783fa32007-07-19 01:14:50 +0000284def CMOVB_F : FPI<0xC0, AddRegFrm, (outs RST:$op), (ins),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000285 "fcmovb {$op, %st(0)|%ST(0), $op}">, DA;
Evan Chengb783fa32007-07-19 01:14:50 +0000286def CMOVBE_F : FPI<0xD0, AddRegFrm, (outs RST:$op), (ins),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000287 "fcmovbe {$op, %st(0)|%ST(0), $op}">, DA;
Evan Chengb783fa32007-07-19 01:14:50 +0000288def CMOVE_F : FPI<0xC8, AddRegFrm, (outs RST:$op), (ins),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000289 "fcmove {$op, %st(0)|%ST(0), $op}">, DA;
Evan Chengb783fa32007-07-19 01:14:50 +0000290def CMOVP_F : FPI<0xD8, AddRegFrm, (outs RST:$op), (ins),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000291 "fcmovu {$op, %st(0)|%ST(0), $op}">, DA;
Evan Chengb783fa32007-07-19 01:14:50 +0000292def CMOVNB_F : FPI<0xC0, AddRegFrm, (outs RST:$op), (ins),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000293 "fcmovnb {$op, %st(0)|%ST(0), $op}">, DB;
Evan Chengb783fa32007-07-19 01:14:50 +0000294def CMOVNBE_F: FPI<0xD0, AddRegFrm, (outs RST:$op), (ins),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000295 "fcmovnbe {$op, %st(0)|%ST(0), $op}">, DB;
Evan Chengb783fa32007-07-19 01:14:50 +0000296def CMOVNE_F : FPI<0xC8, AddRegFrm, (outs RST:$op), (ins),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000297 "fcmovne {$op, %st(0)|%ST(0), $op}">, DB;
Evan Chengb783fa32007-07-19 01:14:50 +0000298def CMOVNP_F : FPI<0xD8, AddRegFrm, (outs RST:$op), (ins),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000299 "fcmovnu {$op, %st(0)|%ST(0), $op}">, DB;
300
301// Floating point loads & stores.
Evan Chengb783fa32007-07-19 01:14:50 +0000302def LD_Fp32m : FpI<(outs RFP32:$dst), (ins f32mem:$src), ZeroArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000303 [(set RFP32:$dst, (loadf32 addr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000304def LD_Fp64m : FpI<(outs RFP64:$dst), (ins f64mem:$src), ZeroArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000305 [(set RFP64:$dst, (loadf64 addr:$src))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000306def ILD_Fp16m32: FpI<(outs RFP32:$dst), (ins i16mem:$src), ZeroArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000307 [(set RFP32:$dst, (X86fild addr:$src, i16))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000308def ILD_Fp32m32: FpI<(outs RFP32:$dst), (ins i32mem:$src), ZeroArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000309 [(set RFP32:$dst, (X86fild addr:$src, i32))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000310def ILD_Fp64m32: FpI<(outs RFP32:$dst), (ins i64mem:$src), ZeroArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000311 [(set RFP32:$dst, (X86fild addr:$src, i64))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000312def ILD_Fp16m64: FpI<(outs RFP64:$dst), (ins i16mem:$src), ZeroArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000313 [(set RFP64:$dst, (X86fild addr:$src, i16))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000314def ILD_Fp32m64: FpI<(outs RFP64:$dst), (ins i32mem:$src), ZeroArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000315 [(set RFP64:$dst, (X86fild addr:$src, i32))]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000316def ILD_Fp64m64: FpI<(outs RFP64:$dst), (ins i64mem:$src), ZeroArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000317 [(set RFP64:$dst, (X86fild addr:$src, i64))]>;
318
Evan Chengb783fa32007-07-19 01:14:50 +0000319def ST_Fp32m : FpI<(outs), (ins f32mem:$op, RFP32:$src), OneArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000320 [(store RFP32:$src, addr:$op)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000321def ST_Fp64m32 : FpI<(outs), (ins f32mem:$op, RFP64:$src), OneArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000322 [(truncstoref32 RFP64:$src, addr:$op)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000323def ST_Fp64m : FpI<(outs), (ins f64mem:$op, RFP64:$src), OneArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000324 [(store RFP64:$src, addr:$op)]>;
325
Evan Chengb783fa32007-07-19 01:14:50 +0000326def ST_FpP32m : FpI<(outs), (ins f32mem:$op, RFP32:$src), OneArgFP, []>;
327def ST_FpP64m32 : FpI<(outs), (ins f32mem:$op, RFP64:$src), OneArgFP, []>;
328def ST_FpP64m : FpI<(outs), (ins f64mem:$op, RFP64:$src), OneArgFP, []>;
329def IST_Fp16m32 : FpI<(outs), (ins i16mem:$op, RFP32:$src), OneArgFP, []>;
330def IST_Fp32m32 : FpI<(outs), (ins i32mem:$op, RFP32:$src), OneArgFP, []>;
331def IST_Fp64m32 : FpI<(outs), (ins i64mem:$op, RFP32:$src), OneArgFP, []>;
332def IST_Fp16m64 : FpI<(outs), (ins i16mem:$op, RFP64:$src), OneArgFP, []>;
333def IST_Fp32m64 : FpI<(outs), (ins i32mem:$op, RFP64:$src), OneArgFP, []>;
334def IST_Fp64m64 : FpI<(outs), (ins i64mem:$op, RFP64:$src), OneArgFP, []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000335
Evan Chengb783fa32007-07-19 01:14:50 +0000336def LD_F32m : FPI<0xD9, MRM0m, (outs), (ins f32mem:$src), "fld{s} $src">;
337def LD_F64m : FPI<0xDD, MRM0m, (outs), (ins f64mem:$src), "fld{l} $src">;
338def ILD_F16m : FPI<0xDF, MRM0m, (outs), (ins i16mem:$src), "fild{s} $src">;
339def ILD_F32m : FPI<0xDB, MRM0m, (outs), (ins i32mem:$src), "fild{l} $src">;
340def ILD_F64m : FPI<0xDF, MRM5m, (outs), (ins i64mem:$src), "fild{ll} $src">;
341def ST_F32m : FPI<0xD9, MRM2m, (outs), (ins f32mem:$dst), "fst{s} $dst">;
342def ST_F64m : FPI<0xDD, MRM2m, (outs), (ins f64mem:$dst), "fst{l} $dst">;
343def ST_FP32m : FPI<0xD9, MRM3m, (outs), (ins f32mem:$dst), "fstp{s} $dst">;
344def ST_FP64m : FPI<0xDD, MRM3m, (outs), (ins f64mem:$dst), "fstp{l} $dst">;
345def IST_F16m : FPI<0xDF, MRM2m, (outs), (ins i16mem:$dst), "fist{s} $dst">;
346def IST_F32m : FPI<0xDB, MRM2m, (outs), (ins i32mem:$dst), "fist{l} $dst">;
347def IST_FP16m : FPI<0xDF, MRM3m, (outs), (ins i16mem:$dst), "fistp{s} $dst">;
348def IST_FP32m : FPI<0xDB, MRM3m, (outs), (ins i32mem:$dst), "fistp{l} $dst">;
349def IST_FP64m : FPI<0xDF, MRM7m, (outs), (ins i64mem:$dst), "fistp{ll} $dst">;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000350
351// FISTTP requires SSE3 even though it's a FPStack op.
Evan Chengb783fa32007-07-19 01:14:50 +0000352def ISTT_Fp16m32 : FpI_<(outs), (ins i16mem:$op, RFP32:$src), OneArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000353 [(X86fp_to_i16mem RFP32:$src, addr:$op)]>,
354 Requires<[HasSSE3]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000355def ISTT_Fp32m32 : FpI_<(outs), (ins i32mem:$op, RFP32:$src), OneArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000356 [(X86fp_to_i32mem RFP32:$src, addr:$op)]>,
357 Requires<[HasSSE3]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000358def ISTT_Fp64m32 : FpI_<(outs), (ins i64mem:$op, RFP32:$src), OneArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000359 [(X86fp_to_i64mem RFP32:$src, addr:$op)]>,
360 Requires<[HasSSE3]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000361def ISTT_Fp16m64 : FpI_<(outs), (ins i16mem:$op, RFP64:$src), OneArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000362 [(X86fp_to_i16mem RFP64:$src, addr:$op)]>,
363 Requires<[HasSSE3]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000364def ISTT_Fp32m64 : FpI_<(outs), (ins i32mem:$op, RFP64:$src), OneArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000365 [(X86fp_to_i32mem RFP64:$src, addr:$op)]>,
366 Requires<[HasSSE3]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000367def ISTT_Fp64m64 : FpI_<(outs), (ins i64mem:$op, RFP64:$src), OneArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000368 [(X86fp_to_i64mem RFP64:$src, addr:$op)]>,
369 Requires<[HasSSE3]>;
370
Evan Chengb783fa32007-07-19 01:14:50 +0000371def ISTT_FP16m : FPI<0xDF, MRM1m, (outs), (ins i16mem:$dst), "fisttp{s} $dst">;
372def ISTT_FP32m : FPI<0xDB, MRM1m, (outs), (ins i32mem:$dst), "fisttp{l} $dst">;
373def ISTT_FP64m : FPI<0xDD, MRM1m, (outs), (ins i64mem:$dst), "fisttp{ll} $dst">;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000374
375// FP Stack manipulation instructions.
Evan Chengb783fa32007-07-19 01:14:50 +0000376def LD_Frr : FPI<0xC0, AddRegFrm, (outs), (ins RST:$op), "fld $op">, D9;
377def ST_Frr : FPI<0xD0, AddRegFrm, (outs), (ins RST:$op), "fst $op">, DD;
378def ST_FPrr : FPI<0xD8, AddRegFrm, (outs), (ins RST:$op), "fstp $op">, DD;
379def XCH_F : FPI<0xC8, AddRegFrm, (outs), (ins RST:$op), "fxch $op">, D9;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000380
381// Floating point constant loads.
382let isReMaterializable = 1 in {
Evan Chengb783fa32007-07-19 01:14:50 +0000383def LD_Fp032 : FpI<(outs RFP32:$dst), (ins), ZeroArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000384 [(set RFP32:$dst, fpimm0)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000385def LD_Fp132 : FpI<(outs RFP32:$dst), (ins), ZeroArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000386 [(set RFP32:$dst, fpimm1)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000387def LD_Fp064 : FpI<(outs RFP64:$dst), (ins), ZeroArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000388 [(set RFP64:$dst, fpimm0)]>;
Evan Chengb783fa32007-07-19 01:14:50 +0000389def LD_Fp164 : FpI<(outs RFP64:$dst), (ins), ZeroArgFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000390 [(set RFP64:$dst, fpimm1)]>;
391}
392
Evan Chengb783fa32007-07-19 01:14:50 +0000393def LD_F0 : FPI<0xEE, RawFrm, (outs), (ins), "fldz">, D9;
394def LD_F1 : FPI<0xE8, RawFrm, (outs), (ins), "fld1">, D9;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000395
396
397// Floating point compares.
Evan Chengb783fa32007-07-19 01:14:50 +0000398def UCOM_Fpr32 : FpI<(outs), (ins RFP32:$lhs, RFP32:$rhs), CompareFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000399 []>; // FPSW = cmp ST(0) with ST(i)
Evan Chengb783fa32007-07-19 01:14:50 +0000400def UCOM_FpIr32: FpI<(outs), (ins RFP32:$lhs, RFP32:$rhs), CompareFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000401 [(X86cmp RFP32:$lhs, RFP32:$rhs)]>; // CC = ST(0) cmp ST(i)
Evan Chengb783fa32007-07-19 01:14:50 +0000402def UCOM_Fpr64 : FpI<(outs), (ins RFP64:$lhs, RFP64:$rhs), CompareFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000403 []>; // FPSW = cmp ST(0) with ST(i)
Evan Chengb783fa32007-07-19 01:14:50 +0000404def UCOM_FpIr64: FpI<(outs), (ins RFP64:$lhs, RFP64:$rhs), CompareFP,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000405 [(X86cmp RFP64:$lhs, RFP64:$rhs)]>; // CC = ST(0) cmp ST(i)
406
407def UCOM_Fr : FPI<0xE0, AddRegFrm, // FPSW = cmp ST(0) with ST(i)
Evan Chengb783fa32007-07-19 01:14:50 +0000408 (outs), (ins RST:$reg),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000409 "fucom $reg">, DD, Imp<[ST0],[]>;
410def UCOM_FPr : FPI<0xE8, AddRegFrm, // FPSW = cmp ST(0) with ST(i), pop
Evan Chengb783fa32007-07-19 01:14:50 +0000411 (outs), (ins RST:$reg),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000412 "fucomp $reg">, DD, Imp<[ST0],[]>;
413def UCOM_FPPr : FPI<0xE9, RawFrm, // cmp ST(0) with ST(1), pop, pop
Evan Chengb783fa32007-07-19 01:14:50 +0000414 (outs), (ins),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000415 "fucompp">, DA, Imp<[ST0],[]>;
416
417def UCOM_FIr : FPI<0xE8, AddRegFrm, // CC = cmp ST(0) with ST(i)
Evan Chengb783fa32007-07-19 01:14:50 +0000418 (outs), (ins RST:$reg),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000419 "fucomi {$reg, %st(0)|%ST(0), $reg}">, DB, Imp<[ST0],[]>;
420def UCOM_FIPr : FPI<0xE8, AddRegFrm, // CC = cmp ST(0) with ST(i), pop
Evan Chengb783fa32007-07-19 01:14:50 +0000421 (outs), (ins RST:$reg),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000422 "fucomip {$reg, %st(0)|%ST(0), $reg}">, DF, Imp<[ST0],[]>;
423
424// Floating point flag ops.
425def FNSTSW8r : I<0xE0, RawFrm, // AX = fp flags
Evan Chengb783fa32007-07-19 01:14:50 +0000426 (outs), (ins), "fnstsw", []>, DF, Imp<[],[AX]>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000427
428def FNSTCW16m : I<0xD9, MRM7m, // [mem16] = X87 control world
Evan Chengb783fa32007-07-19 01:14:50 +0000429 (outs), (ins i16mem:$dst), "fnstcw $dst", []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000430def FLDCW16m : I<0xD9, MRM5m, // X87 control world = [mem16]
Evan Chengb783fa32007-07-19 01:14:50 +0000431 (outs), (ins i16mem:$dst), "fldcw $dst", []>;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000432
433//===----------------------------------------------------------------------===//
434// Non-Instruction Patterns
435//===----------------------------------------------------------------------===//
436
437// Required for RET of f32 / f64 values.
438def : Pat<(X86fld addr:$src, f32), (LD_Fp32m addr:$src)>;
439def : Pat<(X86fld addr:$src, f64), (LD_Fp64m addr:$src)>;
440
441// Required for CALL which return f32 / f64 values.
442def : Pat<(X86fst RFP32:$src, addr:$op, f32), (ST_Fp32m addr:$op, RFP32:$src)>;
443def : Pat<(X86fst RFP64:$src, addr:$op, f32), (ST_Fp64m32 addr:$op, RFP64:$src)>;
444def : Pat<(X86fst RFP64:$src, addr:$op, f64), (ST_Fp64m addr:$op, RFP64:$src)>;
445
446// Floating point constant -0.0 and -1.0
447def : Pat<(f32 fpimmneg0), (CHS_Fp32 (LD_Fp032))>, Requires<[FPStack]>;
448def : Pat<(f32 fpimmneg1), (CHS_Fp32 (LD_Fp132))>, Requires<[FPStack]>;
449def : Pat<(f64 fpimmneg0), (CHS_Fp64 (LD_Fp064))>, Requires<[FPStack]>;
450def : Pat<(f64 fpimmneg1), (CHS_Fp64 (LD_Fp164))>, Requires<[FPStack]>;
451
452// Used to conv. i64 to f64 since there isn't a SSE version.
453def : Pat<(X86fildflag addr:$src, i64), (ILD_Fp64m64 addr:$src)>;
454
455def : Pat<(extloadf32 addr:$src),
456 (MOV_Fp3264 (LD_Fp32m addr:$src))>, Requires<[FPStack]>;
457def : Pat<(fextend RFP32:$src), (MOV_Fp3264 RFP32:$src)>, Requires<[FPStack]>;