1999-04-16 03:35:26 +02:00
|
|
|
/* Basic C++ demangling support for GDB.
|
2003-01-13 Andrew Cagney <ac131313@redhat.com>
* ax-gdb.c, c-valprint.c, charset.c, corefile.c: Update copyright.
* demangle.c, disasm.c, dwarf2cfi.c, dwarfread.c: Update copyright.
* elfread.c, eval.c, expprint.c, expression.h: Update copyright.
* f-typeprint.c, findvar.c, gcore.c, gdb_mbuild.sh: Update copyright.
* gdbtypes.h, gnu-v2-abi.c, inferior.h, inftarg.c: Update copyright.
* language.c, language.h, m32r-tdep.c: Update copyright.
* mn10200-tdep.c, scm-lang.c, scm-lang.h: Update copyright.
* somsolib.c, somsolib.h, symfile.c, symtab.h: Update copyright.
* thread-db.c, typeprint.c, utils.c, valarith.c: Update copyright.
* values.c, win32-nat.c, x86-64-linux-nat.c: Update copyright.
* x86-64-linux-tdep.c, z8k-tdep.c: Update copyright.
* cli/cli-decode.h, config/h8500/tm-h8500.h: Update copyright.
Index: mi/ChangeLog
2003-01-13 Andrew Cagney <ac131313@redhat.com>
* mi-cmd-env.c: Update copyright.
2003-01-14 01:49:06 +01:00
|
|
|
|
2007-01-09 18:59:20 +01:00
|
|
|
Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
2009-01-03 06:58:08 +01:00
|
|
|
2003, 2007, 2008, 2009 Free Software Foundation, Inc.
|
2003-01-13 Andrew Cagney <ac131313@redhat.com>
* ax-gdb.c, c-valprint.c, charset.c, corefile.c: Update copyright.
* demangle.c, disasm.c, dwarf2cfi.c, dwarfread.c: Update copyright.
* elfread.c, eval.c, expprint.c, expression.h: Update copyright.
* f-typeprint.c, findvar.c, gcore.c, gdb_mbuild.sh: Update copyright.
* gdbtypes.h, gnu-v2-abi.c, inferior.h, inftarg.c: Update copyright.
* language.c, language.h, m32r-tdep.c: Update copyright.
* mn10200-tdep.c, scm-lang.c, scm-lang.h: Update copyright.
* somsolib.c, somsolib.h, symfile.c, symtab.h: Update copyright.
* thread-db.c, typeprint.c, utils.c, valarith.c: Update copyright.
* values.c, win32-nat.c, x86-64-linux-nat.c: Update copyright.
* x86-64-linux-tdep.c, z8k-tdep.c: Update copyright.
* cli/cli-decode.h, config/h8500/tm-h8500.h: Update copyright.
Index: mi/ChangeLog
2003-01-13 Andrew Cagney <ac131313@redhat.com>
* mi-cmd-env.c: Update copyright.
2003-01-14 01:49:06 +01:00
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
Written by Fred Fish at Cygnus Support.
|
|
|
|
|
|
|
|
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
|
2007-08-23 20:08:50 +02:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
1999-04-16 03:35:26 +02:00
|
|
|
(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
|
2007-08-23 20:08:50 +02:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* This file contains support code for C++ demangling that is common
|
|
|
|
to a styles of demangling, and GDB specific. */
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
#include "command.h"
|
|
|
|
#include "gdbcmd.h"
|
|
|
|
#include "demangle.h"
|
|
|
|
#include "gdb_string.h"
|
|
|
|
|
|
|
|
/* Select the default C++ demangling style to use. The default is "auto",
|
|
|
|
which allows gdb to attempt to pick an appropriate demangling style for
|
|
|
|
the executable it has loaded. It can be set to a specific style ("gnu",
|
|
|
|
"lucid", "arm", "hp", etc.) in which case gdb will never attempt to do auto
|
|
|
|
selection of the style unless you do an explicit "set demangle auto".
|
|
|
|
To select one of these as the default, set DEFAULT_DEMANGLING_STYLE in
|
|
|
|
the appropriate target configuration file. */
|
|
|
|
|
|
|
|
#ifndef DEFAULT_DEMANGLING_STYLE
|
|
|
|
#define DEFAULT_DEMANGLING_STYLE AUTO_DEMANGLING_STYLE_STRING
|
|
|
|
#endif
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
extern void _initialize_demangler (void);
|
1999-05-25 20:09:09 +02:00
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
/* String name for the current demangling style. Set by the
|
|
|
|
"set demangle-style" command, printed as part of the output by the
|
|
|
|
"show demangle-style" command. */
|
|
|
|
|
|
|
|
static char *current_demangling_style_string;
|
|
|
|
|
2001-02-19 12:47:16 +01:00
|
|
|
/* The array of names of the known demanglyng styles. Generated by
|
|
|
|
_initialize_demangler from libiberty_demanglers[] array. */
|
|
|
|
|
|
|
|
static const char **demangling_style_names;
|
2005-02-24 Andrew Cagney <cagney@gnu.org>
Add show_VARIABLE functions, update add_setshow call.
* varobj.c (_initialize_varobj, show_varobjdebug): Add and update.
* valprint.c (_initialize_valprint, show_print_max)
(show_stop_print_at_null, show_repeat_count_threshold)
(show_prettyprint_structs, show_unionprint)
(show_prettyprint_arrays, show_addressprint, show_input_radix)
(show_output_radix): Ditto.
* valops.c (_initialize_valops, show_overload_resolution): Ditto.
* utils.c (initialize_utils, show_chars_per_line)
(show_lines_per_page, show_demangle, show_pagination_enabled)
(show_sevenbit_strings, show_asm_demangle): Ditto
* tui/tui-win.c (_initialize_tui_win, show_tui_border_kind)
(show_tui_border_mode, show_tui_active_border_mode): Ditto.
* top.c (init_main, show_new_async_prompt)
(show_async_command_editing_p, show_write_history_p)
(show_history_size, show_history_filename, show_caution)
(show_annotation_level, init_main): Ditto.
* target.c (initialize_targets, show_targetdebug)
(show_trust_readonly): Ditto.
* symfile.c (_initialize_symfile, show_symbol_reloading)
(show_ext_args, show_download_write_size)
(show_debug_file_directory): Ditto.
* source.c (_initialize_source, show_lines_to_list): Ditto.
* solib.c (_initialize_solib, show_auto_solib_add)
(show_solib_search_path): Ditto.
* p-valprint.c (_initialize_pascal_valprint)
(show_pascal_static_field_print): Ditto.
* printcmd.c (_initialize_printcmd, show_max_symbolic_offset)
(show_print_symbol_filename): Add and update.
* parse.c (_initialize_parse, show_expressiondebug): Dito.
* observer.c (_initialize_observer, show_observer_debug): Dito.
* maint.c (_initialize_maint_cmds, show_watchdog)
(show_maintenance_profile_p): Dito.
* linux-nat.c (_initialize_linux_nat, show_debug_linux_nat): Dito.
* infrun.c (_initialize_infrun, show_debug_infrun)
(show_stop_on_solib_events, show_follow_fork_mode_string)
(show_scheduler_mode, show_step_stop_if_no_debug): Ditto.
* infcall.c (_initialize_infcall, show_coerce_float_to_double_p)
(show_unwind_on_signal_p): Ditto.
* gdbtypes.c (build_gdbtypes, show_opaque_type_resolution)
(_initialize_gdbtypes, show_overload_debug): Ditto.
* gdb-events.c, gdb-events.sh (_initialize_gdb_events)
(show_gdb_events_debug): Ditto.
* gdbarch.c, gdbarch.sh (show_gdbarch_debug)
(_initialize_gdbarch): Ditto.
* frame.c (_initialize_frame, show_backtrace_past_main)
(show_backtrace_past_entry, show_backtrace_limit)
(show_frame_debug): Ditto.
* exec.c (_initialize_exec, show_write_files): Ditto.
* dwarf2read.c (_initialize_dwarf2_read)
(show_dwarf2_max_cache_age): Ditto.
* demangle.c (_initialize_demangler)
(show_demangling_style_names): Ditto.
* dcache.c (_initialize_dcache, show_dcache_enabled_p): Ditto.
* cp-valprint.c (show_static_field_print)
(_initialize_cp_valprint, show_vtblprint, show_objectprint): Ditto.
* corefile.c (_initialize_core, show_gnutarget_string): Ditto.
* cli/cli-logging.c (_initialize_cli_logging)
(show_logging_overwrite, show_logging_redirect)
(show_logging_filename): Ditto.
* cli/cli-cmds.c (show_info_verbose, show_history_expansion_p)
(init_cli_cmds, show_baud_rate, show_remote_debug)
(show_remote_timeout, show_max_user_call_depth): Ditto.
* charset.c (show_host_charset_name, show_target_charset_name)
(initialize_charset): Ditto.
* breakpoint.c (show_can_use_hw_watchpoints)
(show_pending_break_support, _initialize_breakpoint): Ditto.
2005-02-24 14:51:36 +01:00
|
|
|
static void
|
|
|
|
show_demangling_style_names(struct ui_file *file, int from_tty,
|
|
|
|
struct cmd_list_element *c, const char *value)
|
|
|
|
{
|
|
|
|
fprintf_filtered (file, _("The current C++ demangling style is \"%s\".\n"),
|
|
|
|
value);
|
|
|
|
}
|
|
|
|
|
2001-02-19 12:47:16 +01:00
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
static void set_demangling_command (char *, int, struct cmd_list_element *);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
/* Set current demangling style. Called by the "set demangle-style"
|
|
|
|
command after it has updated the current_demangling_style_string to
|
|
|
|
match what the user has entered.
|
|
|
|
|
|
|
|
If the user has entered a string that matches a known demangling style
|
|
|
|
name in the demanglers[] array then just leave the string alone and update
|
|
|
|
the current_demangling_style enum value to match.
|
|
|
|
|
|
|
|
If the user has entered a string that doesn't match, including an empty
|
|
|
|
string, then print a list of the currently known styles and restore
|
|
|
|
the current_demangling_style_string to match the current_demangling_style
|
|
|
|
enum value.
|
|
|
|
|
|
|
|
Note: Assumes that current_demangling_style_string always points to
|
|
|
|
a malloc'd string, even if it is a null-string. */
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
set_demangling_command (char *ignore, int from_tty, struct cmd_list_element *c)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2000-11-14 17:46:24 +01:00
|
|
|
const struct demangler_engine *dem;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
/* First just try to match whatever style name the user supplied with
|
|
|
|
one of the known ones. Don't bother special casing for an empty
|
|
|
|
name, we just treat it as any other style name that doesn't match.
|
|
|
|
If we match, update the current demangling style enum. */
|
|
|
|
|
2000-11-14 17:46:24 +01:00
|
|
|
for (dem = libiberty_demanglers;
|
|
|
|
dem->demangling_style != unknown_demangling;
|
|
|
|
dem++)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2003-01-09 19:30:32 +01:00
|
|
|
if (strcmp (current_demangling_style_string,
|
|
|
|
dem->demangling_style_name) == 0)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
current_demangling_style = dem->demangling_style;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check to see if we found a match. If not, gripe about any non-empty
|
|
|
|
style name and supply a list of valid ones. FIXME: This should
|
|
|
|
probably be done with some sort of completion and with help. */
|
|
|
|
|
2000-11-14 17:46:24 +01:00
|
|
|
if (dem->demangling_style == unknown_demangling)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
if (*current_demangling_style_string != '\0')
|
|
|
|
{
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up some of printf_filtered and printf_unfiltered.
* ada-lang.c, annotate.c, arch-utils.c, breakpoint.c: Update.
* corelow.c, cp-namespace.c, cp-support.c, dcache.c: Update.
* demangle.c, dsrec.c, dwarf2read.c, dwarfread.c: Update.
* event-loop.c, event-top.c, exec.c, f-valprint.c: Update.
* gdbtypes.c, inf-loop.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcmd.c, inflow.c, infrun.c, inftarg.c, language.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, maint.c: Update.
* mdebugread.c, memattr.c, monitor.c, objc-lang.c: Update.
* ocd.c, osabi.c, printcmd.c, procfs.c, regcache.c: Update.
* remote.c, solib-som.c, solib.c, somsolib.c, source.c: Update.
* stack.c, symfile.c, symmisc.c, target.c, thread.c: Update.
* top.c, utils.c, valprint.c, value.c, cli/cli-cmds.c: Update.
* cli/cli-dump.c, cli/cli-logging.c, tui/tui-hooks.c: Update.
* tui/tui-regs.c, tui/tui-win.c: Update.
2005-02-12 01:39:24 +01:00
|
|
|
printf_unfiltered (_("Unknown demangling style `%s'.\n"),
|
1999-04-16 03:35:26 +02:00
|
|
|
current_demangling_style_string);
|
|
|
|
}
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up some of printf_filtered and printf_unfiltered.
* ada-lang.c, annotate.c, arch-utils.c, breakpoint.c: Update.
* corelow.c, cp-namespace.c, cp-support.c, dcache.c: Update.
* demangle.c, dsrec.c, dwarf2read.c, dwarfread.c: Update.
* event-loop.c, event-top.c, exec.c, f-valprint.c: Update.
* gdbtypes.c, inf-loop.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcmd.c, inflow.c, infrun.c, inftarg.c, language.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, maint.c: Update.
* mdebugread.c, memattr.c, monitor.c, objc-lang.c: Update.
* ocd.c, osabi.c, printcmd.c, procfs.c, regcache.c: Update.
* remote.c, solib-som.c, solib.c, somsolib.c, source.c: Update.
* stack.c, symfile.c, symmisc.c, target.c, thread.c: Update.
* top.c, utils.c, valprint.c, value.c, cli/cli-cmds.c: Update.
* cli/cli-dump.c, cli/cli-logging.c, tui/tui-hooks.c: Update.
* tui/tui-regs.c, tui/tui-win.c: Update.
2005-02-12 01:39:24 +01:00
|
|
|
printf_unfiltered (_("The currently understood settings are:\n\n"));
|
2000-11-14 17:46:24 +01:00
|
|
|
for (dem = libiberty_demanglers;
|
|
|
|
dem->demangling_style != unknown_demangling;
|
|
|
|
dem++)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
printf_unfiltered ("%-10s %s\n", dem->demangling_style_name,
|
|
|
|
dem->demangling_style_doc);
|
|
|
|
if (dem->demangling_style == current_demangling_style)
|
|
|
|
{
|
2000-12-15 02:01:51 +01:00
|
|
|
xfree (current_demangling_style_string);
|
1999-04-16 03:35:26 +02:00
|
|
|
current_demangling_style_string =
|
|
|
|
savestring (dem->demangling_style_name,
|
|
|
|
strlen (dem->demangling_style_name));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (current_demangling_style == unknown_demangling)
|
|
|
|
{
|
|
|
|
/* This can happen during initialization if gdb is compiled with
|
|
|
|
a DEMANGLING_STYLE value that is unknown, so pick the first
|
|
|
|
one as the default. */
|
2000-11-14 17:46:24 +01:00
|
|
|
current_demangling_style = libiberty_demanglers[0].demangling_style;
|
1999-04-16 03:35:26 +02:00
|
|
|
current_demangling_style_string =
|
2000-11-14 17:46:24 +01:00
|
|
|
savestring (
|
|
|
|
libiberty_demanglers[0].demangling_style_name,
|
|
|
|
strlen (libiberty_demanglers[0].demangling_style_name));
|
2005-02-10 Andrew Cagney <cagney@gnu.org>
Mark up all error and warning messages.
* ada-lang.c, amd64-tdep.c, arch-utils.c, breakpoint.c: Update.
* bsd-kvm.c, bsd-uthread.c, coff-solib.h, coffread.c: Update.
* core-aout.c, core-regset.c, corefile.c, corelow.c: Update.
* cp-abi.c, cp-support.c, cp-valprint.c, cris-tdep.c: Update.
* dbxread.c, demangle.c, doublest.c, dsrec.c: Update.
* dve3900-rom.c, dwarf2expr.c, dwarf2loc.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, eval.c: Update.
* event-top.c, exec.c, expprint.c, f-lang.c: Update.
* f-typeprint.c, f-valprint.c, fbsd-nat.c, findvar.c: Update.
* frame.c, frv-linux-tdep.c, gcore.c, gdbtypes.c: Update.
* gnu-nat.c, gnu-v2-abi.c, gnu-v3-abi.c, go32-nat.c: Update.
* hpacc-abi.c, hppa-hpux-nat.c, hppa-hpux-tdep.c: Update.
* hppa-linux-nat.c, hppa-linux-tdep.c, hppa-tdep.c: Update.
* hpread.c, hpux-thread.c, i386-linux-nat.c: Update.
* i386-linux-tdep.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386gnu-nat.c, i387-tdep.c, ia64-linux-nat.c: Update.
* ia64-tdep.c, inf-child.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
* inftarg.c, interps.c, irix5-nat.c, jv-lang.c: Update.
* kod-cisco.c, kod.c, language.c, libunwind-frame.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, m2-lang.c: Update.
* m32r-rom.c, m68hc11-tdep.c, m68k-tdep.c: Update.
* m68klinux-nat.c, macrocmd.c, macroexp.c, main.c: Update.
* maint.c, mdebugread.c, mem-break.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mipsread.c, monitor.c: Update.
* nlmread.c, nto-procfs.c, objc-lang.c, objfiles.c: Update.
* observer.c, ocd.c, p-lang.c, p-typeprint.c: Update.
* p-valprint.c, pa64solib.c, parse.c, ppc-linux-tdep.c: Update.
* ppcnbsd-tdep.c, printcmd.c, procfs.c, remote-e7000.c: Update.
* remote-fileio.c, remote-m32r-sdi.c, remote-rdi.c: Update.
* remote-rdp.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote-utils.h, remote.c: Update.
* rom68k-rom.c, rs6000-nat.c, s390-tdep.c, scm-lang.c: Update.
* ser-e7kpc.c, ser-tcp.c, ser-unix.c, sh-tdep.c: Update.
* sh3-rom.c, shnbsd-tdep.c, sol-thread.c, solib-aix5.c: Update.
* solib-frv.c, solib-irix.c, solib-osf.c, solib-pa64.c: Update.
* solib-som.c, solib-sunos.c, solib-svr4.c, solib.c: Update.
* somread.c, somsolib.c, source.c, stabsread.c: Update.
* stack.c, std-regs.c, symfile-mem.c, symfile.c: Update.
* symmisc.c, symtab.c, target.c, thread.c, top.c: Update.
* tracepoint.c, trad-frame.c, typeprint.c, utils.c: Update.
* uw-thread.c, valarith.c, valops.c, valprint.c: Update.
* value.c, varobj.c, version.in, win32-nat.c, wince.c: Update.
* xcoffread.c, xcoffsolib.c, cli/cli-cmds.c: Update.
* cli/cli-decode.c, cli/cli-dump.c, cli/cli-logging.c: Update.
* cli/cli-script.c, cli/cli-setshow.c, mi/mi-cmd-break.c: Update.
* mi/mi-cmd-disas.c, mi/mi-cmd-env.c, mi/mi-cmd-file.c: Update.
* mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-getopt.c: Update.
* mi/mi-symbol-cmds.c, tui/tui-layout.c, tui/tui-stack.c: Update.
* tui/tui-win.c: Update.
2005-02-11 05:06:14 +01:00
|
|
|
warning (_("`%s' style demangling chosen as the default."),
|
1999-04-16 03:35:26 +02:00
|
|
|
current_demangling_style_string);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fake a "set demangle-style" command. */
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
set_demangling_style (char *style)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
if (current_demangling_style_string != NULL)
|
|
|
|
{
|
2000-12-15 02:01:51 +01:00
|
|
|
xfree (current_demangling_style_string);
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
current_demangling_style_string = savestring (style, strlen (style));
|
|
|
|
set_demangling_command ((char *) NULL, 0, (struct cmd_list_element *) NULL);
|
|
|
|
}
|
|
|
|
|
2002-10-11 16:02:39 +02:00
|
|
|
/* G++ uses a special character to indicate certain internal names. Which
|
|
|
|
character it is depends on the platform:
|
|
|
|
- Usually '$' on systems where the assembler will accept that
|
|
|
|
- Usually '.' otherwise (this includes most sysv4-like systems and most
|
|
|
|
ELF targets)
|
|
|
|
- Occasionally '_' if neither of the above is usable
|
|
|
|
|
|
|
|
We check '$' first because it is the safest, and '.' often has another
|
|
|
|
meaning. We don't currently try to handle '_' because the precise forms
|
|
|
|
of the names are different on those targets. */
|
|
|
|
|
|
|
|
static char cplus_markers[] = {'$', '.', '\0'};
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
int
|
2000-07-30 03:48:28 +02:00
|
|
|
is_cplus_marker (int c)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
return c && strchr (cplus_markers, c) != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
_initialize_demangler (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
struct cmd_list_element *set, *show;
|
2001-02-19 12:47:16 +01:00
|
|
|
int i, ndems;
|
|
|
|
|
|
|
|
/* Fill the demangling_style_names[] array. */
|
|
|
|
for (ndems = 0;
|
|
|
|
libiberty_demanglers[ndems].demangling_style != unknown_demangling;
|
|
|
|
ndems++)
|
|
|
|
;
|
2001-04-16 16:36:16 +02:00
|
|
|
demangling_style_names = xcalloc (ndems + 1, sizeof (char *));
|
2001-02-19 12:47:16 +01:00
|
|
|
for (i = 0;
|
|
|
|
libiberty_demanglers[i].demangling_style != unknown_demangling;
|
|
|
|
i++)
|
|
|
|
demangling_style_names[i] =
|
|
|
|
xstrdup (libiberty_demanglers[i].demangling_style_name);
|
|
|
|
|
2005-02-21 05:31:59 +01:00
|
|
|
/* FIXME: cagney/2005-02-20: The code implementing this variable are
|
|
|
|
malloc-ing and free-ing current_demangling_style_string when it
|
|
|
|
should instead just point to an element of
|
|
|
|
demangling_style_names. */
|
|
|
|
add_setshow_enum_cmd ("demangle-style", class_support,
|
|
|
|
demangling_style_names,
|
|
|
|
(const char **) ¤t_demangling_style_string, _("\
|
|
|
|
Set the current C++ demangling style."), _("\
|
|
|
|
Show the current C++ demangling style."), _("\
|
|
|
|
Use `set demangle-style' without arguments for a list of demangling styles."),
|
|
|
|
set_demangling_command,
|
2005-02-24 Andrew Cagney <cagney@gnu.org>
Add show_VARIABLE functions, update add_setshow call.
* varobj.c (_initialize_varobj, show_varobjdebug): Add and update.
* valprint.c (_initialize_valprint, show_print_max)
(show_stop_print_at_null, show_repeat_count_threshold)
(show_prettyprint_structs, show_unionprint)
(show_prettyprint_arrays, show_addressprint, show_input_radix)
(show_output_radix): Ditto.
* valops.c (_initialize_valops, show_overload_resolution): Ditto.
* utils.c (initialize_utils, show_chars_per_line)
(show_lines_per_page, show_demangle, show_pagination_enabled)
(show_sevenbit_strings, show_asm_demangle): Ditto
* tui/tui-win.c (_initialize_tui_win, show_tui_border_kind)
(show_tui_border_mode, show_tui_active_border_mode): Ditto.
* top.c (init_main, show_new_async_prompt)
(show_async_command_editing_p, show_write_history_p)
(show_history_size, show_history_filename, show_caution)
(show_annotation_level, init_main): Ditto.
* target.c (initialize_targets, show_targetdebug)
(show_trust_readonly): Ditto.
* symfile.c (_initialize_symfile, show_symbol_reloading)
(show_ext_args, show_download_write_size)
(show_debug_file_directory): Ditto.
* source.c (_initialize_source, show_lines_to_list): Ditto.
* solib.c (_initialize_solib, show_auto_solib_add)
(show_solib_search_path): Ditto.
* p-valprint.c (_initialize_pascal_valprint)
(show_pascal_static_field_print): Ditto.
* printcmd.c (_initialize_printcmd, show_max_symbolic_offset)
(show_print_symbol_filename): Add and update.
* parse.c (_initialize_parse, show_expressiondebug): Dito.
* observer.c (_initialize_observer, show_observer_debug): Dito.
* maint.c (_initialize_maint_cmds, show_watchdog)
(show_maintenance_profile_p): Dito.
* linux-nat.c (_initialize_linux_nat, show_debug_linux_nat): Dito.
* infrun.c (_initialize_infrun, show_debug_infrun)
(show_stop_on_solib_events, show_follow_fork_mode_string)
(show_scheduler_mode, show_step_stop_if_no_debug): Ditto.
* infcall.c (_initialize_infcall, show_coerce_float_to_double_p)
(show_unwind_on_signal_p): Ditto.
* gdbtypes.c (build_gdbtypes, show_opaque_type_resolution)
(_initialize_gdbtypes, show_overload_debug): Ditto.
* gdb-events.c, gdb-events.sh (_initialize_gdb_events)
(show_gdb_events_debug): Ditto.
* gdbarch.c, gdbarch.sh (show_gdbarch_debug)
(_initialize_gdbarch): Ditto.
* frame.c (_initialize_frame, show_backtrace_past_main)
(show_backtrace_past_entry, show_backtrace_limit)
(show_frame_debug): Ditto.
* exec.c (_initialize_exec, show_write_files): Ditto.
* dwarf2read.c (_initialize_dwarf2_read)
(show_dwarf2_max_cache_age): Ditto.
* demangle.c (_initialize_demangler)
(show_demangling_style_names): Ditto.
* dcache.c (_initialize_dcache, show_dcache_enabled_p): Ditto.
* cp-valprint.c (show_static_field_print)
(_initialize_cp_valprint, show_vtblprint, show_objectprint): Ditto.
* corefile.c (_initialize_core, show_gnutarget_string): Ditto.
* cli/cli-logging.c (_initialize_cli_logging)
(show_logging_overwrite, show_logging_redirect)
(show_logging_filename): Ditto.
* cli/cli-cmds.c (show_info_verbose, show_history_expansion_p)
(init_cli_cmds, show_baud_rate, show_remote_debug)
(show_remote_timeout, show_max_user_call_depth): Ditto.
* charset.c (show_host_charset_name, show_target_charset_name)
(initialize_charset): Ditto.
* breakpoint.c (show_can_use_hw_watchpoints)
(show_pending_break_support, _initialize_breakpoint): Ditto.
2005-02-24 14:51:36 +01:00
|
|
|
show_demangling_style_names,
|
2005-02-21 05:31:59 +01:00
|
|
|
&setlist, &showlist);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
/* Set the default demangling style chosen at compilation time. */
|
|
|
|
set_demangling_style (DEFAULT_DEMANGLING_STYLE);
|
|
|
|
}
|