x86: Add support for FLDENV & FNSTENV
authorAndreas Sandberg <andreas@sandberg.pp.se>
Mon, 30 Sep 2013 10:04:36 +0000 (12:04 +0200)
committerAndreas Sandberg <andreas@sandberg.pp.se>
Mon, 30 Sep 2013 10:04:36 +0000 (12:04 +0200)
src/arch/x86/isa/decoder/x87.isa
src/arch/x86/isa/insts/x87/control/save_and_restore_x87_environment.py

index 03ca8be07efcb8b9f795892bbc13ac94126297cd..ac1306412ac873e802e9d74d23a72439ed5fee23 100644 (file)
@@ -81,7 +81,7 @@ format WarnUnimpl {
                     0x5: fxam();
                     default: Inst::UD2();
                 }
-                default: fldenv();
+                default: Inst::FLDENV(M);
             }
             0x5: decode MODRM_MOD {
                 0x3: decode MODRM_RM {
@@ -106,7 +106,7 @@ format WarnUnimpl {
                     0x6: fdecstp();
                     0x7: fincstp();
                 }
-                default: fnstenv();
+                default: Inst::FNSTENV(M);
             }
             0x7: decode MODRM_MOD {
                 0x3: decode MODRM_RM {
index babf942b9eea6018a8aedc974f5564a1625f9dc0..44c44062b579adc0bc08d850ebe44cbdc3a2b7c2 100644 (file)
@@ -1,15 +1,6 @@
-# Copyright (c) 2007 The Hewlett-Packard Development Company
+# Copyright (c) 2013 Andreas Sandberg
 # All rights reserved.
 #
-# The license below extends only to copyright in the software and shall
-# not be construed as granting a license to any other intellectual
-# property including but not limited to intellectual property relating
-# to a hardware implementation of the functionality of the software
-# licensed hereunder.  You may use the software subject to the license
-# terms below provided that you ensure that this notice is replicated
-# unmodified and in its entirety in all distributions of the software,
-# modified or unmodified, in source code or in binary form.
-#
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are
 # met: redistributions of source code must retain the above copyright
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #
-# Authors: Gabe Black
+# Authors: Andreas Sandberg
+
+
+# Register usage:
+#  t1, t2 == temporaries
+
+fldenvTemplate = """
+    ld t1, seg, %(mode)s, "DISPLACEMENT + 0", dataSize=2
+    wrval fcw, t1
+
+    ld t1, seg, %(mode)s, "DISPLACEMENT + 4", dataSize=2
+    wrval fsw, t1
+    srli t1, t1, 11, dataSize=2
+    andi t1, t1, 0x7, dataSize=2
+    wrval "InstRegIndex(MISCREG_X87_TOP)", t1
+
+    ld t1, seg, %(mode)s, "DISPLACEMENT + 8", dataSize=2
+    wrval ftw, t1
+
+    ld t1, seg, %(mode)s, "DISPLACEMENT + 12", dataSize=4
+    wrval "InstRegIndex(MISCREG_FIOFF)", t1
+
+    ld t1, seg, %(mode)s, "DISPLACEMENT + 16 + 0", dataSize=2
+    wrval "InstRegIndex(MISCREG_FISEG)", t1
+
+    ld t1, seg, %(mode)s, "DISPLACEMENT + 16 + 2", dataSize=2
+    wrval "InstRegIndex(MISCREG_FOP)", t1
+
+    ld t1, seg, %(mode)s, "DISPLACEMENT + 20", dataSize=4
+    wrval "InstRegIndex(MISCREG_FOOFF)", t1
+
+    ld t1, seg, %(mode)s, "DISPLACEMENT + 24", dataSize=2
+    wrval "InstRegIndex(MISCREG_FOSEG)", t1
+"""
+
+fnstenvTemplate = """
+    rdval t2, fcw
+    st t2, seg, %(mode)s, "DISPLACEMENT + 0", dataSize=2
+
+    # FSW includes TOP when read
+    rdval t1, fsw
+    st t1, seg, %(mode)s, "DISPLACEMENT + 4", dataSize=2
+
+    rdval t1, ftw
+    st t1, seg, %(mode)s, "DISPLACEMENT + 8", dataSize=2
+
+    rdval t1, "InstRegIndex(MISCREG_FIOFF)"
+    st t1, seg, %(mode)s, "DISPLACEMENT + 12", dataSize=4
+
+    rdval t1, "InstRegIndex(MISCREG_FISEG)"
+    st t1, seg, %(mode)s, "DISPLACEMENT + 16 + 0", dataSize=2
+
+    rdval t1, "InstRegIndex(MISCREG_FOP)"
+    st t1, seg, %(mode)s, "DISPLACEMENT + 16 + 2", dataSize=2
+
+    rdval t1, "InstRegIndex(MISCREG_FOOFF)"
+    st t1, seg, %(mode)s, "DISPLACEMENT + 20", dataSize=4
+
+    rdval t1, "InstRegIndex(MISCREG_FOSEG)"
+    st t1, seg, %(mode)s, "DISPLACEMENT + 24", dataSize=2
+
+    # Mask exceptions
+    ori t2, t2, 0x3F
+    wrval fcw, t2
+"""
 
 microcode = '''
-# FLDENV
-# FNSTENV
-# FSTENV
+def macroop FLDENV_M {
+''' + fldenvTemplate % { "mode" : "sib" } + '''
+};
+
+def macroop FLDENV_P {
+    rdip t7
+''' + fldenvTemplate % { "mode" : "riprel" } + '''
+};
+
+def macroop FNSTENV_M {
+''' + fnstenvTemplate % { "mode" : "sib" } + '''
+};
+
+def macroop FNSTENV_P {
+    rdip t7
+''' + fnstenvTemplate % { "mode" : "riprel" } + '''
+};
 '''