mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
0d12e84cfc
I touched symtab.h and was surprised to see how many files were rebuilt. I looked into it a bit, and found that defs.h includes gdbarch.h, which in turn includes many things. gdbarch.h is only needed by a minority ofthe files in gdb, so this patch removes the include from defs.h and updates the fallout. I did "wc -l" on the files in build/gdb/.deps; this patch reduces the line count from 139935 to 137030; so there are definitely future build-time savings here. Note that while I configured with --enable-targets=all, it's possible that some *-nat.c file needs an update. I could not test all of these. The buildbot caught a few problems along these lines. gdb/ChangeLog 2019-07-10 Tom Tromey <tom@tromey.com> * defs.h: Don't include gdbarch.h. * aarch64-ravenscar-thread.c, aarch64-tdep.c, alpha-bsd-tdep.h, alpha-linux-tdep.c, alpha-mdebug-tdep.c, arch-utils.h, arm-tdep.h, ax-general.c, btrace.c, buildsym-legacy.c, buildsym.h, c-lang.c, cli/cli-decode.h, cli/cli-dump.c, cli/cli-script.h, cli/cli-style.h, coff-pe-read.h, compile/compile-c-support.c, compile/compile-cplus.h, compile/compile-loc2c.c, corefile.c, cp-valprint.c, cris-linux-tdep.c, ctf.c, d-lang.c, d-namespace.c, dcache.c, dicos-tdep.c, dictionary.c, disasm-selftests.c, dummy-frame.c, dummy-frame.h, dwarf2-frame-tailcall.c, dwarf2expr.c, expression.h, f-lang.c, frame-base.c, frame-unwind.c, frv-linux-tdep.c, gdbarch-selftests.c, gdbtypes.h, go-lang.c, hppa-nbsd-tdep.c, hppa-obsd-tdep.c, i386-dicos-tdep.c, i386-tdep.h, ia64-vms-tdep.c, interps.h, language.c, linux-record.c, location.h, m2-lang.c, m32r-linux-tdep.c, mem-break.c, memattr.c, mn10300-linux-tdep.c, nios2-linux-tdep.c, objfiles.h, opencl-lang.c, or1k-linux-tdep.c, p-lang.c, parser-defs.h, ppc-tdep.h, probe.h, python/py-record-btrace.c, record-btrace.c, record.h, regcache-dump.c, regcache.h, riscv-fbsd-tdep.c, riscv-linux-tdep.c, rust-exp.y, sh-linux-tdep.c, sh-nbsd-tdep.c, source-cache.c, sparc-nbsd-tdep.c, sparc-obsd-tdep.c, sparc-ravenscar-thread.c, sparc64-fbsd-tdep.c, std-regs.c, target-descriptions.h, target-float.c, tic6x-linux-tdep.c, tilegx-linux-tdep.c, top.c, tracefile.c, trad-frame.c, type-stack.h, ui-style.c, utils.c, utils.h, valarith.c, valprint.c, varobj.c, x86-tdep.c, xml-support.h, xtensa-linux-tdep.c, cli/cli-cmds.h: Update. * s390-linux-nat.c, procfs.c, inf-ptrace.c: Likewise.
174 lines
4.4 KiB
C++
174 lines
4.4 KiB
C++
/* Header file for GDB CLI command implementation library.
|
|
Copyright (C) 2000-2019 Free Software Foundation, Inc.
|
|
|
|
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 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#ifndef CLI_CLI_SCRIPT_H
|
|
#define CLI_CLI_SCRIPT_H
|
|
|
|
#include "gdbsupport/function-view.h"
|
|
|
|
struct ui_file;
|
|
struct cmd_list_element;
|
|
|
|
/* * Control types for commands. */
|
|
|
|
enum misc_command_type
|
|
{
|
|
ok_command,
|
|
end_command,
|
|
else_command,
|
|
nop_command
|
|
};
|
|
|
|
enum command_control_type
|
|
{
|
|
simple_control,
|
|
break_control,
|
|
continue_control,
|
|
while_control,
|
|
if_control,
|
|
commands_control,
|
|
python_control,
|
|
compile_control,
|
|
guile_control,
|
|
while_stepping_control,
|
|
define_control,
|
|
invalid_control
|
|
};
|
|
|
|
struct command_line;
|
|
|
|
extern void free_command_lines (struct command_line **);
|
|
|
|
/* A deleter for command_line that calls free_command_lines. */
|
|
|
|
struct command_lines_deleter
|
|
{
|
|
void operator() (command_line *cmd_lines) const
|
|
{
|
|
free_command_lines (&cmd_lines);
|
|
}
|
|
};
|
|
|
|
/* A reference-counted struct command_line. */
|
|
typedef std::shared_ptr<command_line> counted_command_line;
|
|
|
|
/* * Structure for saved commands lines (for breakpoints, defined
|
|
commands, etc). */
|
|
|
|
struct command_line
|
|
{
|
|
explicit command_line (command_control_type type_, char *line_ = nullptr)
|
|
: line (line_),
|
|
control_type (type_)
|
|
{
|
|
memset (&control_u, 0, sizeof (control_u));
|
|
}
|
|
|
|
DISABLE_COPY_AND_ASSIGN (command_line);
|
|
|
|
struct command_line *next = nullptr;
|
|
char *line;
|
|
enum command_control_type control_type;
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
enum compile_i_scope_types scope;
|
|
void *scope_data;
|
|
}
|
|
compile;
|
|
}
|
|
control_u;
|
|
/* * For composite commands, the nested lists of commands. For
|
|
example, for "if" command this will contain the then branch and
|
|
the else branch, if that is available. */
|
|
counted_command_line body_list_0;
|
|
counted_command_line body_list_1;
|
|
|
|
private:
|
|
|
|
friend void free_command_lines (struct command_line **);
|
|
|
|
~command_line ()
|
|
{
|
|
xfree (line);
|
|
}
|
|
};
|
|
|
|
extern counted_command_line read_command_lines
|
|
(const char *, int, int, gdb::function_view<void (const char *)>);
|
|
extern counted_command_line read_command_lines_1
|
|
(gdb::function_view<const char * ()>, int,
|
|
gdb::function_view<void (const char *)>);
|
|
|
|
|
|
/* Exported to cli/cli-cmds.c */
|
|
|
|
extern void script_from_file (FILE *stream, const char *file);
|
|
|
|
extern void show_user_1 (struct cmd_list_element *c,
|
|
const char *prefix,
|
|
const char *name,
|
|
struct ui_file *stream);
|
|
|
|
/* Execute the commands in CMDLINES. */
|
|
|
|
extern void execute_control_commands (struct command_line *cmdlines,
|
|
int from_tty);
|
|
|
|
/* Run execute_control_commands for COMMANDS. Capture its output into
|
|
the returned string, do not display it to the screen. BATCH_FLAG
|
|
will be temporarily set to true. */
|
|
|
|
extern std::string execute_control_commands_to_string
|
|
(struct command_line *commands, int from_tty);
|
|
|
|
/* Exported to gdb/breakpoint.c */
|
|
|
|
extern enum command_control_type
|
|
execute_control_command (struct command_line *cmd,
|
|
int from_tty = 0);
|
|
|
|
extern enum command_control_type
|
|
execute_control_command_untraced (struct command_line *cmd);
|
|
|
|
extern counted_command_line get_command_line (enum command_control_type,
|
|
const char *);
|
|
|
|
extern void print_command_lines (struct ui_out *,
|
|
struct command_line *, unsigned int);
|
|
|
|
/* Exported to gdb/infrun.c */
|
|
|
|
extern void execute_user_command (struct cmd_list_element *c, const char *args);
|
|
|
|
/* If we're in a user-defined command, replace any $argc/$argN
|
|
reference found in LINE with the arguments that were passed to the
|
|
command. Otherwise, treat $argc/$argN as normal convenience
|
|
variables. */
|
|
extern std::string insert_user_defined_cmd_args (const char *line);
|
|
|
|
/* Exported to top.c */
|
|
|
|
extern void print_command_trace (const char *cmd, ...)
|
|
ATTRIBUTE_PRINTF (1, 2);
|
|
|
|
/* Exported to event-top.c */
|
|
|
|
extern void reset_command_nest_depth (void);
|
|
|
|
#endif /* CLI_CLI_SCRIPT_H */
|