aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2022-04-30 14:24:21 -0600
committerTom Tromey <tom@tromey.com>2022-05-06 12:03:35 -0600
commit1ae43feabb90a534d2a58638fd18aded7d3758dd (patch)
tree18c209c400a1d52d7986a85f510d99e1680fffb3 /gdb
parent6c91c7de2007ca0d6f0285fa62e755507359a177 (diff)
downloadgdb-1ae43feabb90a534d2a58638fd18aded7d3758dd.zip
gdb-1ae43feabb90a534d2a58638fd18aded7d3758dd.tar.gz
gdb-1ae43feabb90a534d2a58638fd18aded7d3758dd.tar.bz2
Add constructor to exception_catchpoint
This adds a constructor to exception_catchpoint and simplifies the caller.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/break-catch-throw.c25
1 files changed, 13 insertions, 12 deletions
diff --git a/gdb/break-catch-throw.c b/gdb/break-catch-throw.c
index a10334e..59e73da 100644
--- a/gdb/break-catch-throw.c
+++ b/gdb/break-catch-throw.c
@@ -67,6 +67,17 @@ static const struct exception_names exception_functions[] =
struct exception_catchpoint : public base_breakpoint
{
+ exception_catchpoint (enum exception_event_kind kind_,
+ std::string &&except_rx)
+ : kind (kind_),
+ exception_rx (std::move (except_rx)),
+ pattern (exception_rx.empty ()
+ ? nullptr
+ : new compiled_regex (exception_rx.c_str (), REG_NOSUB,
+ _("invalid type-matching regexp")))
+ {
+ }
+
void re_set () override;
enum print_stop_action print_it (const bpstat *bs) const override;
bool print_one (bp_location **) const override;
@@ -355,20 +366,10 @@ handle_gnu_v3_exceptions (int tempflag, std::string &&except_rx,
const char *cond_string,
enum exception_event_kind ex_event, int from_tty)
{
- std::unique_ptr<compiled_regex> pattern;
-
- if (!except_rx.empty ())
- {
- pattern.reset (new compiled_regex (except_rx.c_str (), REG_NOSUB,
- _("invalid type-matching regexp")));
- }
-
- std::unique_ptr<exception_catchpoint> cp (new exception_catchpoint ());
+ std::unique_ptr<exception_catchpoint> cp
+ (new exception_catchpoint (ex_event, std::move (except_rx)));
init_catchpoint (cp.get (), get_current_arch (), tempflag, cond_string);
- cp->kind = ex_event;
- cp->exception_rx = std::move (except_rx);
- cp->pattern = std::move (pattern);
cp->re_set ();