From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14013 invoked by alias); 14 Sep 2003 21:24:19 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 14003 invoked from network); 14 Sep 2003 21:24:16 -0000 Received: from unknown (HELO localhost.redhat.com) (65.49.0.121) by sources.redhat.com with SMTP; 14 Sep 2003 21:24:16 -0000 Received: from redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 551542B89 for ; Sun, 14 Sep 2003 17:23:56 -0400 (EDT) Message-ID: <3F64DC6C.2030209@redhat.com> Date: Sun, 14 Sep 2003 21:24:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.2) Gecko/20030820 X-Accept-Language: en-us, en MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Subject: [patch/rfc, rfa:doco] Delete REGISTER_BYTES Content-Type: multipart/mixed; boundary="------------080104050009000306050205" X-SW-Source: 2003-09/txt/msg00314.txt.bz2 This is a multi-part message in MIME format. --------------080104050009000306050205 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 85 The macro's now offically dead! Eli, doco ok? I'll follow up in a few days, Andrew --------------080104050009000306050205 Content-Type: text/plain; name="diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diffs" Content-length: 6466 Index: doc/ChangeLog 2003-09-14 Andrew Cagney * gdbint.texinfo (Target Architecture Definition): Delete documentation on REGISTER_NAMES. 2003-09-14 Andrew Cagney * sparc-tdep.c (legacy_register_name): Delete function. * mips-tdep.c (mips_dump_tdep): Do not print REGISTER_NAME. (mips_gdbarch_init): Refer to MIPS_REGISTER_NAME in comments. * infcmd.c (gdb_register_name): Delete variable. * gdbarch.sh (SDB_REG_TO_REGNUM): Delete reference to REGISTER_NAME and "tm.h". * gdbarch.h, gdbarch.c: Regenerate. * dpx2-nat.c (regmap): Refer to REGISTER_NAME and not REGISTER_NAMES in comments. * remote-st.c (get_reg_name), i386b-nat.c (tregmap): Ditto. * m68klinux-nat.c (regmap): Ditto. Index: dpx2-nat.c =================================================================== RCS file: /cvs/src/src/gdb/dpx2-nat.c,v retrieving revision 1.3 diff -u -r1.3 dpx2-nat.c --- dpx2-nat.c 6 Mar 2001 08:21:06 -0000 1.3 +++ dpx2-nat.c 14 Sep 2003 21:18:09 -0000 @@ -32,7 +32,7 @@ #include -/* this table must line up with REGISTER_NAMES in tm-68k.h */ +/* This table must line up with REGISTER_NAME in "m68k-tdep.c". */ /* symbols like 'A0' come from */ static int regmap[] = { Index: i386b-nat.c =================================================================== RCS file: /cvs/src/src/gdb/i386b-nat.c,v retrieving revision 1.7 diff -u -r1.7 i386b-nat.c --- i386b-nat.c 18 Aug 2002 17:37:17 -0000 1.7 +++ i386b-nat.c 14 Sep 2003 21:18:27 -0000 @@ -23,7 +23,7 @@ #include -/* this table must line up with REGISTER_NAMES in tm-i386.h */ +/* This table must line up with REGISTER_NAME in "i386-tdep.c". */ /* symbols like 'tEAX' come from */ static int tregmap[] = { Index: infcmd.c =================================================================== RCS file: /cvs/src/src/gdb/infcmd.c,v retrieving revision 1.88 diff -u -r1.88 infcmd.c --- infcmd.c 14 Sep 2003 16:32:13 -0000 1.88 +++ infcmd.c 14 Sep 2003 21:18:28 -0000 @@ -1476,9 +1476,6 @@ } -#ifdef REGISTER_NAMES -char *gdb_register_names[] = REGISTER_NAMES; -#endif /* Print out the machine register regnum. If regnum is -1, print all registers (print_all == 1) or all non-float and non-vector registers (print_all == 0). Index: m68klinux-nat.c =================================================================== RCS file: /cvs/src/src/gdb/m68klinux-nat.c,v retrieving revision 1.21 diff -u -r1.21 m68klinux-nat.c --- m68klinux-nat.c 14 Sep 2003 16:32:13 -0000 1.21 +++ m68klinux-nat.c 14 Sep 2003 21:18:28 -0000 @@ -54,7 +54,7 @@ #include "target.h" -/* This table must line up with REGISTER_NAMES in tm-m68k.h */ +/* This table must line up with REGISTER_NAME in "m68k-tdep.c". */ static const int regmap[] = { PT_D0, PT_D1, PT_D2, PT_D3, PT_D4, PT_D5, PT_D6, PT_D7, Index: mips-tdep.c =================================================================== RCS file: /cvs/src/src/gdb/mips-tdep.c,v retrieving revision 1.231 diff -u -r1.231 mips-tdep.c --- mips-tdep.c 14 Sep 2003 16:32:13 -0000 1.231 +++ mips-tdep.c 14 Sep 2003 21:19:10 -0000 @@ -6047,11 +6047,8 @@ /* MIPS version of register names. NOTE: At present the MIPS register name management is part way between the old - - #undef/#define REGISTER_NAMES and the new REGISTER_NAME(nr). + #undef/#define MIPS_REGISTER_NAMES and the new REGISTER_NAME(nr). Further work on it is required. */ - /* NOTE: many targets (esp. embedded) do not go thru the - gdbarch_register_name vector at all, instead bypassing it - by defining REGISTER_NAMES. */ set_gdbarch_register_name (gdbarch, mips_register_name); set_gdbarch_read_pc (gdbarch, mips_read_pc); set_gdbarch_write_pc (gdbarch, generic_target_write_pc); @@ -6402,8 +6399,6 @@ fprintf_unfiltered (file, "mips_dump_tdep: RA_REGNUM = %d\n", RA_REGNUM); - fprintf_unfiltered (file, - "mips_dump_tdep: REGISTER_NAMES = delete?\n"); fprintf_unfiltered (file, "mips_dump_tdep: ROUND_DOWN = function?\n"); fprintf_unfiltered (file, Index: remote-st.c =================================================================== RCS file: /cvs/src/src/gdb/remote-st.c,v retrieving revision 1.18 diff -u -r1.18 remote-st.c --- remote-st.c 12 Nov 2002 21:43:55 -0000 1.18 +++ remote-st.c 14 Sep 2003 21:19:58 -0000 @@ -385,9 +385,10 @@ return inferior_ptid; } -/* Return the name of register number REGNO in the form input and output by - STDEBUG. Currently, REGISTER_NAMES just happens to contain exactly what - STDEBUG wants. Lets take advantage of that just as long as possible! */ +/* Return the name of register number REGNO in the form input and + output by STDEBUG. Currently, REGISTER_NAME just happens return + exactly what STDEBUG wants. Lets take advantage of that just as + long as possible! */ static char * get_reg_name (int regno) Index: sparc-tdep.c =================================================================== RCS file: /cvs/src/src/gdb/sparc-tdep.c,v retrieving revision 1.125 diff -u -r1.125 sparc-tdep.c --- sparc-tdep.c 14 Sep 2003 16:32:14 -0000 1.125 +++ sparc-tdep.c 14 Sep 2003 21:20:17 -0000 @@ -2815,24 +2815,6 @@ paddr_nz (get_frame_extra_info (fi)->fp_addr)); } -/* MULTI_ARCH support */ - -const char * -legacy_register_name (int i) -{ -#ifdef REGISTER_NAMES - static char *names[] = REGISTER_NAMES; - if (i < 0 || i >= (sizeof (names) / sizeof (*names))) - return NULL; - else - return names[i]; -#else - internal_error (__FILE__, __LINE__, - "legacy_register_name: called."); - return NULL; -#endif -} - static const char * sparc32_register_name (int regno) { Index: doc/gdbint.texinfo =================================================================== RCS file: /cvs/src/src/gdb/doc/gdbint.texinfo,v retrieving revision 1.161 diff -u -r1.161 gdbint.texinfo --- doc/gdbint.texinfo 13 Sep 2003 14:12:41 -0000 1.161 +++ doc/gdbint.texinfo 14 Sep 2003 21:21:23 -0000 @@ -3756,10 +3756,6 @@ Return the name of register @var{i} as a string. May return @code{NULL} or @code{NUL} to indicate that register @var{i} is not valid. -@item REGISTER_NAMES -@findex REGISTER_NAMES -Deprecated in favor of @code{REGISTER_NAME}. - @item DEPRECATED_REG_STRUCT_HAS_ADDR (@var{gcc_p}, @var{type}) @findex DEPRECATED_REG_STRUCT_HAS_ADDR Define this to return 1 if the given type will be passed by pointer --------------080104050009000306050205--