1 /* MI Command Set - catch commands.
2 Copyright (C) 2012-2020 Free Software Foundation, Inc.
4 Contributed by Intel Corporation.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 #include "arch-utils.h"
23 #include "breakpoint.h"
26 #include "mi-getopt.h"
27 #include "mi-cmd-break.h"
29 /* Handler for the -catch-assert command. */
32 mi_cmd_catch_assert (const char *cmd
, char *argv
[], int argc
)
34 struct gdbarch
*gdbarch
= get_current_arch();
35 std::string condition
;
44 OPT_CONDITION
, OPT_DISABLED
, OPT_TEMP
,
46 static const struct mi_opt opts
[] =
48 { "c", OPT_CONDITION
, 1},
49 { "d", OPT_DISABLED
, 0 },
56 int opt
= mi_getopt ("-catch-assert", argc
, argv
, opts
,
62 switch ((enum opt
) opt
)
65 condition
.assign (oarg
);
76 /* This command does not accept any argument. Make sure the user
77 did not provide any. */
79 error (_("Invalid argument: %s"), argv
[oind
]);
81 scoped_restore restore_breakpoint_reporting
= setup_breakpoint_reporting ();
82 create_ada_exception_catchpoint (gdbarch
, ada_catch_assert
, std::string (),
83 condition
, temp
, enabled
, 0);
86 /* Handler for the -catch-exception command. */
89 mi_cmd_catch_exception (const char *cmd
, char *argv
[], int argc
)
91 struct gdbarch
*gdbarch
= get_current_arch();
92 std::string condition
;
94 std::string exception_name
;
96 enum ada_exception_catchpoint_kind ex_kind
= ada_catch_exception
;
103 OPT_CONDITION
, OPT_DISABLED
, OPT_EXCEPTION_NAME
, OPT_TEMP
,
106 static const struct mi_opt opts
[] =
108 { "c", OPT_CONDITION
, 1},
109 { "d", OPT_DISABLED
, 0 },
110 { "e", OPT_EXCEPTION_NAME
, 1 },
111 { "t", OPT_TEMP
, 0 },
112 { "u", OPT_UNHANDLED
, 0},
118 int opt
= mi_getopt ("-catch-exception", argc
, argv
, opts
,
124 switch ((enum opt
) opt
)
127 condition
.assign (oarg
);
132 case OPT_EXCEPTION_NAME
:
133 exception_name
= oarg
;
139 ex_kind
= ada_catch_exception_unhandled
;
144 /* This command does not accept any argument. Make sure the user
145 did not provide any. */
147 error (_("Invalid argument: %s"), argv
[oind
]);
149 /* Specifying an exception name does not make sense when requesting
150 an unhandled exception breakpoint. */
151 if (ex_kind
== ada_catch_exception_unhandled
&& !exception_name
.empty ())
152 error (_("\"-e\" and \"-u\" are mutually exclusive"));
154 scoped_restore restore_breakpoint_reporting
= setup_breakpoint_reporting ();
155 create_ada_exception_catchpoint (gdbarch
, ex_kind
,
157 condition
, temp
, enabled
, 0);
160 /* Handler for the -catch-handlers command. */
163 mi_cmd_catch_handlers (const char *cmd
, char *argv
[], int argc
)
165 struct gdbarch
*gdbarch
= get_current_arch ();
166 std::string condition
;
168 std::string exception_name
;
176 OPT_CONDITION
, OPT_DISABLED
, OPT_EXCEPTION_NAME
, OPT_TEMP
178 static const struct mi_opt opts
[] =
180 { "c", OPT_CONDITION
, 1},
181 { "d", OPT_DISABLED
, 0 },
182 { "e", OPT_EXCEPTION_NAME
, 1 },
183 { "t", OPT_TEMP
, 0 },
189 int opt
= mi_getopt ("-catch-handlers", argc
, argv
, opts
,
195 switch ((enum opt
) opt
)
198 condition
.assign (oarg
);
203 case OPT_EXCEPTION_NAME
:
204 exception_name
= oarg
;
212 /* This command does not accept any argument. Make sure the user
213 did not provide any. */
215 error (_("Invalid argument: %s"), argv
[oind
]);
217 scoped_restore restore_breakpoint_reporting
218 = setup_breakpoint_reporting ();
219 create_ada_exception_catchpoint (gdbarch
, ada_catch_handlers
,
221 condition
, temp
, enabled
, 0);
224 /* Common path for the -catch-load and -catch-unload. */
227 mi_catch_load_unload (int load
, char *argv
[], int argc
)
229 const char *actual_cmd
= load
? "-catch-load" : "-catch-unload";
239 static const struct mi_opt opts
[] =
241 { "t", OPT_TEMP
, 0 },
242 { "d", OPT_DISABLED
, 0 },
248 int opt
= mi_getopt (actual_cmd
, argc
, argv
, opts
,
254 switch ((enum opt
) opt
)
266 error (_("-catch-load/unload: Missing <library name>"));
268 error (_("-catch-load/unload: Garbage following the <library name>"));
270 scoped_restore restore_breakpoint_reporting
= setup_breakpoint_reporting ();
271 add_solib_catchpoint (argv
[oind
], load
, temp
, enabled
);
274 /* Handler for the -catch-load. */
277 mi_cmd_catch_load (const char *cmd
, char *argv
[], int argc
)
279 mi_catch_load_unload (1, argv
, argc
);
283 /* Handler for the -catch-unload. */
286 mi_cmd_catch_unload (const char *cmd
, char *argv
[], int argc
)
288 mi_catch_load_unload (0, argv
, argc
);
291 /* Core handler for -catch-throw, -catch-rethrow, and -catch-catch
292 commands. The argument handling for all of these is identical, we just
293 pass KIND through to GDB's core to select the correct event type. */
296 mi_cmd_catch_exception_event (enum exception_event_kind kind
,
297 const char *cmd
, char *argv
[], int argc
)
308 static const struct mi_opt opts
[] =
310 { "t", OPT_TEMP
, 0 },
311 { "r", OPT_REGEX
, 1 },
317 int opt
= mi_getopt (cmd
, argc
, argv
, opts
,
323 switch ((enum opt
) opt
)
334 scoped_restore restore_breakpoint_reporting
= setup_breakpoint_reporting ();
335 catch_exception_event (kind
, regex
, temp
, 0 /* from_tty */);
338 /* Handler for -catch-throw. */
341 mi_cmd_catch_throw (const char *cmd
, char *argv
[], int argc
)
343 mi_cmd_catch_exception_event (EX_EVENT_THROW
, cmd
, argv
, argc
);
346 /* Handler for -catch-rethrow. */
349 mi_cmd_catch_rethrow (const char *cmd
, char *argv
[], int argc
)
351 mi_cmd_catch_exception_event (EX_EVENT_RETHROW
, cmd
, argv
, argc
);
354 /* Handler for -catch-catch. */
357 mi_cmd_catch_catch (const char *cmd
, char *argv
[], int argc
)
359 mi_cmd_catch_exception_event (EX_EVENT_CATCH
, cmd
, argv
, argc
);