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