diff options
author | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2002-08-19 17:57:59 +0000 |
---|---|---|
committer | Elena Zannoni <ezannoni@kwikemart.cygnus.com> | 2002-08-19 17:57:59 +0000 |
commit | 21283bebca94b284a78853af888f11f7861e6928 (patch) | |
tree | 27b82d57edcd6a1babc84998669208d708808cd8 /gdb | |
parent | bf0729999558578f7f7e011b47c93a325b91ebf8 (diff) | |
download | gdb-21283bebca94b284a78853af888f11f7861e6928.zip gdb-21283bebca94b284a78853af888f11f7861e6928.tar.gz gdb-21283bebca94b284a78853af888f11f7861e6928.tar.bz2 |
2002-08-19 Elena Zannoni <ezannoni@redhat.com>
* rs6000-tdep.c (TDEP): Delete macro.
(branch_dest): Replace use of TDEP macro with its body.
(rs6000_pop_frame): Ditto.
(rs6000_push_arguments): Ditto.
(rs6000_skip_trampoline_code): Ditto.
(rs6000_frame_saved_pc): Ditto.
(rs6000_frame_chain): Ditto.
(rs6000_register_name): Ditto.
(rs6000_register_byte): Ditto.
(rs6000_register_raw_size): Ditto.
(rs6000_register_virtual_type): Ditto.
(rs6000_register_convertible): Ditto.
(rs6000_convert_from_func_ptr_addr): Ditto.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 16 | ||||
-rw-r--r-- | gdb/rs6000-tdep.c | 28 |
2 files changed, 28 insertions, 16 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f851593..087a71c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,19 @@ +2002-08-19 Elena Zannoni <ezannoni@redhat.com> + + * rs6000-tdep.c (TDEP): Delete macro. + (branch_dest): Replace use of TDEP macro with its body. + (rs6000_pop_frame): Ditto. + (rs6000_push_arguments): Ditto. + (rs6000_skip_trampoline_code): Ditto. + (rs6000_frame_saved_pc): Ditto. + (rs6000_frame_chain): Ditto. + (rs6000_register_name): Ditto. + (rs6000_register_byte): Ditto. + (rs6000_register_raw_size): Ditto. + (rs6000_register_virtual_type): Ditto. + (rs6000_register_convertible): Ditto. + (rs6000_convert_from_func_ptr_addr): Ditto. + 2002-08-19 Daniel Jacobowitz <drow@mvista.com> * config/mips/tm-linux.h (REALTIME_LO, REALTIME_HI): Define diff --git a/gdb/rs6000-tdep.c b/gdb/rs6000-tdep.c index 58b1af7..ca8b257 100644 --- a/gdb/rs6000-tdep.c +++ b/gdb/rs6000-tdep.c @@ -88,10 +88,6 @@ struct reg unsigned char fpr; /* whether register is floating-point */ }; -/* Return the current architecture's gdbarch_tdep structure. */ - -#define TDEP gdbarch_tdep (current_gdbarch) - /* Breakpoint shadows for the single step instructions will be kept here. */ static struct sstep_breaks @@ -252,7 +248,7 @@ branch_dest (int opcode, int instr, CORE_ADDR pc, CORE_ADDR safety) fi = get_current_frame (); if (fi != NULL) dest = read_memory_addr (fi->frame + SIG_FRAME_PC_OFFSET, - TDEP->wordsize); + gdbarch_tdep (current_gdbarch)->wordsize); } } @@ -857,7 +853,7 @@ rs6000_pop_frame (void) addr = get_pc_function_start (frame->pc); (void) skip_prologue (addr, frame->pc, &fdata); - wordsize = TDEP->wordsize; + wordsize = gdbarch_tdep (current_gdbarch)->wordsize; if (fdata.frameless) prev_sp = sp; else @@ -942,7 +938,7 @@ rs6000_push_arguments (int nargs, struct value **args, CORE_ADDR sp, int argbytes; /* current argument byte */ char tmp_buffer[50]; int f_argno = 0; /* current floating point argno */ - int wordsize = TDEP->wordsize; + int wordsize = gdbarch_tdep (current_gdbarch)->wordsize; struct value *arg = 0; struct type *type; @@ -1284,7 +1280,7 @@ rs6000_skip_trampoline_code (CORE_ADDR pc) return 0; } ii = read_register (11); /* r11 holds destination addr */ - pc = read_memory_addr (ii, TDEP->wordsize); /* (r11) value */ + pc = read_memory_addr (ii, gdbarch_tdep (current_gdbarch)->wordsize); /* (r11) value */ return pc; } @@ -1329,7 +1325,7 @@ rs6000_frame_saved_pc (struct frame_info *fi) { CORE_ADDR func_start; struct rs6000_framedata fdata; - struct gdbarch_tdep *tdep = TDEP; + struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch); int wordsize = tdep->wordsize; if (fi->signal_handler_caller) @@ -1533,7 +1529,7 @@ CORE_ADDR rs6000_frame_chain (struct frame_info *thisframe) { CORE_ADDR fp, fpp, lr; - int wordsize = TDEP->wordsize; + int wordsize = gdbarch_tdep (current_gdbarch)->wordsize; if (PC_IN_CALL_DUMMY (thisframe->pc, thisframe->frame, thisframe->frame)) return thisframe->frame; /* dummy frame same as caller's frame */ @@ -1578,7 +1574,7 @@ regsize (const struct reg *reg, int wordsize) static const char * rs6000_register_name (int n) { - struct gdbarch_tdep *tdep = TDEP; + struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch); const struct reg *reg = tdep->regs + n; if (!regsize (reg, tdep->wordsize)) @@ -1592,7 +1588,7 @@ rs6000_register_name (int n) static int rs6000_register_byte (int n) { - return TDEP->regoff[n]; + return gdbarch_tdep (current_gdbarch)->regoff[n]; } /* Return the number of bytes of storage in the actual machine representation @@ -1601,7 +1597,7 @@ rs6000_register_byte (int n) static int rs6000_register_raw_size (int n) { - struct gdbarch_tdep *tdep = TDEP; + struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch); const struct reg *reg = tdep->regs + n; return regsize (reg, tdep->wordsize); } @@ -1612,7 +1608,7 @@ rs6000_register_raw_size (int n) static struct type * rs6000_register_virtual_type (int n) { - struct gdbarch_tdep *tdep = TDEP; + struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch); const struct reg *reg = tdep->regs + n; if (reg->fpr) @@ -1655,7 +1651,7 @@ rs6000_coerce_float_to_double (struct type *formal, struct type *actual) static int rs6000_register_convertible (int n) { - const struct reg *reg = TDEP->regs + n; + const struct reg *reg = gdbarch_tdep (current_gdbarch)->regs + n; return reg->fpr; } @@ -1998,7 +1994,7 @@ rs6000_convert_from_func_ptr_addr (CORE_ADDR addr) return addr; /* ADDR is in the data space, so it's a special function pointer. */ - return read_memory_addr (addr, TDEP->wordsize); + return read_memory_addr (addr, gdbarch_tdep (current_gdbarch)->wordsize); } |