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