gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / gdb / agent.c
1 /* Copyright (C) 2012-2020 Free Software Foundation, Inc.
2
3 This file is part of GDB.
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
17
18 #include "defs.h"
19 #include "command.h"
20 #include "gdbcmd.h"
21 #include "target.h"
22 #include "gdbsupport/agent.h"
23 #include "observable.h"
24 #include "objfiles.h"
25
26 /* Enum strings for "set|show agent". */
27
28 static const char can_use_agent_on[] = "on";
29 static const char can_use_agent_off[] = "off";
30 static const char *can_use_agent_enum[] =
31 {
32 can_use_agent_on,
33 can_use_agent_off,
34 NULL,
35 };
36
37 static const char *can_use_agent = can_use_agent_off;
38
39 static void
40 show_can_use_agent (struct ui_file *file, int from_tty,
41 struct cmd_list_element *c, const char *value)
42 {
43 fprintf_filtered (file,
44 _("Debugger's willingness to use agent in inferior "
45 "as a helper is %s.\n"), value);
46 }
47
48 static void
49 set_can_use_agent (const char *args, int from_tty, struct cmd_list_element *c)
50 {
51 bool can_use = (can_use_agent == can_use_agent_on);
52 if (can_use && !agent_loaded_p ())
53 {
54 /* Since the setting was off, we may not have observed the objfiles and
55 therefore not looked up the required symbols. Do so now. */
56 for (objfile *objfile : current_program_space->objfiles ())
57 if (agent_look_up_symbols (objfile) == 0)
58 break;
59 }
60 if (target_use_agent (can_use) == 0)
61 /* Something wrong during setting, set flag to default value. */
62 can_use_agent = can_use_agent_off;
63 }
64
65 static void
66 agent_new_objfile (struct objfile *objfile)
67 {
68 if (objfile == NULL || agent_loaded_p ())
69 return;
70
71 if (can_use_agent == can_use_agent_off)
72 return;
73
74 agent_look_up_symbols (objfile);
75 }
76
77 void _initialize_agent ();
78 void
79 _initialize_agent ()
80 {
81 gdb::observers::new_objfile.attach (agent_new_objfile);
82
83 add_setshow_enum_cmd ("agent", class_run,
84 can_use_agent_enum,
85 &can_use_agent, _("\
86 Set debugger's willingness to use agent as a helper."), _("\
87 Show debugger's willingness to use agent as a helper."), _("\
88 If on, GDB will delegate some of the debugging operations to the\n\
89 agent, if the target supports it. This will speed up those\n\
90 operations that are supported by the agent.\n\
91 If off, GDB will not use agent, even if such is supported by the\n\
92 target."),
93 set_can_use_agent,
94 show_can_use_agent,
95 &setlist, &showlist);
96 }
This page took 0.030192 seconds and 4 git commands to generate.