aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@cygnus>1991-09-19 07:39:54 +0000
committerJohn Gilmore <gnu@cygnus>1991-09-19 07:39:54 +0000
commitd8b3b00eb2cac140cf57b4a0705c672957cddcc5 (patch)
tree7a9d20d1dc4d95271aefd81b1ecd5111443399a8 /gdb
parent35505d07d71494db2f53085436d550c181dfca6d (diff)
downloadgdb-d8b3b00eb2cac140cf57b4a0705c672957cddcc5.zip
gdb-d8b3b00eb2cac140cf57b4a0705c672957cddcc5.tar.gz
gdb-d8b3b00eb2cac140cf57b4a0705c672957cddcc5.tar.bz2
Output hex with local_hex_string for Modula-2 support.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/i387-tdep.c6
-rw-r--r--gdb/mips-tdep.c17
2 files changed, 16 insertions, 7 deletions
diff --git a/gdb/i387-tdep.c b/gdb/i387-tdep.c
index 4cdd719..24e8884 100644
--- a/gdb/i387-tdep.c
+++ b/gdb/i387-tdep.c
@@ -67,7 +67,7 @@ void
print_387_control_word (control)
unsigned short control;
{
- printf ("control %s: ", hex_to_string(control));
+ printf ("control %s: ", local_hex_string(control));
printf ("compute to ");
switch ((control >> 8) & 3)
{
@@ -97,14 +97,14 @@ unsigned short control;
}
printf ("\n");
if (control & 0xe080) printf ("warning: reserved bits on: %s\n",
- hex_to_string(control & 0xe080));
+ local_hex_string(control & 0xe080));
}
void
print_387_status_word (status)
unsigned short status;
{
- printf ("status %s: ", hex_to_string (status));
+ printf ("status %s: ", local_hex_string (status));
if (status & 0xff)
{
printf ("exceptions:");
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c
index 87a368c..f05a065 100644
--- a/gdb/mips-tdep.c
+++ b/gdb/mips-tdep.c
@@ -25,7 +25,11 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
/* FIXME: Can a MIPS porter/tester determine which of these include
files we still need? -- gnu@cygnus.com */
#include <stdio.h>
+#ifdef sgi
+#include <sys/inst.h>
+#else
#include <mips/inst.h>
+#endif
#include "defs.h"
#include "param.h"
#include "frame.h"
@@ -536,7 +540,8 @@ mips_pop_frame()
set_current_frame (create_new_frame (new_sp, read_pc ()));
}
-static mips_print_register(regnum, all)
+static
+mips_print_register(regnum, all)
int regnum, all;
{
unsigned char raw_buffer[8];
@@ -574,13 +579,13 @@ static mips_print_register(regnum, all)
if (val == 0)
printf_filtered ("0");
else if (all)
- printf_filtered ("0x%x", val);
+ printf_filtered (local_hex_format(), val);
else
- printf_filtered ("0x%x=%d", val, val);
+ printf_filtered ("%s=%d", local_hex_string(val), val);
}
}
-/* Replacement for generic do_registers_info. fpregs is currently ignored. */
+/* Replacement for generic do_registers_info. */
mips_do_registers_info (regnum, fpregs)
int regnum;
int fpregs;
@@ -591,6 +596,10 @@ mips_do_registers_info (regnum, fpregs)
}
else {
for (regnum = 0; regnum < NUM_REGS; ) {
+ if ((!fpregs) && regnum >= FP0_REGNUM && regnum <= FCRIR_REGNUM) {
+ regnum++;
+ continue;
+ }
mips_print_register (regnum, 1);
regnum++;
if ((regnum & 3) == 0 || regnum == NUM_REGS)