mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-22 02:50:08 +08:00
gdb: Add command completers for some info commands
Add command completion for info variables, functions, args, and locals. This completer only completes the command line options as these commands all take a regexp which GDB can't really offer completions for. gdb/ChangeLog: * cli/cli-utils.c (info_print_command_completer): New function. * cli/cli-utils.h: Add 'completer.h' include, and forward declaration for 'struct cmd_list_element'. (info_print_command_completer): Declare. * stack.c (_initialize_stack): Add completer for 'info locals' and 'info args'. * symtab.c (_initialize_symtab): Add completer for 'info variables' and 'info functions'. * NEWS: Mention completion for additional info commands.
This commit is contained in:
@ -1,3 +1,15 @@
|
|||||||
|
2019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
|
||||||
|
|
||||||
|
* cli/cli-utils.c (info_print_command_completer): New function.
|
||||||
|
* cli/cli-utils.h: Add 'completer.h' include, and forward
|
||||||
|
declaration for 'struct cmd_list_element'.
|
||||||
|
(info_print_command_completer): Declare.
|
||||||
|
* stack.c (_initialize_stack): Add completer for 'info locals' and
|
||||||
|
'info args'.
|
||||||
|
* symtab.c (_initialize_symtab): Add completer for 'info
|
||||||
|
variables' and 'info functions'.
|
||||||
|
* NEWS: Mention completion for additional info commands.
|
||||||
|
|
||||||
2019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
|
2019-07-11 Andrew Burgess <andrew.burgess@embecosm.com>
|
||||||
|
|
||||||
* cli/cli-utils.c (extract_info_print_args): Delete.
|
* cli/cli-utils.c (extract_info_print_args): Delete.
|
||||||
|
4
gdb/NEWS
4
gdb/NEWS
@ -217,7 +217,9 @@ maint show test-options-completion-result
|
|||||||
"taas" commands, and their "-ascending" option can now be
|
"taas" commands, and their "-ascending" option can now be
|
||||||
abbreviated.
|
abbreviated.
|
||||||
|
|
||||||
** GDB can now complete the options of the "info threads" command.
|
** GDB can now complete the options of the "info threads", "info
|
||||||
|
functions", "info variables", "info locals", and "info args"
|
||||||
|
commands.
|
||||||
|
|
||||||
** GDB can now complete the options of the "compile file" and
|
** GDB can now complete the options of the "compile file" and
|
||||||
"compile code" commands. The "compile file" command now
|
"compile code" commands. The "compile file" command now
|
||||||
|
@ -473,3 +473,20 @@ extract_info_print_options (info_print_options *opts,
|
|||||||
if (*args != nullptr && **args == '\0')
|
if (*args != nullptr && **args == '\0')
|
||||||
*args = nullptr;
|
*args = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* See documentation in cli-utils.h. */
|
||||||
|
|
||||||
|
void
|
||||||
|
info_print_command_completer (struct cmd_list_element *ignore,
|
||||||
|
completion_tracker &tracker,
|
||||||
|
const char *text, const char * /* word */)
|
||||||
|
{
|
||||||
|
const auto group
|
||||||
|
= make_info_print_options_def_group (nullptr);
|
||||||
|
if (gdb::option::complete_options
|
||||||
|
(tracker, &text, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND, group))
|
||||||
|
return;
|
||||||
|
|
||||||
|
const char *word = advance_to_expression_complete_word_point (tracker, text);
|
||||||
|
symbol_completer (ignore, tracker, text, word);
|
||||||
|
}
|
||||||
|
@ -20,6 +20,10 @@
|
|||||||
#ifndef CLI_CLI_UTILS_H
|
#ifndef CLI_CLI_UTILS_H
|
||||||
#define CLI_CLI_UTILS_H
|
#define CLI_CLI_UTILS_H
|
||||||
|
|
||||||
|
#include "completer.h"
|
||||||
|
|
||||||
|
struct cmd_list_element;
|
||||||
|
|
||||||
/* *PP is a string denoting a number. Get the number. Advance *PP
|
/* *PP is a string denoting a number. Get the number. Advance *PP
|
||||||
after the string and any trailing whitespace.
|
after the string and any trailing whitespace.
|
||||||
|
|
||||||
@ -66,6 +70,15 @@ struct info_print_options
|
|||||||
extern void extract_info_print_options (info_print_options *opts,
|
extern void extract_info_print_options (info_print_options *opts,
|
||||||
const char **args);
|
const char **args);
|
||||||
|
|
||||||
|
/* Function that can be used as a command completer for 'info variable'
|
||||||
|
and friends. This offers command option completion as well as symbol
|
||||||
|
completion. At the moment all symbols are offered for all commands. */
|
||||||
|
|
||||||
|
extern void info_print_command_completer (struct cmd_list_element *ignore,
|
||||||
|
completion_tracker &tracker,
|
||||||
|
const char *text,
|
||||||
|
const char * /* word */);
|
||||||
|
|
||||||
/* Throws an error telling the user that ARGS starts with an option
|
/* Throws an error telling the user that ARGS starts with an option
|
||||||
unrecognized by COMMAND. */
|
unrecognized by COMMAND. */
|
||||||
|
|
||||||
|
@ -3423,18 +3423,20 @@ Print information about a stack frame selected by level.\n\
|
|||||||
Usage: info frame level LEVEL"),
|
Usage: info frame level LEVEL"),
|
||||||
&info_frame_cmd_list);
|
&info_frame_cmd_list);
|
||||||
|
|
||||||
add_info ("locals", info_locals_command,
|
cmd = add_info ("locals", info_locals_command,
|
||||||
info_print_args_help (_("\
|
info_print_args_help (_("\
|
||||||
All local variables of current stack frame or those matching REGEXPs.\n\
|
All local variables of current stack frame or those matching REGEXPs.\n\
|
||||||
Usage: info locals [-q] [-t TYPEREGEXP] [NAMEREGEXP]\n\
|
Usage: info locals [-q] [-t TYPEREGEXP] [NAMEREGEXP]\n\
|
||||||
Prints the local variables of the current stack frame.\n"),
|
Prints the local variables of the current stack frame.\n"),
|
||||||
_("local variables")));
|
_("local variables")));
|
||||||
add_info ("args", info_args_command,
|
set_cmd_completer_handle_brkchars (cmd, info_print_command_completer);
|
||||||
|
cmd = add_info ("args", info_args_command,
|
||||||
info_print_args_help (_("\
|
info_print_args_help (_("\
|
||||||
All argument variables of current stack frame or those matching REGEXPs.\n\
|
All argument variables of current stack frame or those matching REGEXPs.\n\
|
||||||
Usage: info args [-q] [-t TYPEREGEXP] [NAMEREGEXP]\n\
|
Usage: info args [-q] [-t TYPEREGEXP] [NAMEREGEXP]\n\
|
||||||
Prints the argument variables of the current stack frame.\n"),
|
Prints the argument variables of the current stack frame.\n"),
|
||||||
_("argument variables")));
|
_("argument variables")));
|
||||||
|
set_cmd_completer_handle_brkchars (cmd, info_print_command_completer);
|
||||||
|
|
||||||
if (dbx_commands)
|
if (dbx_commands)
|
||||||
add_com ("func", class_stack, func_command, _("\
|
add_com ("func", class_stack, func_command, _("\
|
||||||
|
13
gdb/symtab.c
13
gdb/symtab.c
@ -5997,28 +5997,35 @@ symbol_set_symtab (struct symbol *symbol, struct symtab *symtab)
|
|||||||
void
|
void
|
||||||
_initialize_symtab (void)
|
_initialize_symtab (void)
|
||||||
{
|
{
|
||||||
|
cmd_list_element *c;
|
||||||
|
|
||||||
initialize_ordinary_address_classes ();
|
initialize_ordinary_address_classes ();
|
||||||
|
|
||||||
add_info ("variables", info_variables_command,
|
c = add_info ("variables", info_variables_command,
|
||||||
info_print_args_help (_("\
|
info_print_args_help (_("\
|
||||||
All global and static variable names or those matching REGEXPs.\n\
|
All global and static variable names or those matching REGEXPs.\n\
|
||||||
Usage: info variables [-q] [-t TYPEREGEXP] [NAMEREGEXP]\n\
|
Usage: info variables [-q] [-t TYPEREGEXP] [NAMEREGEXP]\n\
|
||||||
Prints the global and static variables.\n"),
|
Prints the global and static variables.\n"),
|
||||||
_("global and static variables")));
|
_("global and static variables")));
|
||||||
|
set_cmd_completer_handle_brkchars (c, info_print_command_completer);
|
||||||
if (dbx_commands)
|
if (dbx_commands)
|
||||||
add_com ("whereis", class_info, info_variables_command,
|
{
|
||||||
|
c = add_com ("whereis", class_info, info_variables_command,
|
||||||
info_print_args_help (_("\
|
info_print_args_help (_("\
|
||||||
All global and static variable names, or those matching REGEXPs.\n\
|
All global and static variable names, or those matching REGEXPs.\n\
|
||||||
Usage: whereis [-q] [-t TYPEREGEXP] [NAMEREGEXP]\n\
|
Usage: whereis [-q] [-t TYPEREGEXP] [NAMEREGEXP]\n\
|
||||||
Prints the global and static variables.\n"),
|
Prints the global and static variables.\n"),
|
||||||
_("global and static variables")));
|
_("global and static variables")));
|
||||||
|
set_cmd_completer_handle_brkchars (c, info_print_command_completer);
|
||||||
|
}
|
||||||
|
|
||||||
add_info ("functions", info_functions_command,
|
c = add_info ("functions", info_functions_command,
|
||||||
info_print_args_help (_("\
|
info_print_args_help (_("\
|
||||||
All function names or those matching REGEXPs.\n\
|
All function names or those matching REGEXPs.\n\
|
||||||
Usage: info functions [-q] [-t TYPEREGEXP] [NAMEREGEXP]\n\
|
Usage: info functions [-q] [-t TYPEREGEXP] [NAMEREGEXP]\n\
|
||||||
Prints the functions.\n"),
|
Prints the functions.\n"),
|
||||||
_("functions")));
|
_("functions")));
|
||||||
|
set_cmd_completer_handle_brkchars (c, info_print_command_completer);
|
||||||
|
|
||||||
/* FIXME: This command has at least the following problems:
|
/* FIXME: This command has at least the following problems:
|
||||||
1. It prints builtin types (in a very strange and confusing fashion).
|
1. It prints builtin types (in a very strange and confusing fashion).
|
||||||
|
Reference in New Issue
Block a user