1999-04-16 03:35:26 +02:00
|
|
|
/* Support for GDB maintenance commands.
|
2004-01-19 02:20:12 +01:00
|
|
|
|
|
|
|
Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2001,
|
|
|
|
2002, 2003, 2004 Free Software Foundation, Inc.
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
Written by Fred Fish at Cygnus Support.
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
This file is part of GDB.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
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.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
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.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
Boston, MA 02111-1307, USA. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include "command.h"
|
|
|
|
#include "gdbcmd.h"
|
|
|
|
#include "symtab.h"
|
|
|
|
#include "gdbtypes.h"
|
|
|
|
#include "demangle.h"
|
|
|
|
#include "gdbcore.h"
|
1999-07-07 22:19:36 +02:00
|
|
|
#include "expression.h" /* For language.h */
|
1999-04-16 03:35:26 +02:00
|
|
|
#include "language.h"
|
|
|
|
#include "symfile.h"
|
|
|
|
#include "objfiles.h"
|
|
|
|
#include "value.h"
|
|
|
|
|
2002-03-24 01:40:35 +01:00
|
|
|
#include "cli/cli-decode.h"
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
extern void _initialize_maint_cmds (void);
|
1999-05-25 20:09:09 +02:00
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
static void maintenance_command (char *, int);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
static void maintenance_dump_me (char *, int);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
static void maintenance_internal_error (char *args, int from_tty);
|
1999-08-16 21:57:19 +02:00
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
static void maintenance_demangle (char *, int);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
static void maintenance_time_display (char *, int);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
static void maintenance_space_display (char *, int);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
static void maintenance_info_command (char *, int);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
static void maintenance_info_sections (char *, int);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
static void maintenance_print_command (char *, int);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2000-03-25 16:32:19 +01:00
|
|
|
static void maintenance_do_deprecate (char *, int);
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
/* Set this to the maximum number of seconds to wait instead of waiting forever
|
|
|
|
in target_wait(). If this timer times out, then it generates an error and
|
|
|
|
the command is aborted. This replaces most of the need for timeouts in the
|
|
|
|
GDB test suite, and makes it possible to distinguish between a hung target
|
|
|
|
and one with slow communications. */
|
|
|
|
|
|
|
|
int watchdog = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
LOCAL FUNCTION
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
maintenance_command -- access the maintenance subcommands
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
SYNOPSIS
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
void maintenance_command (char *args, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
DESCRIPTION
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
*/
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
maintenance_command (char *args, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
printf_unfiltered ("\"maintenance\" must be followed by the name of a maintenance command.\n");
|
|
|
|
help_list (maintenancelist, "maintenance ", -1, gdb_stdout);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
maintenance_dump_me (char *args, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
if (query ("Should GDB dump core? "))
|
|
|
|
{
|
1999-08-16 21:57:19 +02:00
|
|
|
#ifdef __DJGPP__
|
|
|
|
/* SIGQUIT by default is ignored, so use SIGABRT instead. */
|
|
|
|
signal (SIGABRT, SIG_DFL);
|
|
|
|
kill (getpid (), SIGABRT);
|
|
|
|
#else
|
1999-04-16 03:35:26 +02:00
|
|
|
signal (SIGQUIT, SIG_DFL);
|
|
|
|
kill (getpid (), SIGQUIT);
|
1999-08-16 21:57:19 +02:00
|
|
|
#endif
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1999-08-16 21:57:19 +02:00
|
|
|
/* Stimulate the internal error mechanism that GDB uses when an
|
|
|
|
internal problem is detected. Allows testing of the mechanism.
|
|
|
|
Also useful when the user wants to drop a core file but not exit
|
|
|
|
GDB. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
maintenance_internal_error (char *args, int from_tty)
|
|
|
|
{
|
2002-09-19 01:53:52 +02:00
|
|
|
internal_error (__FILE__, __LINE__, "%s", (args == NULL ? "" : args));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Stimulate the internal error mechanism that GDB uses when an
|
|
|
|
internal problem is detected. Allows testing of the mechanism.
|
|
|
|
Also useful when the user wants to drop a core file but not exit
|
|
|
|
GDB. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
maintenance_internal_warning (char *args, int from_tty)
|
|
|
|
{
|
|
|
|
internal_warning (__FILE__, __LINE__, "%s", (args == NULL ? "" : args));
|
1999-08-16 21:57:19 +02:00
|
|
|
}
|
|
|
|
|
2000-03-25 09:05:47 +01:00
|
|
|
/* Someday we should allow demangling for things other than just
|
|
|
|
explicit strings. For example, we might want to be able to specify
|
|
|
|
the address of a string in either GDB's process space or the
|
|
|
|
debuggee's process space, and have gdb fetch and demangle that
|
|
|
|
string. If we have a char* pointer "ptr" that points to a string,
|
|
|
|
we might want to be able to given just the name and have GDB
|
|
|
|
demangle and print what it points to, etc. (FIXME) */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
maintenance_demangle (char *args, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
char *demangled;
|
|
|
|
|
|
|
|
if (args == NULL || *args == '\0')
|
|
|
|
{
|
|
|
|
printf_unfiltered ("\"maintenance demangle\" takes an argument to demangle.\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-04-02 05:02:46 +02:00
|
|
|
demangled = language_demangle (current_language, args,
|
|
|
|
DMGL_ANSI | DMGL_PARAMS);
|
1999-04-16 03:35:26 +02:00
|
|
|
if (demangled != NULL)
|
|
|
|
{
|
|
|
|
printf_unfiltered ("%s\n", demangled);
|
2000-12-15 02:01:51 +01:00
|
|
|
xfree (demangled);
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
printf_unfiltered ("Can't demangle \"%s\"\n", args);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
maintenance_time_display (char *args, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
extern int display_time;
|
|
|
|
|
|
|
|
if (args == NULL || *args == '\0')
|
|
|
|
printf_unfiltered ("\"maintenance time\" takes a numeric argument.\n");
|
|
|
|
else
|
|
|
|
display_time = strtol (args, NULL, 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
maintenance_space_display (char *args, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
extern int display_space;
|
|
|
|
|
|
|
|
if (args == NULL || *args == '\0')
|
|
|
|
printf_unfiltered ("\"maintenance space\" takes a numeric argument.\n");
|
|
|
|
else
|
|
|
|
display_space = strtol (args, NULL, 10);
|
|
|
|
}
|
|
|
|
|
2000-03-25 09:05:47 +01:00
|
|
|
/* The "maintenance info" command is defined as a prefix, with
|
|
|
|
allow_unknown 0. Therefore, its own definition is called only for
|
|
|
|
"maintenance info" with no args. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
maintenance_info_command (char *arg, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
printf_unfiltered ("\"maintenance info\" must be followed by the name of an info command.\n");
|
|
|
|
help_list (maintenanceinfolist, "maintenance info ", -1, gdb_stdout);
|
|
|
|
}
|
|
|
|
|
2001-12-21 18:30:02 +01:00
|
|
|
/* Mini tokenizing lexer for 'maint info sections' command. */
|
|
|
|
|
|
|
|
static int
|
2001-12-27 16:37:35 +01:00
|
|
|
match_substring (const char *string, const char *substr)
|
2001-12-21 18:30:02 +01:00
|
|
|
{
|
|
|
|
int substr_len = strlen(substr);
|
2001-12-27 16:37:35 +01:00
|
|
|
const char *tok;
|
2001-12-21 18:30:02 +01:00
|
|
|
|
|
|
|
while ((tok = strstr (string, substr)) != NULL)
|
|
|
|
{
|
|
|
|
/* Got a partial match. Is it a whole word? */
|
2001-12-27 20:33:05 +01:00
|
|
|
if (tok == string
|
|
|
|
|| tok[-1] == ' '
|
|
|
|
|| tok[-1] == '\t')
|
2001-12-21 18:30:02 +01:00
|
|
|
{
|
|
|
|
/* Token is delimited at the front... */
|
2001-12-27 20:33:05 +01:00
|
|
|
if (tok[substr_len] == ' '
|
|
|
|
|| tok[substr_len] == '\t'
|
|
|
|
|| tok[substr_len] == '\0')
|
2001-12-21 18:30:02 +01:00
|
|
|
{
|
|
|
|
/* Token is delimited at the rear. Got a whole-word match. */
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Token didn't match as a whole word. Advance and try again. */
|
|
|
|
string = tok + 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-12-20 22:03:03 +01:00
|
|
|
static int
|
|
|
|
match_bfd_flags (char *string, flagword flags)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2001-12-20 22:03:03 +01:00
|
|
|
if (flags & SEC_ALLOC)
|
2001-12-21 18:30:02 +01:00
|
|
|
if (match_substring (string, "ALLOC"))
|
2001-12-20 22:03:03 +01:00
|
|
|
return 1;
|
|
|
|
if (flags & SEC_LOAD)
|
2001-12-21 18:30:02 +01:00
|
|
|
if (match_substring (string, "LOAD"))
|
2001-12-20 22:03:03 +01:00
|
|
|
return 1;
|
|
|
|
if (flags & SEC_RELOC)
|
2001-12-21 18:30:02 +01:00
|
|
|
if (match_substring (string, "RELOC"))
|
2001-12-20 22:03:03 +01:00
|
|
|
return 1;
|
|
|
|
if (flags & SEC_READONLY)
|
2001-12-21 18:30:02 +01:00
|
|
|
if (match_substring (string, "READONLY"))
|
2001-12-20 22:03:03 +01:00
|
|
|
return 1;
|
|
|
|
if (flags & SEC_CODE)
|
2001-12-21 18:30:02 +01:00
|
|
|
if (match_substring (string, "CODE"))
|
2001-12-20 22:03:03 +01:00
|
|
|
return 1;
|
|
|
|
if (flags & SEC_DATA)
|
2001-12-21 18:30:02 +01:00
|
|
|
if (match_substring (string, "DATA"))
|
2001-12-20 22:03:03 +01:00
|
|
|
return 1;
|
|
|
|
if (flags & SEC_ROM)
|
2001-12-21 18:30:02 +01:00
|
|
|
if (match_substring (string, "ROM"))
|
2001-12-20 22:03:03 +01:00
|
|
|
return 1;
|
|
|
|
if (flags & SEC_CONSTRUCTOR)
|
2001-12-21 18:30:02 +01:00
|
|
|
if (match_substring (string, "CONSTRUCTOR"))
|
2001-12-20 22:03:03 +01:00
|
|
|
return 1;
|
|
|
|
if (flags & SEC_HAS_CONTENTS)
|
2001-12-21 18:30:02 +01:00
|
|
|
if (match_substring (string, "HAS_CONTENTS"))
|
2001-12-20 22:03:03 +01:00
|
|
|
return 1;
|
|
|
|
if (flags & SEC_NEVER_LOAD)
|
2001-12-21 18:30:02 +01:00
|
|
|
if (match_substring (string, "NEVER_LOAD"))
|
2001-12-20 22:03:03 +01:00
|
|
|
return 1;
|
|
|
|
if (flags & SEC_COFF_SHARED_LIBRARY)
|
2001-12-21 18:30:02 +01:00
|
|
|
if (match_substring (string, "COFF_SHARED_LIBRARY"))
|
2001-12-20 22:03:03 +01:00
|
|
|
return 1;
|
|
|
|
if (flags & SEC_IS_COMMON)
|
2001-12-21 18:30:02 +01:00
|
|
|
if (match_substring (string, "IS_COMMON"))
|
2001-12-20 22:03:03 +01:00
|
|
|
return 1;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2001-12-20 22:03:03 +01:00
|
|
|
return 0;
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2001-12-20 22:03:03 +01:00
|
|
|
static void
|
|
|
|
print_bfd_flags (flagword flags)
|
|
|
|
{
|
1999-04-16 03:35:26 +02:00
|
|
|
if (flags & SEC_ALLOC)
|
|
|
|
printf_filtered (" ALLOC");
|
|
|
|
if (flags & SEC_LOAD)
|
|
|
|
printf_filtered (" LOAD");
|
|
|
|
if (flags & SEC_RELOC)
|
|
|
|
printf_filtered (" RELOC");
|
|
|
|
if (flags & SEC_READONLY)
|
|
|
|
printf_filtered (" READONLY");
|
|
|
|
if (flags & SEC_CODE)
|
|
|
|
printf_filtered (" CODE");
|
|
|
|
if (flags & SEC_DATA)
|
|
|
|
printf_filtered (" DATA");
|
|
|
|
if (flags & SEC_ROM)
|
|
|
|
printf_filtered (" ROM");
|
|
|
|
if (flags & SEC_CONSTRUCTOR)
|
|
|
|
printf_filtered (" CONSTRUCTOR");
|
|
|
|
if (flags & SEC_HAS_CONTENTS)
|
|
|
|
printf_filtered (" HAS_CONTENTS");
|
|
|
|
if (flags & SEC_NEVER_LOAD)
|
|
|
|
printf_filtered (" NEVER_LOAD");
|
|
|
|
if (flags & SEC_COFF_SHARED_LIBRARY)
|
|
|
|
printf_filtered (" COFF_SHARED_LIBRARY");
|
|
|
|
if (flags & SEC_IS_COMMON)
|
|
|
|
printf_filtered (" IS_COMMON");
|
2001-12-20 22:03:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-04-11 00:00:20 +02:00
|
|
|
maint_print_section_info (const char *name, flagword flags,
|
|
|
|
CORE_ADDR addr, CORE_ADDR endaddr,
|
|
|
|
unsigned long filepos)
|
2001-12-20 22:03:03 +01:00
|
|
|
{
|
2001-12-20 23:31:24 +01:00
|
|
|
/* FIXME-32x64: Need print_address_numeric with field width. */
|
|
|
|
printf_filtered (" 0x%s", paddr (addr));
|
|
|
|
printf_filtered ("->0x%s", paddr (endaddr));
|
2002-02-23 14:18:36 +01:00
|
|
|
printf_filtered (" at %s",
|
2004-09-11 12:24:53 +02:00
|
|
|
hex_string_custom ((unsigned long) filepos, 8));
|
2001-12-20 23:31:24 +01:00
|
|
|
printf_filtered (": %s", name);
|
|
|
|
print_bfd_flags (flags);
|
|
|
|
printf_filtered ("\n");
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2001-12-20 23:31:24 +01:00
|
|
|
static void
|
|
|
|
print_bfd_section_info (bfd *abfd,
|
|
|
|
asection *asect,
|
|
|
|
void *arg)
|
|
|
|
{
|
|
|
|
flagword flags = bfd_get_section_flags (abfd, asect);
|
|
|
|
const char *name = bfd_section_name (abfd, asect);
|
|
|
|
|
2001-12-27 20:33:05 +01:00
|
|
|
if (arg == NULL || *((char *) arg) == '\0'
|
|
|
|
|| match_substring ((char *) arg, name)
|
|
|
|
|| match_bfd_flags ((char *) arg, flags))
|
2001-12-20 23:31:24 +01:00
|
|
|
{
|
|
|
|
CORE_ADDR addr, endaddr;
|
|
|
|
|
|
|
|
addr = bfd_section_vma (abfd, asect);
|
|
|
|
endaddr = addr + bfd_section_size (abfd, asect);
|
2002-04-11 00:00:20 +02:00
|
|
|
maint_print_section_info (name, flags, addr, endaddr, asect->filepos);
|
2001-12-20 23:31:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
print_objfile_section_info (bfd *abfd,
|
|
|
|
struct obj_section *asect,
|
|
|
|
char *string)
|
|
|
|
{
|
|
|
|
flagword flags = bfd_get_section_flags (abfd, asect->the_bfd_section);
|
|
|
|
const char *name = bfd_section_name (abfd, asect->the_bfd_section);
|
2001-12-20 22:03:03 +01:00
|
|
|
|
2001-12-27 20:33:05 +01:00
|
|
|
if (string == NULL || *string == '\0'
|
|
|
|
|| match_substring (string, name)
|
|
|
|
|| match_bfd_flags (string, flags))
|
2001-12-20 22:03:03 +01:00
|
|
|
{
|
2002-04-11 00:00:20 +02:00
|
|
|
maint_print_section_info (name, flags, asect->addr, asect->endaddr,
|
2001-12-20 23:31:24 +01:00
|
|
|
asect->the_bfd_section->filepos);
|
2001-12-20 22:03:03 +01:00
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
maintenance_info_sections (char *arg, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
if (exec_bfd)
|
|
|
|
{
|
|
|
|
printf_filtered ("Exec file:\n");
|
1999-07-07 22:19:36 +02:00
|
|
|
printf_filtered (" `%s', ", bfd_get_filename (exec_bfd));
|
1999-04-16 03:35:26 +02:00
|
|
|
wrap_here (" ");
|
1999-07-07 22:19:36 +02:00
|
|
|
printf_filtered ("file type %s.\n", bfd_get_target (exec_bfd));
|
2001-12-21 18:30:02 +01:00
|
|
|
if (arg && *arg && match_substring (arg, "ALLOBJ"))
|
2001-12-20 23:31:24 +01:00
|
|
|
{
|
|
|
|
struct objfile *ofile;
|
|
|
|
struct obj_section *osect;
|
|
|
|
|
|
|
|
/* Only this function cares about the 'ALLOBJ' argument;
|
|
|
|
if 'ALLOBJ' is the only argument, discard it rather than
|
|
|
|
passing it down to print_objfile_section_info (which
|
|
|
|
wouldn't know how to handle it). */
|
|
|
|
if (strcmp (arg, "ALLOBJ") == 0)
|
|
|
|
arg = NULL;
|
|
|
|
|
|
|
|
ALL_OBJFILES (ofile)
|
|
|
|
{
|
|
|
|
printf_filtered (" Object file: %s\n",
|
|
|
|
bfd_get_filename (ofile->obfd));
|
|
|
|
ALL_OBJFILE_OSECTIONS (ofile, osect)
|
|
|
|
{
|
|
|
|
print_objfile_section_info (ofile->obfd, osect, arg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
bfd_map_over_sections (exec_bfd, print_bfd_section_info, arg);
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (core_bfd)
|
|
|
|
{
|
|
|
|
printf_filtered ("Core file:\n");
|
1999-07-07 22:19:36 +02:00
|
|
|
printf_filtered (" `%s', ", bfd_get_filename (core_bfd));
|
1999-04-16 03:35:26 +02:00
|
|
|
wrap_here (" ");
|
1999-07-07 22:19:36 +02:00
|
|
|
printf_filtered ("file type %s.\n", bfd_get_target (core_bfd));
|
2001-12-20 23:31:24 +01:00
|
|
|
bfd_map_over_sections (core_bfd, print_bfd_section_info, arg);
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
maintenance_print_statistics (char *args, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
print_objfile_statistics ();
|
|
|
|
print_symbol_bcache_statistics ();
|
|
|
|
}
|
|
|
|
|
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
|
|
|
static void
|
2000-06-10 07:37:47 +02:00
|
|
|
maintenance_print_architecture (char *args, int from_tty)
|
|
|
|
{
|
|
|
|
if (args == NULL)
|
|
|
|
gdbarch_dump (current_gdbarch, gdb_stdout);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
struct ui_file *file = gdb_fopen (args, "w");
|
|
|
|
if (file == NULL)
|
|
|
|
perror_with_name ("maintenance print architecture");
|
|
|
|
gdbarch_dump (current_gdbarch, file);
|
|
|
|
ui_file_delete (file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-03-25 09:05:47 +01:00
|
|
|
/* The "maintenance print" command is defined as a prefix, with
|
|
|
|
allow_unknown 0. Therefore, its own definition is called only for
|
|
|
|
"maintenance print" with no args. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
maintenance_print_command (char *arg, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
printf_unfiltered ("\"maintenance print\" must be followed by the name of a print command.\n");
|
|
|
|
help_list (maintenanceprintlist, "maintenance print ", -1, gdb_stdout);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The "maintenance translate-address" command converts a section and address
|
|
|
|
to a symbol. This can be called in two ways:
|
1999-07-07 22:19:36 +02:00
|
|
|
maintenance translate-address <secname> <addr>
|
|
|
|
or maintenance translate-address <addr>
|
|
|
|
*/
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
maintenance_translate_address (char *arg, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
CORE_ADDR address;
|
|
|
|
asection *sect;
|
|
|
|
char *p;
|
|
|
|
struct minimal_symbol *sym;
|
|
|
|
struct objfile *objfile;
|
|
|
|
|
|
|
|
if (arg == NULL || *arg == 0)
|
|
|
|
error ("requires argument (address or section + address)");
|
|
|
|
|
|
|
|
sect = NULL;
|
|
|
|
p = arg;
|
|
|
|
|
|
|
|
if (!isdigit (*p))
|
|
|
|
{ /* See if we have a valid section name */
|
1999-07-07 22:19:36 +02:00
|
|
|
while (*p && !isspace (*p)) /* Find end of section name */
|
1999-04-16 03:35:26 +02:00
|
|
|
p++;
|
|
|
|
if (*p == '\000') /* End of command? */
|
|
|
|
error ("Need to specify <section-name> and <address>");
|
|
|
|
*p++ = '\000';
|
1999-07-07 22:19:36 +02:00
|
|
|
while (isspace (*p))
|
|
|
|
p++; /* Skip whitespace */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
ALL_OBJFILES (objfile)
|
1999-07-07 22:19:36 +02:00
|
|
|
{
|
|
|
|
sect = bfd_get_section_by_name (objfile->obfd, arg);
|
|
|
|
if (sect != NULL)
|
|
|
|
break;
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
if (!sect)
|
|
|
|
error ("Unknown section %s.", arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
address = parse_and_eval_address (p);
|
|
|
|
|
|
|
|
if (sect)
|
|
|
|
sym = lookup_minimal_symbol_by_pc_section (address, sect);
|
|
|
|
else
|
|
|
|
sym = lookup_minimal_symbol_by_pc (address);
|
|
|
|
|
|
|
|
if (sym)
|
1999-09-09 02:02:17 +02:00
|
|
|
printf_filtered ("%s+%s\n",
|
2003-02-20 David Carlton <carlton@math.stanford.edu>
* symtab.h (SYMBOL_PRINT_NAME): Rename from SYMBOL_SOURCE_NAME;
expand comment.
* ada-lang.c (user_select_syms, ada_finish_decode_line_1): Replace
SYMBOL_PRINT_NAME with SYMBOL_SOURCE_NAME.
* ada-typeprint.c (ada_typedef_print): Ditto.
* ax-gdb.c (gen_var_ref): Ditto.
* breakpoint.c (print_one_breakpoint): Ditto.
* buildsym.c (finish_block): Ditto.
* c-valprint.c (c_val_print): Ditto.
* expprint.c (print_subexp): Ditto.
* findvar.c (locate_var_value): Ditto.
* infcmd.c (jump_command): Ditto.
* linespec.c (decode_line_2, decode_compound): Ditto.
* maint.c (maintenance_translate_address): Ditto.
* objc-lang.c (compare_selectors, compare_classes): Ditto.
* printcmd.c (build_address_symbolic, sym_info, print_frame_args):
Ditto.
* p-valprint.c (pascal_val_print): Ditto.
* stabsread.c (define_symbol): Ditto.
* stack.c (print_frame, frame_info, print_block_frame_locals)
(print_frame_arg_vars, return_command): Ditto.
* symfile.c (compare_symbols, compare_psymbols): Ditto.
* symmisc.c (print_symbol): Ditto.
* symtab.c (lookup_partial_symbol, lookup_block_symbol)
(compare_search_syms, print_symbol_info, print_msymbol_info)
(rbreak_command): Ditto.
* tracepoint.c (tracepoints_info): Ditto.
* typeprint.c (typedef_print): Ditto.
* valops.c (value_of_variable, hand_function_call): Ditto.
* cli/cli-cmds.c (edit_command, list_command): Ditto.
* ada-typeprint.c: Update Copyright.
* infcmd.c, objc-lang.c, p-valprint.c, symmisc.c: Ditto.
* tracepoint.c, cli/cli-cmds.c: Ditto.
2003-02-20 18:17:25 +01:00
|
|
|
SYMBOL_PRINT_NAME (sym),
|
1999-09-09 02:02:17 +02:00
|
|
|
paddr_u (address - SYMBOL_VALUE_ADDRESS (sym)));
|
1999-04-16 03:35:26 +02:00
|
|
|
else if (sect)
|
1999-09-09 02:02:17 +02:00
|
|
|
printf_filtered ("no symbol at %s:0x%s\n", sect->name, paddr (address));
|
1999-04-16 03:35:26 +02:00
|
|
|
else
|
1999-09-09 02:02:17 +02:00
|
|
|
printf_filtered ("no symbol at 0x%s\n", paddr (address));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
2001-04-11 03:01:04 +02:00
|
|
|
/* When a command is deprecated the user will be warned the first time
|
2000-03-25 09:05:47 +01:00
|
|
|
the command is used. If possible, a replacement will be
|
|
|
|
offered. */
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
|
|
|
static void
|
|
|
|
maintenance_deprecate (char *args, int from_tty)
|
|
|
|
{
|
|
|
|
if (args == NULL || *args == '\0')
|
|
|
|
{
|
|
|
|
printf_unfiltered ("\"maintenance deprecate\" takes an argument, \n\
|
|
|
|
the command you want to deprecate, and optionally the replacement command \n\
|
|
|
|
enclosed in quotes.\n");
|
|
|
|
}
|
2000-03-25 09:05:47 +01:00
|
|
|
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
maintenance_do_deprecate (args, 1);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
maintenance_undeprecate (char *args, int from_tty)
|
|
|
|
{
|
|
|
|
if (args == NULL || *args == '\0')
|
|
|
|
{
|
|
|
|
printf_unfiltered ("\"maintenance undeprecate\" takes an argument, \n\
|
|
|
|
the command you want to undeprecate.\n");
|
|
|
|
}
|
2000-03-25 09:05:47 +01:00
|
|
|
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
maintenance_do_deprecate (args, 0);
|
2000-03-25 09:05:47 +01:00
|
|
|
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
}
|
|
|
|
|
2000-03-25 09:05:47 +01:00
|
|
|
/* You really shouldn't be using this. It is just for the testsuite.
|
|
|
|
Rather, you should use deprecate_cmd() when the command is created
|
|
|
|
in _initialize_blah().
|
|
|
|
|
|
|
|
This function deprecates a command and optionally assigns it a
|
|
|
|
replacement. */
|
|
|
|
|
2000-03-25 09:10:10 +01:00
|
|
|
static void
|
2000-03-25 09:05:47 +01:00
|
|
|
maintenance_do_deprecate (char *text, int deprecate)
|
|
|
|
{
|
|
|
|
|
|
|
|
struct cmd_list_element *alias = NULL;
|
|
|
|
struct cmd_list_element *prefix_cmd = NULL;
|
|
|
|
struct cmd_list_element *cmd = NULL;
|
|
|
|
|
|
|
|
char *start_ptr = NULL;
|
|
|
|
char *end_ptr = NULL;
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
int len;
|
2000-03-25 09:05:47 +01:00
|
|
|
char *replacement = NULL;
|
|
|
|
|
2000-03-25 16:32:19 +01:00
|
|
|
if (text == NULL)
|
|
|
|
return;
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
2000-03-25 09:05:47 +01:00
|
|
|
if (!lookup_cmd_composition (text, &alias, &prefix_cmd, &cmd))
|
|
|
|
{
|
|
|
|
printf_filtered ("Can't find command '%s' to deprecate.\n", text);
|
|
|
|
return;
|
|
|
|
}
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
|
|
|
if (deprecate)
|
|
|
|
{
|
|
|
|
/* look for a replacement command */
|
2000-03-29 02:51:17 +02:00
|
|
|
start_ptr = strchr (text, '\"');
|
|
|
|
if (start_ptr != NULL)
|
2000-03-25 09:05:47 +01:00
|
|
|
{
|
|
|
|
start_ptr++;
|
2000-03-29 02:51:17 +02:00
|
|
|
end_ptr = strrchr (start_ptr, '\"');
|
|
|
|
if (end_ptr != NULL)
|
2000-03-25 09:05:47 +01:00
|
|
|
{
|
|
|
|
len = end_ptr - start_ptr;
|
|
|
|
start_ptr[len] = '\0';
|
|
|
|
replacement = xstrdup (start_ptr);
|
|
|
|
}
|
|
|
|
}
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
}
|
2000-03-25 09:05:47 +01:00
|
|
|
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
if (!start_ptr || !end_ptr)
|
|
|
|
replacement = NULL;
|
2000-03-25 09:05:47 +01:00
|
|
|
|
|
|
|
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
/* If they used an alias, we only want to deprecate the alias.
|
2000-03-25 09:05:47 +01:00
|
|
|
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
Note the MALLOCED_REPLACEMENT test. If the command's replacement
|
|
|
|
string was allocated at compile time we don't want to free the
|
2000-03-25 09:05:47 +01:00
|
|
|
memory. */
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
if (alias)
|
|
|
|
{
|
2000-03-25 09:05:47 +01:00
|
|
|
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
if (alias->flags & MALLOCED_REPLACEMENT)
|
2000-12-15 02:01:51 +01:00
|
|
|
xfree (alias->replacement);
|
2000-03-25 09:05:47 +01:00
|
|
|
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
if (deprecate)
|
2000-03-25 09:05:47 +01:00
|
|
|
alias->flags |= (DEPRECATED_WARN_USER | CMD_DEPRECATED);
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
else
|
2000-03-25 09:05:47 +01:00
|
|
|
alias->flags &= ~(DEPRECATED_WARN_USER | CMD_DEPRECATED);
|
|
|
|
alias->replacement = replacement;
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
alias->flags |= MALLOCED_REPLACEMENT;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (cmd)
|
|
|
|
{
|
|
|
|
if (cmd->flags & MALLOCED_REPLACEMENT)
|
2000-12-15 02:01:51 +01:00
|
|
|
xfree (cmd->replacement);
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
|
|
|
if (deprecate)
|
2000-03-25 09:05:47 +01:00
|
|
|
cmd->flags |= (DEPRECATED_WARN_USER | CMD_DEPRECATED);
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
else
|
2000-03-25 09:05:47 +01:00
|
|
|
cmd->flags &= ~(DEPRECATED_WARN_USER | CMD_DEPRECATED);
|
|
|
|
cmd->replacement = replacement;
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
cmd->flags |= MALLOCED_REPLACEMENT;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-09-25 04:31:51 +02:00
|
|
|
/* Maintenance set/show framework. */
|
|
|
|
|
|
|
|
static struct cmd_list_element *maintenance_set_cmdlist;
|
|
|
|
static struct cmd_list_element *maintenance_show_cmdlist;
|
|
|
|
|
|
|
|
static void
|
|
|
|
maintenance_set_cmd (char *args, int from_tty)
|
|
|
|
{
|
|
|
|
printf_unfiltered ("\"maintenance set\" must be followed by the name of a set command.\n");
|
|
|
|
help_list (maintenance_set_cmdlist, "maintenance set ", -1, gdb_stdout);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
maintenance_show_cmd (char *args, int from_tty)
|
|
|
|
{
|
|
|
|
cmd_show_list (maintenance_show_cmdlist, from_tty, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Profiling support. */
|
|
|
|
|
|
|
|
static int maintenance_profile_p;
|
2003-01-27 15:36:56 +01:00
|
|
|
|
|
|
|
#if defined (HAVE_MONSTARTUP) && defined (HAVE__MCLEANUP)
|
|
|
|
|
2003-02-14 21:07:00 +01:00
|
|
|
#ifdef HAVE__ETEXT
|
|
|
|
extern char _etext;
|
|
|
|
#define TEXTEND &_etext
|
|
|
|
#else
|
|
|
|
extern char etext;
|
|
|
|
#define TEXTEND &etext
|
|
|
|
#endif
|
|
|
|
|
2003-01-23 00:50:35 +01:00
|
|
|
static int profiling_state;
|
|
|
|
|
|
|
|
static void
|
|
|
|
mcleanup_wrapper (void)
|
|
|
|
{
|
|
|
|
extern void _mcleanup (void);
|
|
|
|
|
|
|
|
if (profiling_state)
|
|
|
|
_mcleanup ();
|
|
|
|
}
|
2001-09-25 04:31:51 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
maintenance_set_profile_cmd (char *args, int from_tty, struct cmd_list_element *c)
|
|
|
|
{
|
2003-01-23 00:50:35 +01:00
|
|
|
if (maintenance_profile_p == profiling_state)
|
|
|
|
return;
|
|
|
|
|
|
|
|
profiling_state = maintenance_profile_p;
|
|
|
|
|
|
|
|
if (maintenance_profile_p)
|
|
|
|
{
|
|
|
|
static int profiling_initialized;
|
|
|
|
|
|
|
|
extern void monstartup (unsigned long, unsigned long);
|
|
|
|
extern int main();
|
|
|
|
|
|
|
|
if (!profiling_initialized)
|
|
|
|
{
|
|
|
|
atexit (mcleanup_wrapper);
|
|
|
|
profiling_initialized = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* "main" is now always the first function in the text segment, so use
|
|
|
|
its address for monstartup. */
|
2003-02-14 21:07:00 +01:00
|
|
|
monstartup ((unsigned long) &main, (unsigned long) TEXTEND);
|
2003-01-23 00:50:35 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
extern void _mcleanup (void);
|
|
|
|
_mcleanup ();
|
|
|
|
}
|
2001-09-25 04:31:51 +02:00
|
|
|
}
|
2003-01-27 15:36:56 +01:00
|
|
|
#else
|
|
|
|
static void
|
|
|
|
maintenance_set_profile_cmd (char *args, int from_tty, struct cmd_list_element *c)
|
|
|
|
{
|
2003-01-27 21:25:35 +01:00
|
|
|
error ("Profiling support is not available on this system.");
|
2003-01-27 15:36:56 +01:00
|
|
|
}
|
|
|
|
#endif
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
_initialize_maint_cmds (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2001-09-25 04:31:51 +02:00
|
|
|
struct cmd_list_element *tmpcmd;
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
add_prefix_cmd ("maintenance", class_maintenance, maintenance_command,
|
|
|
|
"Commands for use by GDB maintainers.\n\
|
|
|
|
Includes commands to dump specific internal GDB structures in\n\
|
|
|
|
a human readable form, to cause GDB to deliberately dump core,\n\
|
2002-12-24 04:57:58 +01:00
|
|
|
to test internal functions such as the C++/ObjC demangler, etc.",
|
1999-04-16 03:35:26 +02:00
|
|
|
&maintenancelist, "maintenance ", 0,
|
|
|
|
&cmdlist);
|
|
|
|
|
|
|
|
add_com_alias ("mt", "maintenance", class_maintenance, 1);
|
|
|
|
|
|
|
|
add_prefix_cmd ("info", class_maintenance, maintenance_info_command,
|
1999-07-07 22:19:36 +02:00
|
|
|
"Commands for showing internal info about the program being debugged.",
|
1999-04-16 03:35:26 +02:00
|
|
|
&maintenanceinfolist, "maintenance info ", 0,
|
|
|
|
&maintenancelist);
|
2000-04-19 09:59:12 +02:00
|
|
|
add_alias_cmd ("i", "info", class_maintenance, 1, &maintenancelist);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
add_cmd ("sections", class_maintenance, maintenance_info_sections,
|
2002-01-01 16:17:40 +01:00
|
|
|
"List the BFD sections of the exec and core files. \n\
|
2001-12-20 23:31:24 +01:00
|
|
|
Arguments may be any combination of:\n\
|
|
|
|
[one or more section names]\n\
|
|
|
|
ALLOC LOAD RELOC READONLY CODE DATA ROM CONSTRUCTOR\n\
|
|
|
|
HAS_CONTENTS NEVER_LOAD COFF_SHARED_LIBRARY IS_COMMON\n\
|
|
|
|
Sections matching any argument will be listed (no argument\n\
|
|
|
|
implies all sections). In addition, the special argument\n\
|
|
|
|
ALLOBJ\n\
|
|
|
|
lists all sections from all object files, including shared libraries.",
|
1999-04-16 03:35:26 +02:00
|
|
|
&maintenanceinfolist);
|
|
|
|
|
|
|
|
add_prefix_cmd ("print", class_maintenance, maintenance_print_command,
|
|
|
|
"Maintenance command for printing GDB internal state.",
|
|
|
|
&maintenanceprintlist, "maintenance print ", 0,
|
|
|
|
&maintenancelist);
|
|
|
|
|
2001-09-25 04:31:51 +02:00
|
|
|
add_prefix_cmd ("set", class_maintenance, maintenance_set_cmd, "\
|
|
|
|
Set GDB internal variables used by the GDB maintainer.\n\
|
|
|
|
Configure variables internal to GDB that aid in GDB's maintenance",
|
|
|
|
&maintenance_set_cmdlist, "maintenance set ",
|
|
|
|
0/*allow-unknown*/,
|
|
|
|
&maintenancelist);
|
|
|
|
|
|
|
|
add_prefix_cmd ("show", class_maintenance, maintenance_show_cmd, "\
|
|
|
|
Show GDB internal variables used by the GDB maintainer.\n\
|
|
|
|
Configure variables internal to GDB that aid in GDB's maintenance",
|
|
|
|
&maintenance_show_cmdlist, "maintenance show ",
|
|
|
|
0/*allow-unknown*/,
|
|
|
|
&maintenancelist);
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
#ifndef _WIN32
|
|
|
|
add_cmd ("dump-me", class_maintenance, maintenance_dump_me,
|
|
|
|
"Get fatal error; make debugger dump its core.\n\
|
2002-11-21 20:38:02 +01:00
|
|
|
GDB sets its handling of SIGQUIT back to SIG_DFL and then sends\n\
|
1999-04-16 03:35:26 +02:00
|
|
|
itself a SIGQUIT signal.",
|
|
|
|
&maintenancelist);
|
|
|
|
#endif
|
|
|
|
|
1999-08-16 21:57:19 +02:00
|
|
|
add_cmd ("internal-error", class_maintenance, maintenance_internal_error,
|
|
|
|
"Give GDB an internal error.\n\
|
|
|
|
Cause GDB to behave as if an internal error was detected.",
|
|
|
|
&maintenancelist);
|
|
|
|
|
2002-09-19 01:53:52 +02:00
|
|
|
add_cmd ("internal-warning", class_maintenance, maintenance_internal_warning,
|
|
|
|
"Give GDB an internal warning.\n\
|
|
|
|
Cause GDB to behave as if an internal warning was reported.",
|
|
|
|
&maintenancelist);
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
add_cmd ("demangle", class_maintenance, maintenance_demangle,
|
2002-12-24 04:57:58 +01:00
|
|
|
"Demangle a C++/ObjC mangled name.\n\
|
1999-04-16 03:35:26 +02:00
|
|
|
Call internal GDB demangler routine to demangle a C++ link name\n\
|
|
|
|
and prints the result.",
|
|
|
|
&maintenancelist);
|
|
|
|
|
|
|
|
add_cmd ("time", class_maintenance, maintenance_time_display,
|
|
|
|
"Set the display of time usage.\n\
|
|
|
|
If nonzero, will cause the execution time for each command to be\n\
|
|
|
|
displayed, following the command's output.",
|
|
|
|
&maintenancelist);
|
|
|
|
|
|
|
|
add_cmd ("space", class_maintenance, maintenance_space_display,
|
|
|
|
"Set the display of space usage.\n\
|
|
|
|
If nonzero, will cause the execution space for each command to be\n\
|
|
|
|
displayed, following the command's output.",
|
|
|
|
&maintenancelist);
|
|
|
|
|
|
|
|
add_cmd ("type", class_maintenance, maintenance_print_type,
|
|
|
|
"Print a type chain for a given symbol.\n\
|
|
|
|
For each node in a type chain, print the raw data for each member of\n\
|
|
|
|
the type structure, and the interpretation of the data.",
|
|
|
|
&maintenanceprintlist);
|
|
|
|
|
|
|
|
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 ("psymbols", class_maintenance, maintenance_print_psymbols,
|
|
|
|
"Print dump of current partial symbol definitions.\n\
|
|
|
|
Entries in the partial symbol table are dumped to file OUTFILE.\n\
|
|
|
|
If a SOURCE file is specified, dump only that file's partial symbols.",
|
|
|
|
&maintenanceprintlist);
|
|
|
|
|
|
|
|
add_cmd ("objfiles", class_maintenance, maintenance_print_objfiles,
|
|
|
|
"Print dump of current object file definitions.",
|
|
|
|
&maintenanceprintlist);
|
|
|
|
|
2003-05-07 23:42:48 +02:00
|
|
|
add_cmd ("symtabs", class_maintenance, maintenance_info_symtabs,
|
2003-04-14 20:42:28 +02:00
|
|
|
"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.",
|
2003-05-07 23:42:48 +02:00
|
|
|
&maintenanceinfolist);
|
2003-04-14 20:42:28 +02:00
|
|
|
|
2003-05-07 23:42:48 +02:00
|
|
|
add_cmd ("psymtabs", class_maintenance, maintenance_info_psymtabs,
|
2003-04-14 20:42:28 +02:00
|
|
|
"List the partial symbol tables for all object files.\n\
|
|
|
|
This does not include information about individual partial symbols,\n\
|
|
|
|
just the symbol table structures themselves.",
|
2003-05-07 23:42:48 +02:00
|
|
|
&maintenanceinfolist);
|
2003-04-14 20:42:28 +02:00
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
add_cmd ("statistics", class_maintenance, maintenance_print_statistics,
|
|
|
|
"Print statistics about internal gdb state.",
|
|
|
|
&maintenanceprintlist);
|
|
|
|
|
2000-06-10 07:37:47 +02:00
|
|
|
add_cmd ("architecture", class_maintenance, maintenance_print_architecture,
|
|
|
|
"Print the internal architecture configuration.\
|
|
|
|
Takes an optional file parameter.",
|
|
|
|
&maintenanceprintlist);
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
add_cmd ("check-symtabs", class_maintenance, maintenance_check_symtabs,
|
|
|
|
"Check consistency of psymtabs and symtabs.",
|
|
|
|
&maintenancelist);
|
|
|
|
|
|
|
|
add_cmd ("translate-address", class_maintenance, maintenance_translate_address,
|
|
|
|
"Translate a section name and address to a symbol.",
|
|
|
|
&maintenancelist);
|
|
|
|
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
add_cmd ("deprecate", class_maintenance, maintenance_deprecate,
|
2000-03-25 09:05:47 +01:00
|
|
|
"Deprecate a command. Note that this is just in here so the \n\
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
testsuite can check the comamnd deprecator. You probably shouldn't use this,\n\
|
|
|
|
rather you should use the C function deprecate_cmd(). If you decide you \n\
|
2000-03-25 08:58:54 +01:00
|
|
|
want to use it: maintenance deprecate 'commandname' \"replacement\". The \n\
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
replacement is optional.", &maintenancelist);
|
|
|
|
|
|
|
|
add_cmd ("undeprecate", class_maintenance, maintenance_undeprecate,
|
2000-03-25 09:05:47 +01:00
|
|
|
"Undeprecate a command. Note that this is just in here so the \n\
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
testsuite can check the comamnd deprecator. You probably shouldn't use this,\n\
|
2000-03-25 09:05:47 +01:00
|
|
|
If you decide you want to use it: maintenance undeprecate 'commandname'",
|
|
|
|
&maintenancelist);
|
2000-03-23 Fernando Nasser <fnasser@cygnus.com>
From David Whedon <dwhedon@gordian.com>
* top.c (execute_command): Checks all commands beore executing
to see if the user needs to be warned that the command is
deprecated, warns user if appropriate.
(add_info), (add_info_alias), (add_com) , (add_com_alias): Changed
return values from void to struct cmd_list_element *.
* command.c (lookup_cmd_1): Check aliases before following link
in case user needs to be warned about a deprecated alias.
(deprecate_cmd): new exported function for command deprecation,
sets flags and posibly a replacement string.
(deprecated_cmd_warning): New exported funciton to warn user about
a deprecated command.
(lookup_cmd_composition): New exported function that determines
alias, prefix_command, and cmd based on a string. This is useful
is we want to full name of a command.
* command.h : Added prototypes for deprecate_cmd,
deprecated_warn_user and lookup_cmd_composition, added flags to
the cmd_list_element structure, changed return values for
add_com_* and add_info_* from void to cmd_list_element.
* maint.c : (maintenance_deprecate): New function to deprecate a
command. This exists only so that the testsuite can deprecate
commands at runtime and check the warning behavior.
(maintenance_undeprecate) : New function, drops deprecated flags.
(maintenance_do_deprecate): Actually does the (un)deprecation.
(initialize_maint_cmds): Added the above new deprecate commands.
2000-03-24 00:43:19 +01:00
|
|
|
|
2004-07-26 16:53:06 +02:00
|
|
|
deprecated_add_show_from_set
|
|
|
|
(add_set_cmd ("watchdog", class_maintenance, var_zinteger,
|
|
|
|
(char *) &watchdog,
|
|
|
|
"Set watchdog timer.\n\
|
|
|
|
When non-zero, this timeout is used instead of waiting forever for a target\n\
|
|
|
|
to finish a low-level step or continue operation. If the specified amount\n\
|
|
|
|
of time passes without a response from the target, an error occurs.",
|
|
|
|
&setlist),
|
|
|
|
&showlist);
|
2001-09-25 04:31:51 +02:00
|
|
|
|
|
|
|
|
2003-01-23 00:50:35 +01:00
|
|
|
add_setshow_boolean_cmd ("profile", class_maintenance,
|
2004-07-28 19:26:27 +02:00
|
|
|
&maintenance_profile_p, "\
|
|
|
|
Set internal profiling.", "\
|
|
|
|
Show internal profiling.", "\
|
|
|
|
When enabled GDB is profiled.", "\
|
|
|
|
Internal profiling is %s.",
|
2003-01-23 00:50:35 +01:00
|
|
|
maintenance_set_profile_cmd, NULL,
|
|
|
|
&maintenance_set_cmdlist,
|
|
|
|
&maintenance_show_cmdlist);
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|