Add FSTOD and FDTOS conversion instructions.
authorBrian Gaeke <gaeke@uiuc.edu>
Thu, 24 Jun 2004 21:22:09 +0000 (21:22 +0000)
committerBrian Gaeke <gaeke@uiuc.edu>
Thu, 24 Jun 2004 21:22:09 +0000 (21:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14372 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/Sparc/SparcInstrInfo.td
lib/Target/SparcV8/SparcV8InstrInfo.td

index 8082fe39ba7a52a1704fc0257b0913431636b393..009a19e67058f1cf7f4cbe885217ffed2b24f529 100644 (file)
@@ -181,8 +181,13 @@ let isCall = 1 in
 def WRrr : F3_1<2, 0b110000, "wr">;                    // wr rs1, rs2, rd
 def WRri : F3_2<2, 0b110000, "wr">;                    // wr rs1, imm, rd
 
+// Convert between Floating-point Formats Instructions, p. 143
+def FSTOD : F3_3<2, 0b110100, 0b011001001, "fstod">;
+def FDTOS : F3_3<2, 0b110100, 0b011000110, "fdtos">;
+
 // Floating-point Move Instructions, p. 144
 def FMOVS : F3_3<2, 0b110100, 0b000000001, "fmovs">;
 def FNEGS : F3_3<2, 0b110100, 0b000000101, "fnegs">;
 def FABSS : F3_3<2, 0b110100, 0b000001001, "fabss">;
 
+
index 8082fe39ba7a52a1704fc0257b0913431636b393..009a19e67058f1cf7f4cbe885217ffed2b24f529 100644 (file)
@@ -181,8 +181,13 @@ let isCall = 1 in
 def WRrr : F3_1<2, 0b110000, "wr">;                    // wr rs1, rs2, rd
 def WRri : F3_2<2, 0b110000, "wr">;                    // wr rs1, imm, rd
 
+// Convert between Floating-point Formats Instructions, p. 143
+def FSTOD : F3_3<2, 0b110100, 0b011001001, "fstod">;
+def FDTOS : F3_3<2, 0b110100, 0b011000110, "fdtos">;
+
 // Floating-point Move Instructions, p. 144
 def FMOVS : F3_3<2, 0b110100, 0b000000001, "fmovs">;
 def FNEGS : F3_3<2, 0b110100, 0b000000101, "fnegs">;
 def FABSS : F3_3<2, 0b110100, 0b000001001, "fabss">;
 
+