daily update
[deliverable/binutils-gdb.git] / gdb / i387-nat.c
index 76986080e127f9bb612496ba3a4be445e97ccd62..62c26f8b1b62309cf8adced8833efc831396f789 100644 (file)
@@ -1,5 +1,5 @@
 /* Native-dependent code for the i387.
-   Copyright 2000 Free Software Foundation, Inc.
+   Copyright 2000, 2001 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
 #include "defs.h"
 #include "inferior.h"
 #include "value.h"
+#include "regcache.h"
+
+#include "i387-nat.h"
+#include "i386-tdep.h"
 
 /* FIXME: kettenis/2000-05-21: Right now more than a few i386 targets
    define their own routines to manage the floating-point registers in
@@ -28,9 +32,9 @@
    format used by the "fsave" instruction in their communication with
    the OS.  They should all be converted to use the routines below.  */
 
-/* At fsave_offset[REGNO] you'll find the offset to the location in
+/* At fsave_offset[REGNUM] you'll find the offset to the location in
    the data structure used by the "fsave" instruction where GDB
-   register REGNO is stored.  */
+   register REGNUM is stored.  */
 
 static int fsave_offset[] =
 {
@@ -45,64 +49,72 @@ static int fsave_offset[] =
   0,                           /* FCTRL_REGNUM (16 bits).  */
   4,                           /* FSTAT_REGNUM (16 bits).  */
   8,                           /* FTAG_REGNUM (16 bits).  */
-  16,                          /* FCS_REGNUM (16 bits).  */
-  12,                          /* FCOFF_REGNUM.  */
-  24,                          /* FDS_REGNUM.  */
-  20,                          /* FDOFF_REGNUM.  */
+  16,                          /* FISEG_REGNUM (16 bits).  */
+  12,                          /* FIOFF_REGNUM.  */
+  24,                          /* FOSEG_REGNUM.  */
+  20,                          /* FOOFF_REGNUM.  */
   18                           /* FOP_REGNUM (bottom 11 bits).  */
 };
 
 #define FSAVE_ADDR(fsave, regnum) (fsave + fsave_offset[regnum - FP0_REGNUM])
 \f
 
-/* Fill GDB's register array with the floating-point register values
-   in *FSAVE.  This function masks off any of the reserved
+/* Fill register REGNUM in GDB's register array with the appropriate
+   value from *FSAVE.  This function masks off any of the reserved
    bits in *FSAVE.  */
 
 void
