* mips-tdep.c (mips_print_register): Use get_frame_register_value
	and val_print_scalar_formatted.
This commit is contained in:
Pedro Alves 2011-01-28 15:42:01 +00:00
parent 1c79eb8a7d
commit de15c4ab2d
2 changed files with 13 additions and 12 deletions

View File

@ -1,3 +1,8 @@
2011-01-28 Pedro Alves <pedro@codesourcery.com>
* mips-tdep.c (mips_print_register): Use get_frame_register_value
and val_print_scalar_formatted.
2011-01-27 Pedro Alves <pedro@codesourcery.com>
* tracepoint.c (tfile_read): New.

View File

@ -4683,9 +4683,9 @@ mips_print_register (struct ui_file *file, struct frame_info *frame,
int regnum)
{
struct gdbarch *gdbarch = get_frame_arch (frame);
gdb_byte raw_buffer[MAX_REGISTER_SIZE];
int offset;
struct value_print_options opts;
struct value *val;
if (TYPE_CODE (register_type (gdbarch, regnum)) == TYPE_CODE_FLT)
{
@ -4693,8 +4693,8 @@ mips_print_register (struct ui_file *file, struct frame_info *frame,
return;
}
/* Get the data in raw format. */
if (!frame_register_read (frame, regnum, raw_buffer))
val = get_frame_register_value (frame, regnum);
if (value_optimized_out (val))
{
fprintf_filtered (file, "%s: [Invalid]",
gdbarch_register_name (gdbarch, regnum));
@ -4712,16 +4712,12 @@ mips_print_register (struct ui_file *file, struct frame_info *frame,
else
fprintf_filtered (file, ": ");
if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
offset =
register_size (gdbarch, regnum) - register_size (gdbarch, regnum);
else
offset = 0;
get_formatted_print_options (&opts, 'x');
print_scalar_formatted (raw_buffer + offset,
register_type (gdbarch, regnum), &opts, 0,
file);
val_print_scalar_formatted (value_type (val),
value_contents_for_printing (val),
value_embedded_offset (val),
val,
&opts, 0, file);
}
/* Replacement for generic do_registers_info.