Chris Lattner | 23e70eb | 2010-08-17 16:20:04 +0000 | [diff] [blame] | 1 | //===- MipsInstrFPU.td - Mips FPU Instruction Information --*- tablegen -*-===// |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 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 Lopes | 7b76da1 | 2008-07-09 04:45:36 +0000 | [diff] [blame] | 15 | // Floating Point Instructions |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 16 | // ------------------------ |
| 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 Lopes | 7b76da1 | 2008-07-09 04:45:36 +0000 | [diff] [blame] | 26 | // Floating Point Compare and Branch |
Akira Hatanaka | 1d6b38d | 2011-03-31 18:26:17 +0000 | [diff] [blame^] | 27 | def SDT_MipsFPBrcond : SDTypeProfile<0, 2, [SDTCisInt<0>, |
| 28 | SDTCisVT<1, OtherVT>]>; |
| 29 | def SDT_MipsFPCmp : SDTypeProfile<0, 3, [SDTCisSameAs<0, 1>, SDTCisFP<1>, |
| 30 | SDTCisInt<2>]>; |
| 31 | def SDT_MipsCMovFP : SDTypeProfile<1, 2, [SDTCisSameAs<0, 1>, |
| 32 | SDTCisSameAs<1, 2>]>; |
Bruno Cardoso Lopes | d3bdf19 | 2009-05-27 17:23:44 +0000 | [diff] [blame] | 33 | |
Akira Hatanaka | 1d6b38d | 2011-03-31 18:26:17 +0000 | [diff] [blame^] | 34 | def MipsFPCmp : SDNode<"MipsISD::FPCmp", SDT_MipsFPCmp, [SDNPOutGlue]>; |
| 35 | def MipsCMovFP_T : SDNode<"MipsISD::CMovFP_T", SDT_MipsCMovFP, [SDNPInGlue]>; |
| 36 | def MipsCMovFP_F : SDNode<"MipsISD::CMovFP_F", SDT_MipsCMovFP, [SDNPInGlue]>; |
Chris Lattner | 036609b | 2010-12-23 18:28:41 +0000 | [diff] [blame] | 37 | def MipsFPRound : SDNode<"MipsISD::FPRound", SDTFPRoundOp, [SDNPOptInGlue]>; |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 38 | def MipsFPBrcond : SDNode<"MipsISD::FPBrcond", SDT_MipsFPBrcond, |
Akira Hatanaka | 1d6b38d | 2011-03-31 18:26:17 +0000 | [diff] [blame^] | 39 | [SDNPHasChain, SDNPOptInGlue]>; |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 40 | |
| 41 | // Operand for printing out a condition code. |
| 42 | let PrintMethod = "printFCCOperand" in |
| 43 | def condcode : Operand<i32>; |
| 44 | |
| 45 | //===----------------------------------------------------------------------===// |
| 46 | // Feature predicates. |
| 47 | //===----------------------------------------------------------------------===// |
| 48 | |
| 49 | def In32BitMode : Predicate<"!Subtarget.isFP64bit()">; |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 50 | def IsSingleFloat : Predicate<"Subtarget.isSingleFloat()">; |
| 51 | def IsNotSingleFloat : Predicate<"!Subtarget.isSingleFloat()">; |
Bruno Cardoso Lopes | add2076 | 2009-11-16 04:35:29 +0000 | [diff] [blame] | 52 | def IsNotMipsI : Predicate<"!Subtarget.isMips1()">; |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 53 | |
| 54 | //===----------------------------------------------------------------------===// |
| 55 | // Instruction Class Templates |
| 56 | // |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 57 | // A set of multiclasses is used to address the register usage. |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 58 | // |
Bruno Cardoso Lopes | bdfbb74 | 2009-03-21 00:05:07 +0000 | [diff] [blame] | 59 | // S32 - single precision in 16 32bit even fp registers |
| 60 | // single precision in 32 32bit fp registers in SingleOnly mode |
| 61 | // S64 - single precision in 32 64bit fp registers (In64BitMode) |
| 62 | // D32 - double precision in 16 32bit even fp registers |
| 63 | // D64 - double precision in 32 64bit fp registers (In64BitMode) |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 64 | // |
Bruno Cardoso Lopes | bdfbb74 | 2009-03-21 00:05:07 +0000 | [diff] [blame] | 65 | // Only S32 and D32 are supported right now. |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 66 | //===----------------------------------------------------------------------===// |
| 67 | |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 68 | multiclass FFR1_1<bits<6> funct, string asmstr> |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 69 | { |
Bruno Cardoso Lopes | bdfbb74 | 2009-03-21 00:05:07 +0000 | [diff] [blame] | 70 | def _S32 : FFR<0x11, funct, 0x0, (outs FGR32:$fd), (ins FGR32:$fs), |
| 71 | !strconcat(asmstr, ".s $fd, $fs"), []>; |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 72 | |
Bruno Cardoso Lopes | d3bdf19 | 2009-05-27 17:23:44 +0000 | [diff] [blame] | 73 | def _D32 : FFR<0x11, funct, 0x1, (outs FGR32:$fd), (ins AFGR64:$fs), |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 74 | !strconcat(asmstr, ".d $fd, $fs"), []>, Requires<[In32BitMode]>; |
| 75 | } |
| 76 | |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 77 | multiclass FFR1_2<bits<6> funct, string asmstr, SDNode FOp> |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 78 | { |
Bruno Cardoso Lopes | bdfbb74 | 2009-03-21 00:05:07 +0000 | [diff] [blame] | 79 | def _S32 : FFR<0x11, funct, 0x0, (outs FGR32:$fd), (ins FGR32:$fs), |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 80 | !strconcat(asmstr, ".s $fd, $fs"), |
Bruno Cardoso Lopes | bdfbb74 | 2009-03-21 00:05:07 +0000 | [diff] [blame] | 81 | [(set FGR32:$fd, (FOp FGR32:$fs))]>; |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 82 | |
| 83 | def _D32 : FFR<0x11, funct, 0x1, (outs AFGR64:$fd), (ins AFGR64:$fs), |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 84 | !strconcat(asmstr, ".d $fd, $fs"), |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 85 | [(set AFGR64:$fd, (FOp AFGR64:$fs))]>, Requires<[In32BitMode]>; |
| 86 | } |
| 87 | |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 88 | class FFR1_3<bits<6> funct, bits<5> fmt, RegisterClass RcSrc, |
| 89 | RegisterClass RcDst, string asmstr>: |
| 90 | FFR<0x11, funct, fmt, (outs RcSrc:$fd), (ins RcDst:$fs), |
| 91 | !strconcat(asmstr, " $fd, $fs"), []>; |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 92 | |
| 93 | |
| 94 | multiclass FFR1_4<bits<6> funct, string asmstr, SDNode FOp> { |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 95 | def _S32 : FFR<0x11, funct, 0x0, (outs FGR32:$fd), |
| 96 | (ins FGR32:$fs, FGR32:$ft), |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 97 | !strconcat(asmstr, ".s $fd, $fs, $ft"), |
Bruno Cardoso Lopes | bdfbb74 | 2009-03-21 00:05:07 +0000 | [diff] [blame] | 98 | [(set FGR32:$fd, (FOp FGR32:$fs, FGR32:$ft))]>; |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 99 | |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 100 | def _D32 : FFR<0x11, funct, 0x1, (outs AFGR64:$fd), |
| 101 | (ins AFGR64:$fs, AFGR64:$ft), |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 102 | !strconcat(asmstr, ".d $fd, $fs, $ft"), |
| 103 | [(set AFGR64:$fd, (FOp AFGR64:$fs, AFGR64:$ft))]>, |
| 104 | Requires<[In32BitMode]>; |
| 105 | } |
| 106 | |
| 107 | //===----------------------------------------------------------------------===// |
Bruno Cardoso Lopes | 7b76da1 | 2008-07-09 04:45:36 +0000 | [diff] [blame] | 108 | // Floating Point Instructions |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 109 | //===----------------------------------------------------------------------===// |
| 110 | |
| 111 | let ft = 0 in { |
| 112 | defm FLOOR_W : FFR1_1<0b001111, "floor.w">; |
| 113 | defm CEIL_W : FFR1_1<0b001110, "ceil.w">; |
| 114 | defm ROUND_W : FFR1_1<0b001100, "round.w">; |
| 115 | defm TRUNC_W : FFR1_1<0b001101, "trunc.w">; |
| 116 | defm CVTW : FFR1_1<0b100100, "cvt.w">; |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 117 | |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 118 | defm FABS : FFR1_2<0b000101, "abs", fabs>; |
| 119 | defm FNEG : FFR1_2<0b000111, "neg", fneg>; |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 120 | defm FSQRT : FFR1_2<0b000100, "sqrt", fsqrt>; |
| 121 | |
Bruno Cardoso Lopes | bdfbb74 | 2009-03-21 00:05:07 +0000 | [diff] [blame] | 122 | /// Convert to Single Precison |
| 123 | def CVTS_W32 : FFR1_3<0b100000, 0x2, FGR32, FGR32, "cvt.s.w">; |
| 124 | |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 125 | let Predicates = [IsNotSingleFloat] in { |
| 126 | /// Ceil to long signed integer |
Bruno Cardoso Lopes | bdfbb74 | 2009-03-21 00:05:07 +0000 | [diff] [blame] | 127 | def CEIL_LS : FFR1_3<0b001010, 0x0, FGR32, FGR32, "ceil.l">; |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 128 | def CEIL_LD : FFR1_3<0b001010, 0x1, AFGR64, AFGR64, "ceil.l">; |
| 129 | |
| 130 | /// Round to long signed integer |
Bruno Cardoso Lopes | bdfbb74 | 2009-03-21 00:05:07 +0000 | [diff] [blame] | 131 | def ROUND_LS : FFR1_3<0b001000, 0x0, FGR32, FGR32, "round.l">; |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 132 | def ROUND_LD : FFR1_3<0b001000, 0x1, AFGR64, AFGR64, "round.l">; |
| 133 | |
| 134 | /// Floor to long signed integer |
Bruno Cardoso Lopes | bdfbb74 | 2009-03-21 00:05:07 +0000 | [diff] [blame] | 135 | def FLOOR_LS : FFR1_3<0b001011, 0x0, FGR32, FGR32, "floor.l">; |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 136 | def FLOOR_LD : FFR1_3<0b001011, 0x1, AFGR64, AFGR64, "floor.l">; |
| 137 | |
| 138 | /// Trunc to long signed integer |
Bruno Cardoso Lopes | bdfbb74 | 2009-03-21 00:05:07 +0000 | [diff] [blame] | 139 | def TRUNC_LS : FFR1_3<0b001001, 0x0, FGR32, FGR32, "trunc.l">; |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 140 | def TRUNC_LD : FFR1_3<0b001001, 0x1, AFGR64, AFGR64, "trunc.l">; |
| 141 | |
| 142 | /// Convert to long signed integer |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 143 | def CVTL_S : FFR1_3<0b100101, 0x0, FGR32, FGR32, "cvt.l">; |
| 144 | def CVTL_D : FFR1_3<0b100101, 0x1, AFGR64, AFGR64, "cvt.l">; |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 145 | |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 146 | /// Convert to Double Precison |
| 147 | def CVTD_S32 : FFR1_3<0b100001, 0x0, AFGR64, FGR32, "cvt.d.s">; |
| 148 | def CVTD_W32 : FFR1_3<0b100001, 0x2, AFGR64, FGR32, "cvt.d.w">; |
| 149 | def CVTD_L32 : FFR1_3<0b100001, 0x3, AFGR64, AFGR64, "cvt.d.l">; |
| 150 | |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 151 | /// Convert to Single Precison |
| 152 | def CVTS_D32 : FFR1_3<0b100000, 0x1, FGR32, AFGR64, "cvt.s.d">; |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 153 | def CVTS_L32 : FFR1_3<0b100000, 0x3, FGR32, AFGR64, "cvt.s.l">; |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 154 | } |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 155 | } |
| 156 | |
| 157 | // The odd-numbered registers are only referenced when doing loads, |
| 158 | // stores, and moves between floating-point and integer registers. |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 159 | // When defining instructions, we reference all 32-bit registers, |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 160 | // regardless of register aliasing. |
| 161 | let fd = 0 in { |
| 162 | /// Move Control Registers From/To CPU Registers |
Bruno Cardoso Lopes | d3bdf19 | 2009-05-27 17:23:44 +0000 | [diff] [blame] | 163 | def CFC1 : FFR<0x11, 0x0, 0x2, (outs CPURegs:$rt), (ins CCR:$fs), |
| 164 | "cfc1 $rt, $fs", []>; |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 165 | |
Bruno Cardoso Lopes | d3bdf19 | 2009-05-27 17:23:44 +0000 | [diff] [blame] | 166 | def CTC1 : FFR<0x11, 0x0, 0x6, (outs CCR:$rt), (ins CPURegs:$fs), |
| 167 | "ctc1 $fs, $rt", []>; |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 168 | |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 169 | def MFC1 : FFR<0x11, 0x00, 0x00, (outs CPURegs:$rt), (ins FGR32:$fs), |
| 170 | "mfc1 $rt, $fs", []>; |
| 171 | |
| 172 | def MTC1 : FFR<0x11, 0x00, 0x04, (outs FGR32:$fs), (ins CPURegs:$rt), |
Bruno Cardoso Lopes | 7030ae7 | 2008-07-30 19:00:31 +0000 | [diff] [blame] | 173 | "mtc1 $rt, $fs", []>; |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 174 | } |
| 175 | |
Bruno Cardoso Lopes | 5e19460 | 2010-01-30 18:29:19 +0000 | [diff] [blame] | 176 | def FMOV_S32 : FFR<0x11, 0b000110, 0x0, (outs FGR32:$fd), (ins FGR32:$fs), |
| 177 | "mov.s $fd, $fs", []>; |
| 178 | def FMOV_D32 : FFR<0x11, 0b000110, 0x1, (outs AFGR64:$fd), (ins AFGR64:$fs), |
| 179 | "mov.d $fd, $fs", []>; |
| 180 | |
Bruno Cardoso Lopes | 7b76da1 | 2008-07-09 04:45:36 +0000 | [diff] [blame] | 181 | /// Floating Point Memory Instructions |
Bruno Cardoso Lopes | add2076 | 2009-11-16 04:35:29 +0000 | [diff] [blame] | 182 | let Predicates = [IsNotSingleFloat, IsNotMipsI] in { |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 183 | def LDC1 : FFI<0b110101, (outs AFGR64:$ft), (ins mem:$addr), |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 184 | "ldc1 $ft, $addr", [(set AFGR64:$ft, (load addr:$addr))]>; |
| 185 | |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 186 | def SDC1 : FFI<0b111101, (outs), (ins AFGR64:$ft, mem:$addr), |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 187 | "sdc1 $ft, $addr", [(store AFGR64:$ft, addr:$addr)]>; |
| 188 | } |
| 189 | |
| 190 | // LWC1 and SWC1 can always be emited with odd registers. |
| 191 | def LWC1 : FFI<0b110001, (outs FGR32:$ft), (ins mem:$addr), "lwc1 $ft, $addr", |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 192 | [(set FGR32:$ft, (load addr:$addr))]>; |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 193 | def SWC1 : FFI<0b111001, (outs), (ins FGR32:$ft, mem:$addr), "swc1 $ft, $addr", |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 194 | [(store FGR32:$ft, addr:$addr)]>; |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 195 | |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 196 | /// Floating-point Aritmetic |
| 197 | defm FADD : FFR1_4<0x10, "add", fadd>; |
| 198 | defm FDIV : FFR1_4<0x03, "div", fdiv>; |
| 199 | defm FMUL : FFR1_4<0x02, "mul", fmul>; |
| 200 | defm FSUB : FFR1_4<0x01, "sub", fsub>; |
| 201 | |
| 202 | //===----------------------------------------------------------------------===// |
Bruno Cardoso Lopes | 7b76da1 | 2008-07-09 04:45:36 +0000 | [diff] [blame] | 203 | // Floating Point Branch Codes |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 204 | //===----------------------------------------------------------------------===// |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 205 | // Mips branch codes. These correspond to condcode in MipsInstrInfo.h. |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 206 | // They must be kept in synch. |
| 207 | def MIPS_BRANCH_F : PatLeaf<(i32 0)>; |
| 208 | def MIPS_BRANCH_T : PatLeaf<(i32 1)>; |
| 209 | def MIPS_BRANCH_FL : PatLeaf<(i32 2)>; |
| 210 | def MIPS_BRANCH_TL : PatLeaf<(i32 3)>; |
| 211 | |
Bruno Cardoso Lopes | 7b76da1 | 2008-07-09 04:45:36 +0000 | [diff] [blame] | 212 | /// Floating Point Branch of False/True (Likely) |
Akira Hatanaka | 1d6b38d | 2011-03-31 18:26:17 +0000 | [diff] [blame^] | 213 | let isBranch=1, isTerminator=1, hasDelaySlot=1, base=0x8, Uses=[FCR31] in |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 214 | class FBRANCH<PatLeaf op, string asmstr> : FFI<0x11, (outs), |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 215 | (ins brtarget:$dst), !strconcat(asmstr, " $dst"), |
Akira Hatanaka | 1d6b38d | 2011-03-31 18:26:17 +0000 | [diff] [blame^] | 216 | [(MipsFPBrcond op, bb:$dst)]>; |
| 217 | |
Bruno Cardoso Lopes | 85e31e3 | 2008-07-28 19:11:24 +0000 | [diff] [blame] | 218 | def BC1F : FBRANCH<MIPS_BRANCH_F, "bc1f">; |
| 219 | def BC1T : FBRANCH<MIPS_BRANCH_T, "bc1t">; |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 220 | def BC1FL : FBRANCH<MIPS_BRANCH_FL, "bc1fl">; |
| 221 | def BC1TL : FBRANCH<MIPS_BRANCH_TL, "bc1tl">; |
| 222 | |
| 223 | //===----------------------------------------------------------------------===// |
Bruno Cardoso Lopes | 7b76da1 | 2008-07-09 04:45:36 +0000 | [diff] [blame] | 224 | // Floating Point Flag Conditions |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 225 | //===----------------------------------------------------------------------===// |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 226 | // Mips condition codes. They must correspond to condcode in MipsInstrInfo.h. |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 227 | // They must be kept in synch. |
| 228 | def MIPS_FCOND_F : PatLeaf<(i32 0)>; |
| 229 | def MIPS_FCOND_UN : PatLeaf<(i32 1)>; |
Akira Hatanaka | 1d6b38d | 2011-03-31 18:26:17 +0000 | [diff] [blame^] | 230 | def MIPS_FCOND_OEQ : PatLeaf<(i32 2)>; |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 231 | def MIPS_FCOND_UEQ : PatLeaf<(i32 3)>; |
| 232 | def MIPS_FCOND_OLT : PatLeaf<(i32 4)>; |
| 233 | def MIPS_FCOND_ULT : PatLeaf<(i32 5)>; |
| 234 | def MIPS_FCOND_OLE : PatLeaf<(i32 6)>; |
| 235 | def MIPS_FCOND_ULE : PatLeaf<(i32 7)>; |
| 236 | def MIPS_FCOND_SF : PatLeaf<(i32 8)>; |
| 237 | def MIPS_FCOND_NGLE : PatLeaf<(i32 9)>; |
| 238 | def MIPS_FCOND_SEQ : PatLeaf<(i32 10)>; |
| 239 | def MIPS_FCOND_NGL : PatLeaf<(i32 11)>; |
| 240 | def MIPS_FCOND_LT : PatLeaf<(i32 12)>; |
| 241 | def MIPS_FCOND_NGE : PatLeaf<(i32 13)>; |
| 242 | def MIPS_FCOND_LE : PatLeaf<(i32 14)>; |
| 243 | def MIPS_FCOND_NGT : PatLeaf<(i32 15)>; |
| 244 | |
| 245 | /// Floating Point Compare |
| 246 | let hasDelaySlot = 1, Defs=[FCR31] in { |
Bruno Cardoso Lopes | bdfbb74 | 2009-03-21 00:05:07 +0000 | [diff] [blame] | 247 | def FCMP_S32 : FCC<0x0, (outs), (ins FGR32:$fs, FGR32:$ft, condcode:$cc), |
Akira Hatanaka | 1d6b38d | 2011-03-31 18:26:17 +0000 | [diff] [blame^] | 248 | "c.$cc.s $fs, $ft", |
| 249 | [(MipsFPCmp FGR32:$fs, FGR32:$ft, imm:$cc)]>; |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 250 | |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 251 | def FCMP_D32 : FCC<0x1, (outs), (ins AFGR64:$fs, AFGR64:$ft, condcode:$cc), |
Akira Hatanaka | 1d6b38d | 2011-03-31 18:26:17 +0000 | [diff] [blame^] | 252 | "c.$cc.d $fs, $ft", |
| 253 | [(MipsFPCmp AFGR64:$fs, AFGR64:$ft, imm:$cc)]>, |
| 254 | Requires<[In32BitMode]>; |
| 255 | } |
| 256 | |
| 257 | |
| 258 | // Conditional moves: |
| 259 | // These instructions are expanded in MipsISelLowering::EmitInstrWithCustomInserter |
| 260 | // if target does not have conditional move instructions. |
| 261 | // flag:int, data:float |
| 262 | let usesCustomInserter = 1, Constraints = "$F = $dst" in |
| 263 | class CondMovIntFP<RegisterClass RC, bits<5> fmt, bits<6> func, |
| 264 | string instr_asm> : |
| 265 | FFR<0x11, func, fmt, (outs RC:$dst), (ins RC:$T, CPURegs:$cond, RC:$F), |
| 266 | !strconcat(instr_asm, "\t$dst, $T, $cond"), []>; |
| 267 | |
| 268 | def MOVZ_S : CondMovIntFP<FGR32, 16, 18, "movz.s">; |
| 269 | def MOVN_S : CondMovIntFP<FGR32, 16, 19, "movn.s">; |
| 270 | |
| 271 | let Predicates = [In32BitMode] in { |
| 272 | def MOVZ_D : CondMovIntFP<AFGR64, 17, 18, "movz.d">; |
| 273 | def MOVN_D : CondMovIntFP<AFGR64, 17, 19, "movn.d">; |
| 274 | } |
| 275 | |
| 276 | defm : MovzPats<FGR32, MOVZ_S>; |
| 277 | defm : MovnPats<FGR32, MOVN_S>; |
| 278 | |
| 279 | let Predicates = [In32BitMode] in { |
| 280 | defm : MovzPats<AFGR64, MOVZ_D>; |
| 281 | defm : MovnPats<AFGR64, MOVN_D>; |
| 282 | } |
| 283 | |
| 284 | let usesCustomInserter = 1, Uses = [FCR31], Constraints = "$F = $dst" in { |
| 285 | // flag:float, data:int |
| 286 | class CondMovFPInt<SDNode cmov, bits<1> tf, string instr_asm> : |
| 287 | FCMOV<tf, (outs CPURegs:$dst), (ins CPURegs:$T, CPURegs:$F), |
| 288 | !strconcat(instr_asm, "\t$dst, $T, $$fcc0"), |
| 289 | [(set CPURegs:$dst, (cmov CPURegs:$T, CPURegs:$F))]>; |
| 290 | |
| 291 | // flag:float, data:float |
| 292 | class CondMovFPFP<RegisterClass RC, SDNode cmov, bits<5> fmt, bits<1> tf, |
| 293 | string instr_asm> : |
| 294 | FFCMOV<fmt, tf, (outs RC:$dst), (ins RC:$T, RC:$F), |
| 295 | !strconcat(instr_asm, "\t$dst, $T, $$fcc0"), |
| 296 | [(set RC:$dst, (cmov RC:$T, RC:$F))]>; |
| 297 | } |
| 298 | |
| 299 | def MOVT : CondMovFPInt<MipsCMovFP_T, 1, "movt">; |
| 300 | def MOVF : CondMovFPInt<MipsCMovFP_F, 0, "movf">; |
| 301 | def MOVT_S : CondMovFPFP<FGR32, MipsCMovFP_T, 16, 1, "movt.s">; |
| 302 | def MOVF_S : CondMovFPFP<FGR32, MipsCMovFP_F, 16, 0, "movf.s">; |
| 303 | |
| 304 | let Predicates = [In32BitMode] in { |
| 305 | def MOVT_D : CondMovFPFP<AFGR64, MipsCMovFP_T, 17, 1, "movt.d">; |
| 306 | def MOVF_D : CondMovFPFP<AFGR64, MipsCMovFP_F, 17, 0, "movf.d">; |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 307 | } |
| 308 | |
| 309 | //===----------------------------------------------------------------------===// |
Bruno Cardoso Lopes | 6d399bd | 2008-07-29 19:05:28 +0000 | [diff] [blame] | 310 | // Floating Point Pseudo-Instructions |
| 311 | //===----------------------------------------------------------------------===// |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 312 | def MOVCCRToCCR : MipsPseudo<(outs CCR:$dst), (ins CCR:$src), |
| 313 | "# MOVCCRToCCR", []>; |
Bruno Cardoso Lopes | d3bdf19 | 2009-05-27 17:23:44 +0000 | [diff] [blame] | 314 | |
Bruno Cardoso Lopes | 6d399bd | 2008-07-29 19:05:28 +0000 | [diff] [blame] | 315 | //===----------------------------------------------------------------------===// |
Bruno Cardoso Lopes | 7b76da1 | 2008-07-09 04:45:36 +0000 | [diff] [blame] | 316 | // Floating Point Patterns |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 317 | //===----------------------------------------------------------------------===// |
Bruno Cardoso Lopes | 7030ae7 | 2008-07-30 19:00:31 +0000 | [diff] [blame] | 318 | def fpimm0 : PatLeaf<(fpimm), [{ |
Bruno Cardoso Lopes | 9089ba8 | 2009-11-11 23:09:33 +0000 | [diff] [blame] | 319 | return N->isExactlyValue(+0.0); |
| 320 | }]>; |
| 321 | |
| 322 | def fpimm0neg : PatLeaf<(fpimm), [{ |
| 323 | return N->isExactlyValue(-0.0); |
Bruno Cardoso Lopes | 7030ae7 | 2008-07-30 19:00:31 +0000 | [diff] [blame] | 324 | }]>; |
| 325 | |
Bruno Cardoso Lopes | bdfbb74 | 2009-03-21 00:05:07 +0000 | [diff] [blame] | 326 | def : Pat<(f32 fpimm0), (MTC1 ZERO)>; |
Bruno Cardoso Lopes | 9089ba8 | 2009-11-11 23:09:33 +0000 | [diff] [blame] | 327 | def : Pat<(f32 fpimm0neg), (FNEG_S32 (MTC1 ZERO))>; |
Bruno Cardoso Lopes | 7030ae7 | 2008-07-30 19:00:31 +0000 | [diff] [blame] | 328 | |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 329 | def : Pat<(f32 (sint_to_fp CPURegs:$src)), (CVTS_W32 (MTC1 CPURegs:$src))>; |
| 330 | def : Pat<(f64 (sint_to_fp CPURegs:$src)), (CVTD_W32 (MTC1 CPURegs:$src))>; |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 331 | |
Bruno Cardoso Lopes | bdfbb74 | 2009-03-21 00:05:07 +0000 | [diff] [blame] | 332 | def : Pat<(i32 (fp_to_sint FGR32:$src)), (MFC1 (TRUNC_W_S32 FGR32:$src))>; |
Bruno Cardoso Lopes | 7030ae7 | 2008-07-30 19:00:31 +0000 | [diff] [blame] | 333 | |
| 334 | def : Pat<(i32 (bitconvert FGR32:$src)), (MFC1 FGR32:$src)>; |
Bruno Cardoso Lopes | bdfbb74 | 2009-03-21 00:05:07 +0000 | [diff] [blame] | 335 | def : Pat<(f32 (bitconvert CPURegs:$src)), (MTC1 CPURegs:$src)>; |
Bruno Cardoso Lopes | d3bdf19 | 2009-05-27 17:23:44 +0000 | [diff] [blame] | 336 | |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 337 | let Predicates = [In32BitMode] in { |
Bruno Cardoso Lopes | d3bdf19 | 2009-05-27 17:23:44 +0000 | [diff] [blame] | 338 | def : Pat<(f32 (fround AFGR64:$src)), (CVTS_D32 AFGR64:$src)>; |
| 339 | def : Pat<(f64 (fextend FGR32:$src)), (CVTD_S32 FGR32:$src)>; |
| 340 | } |
| 341 | |
| 342 | // MipsFPRound is only emitted for MipsI targets. |
| 343 | def : Pat<(f32 (MipsFPRound AFGR64:$src)), (CVTW_D32 AFGR64:$src)>; |
| 344 | |