diff options
author | 2012-12-20 01:07:04 +0000 | |
---|---|---|
committer | 2012-12-20 01:07:04 +0000 | |
commit | 80480540e6b63085883dad14a5dc44c4490d9460 (patch) | |
tree | 1f6ac5c2d2885df3822b0195b1cd4335dee49371 /gdb/symmisc.c | |
parent | gdb/ (diff) | |
download | binutils-gdb-80480540e6b63085883dad14a5dc44c4490d9460.tar.gz binutils-gdb-80480540e6b63085883dad14a5dc44c4490d9460.tar.bz2 binutils-gdb-80480540e6b63085883dad14a5dc44c4490d9460.zip |
gdb/
2012-12-20 Yao Qi <yao@codesourcery.com>
* maint.c (_initialize_maint_cmds): Move code ...
* symmisc.c (_initialize_symmisc): ... to here.
(maintenance_print_msymbols): Make it static.
(maintenance_print_objfiles): Likewise.
(maintenance_print_symbols): Likewise.
(maintenance_info_symtabs): Likewise.
* symtab.h (maintenance_print_msymbols): Remove declaration.
(maintenance_print_objfiles, maintenance_print_symbols): Likewise.
(maintenance_info_symtabs): Likewise.
Diffstat (limited to 'gdb/symmisc.c')
-rw-r--r-- | gdb/symmisc.c | 32 |
1 files changed, 28 insertions, 4 deletions
diff --git a/gdb/symmisc.c b/gdb/symmisc.c index 694a84a89e4..c88e36cadd4 100644 --- a/gdb/symmisc.c +++ b/gdb/symmisc.c @@ -36,6 +36,7 @@ #include "gdb_stat.h" #include "dictionary.h" #include "typeprint.h" +#include "gdbcmd.h" #include "gdb_string.h" #include "readline/readline.h" @@ -401,7 +402,7 @@ dump_symtab (struct objfile *objfile, struct symtab *symtab, dump_symtab_1 (objfile, symtab, outfile); } -void +static void maintenance_print_symbols (char *args, int from_tty) { char **argv; @@ -626,7 +627,7 @@ print_symbol (void *args) return 1; } -void +static void maintenance_print_msymbols (char *args, int from_tty) { char **argv; @@ -682,7 +683,7 @@ maintenance_print_msymbols (char *args, int from_tty) do_cleanups (cleanups); } -void +static void maintenance_print_objfiles (char *ignore, int from_tty) { struct program_space *pspace; @@ -700,7 +701,7 @@ maintenance_print_objfiles (char *ignore, int from_tty) /* List all the symbol tables whose names match REGEXP (optional). */ -void +static void maintenance_info_symtabs (char *regexp, int from_tty) { struct program_space *pspace; @@ -784,4 +785,27 @@ _initialize_symmisc (void) std_in = stdin; std_out = stdout; std_err = stderr; + + add_cmd ("symbols", class_maintenance, maintenance_print_symbols, _("\ +Print dump of current symbol definitions.\n\ +Entries in the full symbol table are dumped to file OUTFILE.\n\ +If a SOURCE file is specified, dump only that file's symbols."), + &maintenanceprintlist); + + add_cmd ("msymbols", class_maintenance, maintenance_print_msymbols, _("\ +Print dump of current minimal symbol definitions.\n\ +Entries in the minimal symbol table are dumped to file OUTFILE.\n\ +If a SOURCE file is specified, dump only that file's minimal symbols."), + &maintenanceprintlist); + + add_cmd ("objfiles", class_maintenance, maintenance_print_objfiles, + _("Print dump of current object file definitions."), + &maintenanceprintlist); + + add_cmd ("symtabs", class_maintenance, maintenance_info_symtabs, _("\ +List the full symbol tables for all object files.\n\ +This does not include information about individual symbols, blocks, or\n\ +linetables --- just the symbol table structures themselves.\n\ +With an argument REGEXP, list the symbol tables whose names that match that."), + &maintenanceinfolist); } |