blob: 619b399ef8d8c3ad3a13cbed038809c7e0cf8e11 [file] [log] [blame]
Jia Liue1d61962012-02-19 02:03:36 +00001//===- X86InstrFPStack.td - FPU Instruction Set ------------*- tablegen -*-===//
Jia Liub22310f2012-02-18 12:03:15 +00002//
Evan Cheng6e595b92006-02-21 19:13:53 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Jia Liub22310f2012-02-18 12:03:15 +00007//
Evan Cheng6e595b92006-02-21 19:13:53 +00008//===----------------------------------------------------------------------===//
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
Evan Cheng4f674922006-03-17 19:55:52 +000016//===----------------------------------------------------------------------===//
Evan Cheng9bf978d2006-03-18 01:23:20 +000017// FPStack specific DAG Nodes.
18//===----------------------------------------------------------------------===//
19
Michael Liao5bf95782014-12-04 05:20:33 +000020def SDTX86FpGet2 : SDTypeProfile<2, 0, [SDTCisVT<0, f80>,
Chris Lattnerd587e582008-03-09 07:05:32 +000021 SDTCisVT<1, f80>]>;
Dale Johannesenc2a60892007-07-03 17:07:33 +000022def SDTX86Fld : SDTypeProfile<1, 2, [SDTCisFP<0>,
Michael Liao5bf95782014-12-04 05:20:33 +000023 SDTCisPtrTy<1>,
Dale Johannesen23f631d2007-07-10 20:53:41 +000024 SDTCisVT<2, OtherVT>]>;
Dale Johannesenc2a60892007-07-03 17:07:33 +000025def SDTX86Fst : SDTypeProfile<0, 3, [SDTCisFP<0>,
Michael Liao5bf95782014-12-04 05:20:33 +000026 SDTCisPtrTy<1>,
Dale Johannesen23f631d2007-07-10 20:53:41 +000027 SDTCisVT<2, OtherVT>]>;
Dale Johannesenc2a60892007-07-03 17:07:33 +000028def SDTX86Fild : SDTypeProfile<1, 2, [SDTCisFP<0>, SDTCisPtrTy<1>,
29 SDTCisVT<2, OtherVT>]>;
Benjamin Kramer913da4b2012-04-27 12:07:43 +000030def SDTX86Fnstsw : SDTypeProfile<1, 1, [SDTCisVT<0, i16>, SDTCisVT<1, i16>]>;
Dale Johannesenc2a60892007-07-03 17:07:33 +000031def SDTX86FpToIMem : SDTypeProfile<0, 2, [SDTCisFP<0>, SDTCisPtrTy<1>]>;
Evan Cheng9bf978d2006-03-18 01:23:20 +000032
Anton Korobeynikov91460e42007-11-16 01:31:51 +000033def SDTX86CwdStore : SDTypeProfile<0, 1, [SDTCisPtrTy<0>]>;
34
Chris Lattner317332f2008-01-10 07:59:24 +000035def X86fld : SDNode<"X86ISD::FLD", SDTX86Fld,
Chris Lattnera5156c32010-09-22 01:28:21 +000036 [SDNPHasChain, SDNPMayLoad, SDNPMemOperand]>;
Chris Lattner317332f2008-01-10 07:59:24 +000037def X86fst : SDNode<"X86ISD::FST", SDTX86Fst,
Chris Lattner2a0a3b42010-12-23 18:28:41 +000038 [SDNPHasChain, SDNPInGlue, SDNPMayStore,
Chris Lattnera5156c32010-09-22 01:28:21 +000039 SDNPMemOperand]>;
Chris Lattner317332f2008-01-10 07:59:24 +000040def X86fild : SDNode<"X86ISD::FILD", SDTX86Fild,
Chris Lattnera5156c32010-09-22 01:28:21 +000041 [SDNPHasChain, SDNPMayLoad, SDNPMemOperand]>;
Chris Lattner317332f2008-01-10 07:59:24 +000042def X86fildflag : SDNode<"X86ISD::FILD_FLAG", SDTX86Fild,
Chris Lattner2a0a3b42010-12-23 18:28:41 +000043 [SDNPHasChain, SDNPOutGlue, SDNPMayLoad,
Chris Lattnera5156c32010-09-22 01:28:21 +000044 SDNPMemOperand]>;
Benjamin Kramer913da4b2012-04-27 12:07:43 +000045def X86fp_stsw : SDNode<"X86ISD::FNSTSW16r", SDTX86Fnstsw>;
Evan Cheng9bf978d2006-03-18 01:23:20 +000046def X86fp_to_i16mem : SDNode<"X86ISD::FP_TO_INT16_IN_MEM", SDTX86FpToIMem,
Chris Lattner78f518b2010-09-22 01:05:16 +000047 [SDNPHasChain, SDNPMayStore, SDNPMemOperand]>;
Evan Cheng9bf978d2006-03-18 01:23:20 +000048def X86fp_to_i32mem : SDNode<"X86ISD::FP_TO_INT32_IN_MEM", SDTX86FpToIMem,
Chris Lattner78f518b2010-09-22 01:05:16 +000049 [SDNPHasChain, SDNPMayStore, SDNPMemOperand]>;
Evan Cheng9bf978d2006-03-18 01:23:20 +000050def X86fp_to_i64mem : SDNode<"X86ISD::FP_TO_INT64_IN_MEM", SDTX86FpToIMem,
Chris Lattner78f518b2010-09-22 01:05:16 +000051 [SDNPHasChain, SDNPMayStore, SDNPMemOperand]>;
Anton Korobeynikov91460e42007-11-16 01:31:51 +000052def X86fp_cwd_get16 : SDNode<"X86ISD::FNSTCW16m", SDTX86CwdStore,
Chris Lattner78f518b2010-09-22 01:05:16 +000053 [SDNPHasChain, SDNPMayStore, SDNPSideEffect,
54 SDNPMemOperand]>;
Evan Cheng9bf978d2006-03-18 01:23:20 +000055
56//===----------------------------------------------------------------------===//
Evan Cheng4f674922006-03-17 19:55:52 +000057// FPStack pattern fragments
58//===----------------------------------------------------------------------===//
59
Daniel Sanders11300ce2017-10-13 21:28:03 +000060def fpimm0 : FPImmLeaf<fAny, [{
61 return Imm.isExactlyValue(+0.0);
Evan Cheng4f674922006-03-17 19:55:52 +000062}]>;
63
Daniel Sanders11300ce2017-10-13 21:28:03 +000064def fpimmneg0 : FPImmLeaf<fAny, [{
65 return Imm.isExactlyValue(-0.0);
Evan Cheng4f674922006-03-17 19:55:52 +000066}]>;
67
Daniel Sanders11300ce2017-10-13 21:28:03 +000068def fpimm1 : FPImmLeaf<fAny, [{
69 return Imm.isExactlyValue(+1.0);
Evan Cheng4f674922006-03-17 19:55:52 +000070}]>;
71
Daniel Sanders11300ce2017-10-13 21:28:03 +000072def fpimmneg1 : FPImmLeaf<fAny, [{
73 return Imm.isExactlyValue(-1.0);
Evan Cheng4f674922006-03-17 19:55:52 +000074}]>;
75
Simon Pilgrim4fecbd82017-11-28 18:10:29 +000076// Some 'special' instructions - expanded after instruction selection.
77let usesCustomInserter = 1, hasNoSchedulingInfo = 1 in {
Eric Christophera964f4d2010-11-30 21:57:32 +000078 def FP32_TO_INT16_IN_MEM : PseudoI<(outs), (ins i16mem:$dst, RFP32:$src),
Dale Johannesenc2a60892007-07-03 17:07:33 +000079 [(X86fp_to_i16mem RFP32:$src, addr:$dst)]>;
Eric Christophera964f4d2010-11-30 21:57:32 +000080 def FP32_TO_INT32_IN_MEM : PseudoI<(outs), (ins i32mem:$dst, RFP32:$src),
Dale Johannesenc2a60892007-07-03 17:07:33 +000081 [(X86fp_to_i32mem RFP32:$src, addr:$dst)]>;
Eric Christophera964f4d2010-11-30 21:57:32 +000082 def FP32_TO_INT64_IN_MEM : PseudoI<(outs), (ins i64mem:$dst, RFP32:$src),
Dale Johannesenc2a60892007-07-03 17:07:33 +000083 [(X86fp_to_i64mem RFP32:$src, addr:$dst)]>;
Eric Christophera964f4d2010-11-30 21:57:32 +000084 def FP64_TO_INT16_IN_MEM : PseudoI<(outs), (ins i16mem:$dst, RFP64:$src),
Dale Johannesenc2a60892007-07-03 17:07:33 +000085 [(X86fp_to_i16mem RFP64:$src, addr:$dst)]>;
Eric Christophera964f4d2010-11-30 21:57:32 +000086 def FP64_TO_INT32_IN_MEM : PseudoI<(outs), (ins i32mem:$dst, RFP64:$src),
Dale Johannesenc2a60892007-07-03 17:07:33 +000087 [(X86fp_to_i32mem RFP64:$src, addr:$dst)]>;
Eric Christophera964f4d2010-11-30 21:57:32 +000088 def FP64_TO_INT64_IN_MEM : PseudoI<(outs), (ins i64mem:$dst, RFP64:$src),
Dale Johannesenc2a60892007-07-03 17:07:33 +000089 [(X86fp_to_i64mem RFP64:$src, addr:$dst)]>;
Eric Christophera964f4d2010-11-30 21:57:32 +000090 def FP80_TO_INT16_IN_MEM : PseudoI<(outs), (ins i16mem:$dst, RFP80:$src),
Dale Johannesen57c6ac5f2007-08-07 01:17:37 +000091 [(X86fp_to_i16mem RFP80:$src, addr:$dst)]>;
Eric Christophera964f4d2010-11-30 21:57:32 +000092 def FP80_TO_INT32_IN_MEM : PseudoI<(outs), (ins i32mem:$dst, RFP80:$src),
Dale Johannesen57c6ac5f2007-08-07 01:17:37 +000093 [(X86fp_to_i32mem RFP80:$src, addr:$dst)]>;
Eric Christophera964f4d2010-11-30 21:57:32 +000094 def FP80_TO_INT64_IN_MEM : PseudoI<(outs), (ins i64mem:$dst, RFP80:$src),
Dale Johannesen57c6ac5f2007-08-07 01:17:37 +000095 [(X86fp_to_i64mem RFP80:$src, addr:$dst)]>;
Evan Chengd5847812006-02-21 20:00:20 +000096}
97
Dale Johannesena47f7d72007-08-07 20:29:26 +000098// All FP Stack operations are represented with four instructions here. The
99// first three instructions, generated by the instruction selector, use "RFP32"
100// "RFP64" or "RFP80" registers: traditional register files to reference 32-bit,
Michael Liao5bf95782014-12-04 05:20:33 +0000101// 64-bit or 80-bit floating point values. These sizes apply to the values,
Dale Johannesena47f7d72007-08-07 20:29:26 +0000102// not the registers, which are always 80 bits; RFP32, RFP64 and RFP80 can be
103// copied to each other without losing information. These instructions are all
104// pseudo instructions and use the "_Fp" suffix.
105// In some cases there are additional variants with a mixture of different
106// register sizes.
Evan Cheng6e595b92006-02-21 19:13:53 +0000107// The second instruction is defined with FPI, which is the actual instruction
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000108// emitted by the assembler. These use "RST" registers, although frequently
Dale Johannesena47f7d72007-08-07 20:29:26 +0000109// the actual register(s) used are implicit. These are always 80 bits.
Michael Liao5bf95782014-12-04 05:20:33 +0000110// The FP stackifier pass converts one to the other after register allocation
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000111// occurs.
Evan Cheng6e595b92006-02-21 19:13:53 +0000112//
113// Note that the FpI instruction should have instruction selection info (e.g.
114// a pattern) and the FPI instruction should have emission info (e.g. opcode
115// encoding and asm printing info).
116
Bob Wilsona967c422010-08-26 18:08:11 +0000117// FpIf32, FpIf64 - Floating Point Pseudo Instruction template.
Dale Johannesene36c4002007-09-23 14:52:20 +0000118// f32 instructions can use SSE1 and are predicated on FPStackf32 == !SSE1.
119// f64 instructions can use SSE2 and are predicated on FPStackf64 == !SSE2.
120// f80 instructions cannot use SSE and use neither of these.
Simon Pilgrim0747a7e2017-11-28 15:03:42 +0000121class FpIf32<dag outs, dag ins, FPFormat fp, list<dag> pattern,
122 InstrItinClass itin = NoItinerary> :
123 FpI_<outs, ins, fp, pattern, itin>, Requires<[FPStackf32]>;
124class FpIf64<dag outs, dag ins, FPFormat fp, list<dag> pattern,
125 InstrItinClass itin = NoItinerary> :
126 FpI_<outs, ins, fp, pattern, itin>, Requires<[FPStackf64]>;
Evan Cheng6e595b92006-02-21 19:13:53 +0000127
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000128// Factoring for arithmetic.
129multiclass FPBinary_rr<SDNode OpNode> {
130// Register op register -> register
131// These are separated out because they have no reversed form.
Dale Johannesene36c4002007-09-23 14:52:20 +0000132def _Fp32 : FpIf32<(outs RFP32:$dst), (ins RFP32:$src1, RFP32:$src2), TwoArgFP,
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000133 [(set RFP32:$dst, (OpNode RFP32:$src1, RFP32:$src2))]>;
Dale Johannesene36c4002007-09-23 14:52:20 +0000134def _Fp64 : FpIf64<(outs RFP64:$dst), (ins RFP64:$src1, RFP64:$src2), TwoArgFP,
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000135 [(set RFP64:$dst, (OpNode RFP64:$src1, RFP64:$src2))]>;
Dale Johannesena47f7d72007-08-07 20:29:26 +0000136def _Fp80 : FpI_<(outs RFP80:$dst), (ins RFP80:$src1, RFP80:$src2), TwoArgFP,
Dale Johannesenb1888e72007-08-05 18:49:15 +0000137 [(set RFP80:$dst, (OpNode RFP80:$src1, RFP80:$src2))]>;
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000138}
139// The FopST0 series are not included here because of the irregularities
140// in where the 'r' goes in assembly output.
Dale Johannesenb1888e72007-08-05 18:49:15 +0000141// These instructions cannot address 80-bit memory.
Craig Topperc458c7c62015-12-01 06:13:16 +0000142multiclass FPBinary<SDNode OpNode, Format fp, string asmstring,
143 bit Forward = 1> {
Simon Pilgrime0434fa2017-12-24 12:20:21 +0000144let mayLoad = 1, hasSideEffects = 1 in {
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000145// ST(0) = ST(0) + [mem]
Michael Liao5bf95782014-12-04 05:20:33 +0000146def _Fp32m : FpIf32<(outs RFP32:$dst),
Sean Callanan04d8cb72009-12-18 00:01:26 +0000147 (ins RFP32:$src1, f32mem:$src2), OneArgFPRW,
Craig Topperc458c7c62015-12-01 06:13:16 +0000148 [!if(Forward,
149 (set RFP32:$dst,
150 (OpNode RFP32:$src1, (loadf32 addr:$src2))),
151 (set RFP32:$dst,
152 (OpNode (loadf32 addr:$src2), RFP32:$src1)))]>;
Michael Liao5bf95782014-12-04 05:20:33 +0000153def _Fp64m : FpIf64<(outs RFP64:$dst),
Sean Callanan04d8cb72009-12-18 00:01:26 +0000154 (ins RFP64:$src1, f64mem:$src2), OneArgFPRW,
Craig Topperc458c7c62015-12-01 06:13:16 +0000155 [!if(Forward,
156 (set RFP64:$dst,
157 (OpNode RFP64:$src1, (loadf64 addr:$src2))),
158 (set RFP64:$dst,
159 (OpNode (loadf64 addr:$src2), RFP64:$src1)))]>;
Michael Liao5bf95782014-12-04 05:20:33 +0000160def _Fp64m32: FpIf64<(outs RFP64:$dst),
Sean Callanan04d8cb72009-12-18 00:01:26 +0000161 (ins RFP64:$src1, f32mem:$src2), OneArgFPRW,
Craig Topperc458c7c62015-12-01 06:13:16 +0000162 [!if(Forward,
163 (set RFP64:$dst,
164 (OpNode RFP64:$src1, (f64 (extloadf32 addr:$src2)))),
165 (set RFP64:$dst,
166 (OpNode (f64 (extloadf32 addr:$src2)), RFP64:$src1)))]>;
Michael Liao5bf95782014-12-04 05:20:33 +0000167def _Fp80m32: FpI_<(outs RFP80:$dst),
Sean Callanan04d8cb72009-12-18 00:01:26 +0000168 (ins RFP80:$src1, f32mem:$src2), OneArgFPRW,
Craig Topperc458c7c62015-12-01 06:13:16 +0000169 [!if(Forward,
170 (set RFP80:$dst,
171 (OpNode RFP80:$src1, (f80 (extloadf32 addr:$src2)))),
172 (set RFP80:$dst,
173 (OpNode (f80 (extloadf32 addr:$src2)), RFP80:$src1)))]>;
Michael Liao5bf95782014-12-04 05:20:33 +0000174def _Fp80m64: FpI_<(outs RFP80:$dst),
Sean Callanan04d8cb72009-12-18 00:01:26 +0000175 (ins RFP80:$src1, f64mem:$src2), OneArgFPRW,
Craig Topperc458c7c62015-12-01 06:13:16 +0000176 [!if(Forward,
177 (set RFP80:$dst,
178 (OpNode RFP80:$src1, (f80 (extloadf64 addr:$src2)))),
179 (set RFP80:$dst,
180 (OpNode (f80 (extloadf64 addr:$src2)), RFP80:$src1)))]>;
Michael Liao5bf95782014-12-04 05:20:33 +0000181def _F32m : FPI<0xD8, fp, (outs), (ins f32mem:$src),
Craig Topperc458c7c62015-12-01 06:13:16 +0000182 !strconcat("f", asmstring, "{s}\t$src")>;
Michael Liao5bf95782014-12-04 05:20:33 +0000183def _F64m : FPI<0xDC, fp, (outs), (ins f64mem:$src),
Craig Topperc458c7c62015-12-01 06:13:16 +0000184 !strconcat("f", asmstring, "{l}\t$src")>;
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000185// ST(0) = ST(0) + [memint]
Michael Liao5bf95782014-12-04 05:20:33 +0000186def _FpI16m32 : FpIf32<(outs RFP32:$dst), (ins RFP32:$src1, i16mem:$src2),
Sean Callanan04d8cb72009-12-18 00:01:26 +0000187 OneArgFPRW,
Craig Topperc458c7c62015-12-01 06:13:16 +0000188 [!if(Forward,
189 (set RFP32:$dst,
190 (OpNode RFP32:$src1, (X86fild addr:$src2, i16))),
191 (set RFP32:$dst,
192 (OpNode (X86fild addr:$src2, i16), RFP32:$src1)))]>;
Michael Liao5bf95782014-12-04 05:20:33 +0000193def _FpI32m32 : FpIf32<(outs RFP32:$dst), (ins RFP32:$src1, i32mem:$src2),
Sean Callanan04d8cb72009-12-18 00:01:26 +0000194 OneArgFPRW,
Craig Topperc458c7c62015-12-01 06:13:16 +0000195 [!if(Forward,
196 (set RFP32:$dst,
197 (OpNode RFP32:$src1, (X86fild addr:$src2, i32))),
198 (set RFP32:$dst,
199 (OpNode (X86fild addr:$src2, i32), RFP32:$src1)))]>;
Michael Liao5bf95782014-12-04 05:20:33 +0000200def _FpI16m64 : FpIf64<(outs RFP64:$dst), (ins RFP64:$src1, i16mem:$src2),
Sean Callanan04d8cb72009-12-18 00:01:26 +0000201 OneArgFPRW,
Craig Topperc458c7c62015-12-01 06:13:16 +0000202 [!if(Forward,
203 (set RFP64:$dst,
204 (OpNode RFP64:$src1, (X86fild addr:$src2, i16))),
205 (set RFP64:$dst,
206 (OpNode (X86fild addr:$src2, i16), RFP64:$src1)))]>;
Michael Liao5bf95782014-12-04 05:20:33 +0000207def _FpI32m64 : FpIf64<(outs RFP64:$dst), (ins RFP64:$src1, i32mem:$src2),
Sean Callanan04d8cb72009-12-18 00:01:26 +0000208 OneArgFPRW,
Craig Topperc458c7c62015-12-01 06:13:16 +0000209 [!if(Forward,
210 (set RFP64:$dst,
211 (OpNode RFP64:$src1, (X86fild addr:$src2, i32))),
212 (set RFP64:$dst,
213 (OpNode (X86fild addr:$src2, i32), RFP64:$src1)))]>;
Michael Liao5bf95782014-12-04 05:20:33 +0000214def _FpI16m80 : FpI_<(outs RFP80:$dst), (ins RFP80:$src1, i16mem:$src2),
Craig Topperc458c7c62015-12-01 06:13:16 +0000215 OneArgFPRW,
216 [!if(Forward,
217 (set RFP80:$dst,
218 (OpNode RFP80:$src1, (X86fild addr:$src2, i16))),
219 (set RFP80:$dst,
220 (OpNode (X86fild addr:$src2, i16), RFP80:$src1)))]>;
Michael Liao5bf95782014-12-04 05:20:33 +0000221def _FpI32m80 : FpI_<(outs RFP80:$dst), (ins RFP80:$src1, i32mem:$src2),
Craig Topperc458c7c62015-12-01 06:13:16 +0000222 OneArgFPRW,
223 [!if(Forward,
224 (set RFP80:$dst,
225 (OpNode RFP80:$src1, (X86fild addr:$src2, i32))),
226 (set RFP80:$dst,
227 (OpNode (X86fild addr:$src2, i32), RFP80:$src1)))]>;
Michael Liao5bf95782014-12-04 05:20:33 +0000228def _FI16m : FPI<0xDE, fp, (outs), (ins i16mem:$src),
Craig Topperc458c7c62015-12-01 06:13:16 +0000229 !strconcat("fi", asmstring, "{s}\t$src")>;
Michael Liao5bf95782014-12-04 05:20:33 +0000230def _FI32m : FPI<0xDA, fp, (outs), (ins i32mem:$src),
Craig Topperc458c7c62015-12-01 06:13:16 +0000231 !strconcat("fi", asmstring, "{l}\t$src")>;
Simon Pilgrime0434fa2017-12-24 12:20:21 +0000232} // mayLoad = 1, hasSideEffects = 1
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000233}
234
Benjamin Kramer913da4b2012-04-27 12:07:43 +0000235let Defs = [FPSW] in {
Quentin Colombetb5e41ea2014-03-12 17:33:42 +0000236// FPBinary_rr just defines pseudo-instructions, no need to set a scheduling
237// resources.
Simon Pilgrimbd5f7452017-12-07 14:07:18 +0000238let hasNoSchedulingInfo = 1 in {
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000239defm ADD : FPBinary_rr<fadd>;
240defm SUB : FPBinary_rr<fsub>;
241defm MUL : FPBinary_rr<fmul>;
242defm DIV : FPBinary_rr<fdiv>;
Simon Pilgrimbd5f7452017-12-07 14:07:18 +0000243}
244
Quentin Colombetb5e41ea2014-03-12 17:33:42 +0000245// Sets the scheduling resources for the actual NAME#_F<size>m defintions.
246let SchedRW = [WriteFAddLd] in {
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000247defm ADD : FPBinary<fadd, MRM0m, "add">;
248defm SUB : FPBinary<fsub, MRM4m, "sub">;
Craig Topperc458c7c62015-12-01 06:13:16 +0000249defm SUBR: FPBinary<fsub ,MRM5m, "subr", 0>;
Quentin Colombetb5e41ea2014-03-12 17:33:42 +0000250}
Simon Pilgrimbd5f7452017-12-07 14:07:18 +0000251
Quentin Colombetb5e41ea2014-03-12 17:33:42 +0000252let SchedRW = [WriteFMulLd] in {
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000253defm MUL : FPBinary<fmul, MRM1m, "mul">;
Quentin Colombetb5e41ea2014-03-12 17:33:42 +0000254}
Simon Pilgrimbd5f7452017-12-07 14:07:18 +0000255
Quentin Colombetb5e41ea2014-03-12 17:33:42 +0000256let SchedRW = [WriteFDivLd] in {
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000257defm DIV : FPBinary<fdiv, MRM6m, "div">;
Craig Topperc458c7c62015-12-01 06:13:16 +0000258defm DIVR: FPBinary<fdiv, MRM7m, "divr", 0>;
Benjamin Kramer913da4b2012-04-27 12:07:43 +0000259}
Simon Pilgrim17e290f2017-08-06 13:21:09 +0000260} // Defs = [FPSW]
Evan Cheng6e595b92006-02-21 19:13:53 +0000261
Craig Topper623b0d62014-01-01 14:22:37 +0000262class FPST0rInst<Format fp, string asm>
263 : FPI<0xD8, fp, (outs), (ins RST:$op), asm>;
264class FPrST0Inst<Format fp, string asm>
265 : FPI<0xDC, fp, (outs), (ins RST:$op), asm>;
266class FPrST0PInst<Format fp, string asm>
267 : FPI<0xDE, fp, (outs), (ins RST:$op), asm>;
Evan Cheng6e595b92006-02-21 19:13:53 +0000268
Evan Cheng6e595b92006-02-21 19:13:53 +0000269// NOTE: GAS and apparently all other AT&T style assemblers have a broken notion
270// of some of the 'reverse' forms of the fsub and fdiv instructions. As such,
271// we have to put some 'r's in and take them out of weird places.
Quentin Colombetb5e41ea2014-03-12 17:33:42 +0000272let SchedRW = [WriteFAdd] in {
Craig Topper623b0d62014-01-01 14:22:37 +0000273def ADD_FST0r : FPST0rInst <MRM0r, "fadd\t$op">;
274def ADD_FrST0 : FPrST0Inst <MRM0r, "fadd\t{%st(0), $op|$op, st(0)}">;
275def ADD_FPrST0 : FPrST0PInst<MRM0r, "faddp\t$op">;
276def SUBR_FST0r : FPST0rInst <MRM5r, "fsubr\t$op">;
277def SUB_FrST0 : FPrST0Inst <MRM5r, "fsub{r}\t{%st(0), $op|$op, st(0)}">;
278def SUB_FPrST0 : FPrST0PInst<MRM5r, "fsub{r}p\t$op">;
279def SUB_FST0r : FPST0rInst <MRM4r, "fsub\t$op">;
280def SUBR_FrST0 : FPrST0Inst <MRM4r, "fsub{|r}\t{%st(0), $op|$op, st(0)}">;
281def SUBR_FPrST0 : FPrST0PInst<MRM4r, "fsub{|r}p\t$op">;
Simon Pilgrim6415f562017-12-08 20:10:31 +0000282def COM_FST0r : FPST0rInst <MRM2r, "fcom\t$op">;
283def COMP_FST0r : FPST0rInst <MRM3r, "fcomp\t$op">;
Quentin Colombetb5e41ea2014-03-12 17:33:42 +0000284} // SchedRW
285let SchedRW = [WriteFMul] in {
Craig Topper623b0d62014-01-01 14:22:37 +0000286def MUL_FST0r : FPST0rInst <MRM1r, "fmul\t$op">;
287def MUL_FrST0 : FPrST0Inst <MRM1r, "fmul\t{%st(0), $op|$op, st(0)}">;
288def MUL_FPrST0 : FPrST0PInst<MRM1r, "fmulp\t$op">;
Quentin Colombetb5e41ea2014-03-12 17:33:42 +0000289} // SchedRW
290let SchedRW = [WriteFDiv] in {
Craig Topper623b0d62014-01-01 14:22:37 +0000291def DIVR_FST0r : FPST0rInst <MRM7r, "fdivr\t$op">;
292def DIV_FrST0 : FPrST0Inst <MRM7r, "fdiv{r}\t{%st(0), $op|$op, st(0)}">;
293def DIV_FPrST0 : FPrST0PInst<MRM7r, "fdiv{r}p\t$op">;
294def DIV_FST0r : FPST0rInst <MRM6r, "fdiv\t$op">;
295def DIVR_FrST0 : FPrST0Inst <MRM6r, "fdiv{|r}\t{%st(0), $op|$op, st(0)}">;
296def DIVR_FPrST0 : FPrST0PInst<MRM6r, "fdiv{|r}p\t$op">;
Quentin Colombetb5e41ea2014-03-12 17:33:42 +0000297} // SchedRW
Evan Cheng6e595b92006-02-21 19:13:53 +0000298
Evan Cheng6e595b92006-02-21 19:13:53 +0000299// Unary operations.
Simon Pilgrim0747a7e2017-11-28 15:03:42 +0000300multiclass FPUnary<SDNode OpNode, Format fp, string asmstring,
301 InstrItinClass itin> {
Dale Johannesene36c4002007-09-23 14:52:20 +0000302def _Fp32 : FpIf32<(outs RFP32:$dst), (ins RFP32:$src), OneArgFPRW,
Simon Pilgrim0747a7e2017-11-28 15:03:42 +0000303 [(set RFP32:$dst, (OpNode RFP32:$src))], itin>;
Dale Johannesene36c4002007-09-23 14:52:20 +0000304def _Fp64 : FpIf64<(outs RFP64:$dst), (ins RFP64:$src), OneArgFPRW,
Simon Pilgrim0747a7e2017-11-28 15:03:42 +0000305 [(set RFP64:$dst, (OpNode RFP64:$src))], itin>;
Dale Johannesena47f7d72007-08-07 20:29:26 +0000306def _Fp80 : FpI_<(outs RFP80:$dst), (ins RFP80:$src), OneArgFPRW,
Simon Pilgrim0747a7e2017-11-28 15:03:42 +0000307 [(set RFP80:$dst, (OpNode RFP80:$src))], itin>;
308def _F : FPI<0xD9, fp, (outs), (ins), asmstring, itin>;
Evan Cheng6e595b92006-02-21 19:13:53 +0000309}
310
Benjamin Kramer913da4b2012-04-27 12:07:43 +0000311let Defs = [FPSW] in {
Simon Pilgrim0747a7e2017-11-28 15:03:42 +0000312
313let SchedRW = [WriteVecLogic] in {
314defm CHS : FPUnary<fneg, MRM_E0, "fchs", IIC_FSIGN>;
315defm ABS : FPUnary<fabs, MRM_E1, "fabs", IIC_FSIGN>;
Quentin Colombetb5e41ea2014-03-12 17:33:42 +0000316}
Simon Pilgrim0747a7e2017-11-28 15:03:42 +0000317
318let SchedRW = [WriteFSqrt] in
319defm SQRT: FPUnary<fsqrt,MRM_FA, "fsqrt", IIC_FSQRT>;
320
321let SchedRW = [WriteMicrocoded] in {
322defm SIN : FPUnary<fsin, MRM_FE, "fsin", IIC_FSINCOS>;
323defm COS : FPUnary<fcos, MRM_FF, "fcos", IIC_FSINCOS>;
324}
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000325
Simon Pilgrim6415f562017-12-08 20:10:31 +0000326let SchedRW = [WriteFAdd] in {
Craig Topperc50d64b2014-11-26 00:46:26 +0000327let hasSideEffects = 0 in {
Chris Lattner92831732008-01-11 07:18:17 +0000328def TST_Fp32 : FpIf32<(outs), (ins RFP32:$src), OneArgFP, []>;
329def TST_Fp64 : FpIf64<(outs), (ins RFP64:$src), OneArgFP, []>;
330def TST_Fp80 : FpI_<(outs), (ins RFP80:$src), OneArgFP, []>;
Simon Pilgrim0747a7e2017-11-28 15:03:42 +0000331} // hasSideEffects
332
Simon Pilgrimece5bc32017-11-28 16:57:20 +0000333def TST_F : FPI<0xD9, MRM_E4, (outs), (ins), "ftst", IIC_FCOMI>;
Simon Pilgrim6415f562017-12-08 20:10:31 +0000334} // SchedRW
Benjamin Kramer913da4b2012-04-27 12:07:43 +0000335} // Defs = [FPSW]
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000336
Sean Callanane739ac82009-09-16 01:13:52 +0000337// Versions of FP instructions that take a single memory operand. Added for the
338// disassembler; remove as they are included with patterns elsewhere.
Simon Pilgrim6415f562017-12-08 20:10:31 +0000339let SchedRW = [WriteFAddLd] in {
Kevin Enderby6f2f8d02010-05-03 21:31:40 +0000340def FCOM32m : FPI<0xD8, MRM2m, (outs), (ins f32mem:$src), "fcom{s}\t$src">;
341def FCOMP32m : FPI<0xD8, MRM3m, (outs), (ins f32mem:$src), "fcomp{s}\t$src">;
Sean Callanane739ac82009-09-16 01:13:52 +0000342
Simon Pilgrim6415f562017-12-08 20:10:31 +0000343def FCOM64m : FPI<0xDC, MRM2m, (outs), (ins f64mem:$src), "fcom{l}\t$src">;
344def FCOMP64m : FPI<0xDC, MRM3m, (outs), (ins f64mem:$src), "fcomp{l}\t$src">;
345
346def FICOM16m : FPI<0xDE, MRM2m, (outs), (ins i16mem:$src), "ficom{s}\t$src">;
347def FICOMP16m: FPI<0xDE, MRM3m, (outs), (ins i16mem:$src), "ficomp{s}\t$src">;
Sean Callanane739ac82009-09-16 01:13:52 +0000348
349def FICOM32m : FPI<0xDA, MRM2m, (outs), (ins i32mem:$src), "ficom{l}\t$src">;
350def FICOMP32m: FPI<0xDA, MRM3m, (outs), (ins i32mem:$src), "ficomp{l}\t$src">;
Simon Pilgrim6415f562017-12-08 20:10:31 +0000351} // SchedRW
Sean Callanane739ac82009-09-16 01:13:52 +0000352
Simon Pilgrim6415f562017-12-08 20:10:31 +0000353let SchedRW = [WriteMicrocoded] in {
354def FLDENVm : FPI<0xD9, MRM4m, (outs), (ins f32mem:$src), "fldenv\t$src">;
355def FSTENVm : FPI<0xD9, MRM6m, (outs), (ins f32mem:$dst), "fnstenv\t$dst">;
Sean Callanane739ac82009-09-16 01:13:52 +0000356
Craig Topper955308f2016-03-13 02:56:31 +0000357def FRSTORm : FPI<0xDD, MRM4m, (outs), (ins f32mem:$dst), "frstor\t$dst">;
358def FSAVEm : FPI<0xDD, MRM6m, (outs), (ins f32mem:$dst), "fnsave\t$dst">;
359def FNSTSWm : FPI<0xDD, MRM7m, (outs), (ins i16mem:$dst), "fnstsw\t$dst">;
Sean Callanane739ac82009-09-16 01:13:52 +0000360
Marina Yatsinabce1ab62015-08-20 11:51:24 +0000361def FBLDm : FPI<0xDF, MRM4m, (outs), (ins f80mem:$src), "fbld\t$src">;
Craig Topper955308f2016-03-13 02:56:31 +0000362def FBSTPm : FPI<0xDF, MRM6m, (outs), (ins f80mem:$dst), "fbstp\t$dst">;
Simon Pilgrim6415f562017-12-08 20:10:31 +0000363} // SchedRW
Sean Callanane739ac82009-09-16 01:13:52 +0000364
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000365// Floating point cmovs.
Simon Pilgrim65f805f2017-12-05 18:01:26 +0000366class FpIf32CMov<dag outs, dag ins, FPFormat fp, list<dag> pattern,
367 InstrItinClass itin> :
368 FpI_<outs, ins, fp, pattern, itin>, Requires<[FPStackf32, HasCMov]>;
369class FpIf64CMov<dag outs, dag ins, FPFormat fp, list<dag> pattern,
370 InstrItinClass itin> :
371 FpI_<outs, ins, fp, pattern, itin>, Requires<[FPStackf64, HasCMov]>;
Chris Lattnera30d4ce2010-03-14 18:31:44 +0000372
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000373multiclass FPCMov<PatLeaf cc> {
Chris Lattnera30d4ce2010-03-14 18:31:44 +0000374 def _Fp32 : FpIf32CMov<(outs RFP32:$dst), (ins RFP32:$src1, RFP32:$src2),
Evan Cheng5fb5a1f2007-09-29 00:00:36 +0000375 CondMovFP,
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000376 [(set RFP32:$dst, (X86cmov RFP32:$src1, RFP32:$src2,
Simon Pilgrim65f805f2017-12-05 18:01:26 +0000377 cc, EFLAGS))], IIC_FCMOV>;
Chris Lattnera30d4ce2010-03-14 18:31:44 +0000378 def _Fp64 : FpIf64CMov<(outs RFP64:$dst), (ins RFP64:$src1, RFP64:$src2),
Evan Cheng5fb5a1f2007-09-29 00:00:36 +0000379 CondMovFP,
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000380 [(set RFP64:$dst, (X86cmov RFP64:$src1, RFP64:$src2,
Simon Pilgrim65f805f2017-12-05 18:01:26 +0000381 cc, EFLAGS))], IIC_FCMOV>;
Evan Cheng5fb5a1f2007-09-29 00:00:36 +0000382 def _Fp80 : FpI_<(outs RFP80:$dst), (ins RFP80:$src1, RFP80:$src2),
383 CondMovFP,
Dale Johannesenb1888e72007-08-05 18:49:15 +0000384 [(set RFP80:$dst, (X86cmov RFP80:$src1, RFP80:$src2,
Simon Pilgrim65f805f2017-12-05 18:01:26 +0000385 cc, EFLAGS))], IIC_FCMOV>,
Chris Lattnera30d4ce2010-03-14 18:31:44 +0000386 Requires<[HasCMov]>;
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000387}
Chris Lattnera30d4ce2010-03-14 18:31:44 +0000388
Benjamin Kramer913da4b2012-04-27 12:07:43 +0000389let Defs = [FPSW] in {
Simon Pilgrim65f805f2017-12-05 18:01:26 +0000390let SchedRW = [WriteFAdd] in {
Eric Christopher6bdbdb52010-06-18 23:56:07 +0000391let Uses = [EFLAGS], Constraints = "$src1 = $dst" in {
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000392defm CMOVB : FPCMov<X86_COND_B>;
393defm CMOVBE : FPCMov<X86_COND_BE>;
394defm CMOVE : FPCMov<X86_COND_E>;
395defm CMOVP : FPCMov<X86_COND_P>;
396defm CMOVNB : FPCMov<X86_COND_AE>;
397defm CMOVNBE: FPCMov<X86_COND_A>;
398defm CMOVNE : FPCMov<X86_COND_NE>;
399defm CMOVNP : FPCMov<X86_COND_NP>;
Eric Christopher6bdbdb52010-06-18 23:56:07 +0000400} // Uses = [EFLAGS], Constraints = "$src1 = $dst"
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000401
Chris Lattnera30d4ce2010-03-14 18:31:44 +0000402let Predicates = [HasCMov] in {
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000403// These are not factored because there's no clean way to pass DA/DB.
Pete Cooper46361a12015-04-29 23:51:33 +0000404def CMOVB_F : FPI<0xDA, MRM0r, (outs), (ins RST:$op),
Simon Pilgrim65f805f2017-12-05 18:01:26 +0000405 "fcmovb\t{$op, %st(0)|st(0), $op}", IIC_FCMOV>;
Pete Cooper46361a12015-04-29 23:51:33 +0000406def CMOVBE_F : FPI<0xDA, MRM2r, (outs), (ins RST:$op),
Simon Pilgrim65f805f2017-12-05 18:01:26 +0000407 "fcmovbe\t{$op, %st(0)|st(0), $op}", IIC_FCMOV>;
Pete Cooper46361a12015-04-29 23:51:33 +0000408def CMOVE_F : FPI<0xDA, MRM1r, (outs), (ins RST:$op),
Simon Pilgrim65f805f2017-12-05 18:01:26 +0000409 "fcmove\t{$op, %st(0)|st(0), $op}", IIC_FCMOV>;
Pete Cooper46361a12015-04-29 23:51:33 +0000410def CMOVP_F : FPI<0xDA, MRM3r, (outs), (ins RST:$op),
Simon Pilgrim65f805f2017-12-05 18:01:26 +0000411 "fcmovu\t{$op, %st(0)|st(0), $op}", IIC_FCMOV>;
Pete Cooper46361a12015-04-29 23:51:33 +0000412def CMOVNB_F : FPI<0xDB, MRM0r, (outs), (ins RST:$op),
Simon Pilgrim65f805f2017-12-05 18:01:26 +0000413 "fcmovnb\t{$op, %st(0)|st(0), $op}", IIC_FCMOV>;
Pete Cooper46361a12015-04-29 23:51:33 +0000414def CMOVNBE_F: FPI<0xDB, MRM2r, (outs), (ins RST:$op),
Simon Pilgrim65f805f2017-12-05 18:01:26 +0000415 "fcmovnbe\t{$op, %st(0)|st(0), $op}", IIC_FCMOV>;
Pete Cooper46361a12015-04-29 23:51:33 +0000416def CMOVNE_F : FPI<0xDB, MRM1r, (outs), (ins RST:$op),
Simon Pilgrim65f805f2017-12-05 18:01:26 +0000417 "fcmovne\t{$op, %st(0)|st(0), $op}", IIC_FCMOV>;
Pete Cooper46361a12015-04-29 23:51:33 +0000418def CMOVNP_F : FPI<0xDB, MRM3r, (outs), (ins RST:$op),
Simon Pilgrim65f805f2017-12-05 18:01:26 +0000419 "fcmovnu\t{$op, %st(0)|st(0), $op}", IIC_FCMOV>;
Chris Lattnera30d4ce2010-03-14 18:31:44 +0000420} // Predicates = [HasCMov]
Simon Pilgrim65f805f2017-12-05 18:01:26 +0000421} // SchedRW
Evan Cheng6e595b92006-02-21 19:13:53 +0000422
423// Floating point loads & stores.
Simon Pilgrimf621dcf2017-12-08 20:31:48 +0000424let SchedRW = [WriteLoad] in {
Dan Gohman69cc2cb2008-12-03 18:15:48 +0000425let canFoldAsLoad = 1 in {
Dale Johannesene36c4002007-09-23 14:52:20 +0000426def LD_Fp32m : FpIf32<(outs RFP32:$dst), (ins f32mem:$src), ZeroArgFP,
Dale Johannesenc2a60892007-07-03 17:07:33 +0000427 [(set RFP32:$dst, (loadf32 addr:$src))]>;
Dan Gohman8c5d6832010-02-27 23:47:46 +0000428let isReMaterializable = 1 in
Bill Wendlinga2401be2007-12-17 22:17:14 +0000429 def LD_Fp64m : FpIf64<(outs RFP64:$dst), (ins f64mem:$src), ZeroArgFP,
Dale Johannesenc2a60892007-07-03 17:07:33 +0000430 [(set RFP64:$dst, (loadf64 addr:$src))]>;
Dale Johannesena47f7d72007-08-07 20:29:26 +0000431def LD_Fp80m : FpI_<(outs RFP80:$dst), (ins f80mem:$src), ZeroArgFP,
Dale Johannesenb1888e72007-08-05 18:49:15 +0000432 [(set RFP80:$dst, (loadf80 addr:$src))]>;
Simon Pilgrimf621dcf2017-12-08 20:31:48 +0000433} // canFoldAsLoad
Dale Johannesene36c4002007-09-23 14:52:20 +0000434def LD_Fp32m64 : FpIf64<(outs RFP64:$dst), (ins f32mem:$src), ZeroArgFP,
Dale Johannesena47f7d72007-08-07 20:29:26 +0000435 [(set RFP64:$dst, (f64 (extloadf32 addr:$src)))]>;
436def LD_Fp64m80 : FpI_<(outs RFP80:$dst), (ins f64mem:$src), ZeroArgFP,
437 [(set RFP80:$dst, (f80 (extloadf64 addr:$src)))]>;
438def LD_Fp32m80 : FpI_<(outs RFP80:$dst), (ins f32mem:$src), ZeroArgFP,
439 [(set RFP80:$dst, (f80 (extloadf32 addr:$src)))]>;
Dale Johannesene36c4002007-09-23 14:52:20 +0000440def ILD_Fp16m32: FpIf32<(outs RFP32:$dst), (ins i16mem:$src), ZeroArgFP,
Dale Johannesenc2a60892007-07-03 17:07:33 +0000441 [(set RFP32:$dst, (X86fild addr:$src, i16))]>;
Dale Johannesene36c4002007-09-23 14:52:20 +0000442def ILD_Fp32m32: FpIf32<(outs RFP32:$dst), (ins i32mem:$src), ZeroArgFP,
Dale Johannesenc2a60892007-07-03 17:07:33 +0000443 [(set RFP32:$dst, (X86fild addr:$src, i32))]>;
Dale Johannesene36c4002007-09-23 14:52:20 +0000444def ILD_Fp64m32: FpIf32<(outs RFP32:$dst), (ins i64mem:$src), ZeroArgFP,
Dale Johannesenc2a60892007-07-03 17:07:33 +0000445 [(set RFP32:$dst, (X86fild addr:$src, i64))]>;
Dale Johannesene36c4002007-09-23 14:52:20 +0000446def ILD_Fp16m64: FpIf64<(outs RFP64:$dst), (ins i16mem:$src), ZeroArgFP,
Dale Johannesenc2a60892007-07-03 17:07:33 +0000447 [(set RFP64:$dst, (X86fild addr:$src, i16))]>;
Dale Johannesene36c4002007-09-23 14:52:20 +0000448def ILD_Fp32m64: FpIf64<(outs RFP64:$dst), (ins i32mem:$src), ZeroArgFP,
Dale Johannesenc2a60892007-07-03 17:07:33 +0000449 [(set RFP64:$dst, (X86fild addr:$src, i32))]>;
Dale Johannesene36c4002007-09-23 14:52:20 +0000450def ILD_Fp64m64: FpIf64<(outs RFP64:$dst), (ins i64mem:$src), ZeroArgFP,
Dale Johannesenc2a60892007-07-03 17:07:33 +0000451 [(set RFP64:$dst, (X86fild addr:$src, i64))]>;
Dale Johannesena47f7d72007-08-07 20:29:26 +0000452def ILD_Fp16m80: FpI_<(outs RFP80:$dst), (ins i16mem:$src), ZeroArgFP,
Dale Johannesenb1888e72007-08-05 18:49:15 +0000453 [(set RFP80:$dst, (X86fild addr:$src, i16))]>;
Dale Johannesena47f7d72007-08-07 20:29:26 +0000454def ILD_Fp32m80: FpI_<(outs RFP80:$dst), (ins i32mem:$src), ZeroArgFP,
Dale Johannesenb1888e72007-08-05 18:49:15 +0000455 [(set RFP80:$dst, (X86fild addr:$src, i32))]>;
Dale Johannesena47f7d72007-08-07 20:29:26 +0000456def ILD_Fp64m80: FpI_<(outs RFP80:$dst), (ins i64mem:$src), ZeroArgFP,
Dale Johannesenb1888e72007-08-05 18:49:15 +0000457 [(set RFP80:$dst, (X86fild addr:$src, i64))]>;
Simon Pilgrimf621dcf2017-12-08 20:31:48 +0000458} // SchedRW
Evan Cheng6e595b92006-02-21 19:13:53 +0000459
Simon Pilgrimf621dcf2017-12-08 20:31:48 +0000460let SchedRW = [WriteStore] in {
Dale Johannesene36c4002007-09-23 14:52:20 +0000461def ST_Fp32m : FpIf32<(outs), (ins f32mem:$op, RFP32:$src), OneArgFP,
Dale Johannesenc2a60892007-07-03 17:07:33 +0000462 [(store RFP32:$src, addr:$op)]>;
Dale Johannesene36c4002007-09-23 14:52:20 +0000463def ST_Fp64m32 : FpIf64<(outs), (ins f32mem:$op, RFP64:$src), OneArgFP,
Dale Johannesenc2a60892007-07-03 17:07:33 +0000464 [(truncstoref32 RFP64:$src, addr:$op)]>;
Dale Johannesene36c4002007-09-23 14:52:20 +0000465def ST_Fp64m : FpIf64<(outs), (ins f64mem:$op, RFP64:$src), OneArgFP,
Dale Johannesenc2a60892007-07-03 17:07:33 +0000466 [(store RFP64:$src, addr:$op)]>;
Dale Johannesena47f7d72007-08-07 20:29:26 +0000467def ST_Fp80m32 : FpI_<(outs), (ins f32mem:$op, RFP80:$src), OneArgFP,
Dale Johannesenb1888e72007-08-05 18:49:15 +0000468 [(truncstoref32 RFP80:$src, addr:$op)]>;
Dale Johannesena47f7d72007-08-07 20:29:26 +0000469def ST_Fp80m64 : FpI_<(outs), (ins f64mem:$op, RFP80:$src), OneArgFP,
Dale Johannesenb1888e72007-08-05 18:49:15 +0000470 [(truncstoref64 RFP80:$src, addr:$op)]>;
471// FST does not support 80-bit memory target; FSTP must be used.
Evan Cheng6e595b92006-02-21 19:13:53 +0000472
Craig Topperc50d64b2014-11-26 00:46:26 +0000473let mayStore = 1, hasSideEffects = 0 in {
Dale Johannesene36c4002007-09-23 14:52:20 +0000474def ST_FpP32m : FpIf32<(outs), (ins f32mem:$op, RFP32:$src), OneArgFP, []>;
475def ST_FpP64m32 : FpIf64<(outs), (ins f32mem:$op, RFP64:$src), OneArgFP, []>;
476def ST_FpP64m : FpIf64<(outs), (ins f64mem:$op, RFP64:$src), OneArgFP, []>;
477def ST_FpP80m32 : FpI_<(outs), (ins f32mem:$op, RFP80:$src), OneArgFP, []>;
478def ST_FpP80m64 : FpI_<(outs), (ins f64mem:$op, RFP80:$src), OneArgFP, []>;
Simon Pilgrimf621dcf2017-12-08 20:31:48 +0000479} // mayStore
480
Dale Johannesena47f7d72007-08-07 20:29:26 +0000481def ST_FpP80m : FpI_<(outs), (ins f80mem:$op, RFP80:$src), OneArgFP,
Dale Johannesenb1888e72007-08-05 18:49:15 +0000482 [(store RFP80:$src, addr:$op)]>;
Simon Pilgrimf621dcf2017-12-08 20:31:48 +0000483
Craig Topperc50d64b2014-11-26 00:46:26 +0000484let mayStore = 1, hasSideEffects = 0 in {
Dale Johannesene36c4002007-09-23 14:52:20 +0000485def IST_Fp16m32 : FpIf32<(outs), (ins i16mem:$op, RFP32:$src), OneArgFP, []>;
486def IST_Fp32m32 : FpIf32<(outs), (ins i32mem:$op, RFP32:$src), OneArgFP, []>;
487def IST_Fp64m32 : FpIf32<(outs), (ins i64mem:$op, RFP32:$src), OneArgFP, []>;
488def IST_Fp16m64 : FpIf64<(outs), (ins i16mem:$op, RFP64:$src), OneArgFP, []>;
489def IST_Fp32m64 : FpIf64<(outs), (ins i32mem:$op, RFP64:$src), OneArgFP, []>;
490def IST_Fp64m64 : FpIf64<(outs), (ins i64mem:$op, RFP64:$src), OneArgFP, []>;
Dale Johannesena47f7d72007-08-07 20:29:26 +0000491def IST_Fp16m80 : FpI_<(outs), (ins i16mem:$op, RFP80:$src), OneArgFP, []>;
492def IST_Fp32m80 : FpI_<(outs), (ins i32mem:$op, RFP80:$src), OneArgFP, []>;
493def IST_Fp64m80 : FpI_<(outs), (ins i64mem:$op, RFP80:$src), OneArgFP, []>;
Simon Pilgrimf621dcf2017-12-08 20:31:48 +0000494} // mayStore
495} // SchedRW
Evan Cheng6e595b92006-02-21 19:13:53 +0000496
Jakob Stoklund Olesen267dd942013-03-26 18:24:20 +0000497let mayLoad = 1, SchedRW = [WriteLoad] in {
Preston Gurdfa3f6cb2012-05-02 16:03:35 +0000498def LD_F32m : FPI<0xD9, MRM0m, (outs), (ins f32mem:$src), "fld{s}\t$src",
499 IIC_FLD>;
500def LD_F64m : FPI<0xDD, MRM0m, (outs), (ins f64mem:$src), "fld{l}\t$src",
501 IIC_FLD>;
502def LD_F80m : FPI<0xDB, MRM5m, (outs), (ins f80mem:$src), "fld{t}\t$src",
503 IIC_FLD80>;
504def ILD_F16m : FPI<0xDF, MRM0m, (outs), (ins i16mem:$src), "fild{s}\t$src",
505 IIC_FILD>;
506def ILD_F32m : FPI<0xDB, MRM0m, (outs), (ins i32mem:$src), "fild{l}\t$src",
507 IIC_FILD>;
508def ILD_F64m : FPI<0xDF, MRM5m, (outs), (ins i64mem:$src), "fild{ll}\t$src",
509 IIC_FILD>;
Chris Lattner317332f2008-01-10 07:59:24 +0000510}
Jakob Stoklund Olesen267dd942013-03-26 18:24:20 +0000511let mayStore = 1, SchedRW = [WriteStore] in {
Preston Gurdfa3f6cb2012-05-02 16:03:35 +0000512def ST_F32m : FPI<0xD9, MRM2m, (outs), (ins f32mem:$dst), "fst{s}\t$dst",
513 IIC_FST>;
514def ST_F64m : FPI<0xDD, MRM2m, (outs), (ins f64mem:$dst), "fst{l}\t$dst",
515 IIC_FST>;
516def ST_FP32m : FPI<0xD9, MRM3m, (outs), (ins f32mem:$dst), "fstp{s}\t$dst",
517 IIC_FST>;
518def ST_FP64m : FPI<0xDD, MRM3m, (outs), (ins f64mem:$dst), "fstp{l}\t$dst",
519 IIC_FST>;
520def ST_FP80m : FPI<0xDB, MRM7m, (outs), (ins f80mem:$dst), "fstp{t}\t$dst",
521 IIC_FST80>;
522def IST_F16m : FPI<0xDF, MRM2m, (outs), (ins i16mem:$dst), "fist{s}\t$dst",
523 IIC_FIST>;
524def IST_F32m : FPI<0xDB, MRM2m, (outs), (ins i32mem:$dst), "fist{l}\t$dst",
525 IIC_FIST>;
526def IST_FP16m : FPI<0xDF, MRM3m, (outs), (ins i16mem:$dst), "fistp{s}\t$dst",
527 IIC_FIST>;
528def IST_FP32m : FPI<0xDB, MRM3m, (outs), (ins i32mem:$dst), "fistp{l}\t$dst",
529 IIC_FIST>;
530def IST_FP64m : FPI<0xDF, MRM7m, (outs), (ins i64mem:$dst), "fistp{ll}\t$dst",
531 IIC_FIST>;
Chris Lattner317332f2008-01-10 07:59:24 +0000532}
Evan Cheng6e595b92006-02-21 19:13:53 +0000533
534// FISTTP requires SSE3 even though it's a FPStack op.
Simon Pilgrimf621dcf2017-12-08 20:31:48 +0000535let Predicates = [HasSSE3], SchedRW = [WriteStore] in {
Evan Cheng94b5a802007-07-19 01:14:50 +0000536def ISTT_Fp16m32 : FpI_<(outs), (ins i16mem:$op, RFP32:$src), OneArgFP,
Craig Toppereb8f9e92012-01-10 06:30:56 +0000537 [(X86fp_to_i16mem RFP32:$src, addr:$op)]>;
Evan Cheng94b5a802007-07-19 01:14:50 +0000538def ISTT_Fp32m32 : FpI_<(outs), (ins i32mem:$op, RFP32:$src), OneArgFP,
Craig Toppereb8f9e92012-01-10 06:30:56 +0000539 [(X86fp_to_i32mem RFP32:$src, addr:$op)]>;
Evan Cheng94b5a802007-07-19 01:14:50 +0000540def ISTT_Fp64m32 : FpI_<(outs), (ins i64mem:$op, RFP32:$src), OneArgFP,
Craig Toppereb8f9e92012-01-10 06:30:56 +0000541 [(X86fp_to_i64mem RFP32:$src, addr:$op)]>;
Evan Cheng94b5a802007-07-19 01:14:50 +0000542def ISTT_Fp16m64 : FpI_<(outs), (ins i16mem:$op, RFP64:$src), OneArgFP,
Craig Toppereb8f9e92012-01-10 06:30:56 +0000543 [(X86fp_to_i16mem RFP64:$src, addr:$op)]>;
Evan Cheng94b5a802007-07-19 01:14:50 +0000544def ISTT_Fp32m64 : FpI_<(outs), (ins i32mem:$op, RFP64:$src), OneArgFP,
Craig Toppereb8f9e92012-01-10 06:30:56 +0000545 [(X86fp_to_i32mem RFP64:$src, addr:$op)]>;
Evan Cheng94b5a802007-07-19 01:14:50 +0000546def ISTT_Fp64m64 : FpI_<(outs), (ins i64mem:$op, RFP64:$src), OneArgFP,
Craig Toppereb8f9e92012-01-10 06:30:56 +0000547 [(X86fp_to_i64mem RFP64:$src, addr:$op)]>;
Dale Johannesen57c6ac5f2007-08-07 01:17:37 +0000548def ISTT_Fp16m80 : FpI_<(outs), (ins i16mem:$op, RFP80:$src), OneArgFP,
Craig Toppereb8f9e92012-01-10 06:30:56 +0000549 [(X86fp_to_i16mem RFP80:$src, addr:$op)]>;
Dale Johannesen57c6ac5f2007-08-07 01:17:37 +0000550def ISTT_Fp32m80 : FpI_<(outs), (ins i32mem:$op, RFP80:$src), OneArgFP,
Craig Toppereb8f9e92012-01-10 06:30:56 +0000551 [(X86fp_to_i32mem RFP80:$src, addr:$op)]>;
Dale Johannesen57c6ac5f2007-08-07 01:17:37 +0000552def ISTT_Fp64m80 : FpI_<(outs), (ins i64mem:$op, RFP80:$src), OneArgFP,
Craig Toppereb8f9e92012-01-10 06:30:56 +0000553 [(X86fp_to_i64mem RFP80:$src, addr:$op)]>;
554} // Predicates = [HasSSE3]
Evan Cheng6e595b92006-02-21 19:13:53 +0000555
Jakob Stoklund Olesen267dd942013-03-26 18:24:20 +0000556let mayStore = 1, SchedRW = [WriteStore] in {
Preston Gurdfa3f6cb2012-05-02 16:03:35 +0000557def ISTT_FP16m : FPI<0xDF, MRM1m, (outs), (ins i16mem:$dst), "fisttp{s}\t$dst",
558 IIC_FST>;
559def ISTT_FP32m : FPI<0xDB, MRM1m, (outs), (ins i32mem:$dst), "fisttp{l}\t$dst",
560 IIC_FST>;
Michael Liao5bf95782014-12-04 05:20:33 +0000561def ISTT_FP64m : FPI<0xDD, MRM1m, (outs), (ins i64mem:$dst),
Preston Gurdfa3f6cb2012-05-02 16:03:35 +0000562 "fisttp{ll}\t$dst", IIC_FST>;
Chris Lattner317332f2008-01-10 07:59:24 +0000563}
Evan Cheng6e595b92006-02-21 19:13:53 +0000564
565// FP Stack manipulation instructions.
Jakob Stoklund Olesen267dd942013-03-26 18:24:20 +0000566let SchedRW = [WriteMove] in {
Craig Topper623b0d62014-01-01 14:22:37 +0000567def LD_Frr : FPI<0xD9, MRM0r, (outs), (ins RST:$op), "fld\t$op", IIC_FLD>;
568def ST_Frr : FPI<0xDD, MRM2r, (outs), (ins RST:$op), "fst\t$op", IIC_FST>;
569def ST_FPrr : FPI<0xDD, MRM3r, (outs), (ins RST:$op), "fstp\t$op", IIC_FST>;
570def XCH_F : FPI<0xD9, MRM1r, (outs), (ins RST:$op), "fxch\t$op", IIC_FXCH>;
Jakob Stoklund Olesen267dd942013-03-26 18:24:20 +0000571}
Evan Cheng6e595b92006-02-21 19:13:53 +0000572
573// Floating point constant loads.
Simon Pilgrimf621dcf2017-12-08 20:31:48 +0000574let isReMaterializable = 1, SchedRW = [WriteZero] in {
Dale Johannesene36c4002007-09-23 14:52:20 +0000575def LD_Fp032 : FpIf32<(outs RFP32:$dst), (ins), ZeroArgFP,
Dale Johannesena2b3c172007-07-03 00:53:03 +0000576 [(set RFP32:$dst, fpimm0)]>;
Dale Johannesene36c4002007-09-23 14:52:20 +0000577def LD_Fp132 : FpIf32<(outs RFP32:$dst), (ins), ZeroArgFP,
Dale Johannesena2b3c172007-07-03 00:53:03 +0000578 [(set RFP32:$dst, fpimm1)]>;
Dale Johannesene36c4002007-09-23 14:52:20 +0000579def LD_Fp064 : FpIf64<(outs RFP64:$dst), (ins), ZeroArgFP,
Dale Johannesena2b3c172007-07-03 00:53:03 +0000580 [(set RFP64:$dst, fpimm0)]>;
Dale Johannesene36c4002007-09-23 14:52:20 +0000581def LD_Fp164 : FpIf64<(outs RFP64:$dst), (ins), ZeroArgFP,
Dale Johannesena2b3c172007-07-03 00:53:03 +0000582 [(set RFP64:$dst, fpimm1)]>;
Dale Johannesena47f7d72007-08-07 20:29:26 +0000583def LD_Fp080 : FpI_<(outs RFP80:$dst), (ins), ZeroArgFP,
Dale Johannesenb1888e72007-08-05 18:49:15 +0000584 [(set RFP80:$dst, fpimm0)]>;
Dale Johannesena47f7d72007-08-07 20:29:26 +0000585def LD_Fp180 : FpI_<(outs RFP80:$dst), (ins), ZeroArgFP,
Dale Johannesenb1888e72007-08-05 18:49:15 +0000586 [(set RFP80:$dst, fpimm1)]>;
Dan Gohmane8c1e422007-06-26 00:48:07 +0000587}
Evan Cheng6e595b92006-02-21 19:13:53 +0000588
Jakob Stoklund Olesen267dd942013-03-26 18:24:20 +0000589let SchedRW = [WriteZero] in {
Craig Topper56f0ed812014-02-19 08:25:02 +0000590def LD_F0 : FPI<0xD9, MRM_EE, (outs), (ins), "fldz", IIC_FLDZ>;
591def LD_F1 : FPI<0xD9, MRM_E8, (outs), (ins), "fld1", IIC_FIST>;
Jakob Stoklund Olesen267dd942013-03-26 18:24:20 +0000592}
Evan Cheng6e595b92006-02-21 19:13:53 +0000593
594// Floating point compares.
Jakob Stoklund Olesen267dd942013-03-26 18:24:20 +0000595let SchedRW = [WriteFAdd] in {
Dale Johannesene36c4002007-09-23 14:52:20 +0000596def UCOM_Fpr32 : FpIf32<(outs), (ins RFP32:$lhs, RFP32:$rhs), CompareFP,
Benjamin Kramer913da4b2012-04-27 12:07:43 +0000597 [(set FPSW, (trunc (X86cmp RFP32:$lhs, RFP32:$rhs)))]>;
Chris Lattner92831732008-01-11 07:18:17 +0000598def UCOM_Fpr64 : FpIf64<(outs), (ins RFP64:$lhs, RFP64:$rhs), CompareFP,
Benjamin Kramer913da4b2012-04-27 12:07:43 +0000599 [(set FPSW, (trunc (X86cmp RFP64:$lhs, RFP64:$rhs)))]>;
Chris Lattner92831732008-01-11 07:18:17 +0000600def UCOM_Fpr80 : FpI_ <(outs), (ins RFP80:$lhs, RFP80:$rhs), CompareFP,
Benjamin Kramer913da4b2012-04-27 12:07:43 +0000601 [(set FPSW, (trunc (X86cmp RFP80:$lhs, RFP80:$rhs)))]>;
Jakob Stoklund Olesen267dd942013-03-26 18:24:20 +0000602} // SchedRW
Benjamin Kramer913da4b2012-04-27 12:07:43 +0000603} // Defs = [FPSW]
604
Jakob Stoklund Olesen267dd942013-03-26 18:24:20 +0000605let SchedRW = [WriteFAdd] in {
Chris Lattner83facb02010-03-19 00:01:11 +0000606// CC = ST(0) cmp ST(i)
Benjamin Kramer913da4b2012-04-27 12:07:43 +0000607let Defs = [EFLAGS, FPSW] in {
Dale Johannesene36c4002007-09-23 14:52:20 +0000608def UCOM_FpIr32: FpIf32<(outs), (ins RFP32:$lhs, RFP32:$rhs), CompareFP,
Chris Lattner83facb02010-03-19 00:01:11 +0000609 [(set EFLAGS, (X86cmp RFP32:$lhs, RFP32:$rhs))]>;
Dale Johannesene36c4002007-09-23 14:52:20 +0000610def UCOM_FpIr64: FpIf64<(outs), (ins RFP64:$lhs, RFP64:$rhs), CompareFP,
Chris Lattner83facb02010-03-19 00:01:11 +0000611 [(set EFLAGS, (X86cmp RFP64:$lhs, RFP64:$rhs))]>;
Dale Johannesena47f7d72007-08-07 20:29:26 +0000612def UCOM_FpIr80: FpI_<(outs), (ins RFP80:$lhs, RFP80:$rhs), CompareFP,
Chris Lattner83facb02010-03-19 00:01:11 +0000613 [(set EFLAGS, (X86cmp RFP80:$lhs, RFP80:$rhs))]>;
Evan Cheng8ee1ecf2007-09-25 19:08:02 +0000614}
615
Benjamin Kramer913da4b2012-04-27 12:07:43 +0000616let Defs = [FPSW], Uses = [ST0] in {
Craig Topper623b0d62014-01-01 14:22:37 +0000617def UCOM_Fr : FPI<0xDD, MRM4r, // FPSW = cmp ST(0) with ST(i)
618 (outs), (ins RST:$reg), "fucom\t$reg", IIC_FUCOM>;
619def UCOM_FPr : FPI<0xDD, MRM5r, // FPSW = cmp ST(0) with ST(i), pop
620 (outs), (ins RST:$reg), "fucomp\t$reg", IIC_FUCOM>;
Craig Topper56f0ed812014-02-19 08:25:02 +0000621def UCOM_FPPr : FPI<0xDA, MRM_E9, // cmp ST(0) with ST(1), pop, pop
622 (outs), (ins), "fucompp", IIC_FUCOM>;
Benjamin Kramer913da4b2012-04-27 12:07:43 +0000623}
Evan Cheng6e595b92006-02-21 19:13:53 +0000624
Benjamin Kramer913da4b2012-04-27 12:07:43 +0000625let Defs = [EFLAGS, FPSW], Uses = [ST0] in {
Craig Topper623b0d62014-01-01 14:22:37 +0000626def UCOM_FIr : FPI<0xDB, MRM5r, // CC = cmp ST(0) with ST(i)
627 (outs), (ins RST:$reg), "fucomi\t$reg", IIC_FUCOMI>;
628def UCOM_FIPr : FPI<0xDF, MRM5r, // CC = cmp ST(0) with ST(i), pop
629 (outs), (ins RST:$reg), "fucompi\t$reg", IIC_FUCOMI>;
Evan Cheng3e18e502007-09-11 19:55:27 +0000630}
Evan Cheng6e595b92006-02-21 19:13:53 +0000631
Benjamin Kramer913da4b2012-04-27 12:07:43 +0000632let Defs = [EFLAGS, FPSW] in {
Craig Topper623b0d62014-01-01 14:22:37 +0000633def COM_FIr : FPI<0xDB, MRM6r, (outs), (ins RST:$reg),
634 "fcomi\t$reg", IIC_FCOMI>;
635def COM_FIPr : FPI<0xDF, MRM6r, (outs), (ins RST:$reg),
636 "fcompi\t$reg", IIC_FCOMI>;
Benjamin Kramer913da4b2012-04-27 12:07:43 +0000637}
Jakob Stoklund Olesen267dd942013-03-26 18:24:20 +0000638} // SchedRW
Sean Callanan04d8cb72009-12-18 00:01:26 +0000639
Evan Cheng6e595b92006-02-21 19:13:53 +0000640// Floating point flag ops.
Jakob Stoklund Olesen267dd942013-03-26 18:24:20 +0000641let SchedRW = [WriteALU] in {
Benjamin Kramer913da4b2012-04-27 12:07:43 +0000642let Defs = [AX], Uses = [FPSW] in
Craig Topper56f0ed812014-02-19 08:25:02 +0000643def FNSTSW16r : I<0xDF, MRM_E0, // AX = fp flags
Craig Topperefd67d42013-07-31 02:47:52 +0000644 (outs), (ins), "fnstsw\t{%ax|ax}",
Craig Topper56f0ed812014-02-19 08:25:02 +0000645 [(set AX, (X86fp_stsw FPSW))], IIC_FNSTSW>;
Simon Pilgrim05710a82017-09-06 10:23:12 +0000646let Defs = [FPSW] in
Evan Cheng6e595b92006-02-21 19:13:53 +0000647def FNSTCW16m : I<0xD9, MRM7m, // [mem16] = X87 control world
Andrew Trickedd006c2010-10-22 03:58:29 +0000648 (outs), (ins i16mem:$dst), "fnstcw\t$dst",
Preston Gurdfa3f6cb2012-05-02 16:03:35 +0000649 [(X86fp_cwd_get16 addr:$dst)], IIC_FNSTCW>;
Jakob Stoklund Olesen267dd942013-03-26 18:24:20 +0000650} // SchedRW
Simon Pilgrim05710a82017-09-06 10:23:12 +0000651let Defs = [FPSW], mayLoad = 1 in
Evan Cheng6e595b92006-02-21 19:13:53 +0000652def FLDCW16m : I<0xD9, MRM5m, // X87 control world = [mem16]
Jakob Stoklund Olesen267dd942013-03-26 18:24:20 +0000653 (outs), (ins i16mem:$dst), "fldcw\t$dst", [], IIC_FLDCW>,
654 Sched<[WriteLoad]>;
Evan Chengd5847812006-02-21 20:00:20 +0000655
Chris Lattnerdec85b82010-10-05 05:32:15 +0000656// FPU control instructions
Jakob Stoklund Olesen267dd942013-03-26 18:24:20 +0000657let SchedRW = [WriteMicrocoded] in {
Simon Pilgrim05710a82017-09-06 10:23:12 +0000658let Defs = [FPSW] in {
Craig Topper56f0ed812014-02-19 08:25:02 +0000659def FNINIT : I<0xDB, MRM_E3, (outs), (ins), "fninit", [], IIC_FNINIT>;
Craig Topper623b0d62014-01-01 14:22:37 +0000660def FFREE : FPI<0xDD, MRM0r, (outs), (ins RST:$reg),
661 "ffree\t$reg", IIC_FFREE>;
Chris Ray535e7d12017-01-27 18:02:53 +0000662def FFREEP : FPI<0xDF, MRM0r, (outs), (ins RST:$reg),
663 "ffreep\t$reg", IIC_FFREE>;
664
Sean Callanan04d8cb72009-12-18 00:01:26 +0000665// Clear exceptions
Craig Topper56f0ed812014-02-19 08:25:02 +0000666def FNCLEX : I<0xDB, MRM_E2, (outs), (ins), "fnclex", [], IIC_FNCLEX>;
Simon Pilgrim05710a82017-09-06 10:23:12 +0000667} // Defs = [FPSW]
Jakob Stoklund Olesen267dd942013-03-26 18:24:20 +0000668} // SchedRW
Sean Callanan04d8cb72009-12-18 00:01:26 +0000669
Chris Lattnerdec85b82010-10-05 05:32:15 +0000670// Operandless floating-point instructions for the disassembler.
Jakob Stoklund Olesen267dd942013-03-26 18:24:20 +0000671let SchedRW = [WriteMicrocoded] in {
Craig Topper56f0ed812014-02-19 08:25:02 +0000672def FNOP : I<0xD9, MRM_D0, (outs), (ins), "fnop", [], IIC_FNOP>;
Simon Pilgrim05710a82017-09-06 10:23:12 +0000673
674let Defs = [FPSW] in {
675def WAIT : I<0x9B, RawFrm, (outs), (ins), "wait", [], IIC_WAIT>;
Craig Topper56f0ed812014-02-19 08:25:02 +0000676def FXAM : I<0xD9, MRM_E5, (outs), (ins), "fxam", [], IIC_FXAM>;
677def FLDL2T : I<0xD9, MRM_E9, (outs), (ins), "fldl2t", [], IIC_FLDL>;
678def FLDL2E : I<0xD9, MRM_EA, (outs), (ins), "fldl2e", [], IIC_FLDL>;
679def FLDPI : I<0xD9, MRM_EB, (outs), (ins), "fldpi", [], IIC_FLDL>;
680def FLDLG2 : I<0xD9, MRM_EC, (outs), (ins), "fldlg2", [], IIC_FLDL>;
681def FLDLN2 : I<0xD9, MRM_ED, (outs), (ins), "fldln2", [], IIC_FLDL>;
682def F2XM1 : I<0xD9, MRM_F0, (outs), (ins), "f2xm1", [], IIC_F2XM1>;
683def FYL2X : I<0xD9, MRM_F1, (outs), (ins), "fyl2x", [], IIC_FYL2X>;
684def FPTAN : I<0xD9, MRM_F2, (outs), (ins), "fptan", [], IIC_FPTAN>;
685def FPATAN : I<0xD9, MRM_F3, (outs), (ins), "fpatan", [], IIC_FPATAN>;
686def FXTRACT : I<0xD9, MRM_F4, (outs), (ins), "fxtract", [], IIC_FXTRACT>;
687def FPREM1 : I<0xD9, MRM_F5, (outs), (ins), "fprem1", [], IIC_FPREM1>;
688def FDECSTP : I<0xD9, MRM_F6, (outs), (ins), "fdecstp", [], IIC_FPSTP>;
689def FINCSTP : I<0xD9, MRM_F7, (outs), (ins), "fincstp", [], IIC_FPSTP>;
690def FPREM : I<0xD9, MRM_F8, (outs), (ins), "fprem", [], IIC_FPREM>;
691def FYL2XP1 : I<0xD9, MRM_F9, (outs), (ins), "fyl2xp1", [], IIC_FYL2XP1>;
692def FSINCOS : I<0xD9, MRM_FB, (outs), (ins), "fsincos", [], IIC_FSINCOS>;
693def FRNDINT : I<0xD9, MRM_FC, (outs), (ins), "frndint", [], IIC_FRNDINT>;
694def FSCALE : I<0xD9, MRM_FD, (outs), (ins), "fscale", [], IIC_FSCALE>;
695def FCOMPP : I<0xDE, MRM_D9, (outs), (ins), "fcompp", [], IIC_FCOMPP>;
Simon Pilgrim05710a82017-09-06 10:23:12 +0000696} // Defs = [FPSW]
Sean Callanan04d8cb72009-12-18 00:01:26 +0000697
Craig Toppera1639502017-12-15 17:22:58 +0000698def FXSAVE : I<0xAE, MRM0m, (outs), (ins opaque512mem:$dst),
699 "fxsave\t$dst", [(int_x86_fxsave addr:$dst)], IIC_FXSAVE>, TB,
700 Requires<[HasFXSR]>;
701def FXSAVE64 : RI<0xAE, MRM0m, (outs), (ins opaque512mem:$dst),
702 "fxsave64\t$dst", [(int_x86_fxsave64 addr:$dst)],
703 IIC_FXSAVE>, TB, Requires<[HasFXSR, In64BitMode]>;
704def FXRSTOR : I<0xAE, MRM1m, (outs), (ins opaque512mem:$src),
705 "fxrstor\t$src", [(int_x86_fxrstor addr:$src)], IIC_FXRSTOR>,
706 TB, Requires<[HasFXSR]>;
707def FXRSTOR64 : RI<0xAE, MRM1m, (outs), (ins opaque512mem:$src),
708 "fxrstor64\t$src", [(int_x86_fxrstor64 addr:$src)],
709 IIC_FXRSTOR>, TB, Requires<[HasFXSR, In64BitMode]>;
Jakob Stoklund Olesen267dd942013-03-26 18:24:20 +0000710} // SchedRW
Sean Callanan04d8cb72009-12-18 00:01:26 +0000711
Evan Chengd5847812006-02-21 20:00:20 +0000712//===----------------------------------------------------------------------===//
713// Non-Instruction Patterns
714//===----------------------------------------------------------------------===//
715
Dale Johannesena47f7d72007-08-07 20:29:26 +0000716// Required for RET of f32 / f64 / f80 values.
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000717def : Pat<(X86fld addr:$src, f32), (LD_Fp32m addr:$src)>;
718def : Pat<(X86fld addr:$src, f64), (LD_Fp64m addr:$src)>;
Dale Johannesenb1888e72007-08-05 18:49:15 +0000719def : Pat<(X86fld addr:$src, f80), (LD_Fp80m addr:$src)>;
Evan Chengd5847812006-02-21 20:00:20 +0000720
Dale Johannesena47f7d72007-08-07 20:29:26 +0000721// Required for CALL which return f32 / f64 / f80 values.
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000722def : Pat<(X86fst RFP32:$src, addr:$op, f32), (ST_Fp32m addr:$op, RFP32:$src)>;
Michael Liao5bf95782014-12-04 05:20:33 +0000723def : Pat<(X86fst RFP64:$src, addr:$op, f32), (ST_Fp64m32 addr:$op,
Sean Callanan04d8cb72009-12-18 00:01:26 +0000724 RFP64:$src)>;
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000725def : Pat<(X86fst RFP64:$src, addr:$op, f64), (ST_Fp64m addr:$op, RFP64:$src)>;
Michael Liao5bf95782014-12-04 05:20:33 +0000726def : Pat<(X86fst RFP80:$src, addr:$op, f32), (ST_Fp80m32 addr:$op,
Sean Callanan04d8cb72009-12-18 00:01:26 +0000727 RFP80:$src)>;
Michael Liao5bf95782014-12-04 05:20:33 +0000728def : Pat<(X86fst RFP80:$src, addr:$op, f64), (ST_Fp80m64 addr:$op,
Sean Callanan04d8cb72009-12-18 00:01:26 +0000729 RFP80:$src)>;
730def : Pat<(X86fst RFP80:$src, addr:$op, f80), (ST_FpP80m addr:$op,
731 RFP80:$src)>;
Evan Chengd5847812006-02-21 20:00:20 +0000732
733// Floating point constant -0.0 and -1.0
Dale Johannesene36c4002007-09-23 14:52:20 +0000734def : Pat<(f32 fpimmneg0), (CHS_Fp32 (LD_Fp032))>, Requires<[FPStackf32]>;
735def : Pat<(f32 fpimmneg1), (CHS_Fp32 (LD_Fp132))>, Requires<[FPStackf32]>;
736def : Pat<(f64 fpimmneg0), (CHS_Fp64 (LD_Fp064))>, Requires<[FPStackf64]>;
737def : Pat<(f64 fpimmneg1), (CHS_Fp64 (LD_Fp164))>, Requires<[FPStackf64]>;
Dale Johannesena47f7d72007-08-07 20:29:26 +0000738def : Pat<(f80 fpimmneg0), (CHS_Fp80 (LD_Fp080))>;
739def : Pat<(f80 fpimmneg1), (CHS_Fp80 (LD_Fp180))>;
Evan Chengd5847812006-02-21 20:00:20 +0000740
741// Used to conv. i64 to f64 since there isn't a SSE version.
Dale Johannesen3d7008c2007-07-04 21:07:47 +0000742def : Pat<(X86fildflag addr:$src, i64), (ILD_Fp64m64 addr:$src)>;
Dale Johannesena2b3c172007-07-03 00:53:03 +0000743
Chris Lattnerd587e582008-03-09 07:05:32 +0000744// FP extensions map onto simple pseudo-value conversions if they are to/from
745// the FP stack.
Michael Kuperstein2bc3d4d2016-08-18 20:08:15 +0000746def : Pat<(f64 (fpextend RFP32:$src)), (COPY_TO_REGCLASS RFP32:$src, RFP64)>,
Chris Lattnerd587e582008-03-09 07:05:32 +0000747 Requires<[FPStackf32]>;
Michael Kuperstein2bc3d4d2016-08-18 20:08:15 +0000748def : Pat<(f80 (fpextend RFP32:$src)), (COPY_TO_REGCLASS RFP32:$src, RFP80)>,
Chris Lattnerd587e582008-03-09 07:05:32 +0000749 Requires<[FPStackf32]>;
Michael Kuperstein2bc3d4d2016-08-18 20:08:15 +0000750def : Pat<(f80 (fpextend RFP64:$src)), (COPY_TO_REGCLASS RFP64:$src, RFP80)>,
Chris Lattnerd587e582008-03-09 07:05:32 +0000751 Requires<[FPStackf64]>;
752
753// FP truncations map onto simple pseudo-value conversions if they are to/from
754// the FP stack. We have validated that only value-preserving truncations make
755// it through isel.
Michael Kuperstein2bc3d4d2016-08-18 20:08:15 +0000756def : Pat<(f32 (fpround RFP64:$src)), (COPY_TO_REGCLASS RFP64:$src, RFP32)>,
Chris Lattnerd587e582008-03-09 07:05:32 +0000757 Requires<[FPStackf32]>;
Michael Kuperstein2bc3d4d2016-08-18 20:08:15 +0000758def : Pat<(f32 (fpround RFP80:$src)), (COPY_TO_REGCLASS RFP80:$src, RFP32)>,
Chris Lattnerd587e582008-03-09 07:05:32 +0000759 Requires<[FPStackf32]>;
Michael Kuperstein2bc3d4d2016-08-18 20:08:15 +0000760def : Pat<(f64 (fpround RFP80:$src)), (COPY_TO_REGCLASS RFP80:$src, RFP64)>,
Chris Lattnerd587e582008-03-09 07:05:32 +0000761 Requires<[FPStackf64]>;