Change regcache list to be an hash map
[deliverable/binutils-gdb.git] / gdb / cli / cli-cmds.h
CommitLineData
d318976c 1/* Header file for GDB CLI command implementation library.
42a4f53d 2 Copyright (C) 2000-2019 Free Software Foundation, Inc.
d318976c
FN
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
a9762ec7 6 the Free Software Foundation; either version 3 of the License, or
d318976c
FN
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
a9762ec7 15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
d318976c 16
1a5c2598
TT
17#ifndef CLI_CLI_CMDS_H
18#define CLI_CLI_CMDS_H
d318976c 19
268a13a5
TT
20#include "gdbsupport/filestuff.h"
21#include "gdbsupport/gdb_optional.h"
0d12e84c 22#include "completer.h"
ed166945 23
d318976c
FN
24/* Chain containing all defined commands. */
25
26extern struct cmd_list_element *cmdlist;
27
28/* Chain containing all defined info subcommands. */
29
30extern struct cmd_list_element *infolist;
31
ebcd3b23 32/* Chain containing all defined enable subcommands. */
d318976c
FN
33
34extern struct cmd_list_element *enablelist;
35
ebcd3b23 36/* Chain containing all defined disable subcommands. */
d318976c
FN
37
38extern struct cmd_list_element *disablelist;
39
ebcd3b23 40/* Chain containing all defined delete subcommands. */
d318976c
FN
41
42extern struct cmd_list_element *deletelist;
43
ebcd3b23 44/* Chain containing all defined detach subcommands. */
f73adfeb
AS
45
46extern struct cmd_list_element *detachlist;
47
2277426b
PA
48/* Chain containing all defined kill subcommands. */
49
50extern struct cmd_list_element *killlist;
51
ebcd3b23 52/* Chain containing all defined stop subcommands. */
d318976c
FN
53
54extern struct cmd_list_element *stoplist;
55
d318976c
FN
56/* Chain containing all defined set subcommands */
57
58extern struct cmd_list_element *setlist;
59
60/* Chain containing all defined unset subcommands */
61
62extern struct cmd_list_element *unsetlist;
63
64/* Chain containing all defined show subcommands. */
65
66extern struct cmd_list_element *showlist;
67
68/* Chain containing all defined \"set history\". */
69
70extern struct cmd_list_element *sethistlist;
71
72/* Chain containing all defined \"show history\". */
73
74extern struct cmd_list_element *showhistlist;
75
76/* Chain containing all defined \"unset history\". */
77
78extern struct cmd_list_element *unsethistlist;
79
ebcd3b23 80/* Chain containing all defined maintenance subcommands. */
d318976c
FN
81
82extern struct cmd_list_element *maintenancelist;
83
ebcd3b23 84/* Chain containing all defined "maintenance info" subcommands. */
d318976c
FN
85
86extern struct cmd_list_element *maintenanceinfolist;
87
ebcd3b23 88/* Chain containing all defined "maintenance print" subcommands. */
d318976c
FN
89
90extern struct cmd_list_element *maintenanceprintlist;
91
92extern struct cmd_list_element *setprintlist;
93
94extern struct cmd_list_element *showprintlist;
95
96extern struct cmd_list_element *setdebuglist;
97
98extern struct cmd_list_element *showdebuglist;
99
100extern struct cmd_list_element *setchecklist;
101
102extern struct cmd_list_element *showchecklist;
103
cc8dee1f
CB
104/* Limit the call depth of user-defined commands */
105
106extern unsigned int max_user_call_depth;
107
d318976c
FN
108/* Exported to gdb/top.c */
109
110void init_cmd_lists (void);
111
bbaca940 112int is_complete_command (struct cmd_list_element *cmd);
d318976c
FN
113
114/* Exported to gdb/main.c */
115
5e93d4c6 116extern void cd_command (const char *, int);
d318976c
FN
117
118/* Exported to gdb/top.c and gdb/main.c */
119
0b39b52e 120extern void quit_command (const char *, int);
d318976c 121
50dd9793 122extern void source_script (const char *, int);
d318976c 123
8a1ea21f
DE
124/* Exported to objfiles.c. */
125
ed166945
TT
126/* The script that was opened. */
127struct open_script
128{
129 gdb_file_up stream;
130 gdb::unique_xmalloc_ptr<char> full_path;
131
132 open_script (gdb_file_up &&stream_,
133 gdb::unique_xmalloc_ptr<char> &&full_path_)
134 : stream (std::move (stream_)),
135 full_path (std::move (full_path_))
136 {
137 }
138};
139
140extern gdb::optional<open_script>
141 find_and_open_script (const char *file, int search_path);
8a1ea21f 142
16026cd7
AS
143/* Command tracing state. */
144
145extern int source_verbose;
491144b5 146extern bool trace_commands;
16026cd7 147
fdbc9870
PA
148/* Common code for the "with" and "maintenance with" commands.
149 SET_CMD_PREFIX is the spelling of the corresponding "set" command
150 prefix: i.e., "set " or "maintenance set ". SETLIST is the command
151 element for the same "set" command prefix. */
152extern void with_command_1 (const char *set_cmd_prefix,
153 cmd_list_element *setlist,
154 const char *args, int from_tty);
155
156/* Common code for the completers of the "with" and "maintenance with"
157 commands. SET_CMD_PREFIX is the spelling of the corresponding
158 "set" command prefix: i.e., "set " or "maintenance set ". */
159extern void with_command_completer_1 (const char *set_cmd_prefix,
160 completion_tracker &tracker,
161 const char *text);
162
1a5c2598 163#endif /* CLI_CLI_CMDS_H */
This page took 1.146344 seconds and 4 git commands to generate.