diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2004-06-24 21:22:09 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-06-24 21:22:09 +0000 |
commit | 57ff2e3ee711c8d6ab908c6f03d5806b34d910f0 (patch) | |
tree | 53912444a5479f207d30c6d2498b1fc09e7781bd /lib/Target/Sparc | |
parent | 495a0974f4943019da8fdc1df48ca3f0272646c8 (diff) |
Add FSTOD and FDTOS conversion instructions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14372 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Sparc')
-rw-r--r-- | lib/Target/Sparc/SparcInstrInfo.td | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Target/Sparc/SparcInstrInfo.td b/lib/Target/Sparc/SparcInstrInfo.td index 8082fe39ba..009a19e670 100644 --- a/lib/Target/Sparc/SparcInstrInfo.td +++ b/lib/Target/Sparc/SparcInstrInfo.td @@ -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">; + |