blob: b6a6d2f5c0522453cadd845a516ffe0afcba53ff [file] [log] [blame]
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001//===- MipsInstrFPU.td - Mips FPU Instruction Information -------*- C++ -*-===//
2//
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
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000027def SDT_MipsFPBrcond : SDTypeProfile<0, 3, [SDTCisSameAs<0, 2>, SDTCisInt<0>,
28 SDTCisVT<1, OtherVT>]>;
29def SDT_MipsFPCmp : SDTypeProfile<0, 3, [SDTCisSameAs<0, 1>, SDTCisFP<0>,
30 SDTCisInt<2>]>;
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +000031def SDT_MipsFPSelectCC : SDTypeProfile<1, 4, [SDTCisInt<1>, SDTCisInt<4>,
32 SDTCisSameAs<0, 2>, SDTCisSameAs<2, 3>]>;
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +000033
34def MipsFPRound : SDNode<"MipsISD::FPRound", SDTFPRoundOp, [SDNPOptInFlag]>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000035def MipsFPBrcond : SDNode<"MipsISD::FPBrcond", SDT_MipsFPBrcond,
36 [SDNPHasChain]>;
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +000037def MipsFPCmp : SDNode<"MipsISD::FPCmp", SDT_MipsFPCmp>;
38def MipsFPSelectCC : SDNode<"MipsISD::FPSelectCC", SDT_MipsFPSelectCC>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000039
40// Operand for printing out a condition code.
41let PrintMethod = "printFCCOperand" in
42 def condcode : Operand<i32>;
43
44//===----------------------------------------------------------------------===//
45// Feature predicates.
46//===----------------------------------------------------------------------===//
47
48def In32BitMode : Predicate<"!Subtarget.isFP64bit()">;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000049def IsSingleFloat : Predicate<"Subtarget.isSingleFloat()">;
50def IsNotSingleFloat : Predicate<"!Subtarget.isSingleFloat()">;
51
52//===----------------------------------------------------------------------===//
53// Instruction Class Templates
54//
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +000055// A set of multiclasses is used to address the register usage.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000056//
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +000057// S32 - single precision in 16 32bit even fp registers
58// single precision in 32 32bit fp registers in SingleOnly mode
59// S64 - single precision in 32 64bit fp registers (In64BitMode)
60// D32 - double precision in 16 32bit even fp registers
61// D64 - double precision in 32 64bit fp registers (In64BitMode)
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000062//
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +000063// Only S32 and D32 are supported right now.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000064//===----------------------------------------------------------------------===//
65
66multiclass FFR1_1<bits<6> funct, string asmstr>
67{
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +000068 def _S32 : FFR<0x11, funct, 0x0, (outs FGR32:$fd), (ins FGR32:$fs),
69 !strconcat(asmstr, ".s $fd, $fs"), []>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000070
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +000071 def _D32 : FFR<0x11, funct, 0x1, (outs FGR32:$fd), (ins AFGR64:$fs),
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000072 !strconcat(asmstr, ".d $fd, $fs"), []>, Requires<[In32BitMode]>;
73}
74
75multiclass FFR1_2<bits<6> funct, string asmstr, SDNode FOp>
76{
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +000077 def _S32 : FFR<0x11, funct, 0x0, (outs FGR32:$fd), (ins FGR32:$fs),
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000078 !strconcat(asmstr, ".s $fd, $fs"),
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +000079 [(set FGR32:$fd, (FOp FGR32:$fs))]>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000080
81 def _D32 : FFR<0x11, funct, 0x1, (outs AFGR64:$fd), (ins AFGR64:$fs),
82 !strconcat(asmstr, ".d $fd, $fs"),
83 [(set AFGR64:$fd, (FOp AFGR64:$fs))]>, Requires<[In32BitMode]>;
84}
85
86class FFR1_3<bits<6> funct, bits<5> fmt, RegisterClass RcSrc,
87 RegisterClass RcDst, string asmstr>:
88 FFR<0x11, funct, fmt, (outs RcSrc:$fd), (ins RcDst:$fs),
89 !strconcat(asmstr, " $fd, $fs"), []>;
90
91
92multiclass FFR1_4<bits<6> funct, string asmstr, SDNode FOp> {
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +000093 def _S32 : FFR<0x11, funct, 0x0, (outs FGR32:$fd),
Bruno Cardoso Lopes7b76da12008-07-09 04:45:36 +000094 (ins FGR32:$fs, FGR32:$ft),
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000095 !strconcat(asmstr, ".s $fd, $fs, $ft"),
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +000096 [(set FGR32:$fd, (FOp FGR32:$fs, FGR32:$ft))]>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000097
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +000098 def _D32 : FFR<0x11, funct, 0x1, (outs AFGR64:$fd),
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000099 (ins AFGR64:$fs, AFGR64:$ft),
100 !strconcat(asmstr, ".d $fd, $fs, $ft"),
101 [(set AFGR64:$fd, (FOp AFGR64:$fs, AFGR64:$ft))]>,
102 Requires<[In32BitMode]>;
103}
104
105//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes7b76da12008-07-09 04:45:36 +0000106// Floating Point Instructions
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000107//===----------------------------------------------------------------------===//
108
109let ft = 0 in {
110 defm FLOOR_W : FFR1_1<0b001111, "floor.w">;
111 defm CEIL_W : FFR1_1<0b001110, "ceil.w">;
112 defm ROUND_W : FFR1_1<0b001100, "round.w">;
113 defm TRUNC_W : FFR1_1<0b001101, "trunc.w">;
114 defm CVTW : FFR1_1<0b100100, "cvt.w">;
115 defm FMOV : FFR1_1<0b000110, "mov">;
116
117 defm FABS : FFR1_2<0b000101, "abs", fabs>;
118 defm FNEG : FFR1_2<0b000111, "neg", fneg>;
119 defm FSQRT : FFR1_2<0b000100, "sqrt", fsqrt>;
120
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000121 /// Convert to Single Precison
122 def CVTS_W32 : FFR1_3<0b100000, 0x2, FGR32, FGR32, "cvt.s.w">;
123
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000124 let Predicates = [IsNotSingleFloat] in {
125 /// Ceil to long signed integer
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000126 def CEIL_LS : FFR1_3<0b001010, 0x0, FGR32, FGR32, "ceil.l">;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000127 def CEIL_LD : FFR1_3<0b001010, 0x1, AFGR64, AFGR64, "ceil.l">;
128
129 /// Round to long signed integer
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000130 def ROUND_LS : FFR1_3<0b001000, 0x0, FGR32, FGR32, "round.l">;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000131 def ROUND_LD : FFR1_3<0b001000, 0x1, AFGR64, AFGR64, "round.l">;
132
133 /// Floor to long signed integer
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000134 def FLOOR_LS : FFR1_3<0b001011, 0x0, FGR32, FGR32, "floor.l">;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000135 def FLOOR_LD : FFR1_3<0b001011, 0x1, AFGR64, AFGR64, "floor.l">;
136
137 /// Trunc to long signed integer
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000138 def TRUNC_LS : FFR1_3<0b001001, 0x0, FGR32, FGR32, "trunc.l">;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000139 def TRUNC_LD : FFR1_3<0b001001, 0x1, AFGR64, AFGR64, "trunc.l">;
140
141 /// Convert to long signed integer
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000142 def CVTL_S : FFR1_3<0b100101, 0x0, FGR32, FGR32, "cvt.l">;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000143 def CVTL_D : FFR1_3<0b100101, 0x1, AFGR64, AFGR64, "cvt.l">;
144
145 /// Convert to Double Precison
146 def CVTD_S32 : FFR1_3<0b100001, 0x0, AFGR64, FGR32, "cvt.d.s">;
147 def CVTD_W32 : FFR1_3<0b100001, 0x2, AFGR64, FGR32, "cvt.d.w">;
148 def CVTD_L32 : FFR1_3<0b100001, 0x3, AFGR64, AFGR64, "cvt.d.l">;
149
150 /// Convert to Single Precison
151 def CVTS_D32 : FFR1_3<0b100000, 0x1, FGR32, AFGR64, "cvt.s.d">;
152 def CVTS_L32 : FFR1_3<0b100000, 0x3, FGR32, AFGR64, "cvt.s.l">;
153 }
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000154}
155
156// The odd-numbered registers are only referenced when doing loads,
157// stores, and moves between floating-point and integer registers.
158// When defining instructions, we reference all 32-bit registers,
159// regardless of register aliasing.
160let fd = 0 in {
161 /// Move Control Registers From/To CPU Registers
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +0000162 def CFC1 : FFR<0x11, 0x0, 0x2, (outs CPURegs:$rt), (ins CCR:$fs),
163 "cfc1 $rt, $fs", []>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000164
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +0000165 def CTC1 : FFR<0x11, 0x0, 0x6, (outs CCR:$rt), (ins CPURegs:$fs),
166 "ctc1 $fs, $rt", []>;
167
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000168 def MFC1 : FFR<0x11, 0x00, 0x00, (outs CPURegs:$rt), (ins FGR32:$fs),
169 "mfc1 $rt, $fs", []>;
170
171 def MTC1 : FFR<0x11, 0x00, 0x04, (outs FGR32:$fs), (ins CPURegs:$rt),
Bruno Cardoso Lopes7030ae72008-07-30 19:00:31 +0000172 "mtc1 $rt, $fs", []>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000173}
174
Bruno Cardoso Lopes7b76da12008-07-09 04:45:36 +0000175/// Floating Point Memory Instructions
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000176let Predicates = [IsNotSingleFloat] in {
177 def LDC1 : FFI<0b110101, (outs AFGR64:$ft), (ins mem:$addr),
178 "ldc1 $ft, $addr", [(set AFGR64:$ft, (load addr:$addr))]>;
179
180 def SDC1 : FFI<0b111101, (outs), (ins AFGR64:$ft, mem:$addr),
181 "sdc1 $ft, $addr", [(store AFGR64:$ft, addr:$addr)]>;
182}
183
184// LWC1 and SWC1 can always be emited with odd registers.
185def LWC1 : FFI<0b110001, (outs FGR32:$ft), (ins mem:$addr), "lwc1 $ft, $addr",
186 [(set FGR32:$ft, (load addr:$addr))]>;
187def SWC1 : FFI<0b111001, (outs), (ins FGR32:$ft, mem:$addr), "swc1 $ft, $addr",
188 [(store FGR32:$ft, addr:$addr)]>;
189
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000190/// Floating-point Aritmetic
191defm FADD : FFR1_4<0x10, "add", fadd>;
192defm FDIV : FFR1_4<0x03, "div", fdiv>;
193defm FMUL : FFR1_4<0x02, "mul", fmul>;
194defm FSUB : FFR1_4<0x01, "sub", fsub>;
195
196//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes7b76da12008-07-09 04:45:36 +0000197// Floating Point Branch Codes
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000198//===----------------------------------------------------------------------===//
199// Mips branch codes. These correspond to condcode in MipsInstrInfo.h.
200// They must be kept in synch.
201def MIPS_BRANCH_F : PatLeaf<(i32 0)>;
202def MIPS_BRANCH_T : PatLeaf<(i32 1)>;
203def MIPS_BRANCH_FL : PatLeaf<(i32 2)>;
204def MIPS_BRANCH_TL : PatLeaf<(i32 3)>;
205
Bruno Cardoso Lopes7b76da12008-07-09 04:45:36 +0000206/// Floating Point Branch of False/True (Likely)
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000207let isBranch=1, isTerminator=1, hasDelaySlot=1, base=0x8, Uses=[FCR31] in {
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000208 class FBRANCH<PatLeaf op, string asmstr> : FFI<0x11, (outs),
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000209 (ins brtarget:$dst), !strconcat(asmstr, " $dst"),
210 [(MipsFPBrcond op, bb:$dst, FCR31)]>;
211}
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000212def BC1F : FBRANCH<MIPS_BRANCH_F, "bc1f">;
213def BC1T : FBRANCH<MIPS_BRANCH_T, "bc1t">;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000214def BC1FL : FBRANCH<MIPS_BRANCH_FL, "bc1fl">;
215def BC1TL : FBRANCH<MIPS_BRANCH_TL, "bc1tl">;
216
217//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes7b76da12008-07-09 04:45:36 +0000218// Floating Point Flag Conditions
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000219//===----------------------------------------------------------------------===//
220// Mips condition codes. They must correspond to condcode in MipsInstrInfo.h.
221// They must be kept in synch.
222def MIPS_FCOND_F : PatLeaf<(i32 0)>;
223def MIPS_FCOND_UN : PatLeaf<(i32 1)>;
224def MIPS_FCOND_EQ : PatLeaf<(i32 2)>;
225def MIPS_FCOND_UEQ : PatLeaf<(i32 3)>;
226def MIPS_FCOND_OLT : PatLeaf<(i32 4)>;
227def MIPS_FCOND_ULT : PatLeaf<(i32 5)>;
228def MIPS_FCOND_OLE : PatLeaf<(i32 6)>;
229def MIPS_FCOND_ULE : PatLeaf<(i32 7)>;
230def MIPS_FCOND_SF : PatLeaf<(i32 8)>;
231def MIPS_FCOND_NGLE : PatLeaf<(i32 9)>;
232def MIPS_FCOND_SEQ : PatLeaf<(i32 10)>;
233def MIPS_FCOND_NGL : PatLeaf<(i32 11)>;
234def MIPS_FCOND_LT : PatLeaf<(i32 12)>;
235def MIPS_FCOND_NGE : PatLeaf<(i32 13)>;
236def MIPS_FCOND_LE : PatLeaf<(i32 14)>;
237def MIPS_FCOND_NGT : PatLeaf<(i32 15)>;
238
239/// Floating Point Compare
240let hasDelaySlot = 1, Defs=[FCR31] in {
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000241 def FCMP_S32 : FCC<0x0, (outs), (ins FGR32:$fs, FGR32:$ft, condcode:$cc),
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000242 "c.$cc.s $fs, $ft", [(MipsFPCmp FGR32:$fs, FGR32:$ft, imm:$cc),
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000243 (implicit FCR31)]>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000244
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000245 def FCMP_D32 : FCC<0x1, (outs), (ins AFGR64:$fs, AFGR64:$ft, condcode:$cc),
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000246 "c.$cc.d $fs, $ft", [(MipsFPCmp AFGR64:$fs, AFGR64:$ft, imm:$cc),
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000247 (implicit FCR31)]>, Requires<[In32BitMode]>;
248}
249
250//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000251// Floating Point Pseudo-Instructions
252//===----------------------------------------------------------------------===//
253
254// For some explanation, see Select_CC at MipsInstrInfo.td. We also embedd a
255// condiciton code to enable easy handling by the Custom Inserter.
256let usesCustomDAGSchedInserter = 1, Uses=[FCR31] in {
257 class PseudoFPSelCC<RegisterClass RC, string asmstr> :
258 MipsPseudo<(outs RC:$dst),
259 (ins CPURegs:$CmpRes, RC:$T, RC:$F, condcode:$cc), asmstr,
260 [(set RC:$dst, (MipsFPSelectCC CPURegs:$CmpRes, RC:$T, RC:$F,
261 imm:$cc))]>;
262}
263
264// The values to be selected are fp but the condition test is with integers.
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000265def Select_CC_S32 : PseudoSelCC<FGR32, "# MipsSelect_CC_S32_f32">;
266def Select_CC_D32 : PseudoSelCC<AFGR64, "# MipsSelect_CC_D32_f32">,
267 Requires<[In32BitMode]>;
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000268
269// The values to be selected are int but the condition test is done with fp.
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000270def Select_FCC : PseudoFPSelCC<CPURegs, "# MipsSelect_FCC">;
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000271
272// The values to be selected and the condition test is done with fp.
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000273def Select_FCC_S32 : PseudoFPSelCC<FGR32, "# MipsSelect_FCC_S32_f32">;
274def Select_FCC_D32 : PseudoFPSelCC<AFGR64, "# MipsSelect_FCC_D32_f32">,
275 Requires<[In32BitMode]>;
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000276
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +0000277def MOVCCRToCCR : MipsPseudo<(outs CCR:$dst), (ins CCR:$src),
278 "# MOVCCRToCCR", []>;
279
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000280//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes7b76da12008-07-09 04:45:36 +0000281// Floating Point Patterns
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000282//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes7030ae72008-07-30 19:00:31 +0000283def fpimm0 : PatLeaf<(fpimm), [{
284 return N->isExactlyValue(+0.0);
285}]>;
286
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000287def : Pat<(f32 fpimm0), (MTC1 ZERO)>;
Bruno Cardoso Lopes7030ae72008-07-30 19:00:31 +0000288
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000289def : Pat<(f32 (sint_to_fp CPURegs:$src)), (CVTS_W32 (MTC1 CPURegs:$src))>;
290def : Pat<(f64 (sint_to_fp CPURegs:$src)), (CVTD_W32 (MTC1 CPURegs:$src))>;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000291
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000292def : Pat<(i32 (fp_to_sint FGR32:$src)), (MFC1 (TRUNC_W_S32 FGR32:$src))>;
Bruno Cardoso Lopes7030ae72008-07-30 19:00:31 +0000293
294def : Pat<(i32 (bitconvert FGR32:$src)), (MFC1 FGR32:$src)>;
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000295def : Pat<(f32 (bitconvert CPURegs:$src)), (MTC1 CPURegs:$src)>;
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +0000296
297let Predicates = [In32BitMode] in {
298 def : Pat<(f32 (fround AFGR64:$src)), (CVTS_D32 AFGR64:$src)>;
299 def : Pat<(f64 (fextend FGR32:$src)), (CVTD_S32 FGR32:$src)>;
300}
301
302// MipsFPRound is only emitted for MipsI targets.
303def : Pat<(f32 (MipsFPRound AFGR64:$src)), (CVTW_D32 AFGR64:$src)>;
304