2002-11-02 16:13:34 +01:00
|
|
|
/* Register groupings for GDB, the GNU debugger.
|
|
|
|
|
2005-12-17 23:34:03 +01:00
|
|
|
Copyright (C) 2002, 2003 Free Software Foundation, Inc.
|
2002-11-02 16:13:34 +01:00
|
|
|
|
|
|
|
Contributed by Red Hat.
|
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2005-12-17 23:34:03 +01:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
Boston, MA 02110-1301, USA. */
|
2002-11-02 16:13:34 +01:00
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
#include "reggroups.h"
|
|
|
|
#include "gdbtypes.h"
|
|
|
|
#include "gdb_assert.h"
|
|
|
|
#include "regcache.h"
|
|
|
|
#include "command.h"
|
|
|
|
#include "gdbcmd.h" /* For maintenanceprintlist. */
|
|
|
|
|
|
|
|
/* Individual register groups. */
|
|
|
|
|
|
|
|
struct reggroup
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
enum reggroup_type type;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct reggroup *
|
|
|
|
reggroup_new (const char *name, enum reggroup_type type)
|
|
|
|
{
|
|
|
|
struct reggroup *group = XMALLOC (struct reggroup);
|
|
|
|
group->name = name;
|
|
|
|
group->type = type;
|
|
|
|
return group;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Register group attributes. */
|
|
|
|
|
|
|
|
const char *
|
|
|
|
reggroup_name (struct reggroup *group)
|
|
|
|
{
|
|
|
|
return group->name;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum reggroup_type
|
|
|
|
reggroup_type (struct reggroup *group)
|
|
|
|
{
|
|
|
|
return group->type;
|
|
|
|
}
|
|
|
|
|
2003-08-04 22:34:10 +02:00
|
|
|
/* A linked list of groups for the given architecture. */
|
|
|
|
|
|
|
|
struct reggroup_el
|
|
|
|
{
|
|
|
|
struct reggroup *group;
|
|
|
|
struct reggroup_el *next;
|
|
|
|
};
|
2002-11-02 16:13:34 +01:00
|
|
|
|
|
|
|
struct reggroups
|
|
|
|
{
|
2003-08-04 22:34:10 +02:00
|
|
|
struct reggroup_el *first;
|
|
|
|
struct reggroup_el **last;
|
2002-11-02 16:13:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct gdbarch_data *reggroups_data;
|
|
|
|
|
|
|
|
static void *
|
|
|
|
reggroups_init (struct gdbarch *gdbarch)
|
|
|
|
{
|
2003-08-04 22:34:10 +02:00
|
|
|
struct reggroups *groups = GDBARCH_OBSTACK_ZALLOC (gdbarch,
|
|
|
|
struct reggroups);
|
|
|
|
groups->last = &groups->first;
|
2002-11-02 16:13:34 +01:00
|
|
|
return groups;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add a register group (with attribute values) to the pre-defined
|
2003-08-04 22:34:10 +02:00
|
|
|
list. */
|
2002-11-02 16:13:34 +01:00
|
|
|
|
|
|
|
static void
|
2003-08-04 22:34:10 +02:00
|
|
|
add_group (struct reggroups *groups, struct reggroup *group,
|
|
|
|
struct reggroup_el *el)
|
2002-11-02 16:13:34 +01:00
|
|
|
{
|
|
|
|
gdb_assert (group != NULL);
|
2003-08-04 22:34:10 +02:00
|
|
|
el->group = group;
|
|
|
|
el->next = NULL;
|
|
|
|
(*groups->last) = el;
|
|
|
|
groups->last = &el->next;
|
2002-11-02 16:13:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
reggroup_add (struct gdbarch *gdbarch, struct reggroup *group)
|
|
|
|
{
|
|
|
|
struct reggroups *groups = gdbarch_data (gdbarch, reggroups_data);
|
2003-08-22 11:49:01 +02:00
|
|
|
|
2002-11-02 16:13:34 +01:00
|
|
|
if (groups == NULL)
|
|
|
|
{
|
|
|
|
/* ULGH, called during architecture initialization. Patch
|
|
|
|
things up. */
|
|
|
|
groups = reggroups_init (gdbarch);
|
2004-03-15 21:38:08 +01:00
|
|
|
deprecated_set_gdbarch_data (gdbarch, reggroups_data, groups);
|
2002-11-02 16:13:34 +01:00
|
|
|
}
|
2003-08-04 22:34:10 +02:00
|
|
|
add_group (groups, group,
|
|
|
|
GDBARCH_OBSTACK_ZALLOC (gdbarch, struct reggroup_el));
|
2002-11-02 16:13:34 +01:00
|
|
|
}
|
|
|
|
|
2003-08-04 22:34:10 +02:00
|
|
|
/* The default register groups for an architecture. */
|
|
|
|
|
|
|
|
static struct reggroups default_groups = { NULL, &default_groups.first };
|
2002-11-02 16:13:34 +01:00
|
|
|
|
2003-08-04 22:34:10 +02:00
|
|
|
/* A register group iterator. */
|
2002-11-02 16:13:34 +01:00
|
|
|
|
2003-08-04 22:34:10 +02:00
|
|
|
struct reggroup *
|
|
|
|
reggroup_next (struct gdbarch *gdbarch, struct reggroup *last)
|
2002-11-02 16:13:34 +01:00
|
|
|
{
|
2003-08-04 22:34:10 +02:00
|
|
|
struct reggroups *groups;
|
|
|
|
struct reggroup_el *el;
|
2003-08-22 11:49:01 +02:00
|
|
|
|
2002-11-02 16:13:34 +01:00
|
|
|
/* Don't allow this function to be called during architecture
|
2003-08-04 22:34:10 +02:00
|
|
|
creation. If there are no groups, use the default groups list. */
|
|
|
|
groups = gdbarch_data (gdbarch, reggroups_data);
|
2002-11-02 16:13:34 +01:00
|
|
|
gdb_assert (groups != NULL);
|
2003-08-04 22:34:10 +02:00
|
|
|
if (groups->first == NULL)
|
|
|
|
groups = &default_groups;
|
|
|
|
|
2003-08-05 20:08:59 +02:00
|
|
|
/* Return the first/next reggroup. */
|
2003-08-04 22:34:10 +02:00
|
|
|
if (last == NULL)
|
|
|
|
return groups->first->group;
|
|
|
|
for (el = groups->first; el != NULL; el = el->next)
|
|
|
|
{
|
|
|
|
if (el->group == last)
|
2003-08-05 20:08:59 +02:00
|
|
|
{
|
|
|
|
if (el->next != NULL)
|
|
|
|
return el->next->group;
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
2003-08-04 22:34:10 +02:00
|
|
|
}
|
|
|
|
return NULL;
|
2002-11-02 16:13:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Is REGNUM a member of REGGROUP? */
|
|
|
|
int
|
|
|
|
default_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
|
|
|
|
struct reggroup *group)
|
|
|
|
{
|
|
|
|
int vector_p;
|
|
|
|
int float_p;
|
|
|
|
int raw_p;
|
2003-08-22 11:49:01 +02:00
|
|
|
|
2002-11-02 16:13:34 +01:00
|
|
|
if (REGISTER_NAME (regnum) == NULL
|
|
|
|
|| *REGISTER_NAME (regnum) == '\0')
|
|
|
|
return 0;
|
|
|
|
if (group == all_reggroup)
|
|
|
|
return 1;
|
|
|
|
vector_p = TYPE_VECTOR (register_type (gdbarch, regnum));
|
|
|
|
float_p = TYPE_CODE (register_type (gdbarch, regnum)) == TYPE_CODE_FLT;
|
2003-04-14 00:34:27 +02:00
|
|
|
/* FIXME: cagney/2003-04-13: Can't yet use gdbarch_num_regs
|
|
|
|
(gdbarch), as not all architectures are multi-arch. */
|
|
|
|
raw_p = regnum < NUM_REGS;
|
2002-11-02 16:13:34 +01:00
|
|
|
if (group == float_reggroup)
|
|
|
|
return float_p;
|
|
|
|
if (group == vector_reggroup)
|
|
|
|
return vector_p;
|
|
|
|
if (group == general_reggroup)
|
|
|
|
return (!vector_p && !float_p);
|
|
|
|
if (group == save_reggroup || group == restore_reggroup)
|
|
|
|
return raw_p;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Dump out a table of register groups for the current architecture. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
reggroups_dump (struct gdbarch *gdbarch, struct ui_file *file)
|
|
|
|
{
|
2003-08-04 22:34:10 +02:00
|
|
|
struct reggroup *group = NULL;
|
2003-08-22 11:49:01 +02:00
|
|
|
|
2002-11-02 16:13:34 +01:00
|
|
|
do
|
|
|
|
{
|
|
|
|
/* Group name. */
|
|
|
|
{
|
|
|
|
const char *name;
|
2003-08-04 22:34:10 +02:00
|
|
|
if (group == NULL)
|
2002-11-02 16:13:34 +01:00
|
|
|
name = "Group";
|
|
|
|
else
|
2003-08-04 22:34:10 +02:00
|
|
|
name = reggroup_name (group);
|
2002-11-02 16:13:34 +01:00
|
|
|
fprintf_unfiltered (file, " %-10s", name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Group type. */
|
|
|
|
{
|
|
|
|
const char *type;
|
2003-08-04 22:34:10 +02:00
|
|
|
if (group == NULL)
|
2002-11-02 16:13:34 +01:00
|
|
|
type = "Type";
|
|
|
|
else
|
|
|
|
{
|
2003-08-04 22:34:10 +02:00
|
|
|
switch (reggroup_type (group))
|
2002-11-02 16:13:34 +01:00
|
|
|
{
|
|
|
|
case USER_REGGROUP:
|
|
|
|
type = "user";
|
|
|
|
break;
|
|
|
|
case INTERNAL_REGGROUP:
|
|
|
|
type = "internal";
|
|
|
|
break;
|
|
|
|
default:
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
internal_error (__FILE__, __LINE__, _("bad switch"));
|
2002-11-02 16:13:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
fprintf_unfiltered (file, " %-10s", type);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Note: If you change this, be sure to also update the
|
|
|
|
documentation. */
|
|
|
|
|
|
|
|
fprintf_unfiltered (file, "\n");
|
2003-08-04 22:34:10 +02:00
|
|
|
|
|
|
|
group = reggroup_next (gdbarch, group);
|
2002-11-02 16:13:34 +01:00
|
|
|
}
|
2003-08-04 22:34:10 +02:00
|
|
|
while (group != NULL);
|
2002-11-02 16:13:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
maintenance_print_reggroups (char *args, int from_tty)
|
|
|
|
{
|
|
|
|
if (args == NULL)
|
|
|
|
reggroups_dump (current_gdbarch, gdb_stdout);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
struct ui_file *file = gdb_fopen (args, "w");
|
|
|
|
if (file == NULL)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
perror_with_name (_("maintenance print reggroups"));
|
2002-11-02 16:13:34 +01:00
|
|
|
reggroups_dump (current_gdbarch, file);
|
|
|
|
ui_file_delete (file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Pre-defined register groups. */
|
|
|
|
static struct reggroup general_group = { "general", USER_REGGROUP };
|
|
|
|
static struct reggroup float_group = { "float", USER_REGGROUP };
|
|
|
|
static struct reggroup system_group = { "system", USER_REGGROUP };
|
|
|
|
static struct reggroup vector_group = { "vector", USER_REGGROUP };
|
|
|
|
static struct reggroup all_group = { "all", USER_REGGROUP };
|
|
|
|
static struct reggroup save_group = { "save", INTERNAL_REGGROUP };
|
|
|
|
static struct reggroup restore_group = { "restore", INTERNAL_REGGROUP };
|
|
|
|
|
|
|
|
struct reggroup *const general_reggroup = &general_group;
|
|
|
|
struct reggroup *const float_reggroup = &float_group;
|
|
|
|
struct reggroup *const system_reggroup = &system_group;
|
|
|
|
struct reggroup *const vector_reggroup = &vector_group;
|
|
|
|
struct reggroup *const all_reggroup = &all_group;
|
|
|
|
struct reggroup *const save_reggroup = &save_group;
|
|
|
|
struct reggroup *const restore_reggroup = &restore_group;
|
|
|
|
|
2003-06-08 Andrew Cagney <cagney@redhat.com>
* acinclude.m4 (gcc_AC_CHECK_DECL, (gcc_AC_CHECK_DECL): Stolen
from GCC's acinclude.m4.
* configure.in: Check for getopt's delcaration.
* aclocal.m4, config.in, configure: Re-generate.
* main.c (error_init): Delete declaration.
* defs.h (error_init): Declare.
* rs6000-tdep.c (rs6000_fetch_pointer_argument): Make static.
(rs6000_convert_from_func_ptr_addr): Make static.
(_initialize_rs6000_tdep): Add declaration.
* cli/cli-cmds.c (dont_repeat): Delete declaration.
(show_commands, set_verbose, show_history): Delete declaration.
* top.h (set_verbose): Add declaration.
(show_history, set_history, show_commands): Add declaration.
(do_restore_instream_cleanup): Add declaration.
* objc-lang.c (specialcmp): Make static.
(print_object_command): Make static.
(find_objc_msgsend): Make static.
(find_objc_msgcall_submethod_helper): Make static.
(find_objc_msgcall_submethod): Make static.
(_initialize_objc_language): Add declaration.
(find_implementation_from_class): Make static.
(find_implementation): Make static.
* objc-exp.y (yylex): Delete lookup_struct_typedef declaration.
* objc-lang.h (lookup_struct_typedef): Add declaration.
* cli/cli-interp.c (_initialize_cli_interp): Add declaration.
* cli/cli-script.c (clear_hook_in_cleanup): Make static.
(do_restore_user_call_depth): Make static.
(do_restore_instream_cleanup): Delete declaration.
(dont_repeat): Delete declaration.
* cli/cli-decode.c (add_abbrev_cmd): Delete function.
* cli/cli-dump.c (_initialize_cli_dump): Add declaration.
* reggroups.c (_initialize_reggroup): Add declaration.
* cp-support.c (_initialize_cp_support): Add declaration.
* cp-abi.c (_initialize_cp_abi): Add declaration.
* hpacc-abi.c (_initialize_hpacc_abi): Add declaration.
* gnu-v3-abi.c (gnuv3_baseclass_offset): Make static.
(_initialize_gnu_v3_abi): Add declaration.
* gnu-v2-abi.c (gnuv2_value_rtti_type): Make static.
(_initialize_gnu_v2_abi): Add declaration.
* frame-base.c (_initialize_frame_base): Add declaration.
* doublest.c (floatformat_from_length): Make static.
* frame-unwind.c (_initialize_frame_unwind): Add declaration.
* frame.c (create_sentinel_frame): Make static.
(_initialize_frame): Add declaration.
* top.c (do_catch_errors): Make static.
(gdb_rl_operate_and_get_next_completion): Make static.
* typeprint.c: Include "typeprint.h".
* sentinel-frame.c (sentinel_frame_prev_register): Make static.
(sentinel_frame_this_id): Make static.
* p-valprint.c (_initialize_pascal_valprint): Add declaration.
* ui-out.c (make_cleanup_ui_out_begin_end): Delete function.
* dwarf2-frame.c (dwarf2_frame_cache): Make static.
* p-exp.y (push_current_type, pop_current_type): ISO C declaration.
* dwarf2expr.h (dwarf_expr_context): ISO C declaration.
* maint.c (maintenance_print_architecture): Make static.
* signals/signals.c (_initialize_signals): Add declaration.
* std-regs.c (_initialize_frame_reg): Add declaration.
* jv-exp.y (push_variable): ISO C definition.
(push_qualified_expression_name): Ditto.
* memattr.c (_initialize_mem): Add declaration.
* remote.c (remote_check_watch_resources): Make static.
(remote_stopped_by_watchpoint): Make static.
(remote_stopped_data_address): Make static.
* d10v-tdep.c (nr_dmap_regs): Make static.
(a0_regnum): Make static.
(d10v_frame_unwind_cache): Make static.
(d10v_frame_p): Make static.
* osabi.c (show_osabi): Make static.
(_initialize_gdb_osabi): Add extern declaration.
* gdbtypes.c (make_qualified_type): Make static.
(safe_parse_type): Make static.
* macrocmd.c (_initialize_macrocmd): Add extern declaration.
* macrotab.c (macro_bcache_free): Make static.
* interps.c (interp_set_quiet): Make static.
(interpreter_exec_cmd): Make static.
* stack.h (select_frame_command): New file.
* stack.c: Include "stack.h".
(select_frame_command_wrapper): Delete function.
(select_frame_command): Make global.
* infcall.c: Include "infcall.h".
* linespec.c: Include "linespec.h".
* symfile.c (sections_overlap): Make static.
* cp-support.h (cp_initialize_namespace): ISO C declaration.
* charset.c (_initialize_charset): Add missing prototype.
* regcache.c (init_legacy_regcache_descr): Make static.
(do_regcache_xfree): Make static.
(regcache_xfer_part): Make static.
(_initialize_regcache): Add missing prototype.
* breakpoint.c (parse_breakpoint_sals): Make static.
(breakpoint_sals_to_pc): Make static.
* interps.h (clear_interpreter_hooks): ISO C declaration.
* Makefile.in (stack_h): Define.
(stack.o, typeprint.o, mi-main.o): Update dependencies.
(mi-cmd-stack.o, infcall.o, linespec.o): Update dependencies.
Index: mi/ChangeLog
2003-06-08 Andrew Cagney <cagney@redhat.com>
* mi-parse.c (_initialize_mi_parse): Delete function.
* mi-main.c: Include "mi-main.h".
* mi-interp.c (_initialize_mi_interp): Add declaration.
* mi-cmd-stack.c: Include "stack.h".
(select_frame_command_wrapper): Delete extern declaration.
(mi_cmd_stack_select_frame): Replace select_frame_command_wrapper
with select_frame_command.
2003-06-08 20:27:14 +02:00
|
|
|
extern initialize_file_ftype _initialize_reggroup; /* -Wmissing-prototypes */
|
|
|
|
|
2002-11-02 16:13:34 +01:00
|
|
|
void
|
|
|
|
_initialize_reggroup (void)
|
|
|
|
{
|
2004-03-15 21:38:08 +01:00
|
|
|
reggroups_data = gdbarch_data_register_post_init (reggroups_init);
|
2002-11-02 16:13:34 +01:00
|
|
|
|
|
|
|
/* The pre-defined list of groups. */
|
2003-08-04 22:34:10 +02:00
|
|
|
add_group (&default_groups, general_reggroup, XMALLOC (struct reggroup_el));
|
|
|
|
add_group (&default_groups, float_reggroup, XMALLOC (struct reggroup_el));
|
|
|
|
add_group (&default_groups, system_reggroup, XMALLOC (struct reggroup_el));
|
|
|
|
add_group (&default_groups, vector_reggroup, XMALLOC (struct reggroup_el));
|
|
|
|
add_group (&default_groups, all_reggroup, XMALLOC (struct reggroup_el));
|
|
|
|
add_group (&default_groups, save_reggroup, XMALLOC (struct reggroup_el));
|
|
|
|
add_group (&default_groups, restore_reggroup, XMALLOC (struct reggroup_el));
|
2002-11-02 16:13:34 +01:00
|
|
|
|
|
|
|
add_cmd ("reggroups", class_maintenance,
|
2005-02-14 Andrew Cagney <cagney@gnu.org>
Mark up add_cmd.
* arch-utils.c, avr-tdep.c, breakpoint.c, corefile.c: Update.
* cp-abi.c, cp-namespace.c, cp-support.c, dummy-frame.c: Update.
* exec.c, gnu-nat.c, go32-nat.c, hppa-tdep.c, infcmd.c: Update.
* infrun.c, interps.c, macrocmd.c, maint.c, memattr.c: Update.
* mips-tdep.c, ocd.c, osabi.c, printcmd.c, regcache.c: Update.
* reggroups.c, remote-fileio.c, remote-rdi.c, remote.c: Update.
* sol-thread.c, source.c, stack.c, symfile-mem.c: Update.
* symfile.c, thread.c, tracepoint.c, valprint.c, value.c: Update.
* win32-nat.c, cli/cli-cmds.c, cli/cli-dump.c: Update.
* cli/cli-logging.c, tui/tui-regs.c: Update.
2005-02-14 19:10:11 +01:00
|
|
|
maintenance_print_reggroups, _("\
|
2002-11-02 16:13:34 +01:00
|
|
|
Print the internal register group names.\n\
|
2005-02-14 Andrew Cagney <cagney@gnu.org>
Mark up add_cmd.
* arch-utils.c, avr-tdep.c, breakpoint.c, corefile.c: Update.
* cp-abi.c, cp-namespace.c, cp-support.c, dummy-frame.c: Update.
* exec.c, gnu-nat.c, go32-nat.c, hppa-tdep.c, infcmd.c: Update.
* infrun.c, interps.c, macrocmd.c, maint.c, memattr.c: Update.
* mips-tdep.c, ocd.c, osabi.c, printcmd.c, regcache.c: Update.
* reggroups.c, remote-fileio.c, remote-rdi.c, remote.c: Update.
* sol-thread.c, source.c, stack.c, symfile-mem.c: Update.
* symfile.c, thread.c, tracepoint.c, valprint.c, value.c: Update.
* win32-nat.c, cli/cli-cmds.c, cli/cli-dump.c: Update.
* cli/cli-logging.c, tui/tui-regs.c: Update.
2005-02-14 19:10:11 +01:00
|
|
|
Takes an optional file parameter."),
|
2002-11-02 16:13:34 +01:00
|
|
|
&maintenanceprintlist);
|
|
|
|
|
|
|
|
}
|