gdb: Move DJGPP/go32 bits to their own tdep file
[deliverable/binutils-gdb.git] / gdb / break-catch-throw.c
CommitLineData
916703c0
TT
1/* Everything about catch/throw catchpoints, for GDB.
2
61baf725 3 Copyright (C) 1986-2017 Free Software Foundation, Inc.
916703c0
TT
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20#include "defs.h"
21#include "arch-utils.h"
22#include <ctype.h>
23#include "breakpoint.h"
24#include "gdbcmd.h"
25#include "inferior.h"
26#include "annotate.h"
27#include "valprint.h"
28#include "cli/cli-utils.h"
29#include "completer.h"
30#include "gdb_obstack.h"
31#include "mi/mi-common.h"
15a73f56 32#include "linespec.h"
fc4746a2 33#include "probe.h"
72f1fe8a
TT
34#include "objfiles.h"
35#include "cp-abi.h"
cc16e6c9
TT
36#include "gdb_regex.h"
37#include "cp-support.h"
f00aae0f 38#include "location.h"
916703c0
TT
39
40/* Enums for exception-handling support. */
41enum exception_event_kind
42{
43 EX_EVENT_THROW,
44 EX_EVENT_RETHROW,
45 EX_EVENT_CATCH
46};
47
fc4746a2
TT
48/* Each spot where we may place an exception-related catchpoint has
49 two names: the SDT probe point and the function name. This
50 structure holds both. */
51
52struct exception_names
53{
54 /* The name of the probe point to try, in the form accepted by
55 'parse_probes'. */
56
57 const char *probe;
58
59 /* The name of the corresponding function. */
60
61 const char *function;
62};
63
64/* Names of the probe points and functions on which to break. This is
65 indexed by exception_event_kind. */
66static const struct exception_names exception_functions[] =
15a73f56 67{
fc4746a2
TT
68 { "-probe-stap libstdcxx:throw", "__cxa_throw" },
69 { "-probe-stap libstdcxx:rethrow", "__cxa_rethrow" },
70 { "-probe-stap libstdcxx:catch", "__cxa_begin_catch" }
15a73f56
TT
71};
72
73static struct breakpoint_ops gnu_v3_exception_catchpoint_ops;
74
75/* The type of an exception catchpoint. */
76
77struct exception_catchpoint
78{
79 /* The base class. */
80
81 struct breakpoint base;
82
83 /* The kind of exception catchpoint. */
84
85 enum exception_event_kind kind;
cc16e6c9
TT
86
87 /* If non-NULL, an xmalloc'd string holding the source form of the
88 regular expression to match against. */
89
90 char *exception_rx;
91
92 /* If non-NULL, an xmalloc'd, compiled regular expression which is
93 used to determine which exceptions to stop on. */
94
95 regex_t *pattern;
15a73f56
TT
96};
97
cc16e6c9
TT
98\f
99
100/* A helper function that fetches exception probe arguments. This
101 fills in *ARG0 (if non-NULL) and *ARG1 (which must be non-NULL).
102 It will throw an exception on any kind of failure. */
103
104static void
105fetch_probe_arguments (struct value **arg0, struct value **arg1)
106{
107 struct frame_info *frame = get_selected_frame (_("No frame selected"));
108 CORE_ADDR pc = get_frame_pc (frame);
729662a5 109 struct bound_probe pc_probe;
cc16e6c9
TT
110 unsigned n_args;
111
112 pc_probe = find_probe_by_pc (pc);
729662a5
TT
113 if (pc_probe.probe == NULL
114 || strcmp (pc_probe.probe->provider, "libstdcxx") != 0
115 || (strcmp (pc_probe.probe->name, "catch") != 0
116 && strcmp (pc_probe.probe->name, "throw") != 0
117 && strcmp (pc_probe.probe->name, "rethrow") != 0))
cc16e6c9
TT
118 error (_("not stopped at a C++ exception catchpoint"));
119
729662a5 120 n_args = get_probe_argument_count (pc_probe.probe, frame);
cc16e6c9
TT
121 if (n_args < 2)
122 error (_("C++ exception catchpoint has too few arguments"));
123
124 if (arg0 != NULL)
729662a5
TT
125 *arg0 = evaluate_probe_argument (pc_probe.probe, 0, frame);
126 *arg1 = evaluate_probe_argument (pc_probe.probe, 1, frame);
cc16e6c9
TT
127
128 if ((arg0 != NULL && *arg0 == NULL) || *arg1 == NULL)
129 error (_("error computing probe argument at c++ exception catchpoint"));
130}
131
132\f
133
916703c0
TT
134/* A helper function that returns a value indicating the kind of the
135 exception catchpoint B. */
136
137static enum exception_event_kind
138classify_exception_breakpoint (struct breakpoint *b)
139{
15a73f56
TT
140 struct exception_catchpoint *cp = (struct exception_catchpoint *) b;
141
142 return cp->kind;
143}
144
cc16e6c9
TT
145/* Implement the 'dtor' method. */
146
147static void
148dtor_exception_catchpoint (struct breakpoint *self)
149{
150 struct exception_catchpoint *cp = (struct exception_catchpoint *) self;
151
152 xfree (cp->exception_rx);
153 if (cp->pattern != NULL)
154 regfree (cp->pattern);
155 bkpt_breakpoint_ops.dtor (self);
156}
157
158/* Implement the 'check_status' method. */
159
160static void
161check_status_exception_catchpoint (struct bpstats *bs)
162{
163 struct exception_catchpoint *self
164 = (struct exception_catchpoint *) bs->breakpoint_at;
2f408ecb 165 std::string type_name;
cc16e6c9
TT
166
167 bkpt_breakpoint_ops.check_status (bs);
168 if (bs->stop == 0)
169 return;
170
171 if (self->pattern == NULL)
172 return;
173
492d29ea 174 TRY
cc16e6c9
TT
175 {
176 struct value *typeinfo_arg;
2f408ecb 177 std::string canon;
cc16e6c9
TT
178
179 fetch_probe_arguments (NULL, &typeinfo_arg);
fe978cb0 180 type_name = cplus_typename_from_type_info (typeinfo_arg);
cc16e6c9 181
2f408ecb
PA
182 canon = cp_canonicalize_string (type_name.c_str ());
183 if (!canon.empty ())
184 std::swap (type_name, canon);
cc16e6c9 185 }
492d29ea
PA
186 CATCH (e, RETURN_MASK_ERROR)
187 {
188 exception_print (gdb_stderr, e);
189 }
190 END_CATCH
cc16e6c9 191
2f408ecb 192 if (!type_name.empty ())
7556d4a4 193 {
2f408ecb 194 if (regexec (self->pattern, type_name.c_str (), 0, NULL, 0) != 0)
7556d4a4 195 bs->stop = 0;
7556d4a4 196 }
cc16e6c9
TT
197}
198
15a73f56
TT
199/* Implement the 're_set' method. */
200
201static void
202re_set_exception_catchpoint (struct breakpoint *self)
203{
204 struct symtabs_and_lines sals = {0};
205 struct symtabs_and_lines sals_end = {0};
15a73f56
TT
206 struct cleanup *cleanup;
207 enum exception_event_kind kind = classify_exception_breakpoint (self);
f00aae0f 208 struct event_location *location;
c2f4122d 209 struct program_space *filter_pspace = current_program_space;
15a73f56 210
1bff71c3 211 /* We first try to use the probe interface. */
492d29ea 212 TRY
15a73f56 213 {
5b56227b
KS
214 location
215 = new_probe_location (exception_functions[kind].probe);
f00aae0f 216 cleanup = make_cleanup_delete_event_location (location);
c2f4122d 217 sals = parse_probes (location, filter_pspace, NULL);
f00aae0f 218 do_cleanups (cleanup);
1bff71c3 219 }
492d29ea 220 CATCH (e, RETURN_MASK_ERROR)
1bff71c3 221 {
1bff71c3
SDJ
222 /* Using the probe interface failed. Let's fallback to the normal
223 catchpoint mode. */
492d29ea 224 TRY
fc4746a2 225 {
67994074 226 struct explicit_location explicit_loc;
1bff71c3 227
67994074
KS
228 initialize_explicit_location (&explicit_loc);
229 explicit_loc.function_name
00e52e53 230 = ASTRDUP (exception_functions[kind].function);
67994074 231 location = new_explicit_location (&explicit_loc);
f00aae0f 232 cleanup = make_cleanup_delete_event_location (location);
c2f4122d 233 self->ops->decode_location (self, location, filter_pspace, &sals);
f00aae0f 234 do_cleanups (cleanup);
fc4746a2 235 }
492d29ea 236 CATCH (ex, RETURN_MASK_ERROR)
7556d4a4
PA
237 {
238 /* NOT_FOUND_ERROR just means the breakpoint will be
239 pending, so let it through. */
240 if (ex.error != NOT_FOUND_ERROR)
241 throw_exception (ex);
242 }
492d29ea 243 END_CATCH
15a73f56 244 }
492d29ea 245 END_CATCH
15a73f56
TT
246
247 cleanup = make_cleanup (xfree, sals.sals);
c2f4122d 248 update_breakpoint_locations (self, filter_pspace, sals, sals_end);
15a73f56 249 do_cleanups (cleanup);
916703c0
TT
250}
251
252static enum print_stop_action
253print_it_exception_catchpoint (bpstat bs)
254{
255 struct ui_out *uiout = current_uiout;
256 struct breakpoint *b = bs->breakpoint_at;
257 int bp_temp;
258 enum exception_event_kind kind = classify_exception_breakpoint (b);
259
260 annotate_catchpoint (b->number);
f303dbd6 261 maybe_print_thread_hit_breakpoint (uiout);
916703c0
TT
262
263 bp_temp = b->disposition == disp_del;
112e8700 264 uiout->text (bp_temp ? "Temporary catchpoint "
916703c0 265 : "Catchpoint ");
112e8700
SM
266 if (!uiout->is_mi_like_p ())
267 uiout->field_int ("bkptno", b->number);
268 uiout->text ((kind == EX_EVENT_THROW ? " (exception thrown), "
916703c0
TT
269 : (kind == EX_EVENT_CATCH ? " (exception caught), "
270 : " (exception rethrown), ")));
112e8700 271 if (uiout->is_mi_like_p ())
916703c0 272 {
112e8700 273 uiout->field_string ("reason",
916703c0 274 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
112e8700
SM
275 uiout->field_string ("disp", bpdisp_text (b->disposition));
276 uiout->field_int ("bkptno", b->number);
916703c0
TT
277 }
278 return PRINT_SRC_AND_LOC;
279}
280
281static void
282print_one_exception_catchpoint (struct breakpoint *b,
283 struct bp_location **last_loc)
284{
285 struct value_print_options opts;
286 struct ui_out *uiout = current_uiout;
287 enum exception_event_kind kind = classify_exception_breakpoint (b);
288
289 get_user_print_options (&opts);
290 if (opts.addressprint)
291 {
292 annotate_field (4);
293 if (b->loc == NULL || b->loc->shlib_disabled)
112e8700 294 uiout->field_string ("addr", "<PENDING>");
916703c0 295 else
112e8700 296 uiout->field_core_addr ("addr",
916703c0
TT
297 b->loc->gdbarch, b->loc->address);
298 }
299 annotate_field (5);
300 if (b->loc)
301 *last_loc = b->loc;
302
303 switch (kind)
304 {
305 case EX_EVENT_THROW:
112e8700
SM
306 uiout->field_string ("what", "exception throw");
307 if (uiout->is_mi_like_p ())
308 uiout->field_string ("catch-type", "throw");
916703c0
TT
309 break;
310
311 case EX_EVENT_RETHROW:
112e8700
SM
312 uiout->field_string ("what", "exception rethrow");
313 if (uiout->is_mi_like_p ())
314 uiout->field_string ("catch-type", "rethrow");
916703c0
TT
315 break;
316
317 case EX_EVENT_CATCH:
112e8700
SM
318 uiout->field_string ("what", "exception catch");
319 if (uiout->is_mi_like_p ())
320 uiout->field_string ("catch-type", "catch");
916703c0
TT
321 break;
322 }
323}
324
cc16e6c9
TT
325/* Implement the 'print_one_detail' method. */
326
327static void
328print_one_detail_exception_catchpoint (const struct breakpoint *b,
329 struct ui_out *uiout)
330{
331 const struct exception_catchpoint *cp
332 = (const struct exception_catchpoint *) b;
333
334 if (cp->exception_rx != NULL)
335 {
112e8700
SM
336 uiout->text (_("\tmatching: "));
337 uiout->field_string ("regexp", cp->exception_rx);
338 uiout->text ("\n");
cc16e6c9
TT
339 }
340}
341
916703c0
TT
342static void
343print_mention_exception_catchpoint (struct breakpoint *b)
344{
345 struct ui_out *uiout = current_uiout;
346 int bp_temp;
347 enum exception_event_kind kind = classify_exception_breakpoint (b);
348
349 bp_temp = b->disposition == disp_del;
112e8700 350 uiout->text (bp_temp ? _("Temporary catchpoint ")
916703c0 351 : _("Catchpoint "));
112e8700
SM
352 uiout->field_int ("bkptno", b->number);
353 uiout->text ((kind == EX_EVENT_THROW ? _(" (throw)")
916703c0
TT
354 : (kind == EX_EVENT_CATCH ? _(" (catch)")
355 : _(" (rethrow)"))));
356}
357
358/* Implement the "print_recreate" breakpoint_ops method for throw and
359 catch catchpoints. */
360
361static void
362print_recreate_exception_catchpoint (struct breakpoint *b,
363 struct ui_file *fp)
364{
365 int bp_temp;
366 enum exception_event_kind kind = classify_exception_breakpoint (b);
367
368 bp_temp = b->disposition == disp_del;
369 fprintf_unfiltered (fp, bp_temp ? "tcatch " : "catch ");
370 switch (kind)
371 {
372 case EX_EVENT_THROW:
373 fprintf_unfiltered (fp, "throw");
374 break;
375 case EX_EVENT_CATCH:
376 fprintf_unfiltered (fp, "catch");
377 break;
378 case EX_EVENT_RETHROW:
379 fprintf_unfiltered (fp, "rethrow");
380 break;
381 }
382 print_recreate_thread (b, fp);
383}
384
15a73f56 385static void
63160a43
PA
386handle_gnu_v3_exceptions (int tempflag, char *except_rx,
387 const char *cond_string,
916703c0
TT
388 enum exception_event_kind ex_event, int from_tty)
389{
cc16e6c9
TT
390 regex_t *pattern = NULL;
391
392 if (except_rx != NULL)
393 {
394 pattern = XNEW (regex_t);
395 make_cleanup (xfree, pattern);
396
397 compile_rx_or_error (pattern, except_rx,
398 _("invalid type-matching regexp"));
399 }
916703c0 400
b22e99fd 401 std::unique_ptr<exception_catchpoint> cp (new exception_catchpoint ());
cc16e6c9 402
15a73f56
TT
403 init_catchpoint (&cp->base, get_current_arch (), tempflag, cond_string,
404 &gnu_v3_exception_catchpoint_ops);
405 /* We need to reset 'type' in order for code in breakpoint.c to do
406 the right thing. */
407 cp->base.type = bp_breakpoint;
408 cp->kind = ex_event;
cc16e6c9
TT
409 cp->exception_rx = except_rx;
410 cp->pattern = pattern;
15a73f56
TT
411
412 re_set_exception_catchpoint (&cp->base);
413
414 install_breakpoint (0, &cp->base, 1);
4d01a485 415 cp.release ();
cc16e6c9
TT
416}
417
418/* Look for an "if" token in *STRING. The "if" token must be preceded
419 by whitespace.
420
421 If there is any non-whitespace text between *STRING and the "if"
422 token, then it is returned in a newly-xmalloc'd string. Otherwise,
423 this returns NULL.
424
425 STRING is updated to point to the "if" token, if it exists, or to
426 the end of the string. */
427
428static char *
63160a43 429extract_exception_regexp (const char **string)
cc16e6c9 430{
63160a43
PA
431 const char *start;
432 const char *last, *last_space;
cc16e6c9 433
63160a43 434 start = skip_spaces_const (*string);
cc16e6c9
TT
435
436 last = start;
437 last_space = start;
438 while (*last != '\0')
439 {
63160a43 440 const char *if_token = last;
cc16e6c9
TT
441
442 /* Check for the "if". */
443 if (check_for_argument (&if_token, "if", 2))
444 break;
445
446 /* No "if" token here. Skip to the next word start. */
447 last_space = skip_to_space (last);
63160a43 448 last = skip_spaces_const (last_space);
cc16e6c9
TT
449 }
450
451 *string = last;
452 if (last_space > start)
453 return savestring (start, last_space - start);
454 return NULL;
916703c0
TT
455}
456
457/* Deal with "catch catch", "catch throw", and "catch rethrow"
458 commands. */
459
460static void
63160a43
PA
461catch_exception_command_1 (enum exception_event_kind ex_event,
462 char *arg_entry,
916703c0
TT
463 int tempflag, int from_tty)
464{
cc16e6c9 465 char *except_rx;
63160a43 466 const char *cond_string = NULL;
cc16e6c9 467 struct cleanup *cleanup;
63160a43 468 const char *arg = arg_entry;
916703c0
TT
469
470 if (!arg)
471 arg = "";
63160a43 472 arg = skip_spaces_const (arg);
916703c0 473
cc16e6c9
TT
474 except_rx = extract_exception_regexp (&arg);
475 cleanup = make_cleanup (xfree, except_rx);
476
916703c0
TT
477 cond_string = ep_parse_optional_if_clause (&arg);
478
479 if ((*arg != '\0') && !isspace (*arg))
480 error (_("Junk at end of arguments."));
481
482 if (ex_event != EX_EVENT_THROW
483 && ex_event != EX_EVENT_CATCH
484 && ex_event != EX_EVENT_RETHROW)
485 error (_("Unsupported or unknown exception event; cannot catch it"));
486
cc16e6c9
TT
487 handle_gnu_v3_exceptions (tempflag, except_rx, cond_string,
488 ex_event, from_tty);
489
490 discard_cleanups (cleanup);
916703c0
TT
491}
492
493/* Implementation of "catch catch" command. */
494
495static void
496catch_catch_command (char *arg, int from_tty, struct cmd_list_element *command)
497{
498 int tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
499
500 catch_exception_command_1 (EX_EVENT_CATCH, arg, tempflag, from_tty);
501}
502
503/* Implementation of "catch throw" command. */
504
505static void
506catch_throw_command (char *arg, int from_tty, struct cmd_list_element *command)
507{
508 int tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
509
510 catch_exception_command_1 (EX_EVENT_THROW, arg, tempflag, from_tty);
511}
512
513/* Implementation of "catch rethrow" command. */
514
515static void
516catch_rethrow_command (char *arg, int from_tty,
517 struct cmd_list_element *command)
518{
519 int tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
520
521 catch_exception_command_1 (EX_EVENT_RETHROW, arg, tempflag, from_tty);
522}
523
524\f
525
72f1fe8a
TT
526/* Implement the 'make_value' method for the $_exception
527 internalvar. */
528
529static struct value *
530compute_exception (struct gdbarch *argc, struct internalvar *var, void *ignore)
531{
72f1fe8a
TT
532 struct value *arg0, *arg1;
533 struct type *obj_type;
534
cc16e6c9 535 fetch_probe_arguments (&arg0, &arg1);
72f1fe8a
TT
536
537 /* ARG0 is a pointer to the exception object. ARG1 is a pointer to
538 the std::type_info for the exception. Now we find the type from
539 the type_info and cast the result. */
540 obj_type = cplus_type_from_type_info (arg1);
541 return value_ind (value_cast (make_pointer_type (obj_type, NULL), arg0));
542}
543
544/* Implementation of the '$_exception' variable. */
545
546static const struct internalvar_funcs exception_funcs =
547{
548 compute_exception,
549 NULL,
550 NULL
551};
552
553\f
554
916703c0
TT
555static void
556initialize_throw_catchpoint_ops (void)
557{
558 struct breakpoint_ops *ops;
559
560 initialize_breakpoint_ops ();
561
562 /* GNU v3 exception catchpoints. */
563 ops = &gnu_v3_exception_catchpoint_ops;
564 *ops = bkpt_breakpoint_ops;
cc16e6c9 565 ops->dtor = dtor_exception_catchpoint;
15a73f56 566 ops->re_set = re_set_exception_catchpoint;
916703c0
TT
567 ops->print_it = print_it_exception_catchpoint;
568 ops->print_one = print_one_exception_catchpoint;
569 ops->print_mention = print_mention_exception_catchpoint;
570 ops->print_recreate = print_recreate_exception_catchpoint;
cc16e6c9
TT
571 ops->print_one_detail = print_one_detail_exception_catchpoint;
572 ops->check_status = check_status_exception_catchpoint;
916703c0
TT
573}
574
575initialize_file_ftype _initialize_break_catch_throw;
576
577void
578_initialize_break_catch_throw (void)
579{
580 initialize_throw_catchpoint_ops ();
581
582 /* Add catch and tcatch sub-commands. */
583 add_catch_command ("catch", _("\
584Catch an exception, when caught."),
585 catch_catch_command,
586 NULL,
587 CATCH_PERMANENT,
588 CATCH_TEMPORARY);
589 add_catch_command ("throw", _("\
590Catch an exception, when thrown."),
591 catch_throw_command,
592 NULL,
593 CATCH_PERMANENT,
594 CATCH_TEMPORARY);
595 add_catch_command ("rethrow", _("\
596Catch an exception, when rethrown."),
597 catch_rethrow_command,
598 NULL,
599 CATCH_PERMANENT,
600 CATCH_TEMPORARY);
72f1fe8a
TT
601
602 create_internalvar_type_lazy ("_exception", &exception_funcs, NULL);
916703c0 603}
This page took 0.357101 seconds and 4 git commands to generate.