Normalize TRY_CATCH exception handling block
[deliverable/binutils-gdb.git] / gdb / break-catch-throw.c
CommitLineData
916703c0
TT
1/* Everything about catch/throw catchpoints, for GDB.
2
32d0add0 3 Copyright (C) 1986-2015 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"
916703c0
TT
38
39/* Enums for exception-handling support. */
40enum exception_event_kind
41{
42 EX_EVENT_THROW,
43 EX_EVENT_RETHROW,
44 EX_EVENT_CATCH
45};
46
fc4746a2
TT
47/* Each spot where we may place an exception-related catchpoint has
48 two names: the SDT probe point and the function name. This
49 structure holds both. */
50
51struct exception_names
52{
53 /* The name of the probe point to try, in the form accepted by
54 'parse_probes'. */
55
56 const char *probe;
57
58 /* The name of the corresponding function. */
59
60 const char *function;
61};
62
63/* Names of the probe points and functions on which to break. This is
64 indexed by exception_event_kind. */
65static const struct exception_names exception_functions[] =
15a73f56 66{
fc4746a2
TT
67 { "-probe-stap libstdcxx:throw", "__cxa_throw" },
68 { "-probe-stap libstdcxx:rethrow", "__cxa_rethrow" },
69 { "-probe-stap libstdcxx:catch", "__cxa_begin_catch" }
15a73f56
TT
70};
71
72static struct breakpoint_ops gnu_v3_exception_catchpoint_ops;
73
74/* The type of an exception catchpoint. */
75
76struct exception_catchpoint
77{
78 /* The base class. */
79
80 struct breakpoint base;
81
82 /* The kind of exception catchpoint. */
83
84 enum exception_event_kind kind;
cc16e6c9
TT
85
86 /* If non-NULL, an xmalloc'd string holding the source form of the
87 regular expression to match against. */
88
89 char *exception_rx;
90
91 /* If non-NULL, an xmalloc'd, compiled regular expression which is
92 used to determine which exceptions to stop on. */
93
94 regex_t *pattern;
15a73f56
TT
95};
96
cc16e6c9
TT
97\f
98
99/* A helper function that fetches exception probe arguments. This
100 fills in *ARG0 (if non-NULL) and *ARG1 (which must be non-NULL).
101 It will throw an exception on any kind of failure. */
102
103static void
104fetch_probe_arguments (struct value **arg0, struct value **arg1)
105{
106 struct frame_info *frame = get_selected_frame (_("No frame selected"));
107 CORE_ADDR pc = get_frame_pc (frame);
729662a5 108 struct bound_probe pc_probe;
cc16e6c9
TT
109 const struct sym_probe_fns *pc_probe_fns;
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;
fe978cb0 165 char *type_name = NULL;
cc16e6c9
TT
166 volatile struct gdb_exception e;
167
168 bkpt_breakpoint_ops.check_status (bs);
169 if (bs->stop == 0)
170 return;
171
172 if (self->pattern == NULL)
173 return;
174
175 TRY_CATCH (e, RETURN_MASK_ERROR)
176 {
177 struct value *typeinfo_arg;
178 char *canon;
179
180 fetch_probe_arguments (NULL, &typeinfo_arg);
fe978cb0 181 type_name = cplus_typename_from_type_info (typeinfo_arg);
cc16e6c9 182
fe978cb0 183 canon = cp_canonicalize_string (type_name);
cc16e6c9
TT
184 if (canon != NULL)
185 {
fe978cb0
PA
186 xfree (type_name);
187 type_name = canon;
cc16e6c9
TT
188 }
189 }
cc16e6c9
TT
190 if (e.reason < 0)
191 exception_print (gdb_stderr, e);
cc16e6c9 192
7556d4a4
PA
193 if (type_name != NULL)
194 {
195 if (regexec (self->pattern, type_name, 0, NULL, 0) != 0)
196 bs->stop = 0;
197
198 xfree (type_name);
199 }
cc16e6c9
TT
200}
201
15a73f56
TT
202/* Implement the 're_set' method. */
203
204static void
205re_set_exception_catchpoint (struct breakpoint *self)
206{
207 struct symtabs_and_lines sals = {0};
208 struct symtabs_and_lines sals_end = {0};
209 volatile struct gdb_exception e;
210 struct cleanup *cleanup;
211 enum exception_event_kind kind = classify_exception_breakpoint (self);
212
1bff71c3
SDJ
213 /* We first try to use the probe interface. */
214 TRY_CATCH (e, RETURN_MASK_ERROR)
15a73f56 215 {
1bff71c3
SDJ
216 char *spec = ASTRDUP (exception_functions[kind].probe);
217
218 sals = parse_probes (&spec, NULL);
219 }
220
221 if (e.reason < 0)
222 {
223 volatile struct gdb_exception ex;
224
225 /* Using the probe interface failed. Let's fallback to the normal
226 catchpoint mode. */
227 TRY_CATCH (ex, RETURN_MASK_ERROR)
fc4746a2 228 {
1bff71c3
SDJ
229 char *spec = ASTRDUP (exception_functions[kind].function);
230
231 self->ops->decode_linespec (self, &spec, &sals);
fc4746a2 232 }
7556d4a4
PA
233 if (ex.reason < 0)
234 {
235 /* NOT_FOUND_ERROR just means the breakpoint will be
236 pending, so let it through. */
237 if (ex.error != NOT_FOUND_ERROR)
238 throw_exception (ex);
239 }
15a73f56 240 }
15a73f56
TT
241
242 cleanup = make_cleanup (xfree, sals.sals);
243 update_breakpoint_locations (self, sals, sals_end);
244 do_cleanups (cleanup);
916703c0
TT
245}
246
247static enum print_stop_action
248print_it_exception_catchpoint (bpstat bs)
249{
250 struct ui_out *uiout = current_uiout;
251 struct breakpoint *b = bs->breakpoint_at;
252 int bp_temp;
253 enum exception_event_kind kind = classify_exception_breakpoint (b);
254
255 annotate_catchpoint (b->number);
256
257 bp_temp = b->disposition == disp_del;
258 ui_out_text (uiout,
259 bp_temp ? "Temporary catchpoint "
260 : "Catchpoint ");
261 if (!ui_out_is_mi_like_p (uiout))
262 ui_out_field_int (uiout, "bkptno", b->number);
263 ui_out_text (uiout,
264 (kind == EX_EVENT_THROW ? " (exception thrown), "
265 : (kind == EX_EVENT_CATCH ? " (exception caught), "
266 : " (exception rethrown), ")));
267 if (ui_out_is_mi_like_p (uiout))
268 {
269 ui_out_field_string (uiout, "reason",
270 async_reason_lookup (EXEC_ASYNC_BREAKPOINT_HIT));
271 ui_out_field_string (uiout, "disp", bpdisp_text (b->disposition));
272 ui_out_field_int (uiout, "bkptno", b->number);
273 }
274 return PRINT_SRC_AND_LOC;
275}
276
277static void
278print_one_exception_catchpoint (struct breakpoint *b,
279 struct bp_location **last_loc)
280{
281 struct value_print_options opts;
282 struct ui_out *uiout = current_uiout;
283 enum exception_event_kind kind = classify_exception_breakpoint (b);
284
285 get_user_print_options (&opts);
286 if (opts.addressprint)
287 {
288 annotate_field (4);
289 if (b->loc == NULL || b->loc->shlib_disabled)
290 ui_out_field_string (uiout, "addr", "<PENDING>");
291 else
292 ui_out_field_core_addr (uiout, "addr",
293 b->loc->gdbarch, b->loc->address);
294 }
295 annotate_field (5);
296 if (b->loc)
297 *last_loc = b->loc;
298
299 switch (kind)
300 {
301 case EX_EVENT_THROW:
302 ui_out_field_string (uiout, "what", "exception throw");
303 if (ui_out_is_mi_like_p (uiout))
304 ui_out_field_string (uiout, "catch-type", "throw");
305 break;
306
307 case EX_EVENT_RETHROW:
308 ui_out_field_string (uiout, "what", "exception rethrow");
309 if (ui_out_is_mi_like_p (uiout))
310 ui_out_field_string (uiout, "catch-type", "rethrow");
311 break;
312
313 case EX_EVENT_CATCH:
314 ui_out_field_string (uiout, "what", "exception catch");
315 if (ui_out_is_mi_like_p (uiout))
316 ui_out_field_string (uiout, "catch-type", "catch");
317 break;
318 }
319}
320
cc16e6c9
TT
321/* Implement the 'print_one_detail' method. */
322
323static void
324print_one_detail_exception_catchpoint (const struct breakpoint *b,
325 struct ui_out *uiout)
326{
327 const struct exception_catchpoint *cp
328 = (const struct exception_catchpoint *) b;
329
330 if (cp->exception_rx != NULL)
331 {
332 ui_out_text (uiout, _("\tmatching: "));
333 ui_out_field_string (uiout, "regexp", cp->exception_rx);
334 ui_out_text (uiout, "\n");
335 }
336}
337
916703c0
TT
338static void
339print_mention_exception_catchpoint (struct breakpoint *b)
340{
341 struct ui_out *uiout = current_uiout;
342 int bp_temp;
343 enum exception_event_kind kind = classify_exception_breakpoint (b);
344
345 bp_temp = b->disposition == disp_del;
346 ui_out_text (uiout, bp_temp ? _("Temporary catchpoint ")
347 : _("Catchpoint "));
348 ui_out_field_int (uiout, "bkptno", b->number);
349 ui_out_text (uiout, (kind == EX_EVENT_THROW ? _(" (throw)")
350 : (kind == EX_EVENT_CATCH ? _(" (catch)")
351 : _(" (rethrow)"))));
352}
353
354/* Implement the "print_recreate" breakpoint_ops method for throw and
355 catch catchpoints. */
356
357static void
358print_recreate_exception_catchpoint (struct breakpoint *b,
359 struct ui_file *fp)
360{
361 int bp_temp;
362 enum exception_event_kind kind = classify_exception_breakpoint (b);
363
364 bp_temp = b->disposition == disp_del;
365 fprintf_unfiltered (fp, bp_temp ? "tcatch " : "catch ");
366 switch (kind)
367 {
368 case EX_EVENT_THROW:
369 fprintf_unfiltered (fp, "throw");
370 break;
371 case EX_EVENT_CATCH:
372 fprintf_unfiltered (fp, "catch");
373 break;
374 case EX_EVENT_RETHROW:
375 fprintf_unfiltered (fp, "rethrow");
376 break;
377 }
378 print_recreate_thread (b, fp);
379}
380
15a73f56 381static void
cc16e6c9 382handle_gnu_v3_exceptions (int tempflag, char *except_rx, char *cond_string,
916703c0
TT
383 enum exception_event_kind ex_event, int from_tty)
384{
15a73f56 385 struct exception_catchpoint *cp;
cc16e6c9
TT
386 struct cleanup *cleanup = make_cleanup (null_cleanup, NULL);
387 regex_t *pattern = NULL;
388
389 if (except_rx != NULL)
390 {
391 pattern = XNEW (regex_t);
392 make_cleanup (xfree, pattern);
393
394 compile_rx_or_error (pattern, except_rx,
395 _("invalid type-matching regexp"));
396 }
916703c0 397
15a73f56 398 cp = XCNEW (struct exception_catchpoint);
cc16e6c9
TT
399 make_cleanup (xfree, cp);
400
15a73f56
TT
401 init_catchpoint (&cp->base, get_current_arch (), tempflag, cond_string,
402 &gnu_v3_exception_catchpoint_ops);
403 /* We need to reset 'type' in order for code in breakpoint.c to do
404 the right thing. */
405 cp->base.type = bp_breakpoint;
406 cp->kind = ex_event;
cc16e6c9
TT
407 cp->exception_rx = except_rx;
408 cp->pattern = pattern;
15a73f56
TT
409
410 re_set_exception_catchpoint (&cp->base);
411
412 install_breakpoint (0, &cp->base, 1);
cc16e6c9
TT
413 discard_cleanups (cleanup);
414}
415
416/* Look for an "if" token in *STRING. The "if" token must be preceded
417 by whitespace.
418
419 If there is any non-whitespace text between *STRING and the "if"
420 token, then it is returned in a newly-xmalloc'd string. Otherwise,
421 this returns NULL.
422
423 STRING is updated to point to the "if" token, if it exists, or to
424 the end of the string. */
425
426static char *
427extract_exception_regexp (char **string)
428{
429 char *start;
430 char *last, *last_space;
431
432 start = skip_spaces (*string);
433
434 last = start;
435 last_space = start;
436 while (*last != '\0')
437 {
438 char *if_token = last;
439
440 /* Check for the "if". */
441 if (check_for_argument (&if_token, "if", 2))
442 break;
443
444 /* No "if" token here. Skip to the next word start. */
445 last_space = skip_to_space (last);
446 last = skip_spaces (last_space);
447 }
448
449 *string = last;
450 if (last_space > start)
451 return savestring (start, last_space - start);
452 return NULL;
916703c0
TT
453}
454
455/* Deal with "catch catch", "catch throw", and "catch rethrow"
456 commands. */
457
458static void
459catch_exception_command_1 (enum exception_event_kind ex_event, char *arg,
460 int tempflag, int from_tty)
461{
cc16e6c9 462 char *except_rx;
916703c0 463 char *cond_string = NULL;
cc16e6c9 464 struct cleanup *cleanup;
916703c0
TT
465
466 if (!arg)
467 arg = "";
468 arg = skip_spaces (arg);
469
cc16e6c9
TT
470 except_rx = extract_exception_regexp (&arg);
471 cleanup = make_cleanup (xfree, except_rx);
472
916703c0
TT
473 cond_string = ep_parse_optional_if_clause (&arg);
474
475 if ((*arg != '\0') && !isspace (*arg))
476 error (_("Junk at end of arguments."));
477
478 if (ex_event != EX_EVENT_THROW
479 && ex_event != EX_EVENT_CATCH
480 && ex_event != EX_EVENT_RETHROW)
481 error (_("Unsupported or unknown exception event; cannot catch it"));
482
cc16e6c9
TT
483 handle_gnu_v3_exceptions (tempflag, except_rx, cond_string,
484 ex_event, from_tty);
485
486 discard_cleanups (cleanup);
916703c0
TT
487}
488
489/* Implementation of "catch catch" command. */
490
491static void
492catch_catch_command (char *arg, int from_tty, struct cmd_list_element *command)
493{
494 int tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
495
496 catch_exception_command_1 (EX_EVENT_CATCH, arg, tempflag, from_tty);
497}
498
499/* Implementation of "catch throw" command. */
500
501static void
502catch_throw_command (char *arg, int from_tty, struct cmd_list_element *command)
503{
504 int tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
505
506 catch_exception_command_1 (EX_EVENT_THROW, arg, tempflag, from_tty);
507}
508
509/* Implementation of "catch rethrow" command. */
510
511static void
512catch_rethrow_command (char *arg, int from_tty,
513 struct cmd_list_element *command)
514{
515 int tempflag = get_cmd_context (command) == CATCH_TEMPORARY;
516
517 catch_exception_command_1 (EX_EVENT_RETHROW, arg, tempflag, from_tty);
518}
519
520\f
521
72f1fe8a
TT
522/* Implement the 'make_value' method for the $_exception
523 internalvar. */
524
525static struct value *
526compute_exception (struct gdbarch *argc, struct internalvar *var, void *ignore)
527{
72f1fe8a
TT
528 struct value *arg0, *arg1;
529 struct type *obj_type;
530
cc16e6c9 531 fetch_probe_arguments (&arg0, &arg1);
72f1fe8a
TT
532
533 /* ARG0 is a pointer to the exception object. ARG1 is a pointer to
534 the std::type_info for the exception. Now we find the type from
535 the type_info and cast the result. */
536 obj_type = cplus_type_from_type_info (arg1);
537 return value_ind (value_cast (make_pointer_type (obj_type, NULL), arg0));
538}
539
540/* Implementation of the '$_exception' variable. */
541
542static const struct internalvar_funcs exception_funcs =
543{
544 compute_exception,
545 NULL,
546 NULL
547};
548
549\f
550
916703c0
TT
551static void
552initialize_throw_catchpoint_ops (void)
553{
554 struct breakpoint_ops *ops;
555
556 initialize_breakpoint_ops ();
557
558 /* GNU v3 exception catchpoints. */
559 ops = &gnu_v3_exception_catchpoint_ops;
560 *ops = bkpt_breakpoint_ops;
cc16e6c9 561 ops->dtor = dtor_exception_catchpoint;
15a73f56 562 ops->re_set = re_set_exception_catchpoint;
916703c0
TT
563 ops->print_it = print_it_exception_catchpoint;
564 ops->print_one = print_one_exception_catchpoint;
565 ops->print_mention = print_mention_exception_catchpoint;
566 ops->print_recreate = print_recreate_exception_catchpoint;
cc16e6c9
TT
567 ops->print_one_detail = print_one_detail_exception_catchpoint;
568 ops->check_status = check_status_exception_catchpoint;
916703c0
TT
569}
570
571initialize_file_ftype _initialize_break_catch_throw;
572
573void
574_initialize_break_catch_throw (void)
575{
576 initialize_throw_catchpoint_ops ();
577
578 /* Add catch and tcatch sub-commands. */
579 add_catch_command ("catch", _("\
580Catch an exception, when caught."),
581 catch_catch_command,
582 NULL,
583 CATCH_PERMANENT,
584 CATCH_TEMPORARY);
585 add_catch_command ("throw", _("\
586Catch an exception, when thrown."),
587 catch_throw_command,
588 NULL,
589 CATCH_PERMANENT,
590 CATCH_TEMPORARY);
591 add_catch_command ("rethrow", _("\
592Catch an exception, when rethrown."),
593 catch_rethrow_command,
594 NULL,
595 CATCH_PERMANENT,
596 CATCH_TEMPORARY);
72f1fe8a
TT
597
598 create_internalvar_type_lazy ("_exception", &exception_funcs, NULL);
916703c0 599}
This page took 0.192405 seconds and 4 git commands to generate.