blob: 3cf63410bc9264dab55b97c7fc975f0415788058 [file] [log] [blame]
Chris Lattner23e70eb2010-08-17 16:20:04 +00001//===- MipsInstrFPU.td - Mips FPU Instruction Information --*- tablegen -*-===//
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the Mips implementation of the TargetInstrInfo class.
11//
12//===----------------------------------------------------------------------===//
13
14//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes7b76da12008-07-09 04:45:36 +000015// Floating Point Instructions
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000016// ------------------------
17// * 64bit fp:
18// - 32 64-bit registers (default mode)
19// - 16 even 32-bit registers (32-bit compatible mode) for
20// single and double access.
21// * 32bit fp:
22// - 16 even 32-bit registers - single and double (aliased)
23// - 32 32-bit registers (within single-only mode)
24//===----------------------------------------------------------------------===//
25
Bruno Cardoso Lopes7b76da12008-07-09 04:45:36 +000026// Floating Point Compare and Branch
Akira Hatanaka1d6b38d2011-03-31 18:26:17 +000027def SDT_MipsFPBrcond : SDTypeProfile<0, 2, [SDTCisInt<0>,
28 SDTCisVT<1, OtherVT>]>;
29def SDT_MipsFPCmp : SDTypeProfile<0, 3, [SDTCisSameAs<0, 1>, SDTCisFP<1>,
30 SDTCisInt<2>]>;
31def SDT_MipsCMovFP : SDTypeProfile<1, 2, [SDTCisSameAs<0, 1>,
32 SDTCisSameAs<1, 2>]>;
Akira Hatanaka99a2e982011-04-15 19:52:08 +000033def SDT_MipsBuildPairF64 : SDTypeProfile<1, 2, [SDTCisVT<0, f64>,
34 SDTCisVT<1, i32>,
35 SDTCisSameAs<1, 2>]>;
36def SDT_MipsExtractElementF64 : SDTypeProfile<1, 2, [SDTCisVT<0, i32>,
37 SDTCisVT<1, f64>,
38 SDTCisVT<0, i32>]>;
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +000039
Akira Hatanaka1d6b38d2011-03-31 18:26:17 +000040def MipsFPCmp : SDNode<"MipsISD::FPCmp", SDT_MipsFPCmp, [SDNPOutGlue]>;
41def MipsCMovFP_T : SDNode<"MipsISD::CMovFP_T", SDT_MipsCMovFP, [SDNPInGlue]>;
42def MipsCMovFP_F : SDNode<"MipsISD::CMovFP_F", SDT_MipsCMovFP, [SDNPInGlue]>;
Chris Lattner036609b2010-12-23 18:28:41 +000043def MipsFPRound : SDNode<"MipsISD::FPRound", SDTFPRoundOp, [SDNPOptInGlue]>;
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +000044def MipsFPBrcond : SDNode<"MipsISD::FPBrcond", SDT_MipsFPBrcond,
Akira Hatanaka1d6b38d2011-03-31 18:26:17 +000045 [SDNPHasChain, SDNPOptInGlue]>;
Akira Hatanaka99a2e982011-04-15 19:52:08 +000046def MipsBuildPairF64 : SDNode<"MipsISD::BuildPairF64", SDT_MipsBuildPairF64>;
47def MipsExtractElementF64 : SDNode<"MipsISD::ExtractElementF64",
48 SDT_MipsExtractElementF64>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000049
50// Operand for printing out a condition code.
51let PrintMethod = "printFCCOperand" in
52 def condcode : Operand<i32>;
53
54//===----------------------------------------------------------------------===//
55// Feature predicates.
56//===----------------------------------------------------------------------===//
57
58def In32BitMode : Predicate<"!Subtarget.isFP64bit()">;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000059def IsSingleFloat : Predicate<"Subtarget.isSingleFloat()">;
60def IsNotSingleFloat : Predicate<"!Subtarget.isSingleFloat()">;
Bruno Cardoso Lopesadd20762009-11-16 04:35:29 +000061def IsNotMipsI : Predicate<"!Subtarget.isMips1()">;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000062
63//===----------------------------------------------------------------------===//
64// Instruction Class Templates
65//
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +000066// A set of multiclasses is used to address the register usage.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000067//
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +000068// S32 - single precision in 16 32bit even fp registers
69// single precision in 32 32bit fp registers in SingleOnly mode
70// S64 - single precision in 32 64bit fp registers (In64BitMode)
71// D32 - double precision in 16 32bit even fp registers
72// D64 - double precision in 32 64bit fp registers (In64BitMode)
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000073//
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +000074// Only S32 and D32 are supported right now.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000075//===----------------------------------------------------------------------===//
76
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +000077multiclass FFR1_1<bits<6> funct, string asmstr>
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000078{
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +000079 def _S32 : FFR<0x11, funct, 0x0, (outs FGR32:$fd), (ins FGR32:$fs),
80 !strconcat(asmstr, ".s $fd, $fs"), []>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000081
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +000082 def _D32 : FFR<0x11, funct, 0x1, (outs FGR32:$fd), (ins AFGR64:$fs),
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000083 !strconcat(asmstr, ".d $fd, $fs"), []>, Requires<[In32BitMode]>;
84}
85
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +000086multiclass FFR1_2<bits<6> funct, string asmstr, SDNode FOp>
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000087{
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +000088 def _S32 : FFR<0x11, funct, 0x0, (outs FGR32:$fd), (ins FGR32:$fs),
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +000089 !strconcat(asmstr, ".s $fd, $fs"),
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +000090 [(set FGR32:$fd, (FOp FGR32:$fs))]>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000091
92 def _D32 : FFR<0x11, funct, 0x1, (outs AFGR64:$fd), (ins AFGR64:$fs),
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +000093 !strconcat(asmstr, ".d $fd, $fs"),
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000094 [(set AFGR64:$fd, (FOp AFGR64:$fs))]>, Requires<[In32BitMode]>;
95}
96
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +000097class FFR1_3<bits<6> funct, bits<5> fmt, RegisterClass RcSrc,
98 RegisterClass RcDst, string asmstr>:
99 FFR<0x11, funct, fmt, (outs RcSrc:$fd), (ins RcDst:$fs),
100 !strconcat(asmstr, " $fd, $fs"), []>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000101
102
103multiclass FFR1_4<bits<6> funct, string asmstr, SDNode FOp> {
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +0000104 def _S32 : FFR<0x11, funct, 0x0, (outs FGR32:$fd),
105 (ins FGR32:$fs, FGR32:$ft),
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000106 !strconcat(asmstr, ".s $fd, $fs, $ft"),
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000107 [(set FGR32:$fd, (FOp FGR32:$fs, FGR32:$ft))]>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000108
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +0000109 def _D32 : FFR<0x11, funct, 0x1, (outs AFGR64:$fd),
110 (ins AFGR64:$fs, AFGR64:$ft),
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000111 !strconcat(asmstr, ".d $fd, $fs, $ft"),
112 [(set AFGR64:$fd, (FOp AFGR64:$fs, AFGR64:$ft))]>,
113 Requires<[In32BitMode]>;
114}
115
116//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes7b76da12008-07-09 04:45:36 +0000117// Floating Point Instructions
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000118//===----------------------------------------------------------------------===//
119
120let ft = 0 in {
121 defm FLOOR_W : FFR1_1<0b001111, "floor.w">;
122 defm CEIL_W : FFR1_1<0b001110, "ceil.w">;
123 defm ROUND_W : FFR1_1<0b001100, "round.w">;
124 defm TRUNC_W : FFR1_1<0b001101, "trunc.w">;
125 defm CVTW : FFR1_1<0b100100, "cvt.w">;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000126
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +0000127 defm FABS : FFR1_2<0b000101, "abs", fabs>;
128 defm FNEG : FFR1_2<0b000111, "neg", fneg>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000129 defm FSQRT : FFR1_2<0b000100, "sqrt", fsqrt>;
130
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000131 /// Convert to Single Precison
132 def CVTS_W32 : FFR1_3<0b100000, 0x2, FGR32, FGR32, "cvt.s.w">;
133
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000134 let Predicates = [IsNotSingleFloat] in {
135 /// Ceil to long signed integer
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000136 def CEIL_LS : FFR1_3<0b001010, 0x0, FGR32, FGR32, "ceil.l">;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000137 def CEIL_LD : FFR1_3<0b001010, 0x1, AFGR64, AFGR64, "ceil.l">;
138
139 /// Round to long signed integer
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000140 def ROUND_LS : FFR1_3<0b001000, 0x0, FGR32, FGR32, "round.l">;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000141 def ROUND_LD : FFR1_3<0b001000, 0x1, AFGR64, AFGR64, "round.l">;
142
143 /// Floor to long signed integer
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000144 def FLOOR_LS : FFR1_3<0b001011, 0x0, FGR32, FGR32, "floor.l">;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000145 def FLOOR_LD : FFR1_3<0b001011, 0x1, AFGR64, AFGR64, "floor.l">;
146
147 /// Trunc to long signed integer
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000148 def TRUNC_LS : FFR1_3<0b001001, 0x0, FGR32, FGR32, "trunc.l">;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000149 def TRUNC_LD : FFR1_3<0b001001, 0x1, AFGR64, AFGR64, "trunc.l">;
150
151 /// Convert to long signed integer
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +0000152 def CVTL_S : FFR1_3<0b100101, 0x0, FGR32, FGR32, "cvt.l">;
153 def CVTL_D : FFR1_3<0b100101, 0x1, AFGR64, AFGR64, "cvt.l">;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000154
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +0000155 /// Convert to Double Precison
156 def CVTD_S32 : FFR1_3<0b100001, 0x0, AFGR64, FGR32, "cvt.d.s">;
157 def CVTD_W32 : FFR1_3<0b100001, 0x2, AFGR64, FGR32, "cvt.d.w">;
158 def CVTD_L32 : FFR1_3<0b100001, 0x3, AFGR64, AFGR64, "cvt.d.l">;
159
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000160 /// Convert to Single Precison
161 def CVTS_D32 : FFR1_3<0b100000, 0x1, FGR32, AFGR64, "cvt.s.d">;
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +0000162 def CVTS_L32 : FFR1_3<0b100000, 0x3, FGR32, AFGR64, "cvt.s.l">;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000163 }
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000164}
165
166// The odd-numbered registers are only referenced when doing loads,
167// stores, and moves between floating-point and integer registers.
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +0000168// When defining instructions, we reference all 32-bit registers,
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000169// regardless of register aliasing.
170let fd = 0 in {
171 /// Move Control Registers From/To CPU Registers
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +0000172 def CFC1 : FFR<0x11, 0x0, 0x2, (outs CPURegs:$rt), (ins CCR:$fs),
173 "cfc1 $rt, $fs", []>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000174
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +0000175 def CTC1 : FFR<0x11, 0x0, 0x6, (outs CCR:$rt), (ins CPURegs:$fs),
176 "ctc1 $fs, $rt", []>;
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +0000177
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000178 def MFC1 : FFR<0x11, 0x00, 0x00, (outs CPURegs:$rt), (ins FGR32:$fs),
179 "mfc1 $rt, $fs", []>;
180
181 def MTC1 : FFR<0x11, 0x00, 0x04, (outs FGR32:$fs), (ins CPURegs:$rt),
Bruno Cardoso Lopes7030ae72008-07-30 19:00:31 +0000182 "mtc1 $rt, $fs", []>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000183}
184
Bruno Cardoso Lopes5e194602010-01-30 18:29:19 +0000185def FMOV_S32 : FFR<0x11, 0b000110, 0x0, (outs FGR32:$fd), (ins FGR32:$fs),
186 "mov.s $fd, $fs", []>;
187def FMOV_D32 : FFR<0x11, 0b000110, 0x1, (outs AFGR64:$fd), (ins AFGR64:$fs),
188 "mov.d $fd, $fs", []>;
189
Bruno Cardoso Lopes7b76da12008-07-09 04:45:36 +0000190/// Floating Point Memory Instructions
Bruno Cardoso Lopesadd20762009-11-16 04:35:29 +0000191let Predicates = [IsNotSingleFloat, IsNotMipsI] in {
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +0000192 def LDC1 : FFI<0b110101, (outs AFGR64:$ft), (ins mem:$addr),
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000193 "ldc1 $ft, $addr", [(set AFGR64:$ft, (load addr:$addr))]>;
194
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +0000195 def SDC1 : FFI<0b111101, (outs), (ins AFGR64:$ft, mem:$addr),
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000196 "sdc1 $ft, $addr", [(store AFGR64:$ft, addr:$addr)]>;
197}
198
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000199// LWC1 and SWC1 can always be emitted with odd registers.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000200def LWC1 : FFI<0b110001, (outs FGR32:$ft), (ins mem:$addr), "lwc1 $ft, $addr",
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +0000201 [(set FGR32:$ft, (load addr:$addr))]>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000202def SWC1 : FFI<0b111001, (outs), (ins FGR32:$ft, mem:$addr), "swc1 $ft, $addr",
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +0000203 [(store FGR32:$ft, addr:$addr)]>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000204
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000205/// Floating-point Aritmetic
206defm FADD : FFR1_4<0x10, "add", fadd>;
207defm FDIV : FFR1_4<0x03, "div", fdiv>;
208defm FMUL : FFR1_4<0x02, "mul", fmul>;
209defm FSUB : FFR1_4<0x01, "sub", fsub>;
210
211//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes7b76da12008-07-09 04:45:36 +0000212// Floating Point Branch Codes
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000213//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +0000214// Mips branch codes. These correspond to condcode in MipsInstrInfo.h.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000215// They must be kept in synch.
216def MIPS_BRANCH_F : PatLeaf<(i32 0)>;
217def MIPS_BRANCH_T : PatLeaf<(i32 1)>;
218def MIPS_BRANCH_FL : PatLeaf<(i32 2)>;
219def MIPS_BRANCH_TL : PatLeaf<(i32 3)>;
220
Bruno Cardoso Lopes7b76da12008-07-09 04:45:36 +0000221/// Floating Point Branch of False/True (Likely)
Akira Hatanaka1d6b38d2011-03-31 18:26:17 +0000222let isBranch=1, isTerminator=1, hasDelaySlot=1, base=0x8, Uses=[FCR31] in
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +0000223 class FBRANCH<PatLeaf op, string asmstr> : FFI<0x11, (outs),
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000224 (ins brtarget:$dst), !strconcat(asmstr, " $dst"),
Akira Hatanaka1d6b38d2011-03-31 18:26:17 +0000225 [(MipsFPBrcond op, bb:$dst)]>;
226
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000227def BC1F : FBRANCH<MIPS_BRANCH_F, "bc1f">;
228def BC1T : FBRANCH<MIPS_BRANCH_T, "bc1t">;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000229def BC1FL : FBRANCH<MIPS_BRANCH_FL, "bc1fl">;
230def BC1TL : FBRANCH<MIPS_BRANCH_TL, "bc1tl">;
231
232//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes7b76da12008-07-09 04:45:36 +0000233// Floating Point Flag Conditions
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000234//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +0000235// Mips condition codes. They must correspond to condcode in MipsInstrInfo.h.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000236// They must be kept in synch.
237def MIPS_FCOND_F : PatLeaf<(i32 0)>;
238def MIPS_FCOND_UN : PatLeaf<(i32 1)>;
Akira Hatanaka1d6b38d2011-03-31 18:26:17 +0000239def MIPS_FCOND_OEQ : PatLeaf<(i32 2)>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000240def MIPS_FCOND_UEQ : PatLeaf<(i32 3)>;
241def MIPS_FCOND_OLT : PatLeaf<(i32 4)>;
242def MIPS_FCOND_ULT : PatLeaf<(i32 5)>;
243def MIPS_FCOND_OLE : PatLeaf<(i32 6)>;
244def MIPS_FCOND_ULE : PatLeaf<(i32 7)>;
245def MIPS_FCOND_SF : PatLeaf<(i32 8)>;
246def MIPS_FCOND_NGLE : PatLeaf<(i32 9)>;
247def MIPS_FCOND_SEQ : PatLeaf<(i32 10)>;
248def MIPS_FCOND_NGL : PatLeaf<(i32 11)>;
249def MIPS_FCOND_LT : PatLeaf<(i32 12)>;
250def MIPS_FCOND_NGE : PatLeaf<(i32 13)>;
251def MIPS_FCOND_LE : PatLeaf<(i32 14)>;
252def MIPS_FCOND_NGT : PatLeaf<(i32 15)>;
253
254/// Floating Point Compare
255let hasDelaySlot = 1, Defs=[FCR31] in {
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000256 def FCMP_S32 : FCC<0x0, (outs), (ins FGR32:$fs, FGR32:$ft, condcode:$cc),
Akira Hatanaka1d6b38d2011-03-31 18:26:17 +0000257 "c.$cc.s $fs, $ft",
258 [(MipsFPCmp FGR32:$fs, FGR32:$ft, imm:$cc)]>;
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +0000259
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000260 def FCMP_D32 : FCC<0x1, (outs), (ins AFGR64:$fs, AFGR64:$ft, condcode:$cc),
Akira Hatanaka1d6b38d2011-03-31 18:26:17 +0000261 "c.$cc.d $fs, $ft",
262 [(MipsFPCmp AFGR64:$fs, AFGR64:$ft, imm:$cc)]>,
263 Requires<[In32BitMode]>;
264}
265
266
267// Conditional moves:
268// These instructions are expanded in MipsISelLowering::EmitInstrWithCustomInserter
269// if target does not have conditional move instructions.
270// flag:int, data:float
271let usesCustomInserter = 1, Constraints = "$F = $dst" in
272class CondMovIntFP<RegisterClass RC, bits<5> fmt, bits<6> func,
273 string instr_asm> :
274 FFR<0x11, func, fmt, (outs RC:$dst), (ins RC:$T, CPURegs:$cond, RC:$F),
275 !strconcat(instr_asm, "\t$dst, $T, $cond"), []>;
276
277def MOVZ_S : CondMovIntFP<FGR32, 16, 18, "movz.s">;
278def MOVN_S : CondMovIntFP<FGR32, 16, 19, "movn.s">;
279
280let Predicates = [In32BitMode] in {
281 def MOVZ_D : CondMovIntFP<AFGR64, 17, 18, "movz.d">;
282 def MOVN_D : CondMovIntFP<AFGR64, 17, 19, "movn.d">;
283}
284
285defm : MovzPats<FGR32, MOVZ_S>;
286defm : MovnPats<FGR32, MOVN_S>;
287
288let Predicates = [In32BitMode] in {
289 defm : MovzPats<AFGR64, MOVZ_D>;
290 defm : MovnPats<AFGR64, MOVN_D>;
291}
292
293let usesCustomInserter = 1, Uses = [FCR31], Constraints = "$F = $dst" in {
294// flag:float, data:int
295class CondMovFPInt<SDNode cmov, bits<1> tf, string instr_asm> :
296 FCMOV<tf, (outs CPURegs:$dst), (ins CPURegs:$T, CPURegs:$F),
297 !strconcat(instr_asm, "\t$dst, $T, $$fcc0"),
298 [(set CPURegs:$dst, (cmov CPURegs:$T, CPURegs:$F))]>;
299
300// flag:float, data:float
301class CondMovFPFP<RegisterClass RC, SDNode cmov, bits<5> fmt, bits<1> tf,
302 string instr_asm> :
303 FFCMOV<fmt, tf, (outs RC:$dst), (ins RC:$T, RC:$F),
304 !strconcat(instr_asm, "\t$dst, $T, $$fcc0"),
305 [(set RC:$dst, (cmov RC:$T, RC:$F))]>;
306}
307
308def MOVT : CondMovFPInt<MipsCMovFP_T, 1, "movt">;
309def MOVF : CondMovFPInt<MipsCMovFP_F, 0, "movf">;
310def MOVT_S : CondMovFPFP<FGR32, MipsCMovFP_T, 16, 1, "movt.s">;
311def MOVF_S : CondMovFPFP<FGR32, MipsCMovFP_F, 16, 0, "movf.s">;
312
313let Predicates = [In32BitMode] in {
314 def MOVT_D : CondMovFPFP<AFGR64, MipsCMovFP_T, 17, 1, "movt.d">;
315 def MOVF_D : CondMovFPFP<AFGR64, MipsCMovFP_F, 17, 0, "movf.d">;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000316}
317
318//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000319// Floating Point Pseudo-Instructions
320//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +0000321def MOVCCRToCCR : MipsPseudo<(outs CCR:$dst), (ins CCR:$src),
322 "# MOVCCRToCCR", []>;
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +0000323
Akira Hatanaka99a2e982011-04-15 19:52:08 +0000324// This pseudo instr gets expanded into 2 mtc1 instrs after register
325// allocation.
326def BuildPairF64 :
327 MipsPseudo<(outs AFGR64:$dst),
328 (ins CPURegs:$lo, CPURegs:$hi), "",
329 [(set AFGR64:$dst, (MipsBuildPairF64 CPURegs:$lo, CPURegs:$hi))]>;
330
331// This pseudo instr gets expanded into 2 mfc1 instrs after register
332// allocation.
333// if n is 0, lower part of src is extracted.
334// if n is 1, higher part of src is extracted.
335def ExtractElementF64 :
336 MipsPseudo<(outs CPURegs:$dst),
337 (ins AFGR64:$src, i32imm:$n), "",
338 [(set CPURegs:$dst,
339 (MipsExtractElementF64 AFGR64:$src, imm:$n))]>;
340
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000341//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes7b76da12008-07-09 04:45:36 +0000342// Floating Point Patterns
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000343//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes7030ae72008-07-30 19:00:31 +0000344def fpimm0 : PatLeaf<(fpimm), [{
Bruno Cardoso Lopes9089ba82009-11-11 23:09:33 +0000345 return N->isExactlyValue(+0.0);
346}]>;
347
348def fpimm0neg : PatLeaf<(fpimm), [{
349 return N->isExactlyValue(-0.0);
Bruno Cardoso Lopes7030ae72008-07-30 19:00:31 +0000350}]>;
351
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000352def : Pat<(f32 fpimm0), (MTC1 ZERO)>;
Bruno Cardoso Lopes9089ba82009-11-11 23:09:33 +0000353def : Pat<(f32 fpimm0neg), (FNEG_S32 (MTC1 ZERO))>;
Bruno Cardoso Lopes7030ae72008-07-30 19:00:31 +0000354
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000355def : Pat<(f32 (sint_to_fp CPURegs:$src)), (CVTS_W32 (MTC1 CPURegs:$src))>;
356def : Pat<(f64 (sint_to_fp CPURegs:$src)), (CVTD_W32 (MTC1 CPURegs:$src))>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000357
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000358def : Pat<(i32 (fp_to_sint FGR32:$src)), (MFC1 (TRUNC_W_S32 FGR32:$src))>;
Bruno Cardoso Lopes7030ae72008-07-30 19:00:31 +0000359
360def : Pat<(i32 (bitconvert FGR32:$src)), (MFC1 FGR32:$src)>;
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000361def : Pat<(f32 (bitconvert CPURegs:$src)), (MTC1 CPURegs:$src)>;
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +0000362
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +0000363let Predicates = [In32BitMode] in {
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +0000364 def : Pat<(f32 (fround AFGR64:$src)), (CVTS_D32 AFGR64:$src)>;
365 def : Pat<(f64 (fextend FGR32:$src)), (CVTD_S32 FGR32:$src)>;
366}
367
368// MipsFPRound is only emitted for MipsI targets.
369def : Pat<(f32 (MipsFPRound AFGR64:$src)), (CVTW_D32 AFGR64:$src)>;
370