-i387_supply_fsave (char *fsave)
+i387_supply_register (int regnum, char *fsave)
 {
-  int i;
-
-  for (i = FP0_REGNUM; i <= LAST_FPU_CTRL_REGNUM; i++)
+  /* Most of the FPU control registers occupy only 16 bits in
+     the fsave area.  Give those a special treatment.  */
+  if (regnum >= FPC_REGNUM
+      && regnum != FIOFF_REGNUM && regnum != FOOFF_REGNUM)
     {
-      /* Most of the FPU control registers occupy only 16 bits in
-        the fsave area.  Give those a special treatment.  */
-      if (i >= FIRST_FPU_CTRL_REGNUM
-         && i != FCOFF_REGNUM && i != FDOFF_REGNUM)
-       {
-         unsigned int val = *(unsigned short *) (FSAVE_ADDR (fsave, i));
+      unsigned int val = *(unsigned short *) (FSAVE_ADDR (fsave, regnum));
 
-         if (i == FOP_REGNUM)
-           {
-             val &= ((1 << 11) - 1);
-             supply_register (i, (char *) &val);
-           }
-         else
-           supply_register (i, (char *) &val);
+      if (regnum == FOP_REGNUM)
+       {
+         val &= ((1 << 11) - 1);
+         supply_register (regnum, (char *) &val);
        }
       else
-       supply_register (i, FSAVE_ADDR (fsave, i));
+       supply_register (regnum, (char *) &val);
     }
+  else
+    supply_register (regnum, FSAVE_ADDR (fsave, regnum));
+}
+
+/* Fill GDB's register array with the floating-point register values
+   in *FSAVE.  This function masks off any of the reserved
+   bits in *FSAVE.  */
+
+void
+i387_supply_fsave (char *fsave)
+{
+  int i;
+
+  for (i = FP0_REGNUM; i < XMM0_REGNUM; i++)
+    i387_supply_register (i, fsave);
 }
 
-/* Fill register REGNO (if it is a floating-point register) in *FSAVE
-   with the value in GDB's register array.  If REGNO is -1, do this
+/* Fill register REGNUM (if it is a floating-point register) in *FSAVE
+   with the value in GDB's register array.  If REGNUM is -1, do this
    for all registers.  This function doesn't touch any of the reserved
    bits in *FSAVE.  */
 
 void
-i387_fill_fsave (char *fsave, int regno)
+i387_fill_fsave (char *fsave, int regnum)
 {
   int i;
 
-  for (i = FP0_REGNUM; i <= LAST_FPU_CTRL_REGNUM; i++)
-    if (regno == -1 || regno == i)
+  for (i = FP0_REGNUM; i < XMM0_REGNUM; i++)
+    if (regnum == -1 || regnum == i)
       {
        /* Most of the FPU control registers occupy only 16 bits in
            the fsave area.  Give those a special treatment.  */
-       if (i >= FIRST_FPU_CTRL_REGNUM
-           && i != FCOFF_REGNUM && i != FDOFF_REGNUM)
+       if (i >= FPC_REGNUM
+           && i != FIOFF_REGNUM && i != FOOFF_REGNUM)
          {
            if (i == FOP_REGNUM)
              {
@@ -125,9 +137,9 @@ i387_fill_fsave (char *fsave, int regno)
 }
 \f
 
-/* At fxsave_offset[REGNO] you'll find the offset to the location in
+/* At fxsave_offset[REGNUM] you'll find the offset to the location in
    the data structure used by the "fxsave" instruction where GDB
-   register REGNO is stored.  */
+   register REGNUM is stored.  */
 
 static int fxsave_offset[] =
 {
@@ -142,10 +154,10 @@ static int fxsave_offset[] =
   0,                           /* FCTRL_REGNUM (16 bits).  */
   2,                           /* FSTAT_REGNUM (16 bits).  */
   4,                           /* FTAG_REGNUM (16 bits).  */
-  12,                          /* FCS_REGNUM (16 bits).  */
-  8,                           /* FCOFF_REGNUM.  */
-  20,                          /* FDS_REGNUM (16 bits).  */
-  16,                          /* FDOFF_REGNUM.  */
+  12,                          /* FISEG_REGNUM (16 bits).  */
+  8,                           /* FIOFF_REGNUM.  */
+  20,                          /* FOSEG_REGNUM (16 bits).  */
+  16,                          /* FOOFF_REGNUM.  */
   6,                           /* FOP_REGNUM (bottom 11 bits).  */
   160,                         /* XMM0_REGNUM through ...  */
   176,
@@ -177,8 +189,8 @@ i387_supply_fxsave (char *fxsave)
     {
       /* Most of the FPU control registers occupy only 16 bits in
         the fxsave area.  Give those a special treatment.  */
-      if (i >= FIRST_FPU_CTRL_REGNUM && i < XMM0_REGNUM
-         && i != FCOFF_REGNUM && i != FDOFF_REGNUM)
+      if (i >= FPC_REGNUM && i < XMM0_REGNUM
+         && i != FIOFF_REGNUM && i != FOOFF_REGNUM)
        {
          unsigned long val = *(unsigned short *) (FXSAVE_ADDR (fxsave, i));
 
@@ -199,17 +211,19 @@ i387_supply_fxsave (char *fxsave)
              int top;
 
              fstat = *(unsigned short *) (FXSAVE_ADDR (fxsave, FSTAT_REGNUM));
-             top = ((fstat >> 11) & 0x111);
+             top = ((fstat >> 11) & 0x7);
 
              for (fpreg = 7; fpreg >= 0; fpreg--)
                {
-                 int tag = 0x11;
+                 int tag;
 
                  if (val & (1 << fpreg))
                    {
                      int regnum = (fpreg + 8 - top) % 8 + FP0_REGNUM;
                      tag = i387_tag (FXSAVE_ADDR (fxsave, regnum));
                    }
+                 else
+                   tag = 3;            /* Empty */
 
                  ftag |= tag << (2 * fpreg);
                }
@@ -223,23 +237,23 @@ i387_supply_fxsave (char *fxsave)
     }
 }
 
-/* Fill register REGNO (if it is a floating-point or SSE register) in
-   *FXSAVE with the value in GDB's register array.  If REGNO is -1, do
+/* Fill register REGNUM (if it is a floating-point or SSE register) in
+   *FXSAVE with the value in GDB's register array.  If REGNUM is -1, do
    this for all registers.  This function doesn't touch any of the
    reserved bits in *FXSAVE.  */
 
 void
-i387_fill_fxsave (char *fxsave, int regno)
+i387_fill_fxsave (char *fxsave, int regnum)
 {
   int i;
 
   for (i = FP0_REGNUM; i <= MXCSR_REGNUM; i++)
-    if (regno == -1 || regno == i)
+    if (regnum == -1 || regnum == i)
       {
        /* Most of the FPU control registers occupy only 16 bits in
            the fxsave area.  Give those a special treatment.  */
-       if (i >= FIRST_FPU_CTRL_REGNUM && i < XMM0_REGNUM
-           && i != FCOFF_REGNUM && i != FDOFF_REGNUM)
+       if (i >= FPC_REGNUM && i < XMM0_REGNUM
+           && i != FIOFF_REGNUM && i != FDOFF_REGNUM)
          {
            if (i == FOP_REGNUM)
              {
@@ -256,7 +270,7 @@ i387_fill_fxsave (char *fxsave, int regno)
              {
                /* Converting back is much easier.  */
 
-               unsigned char val = 0;
+               unsigned short val = 0;
                unsigned short ftag;
                int fpreg;
 
@@ -264,9 +278,9 @@ i387_fill_fxsave (char *fxsave, int regno)
 
                for (fpreg = 7; fpreg >= 0; fpreg--)
                  {
-                   int tag = (ftag >> (fpreg * 2)) & 0x11;
+                   int tag = (ftag >> (fpreg * 2)) & 3;
 
-                   if (tag != 0x11)
+                   if (tag != 3)
                      val |= (1 << fpreg);
                  }
 
@@ -301,32 +315,32 @@ i387_tag (unsigned char *raw)
   if (exponent == 0x7fff)
     {
       /* Special.  */
-      return (0x10);
+      return (2);
     }
   else if (exponent == 0x0000)
     {
-      if (integer)
+      if (fraction[0] == 0x0000 && fraction[1] == 0x0000 && !integer)
        {
-         /* Valid.  */
-         return (0x00);
+         /* Zero.  */
+         return (1);
        }
       else
        {
          /* Special.  */
-         return (0x10);
+         return (2);
        }
     }
   else
     {
-      if (fraction[0] == 0x0000 && fraction[1] == 0x0000 && !integer)
+      if (integer)
        {
-         /* Zero.  */
-         return (0x01);
+         /* Valid.  */
+         return (0);
        }
       else
        {
          /* Special.  */
-         return (0x10);
+         return (2);
        }
     }
 }
This page took 0.028448 seconds and 4 git commands to generate.