From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2126) id 8ED283858434; Fri, 29 Apr 2022 22:23:05 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8ED283858434 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Tom Tromey To: gdb-cvs@sourceware.org Subject: [binutils-gdb] Convert base breakpoints to vtable ops X-Act-Checkin: binutils-gdb X-Git-Author: Tom Tromey X-Git-Refname: refs/heads/master X-Git-Oldrev: 098f12723d5c095c115d0a6121ef77816d6a796f X-Git-Newrev: 2b5ab5b8514550782e1ee3107f4b3e0984a5a6a9 Message-Id: <20220429222305.8ED283858434@sourceware.org> Date: Fri, 29 Apr 2022 22:23:05 +0000 (GMT) X-BeenThere: gdb-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Apr 2022 22:23:05 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D2b5ab5b85145= 50782e1ee3107f4b3e0984a5a6a9 commit 2b5ab5b8514550782e1ee3107f4b3e0984a5a6a9 Author: Tom Tromey Date: Sat Jan 15 13:56:38 2022 -0700 Convert base breakpoints to vtable ops =20 This converts base breakpoints to use vtable_breakpoint_ops. Diff: --- gdb/break-catch-throw.c | 2 +- gdb/breakpoint.c | 55 +++++++++++++++++++++------------------------= ---- gdb/breakpoint.h | 11 ++++++++++ 3 files changed, 36 insertions(+), 32 deletions(-) diff --git a/gdb/break-catch-throw.c b/gdb/break-catch-throw.c index cec292427d4..62a404f33ac 100644 --- a/gdb/break-catch-throw.c +++ b/gdb/break-catch-throw.c @@ -67,7 +67,7 @@ static struct breakpoint_ops gnu_v3_exception_catchpoint_= ops; =20 /* The type of an exception catchpoint. */ =20 -struct exception_catchpoint : public breakpoint +struct exception_catchpoint : public base_breakpoint { /* The kind of exception catchpoint. */ =20 diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index ab755972369..ebbad3204d7 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -7932,7 +7932,7 @@ enable_breakpoints_after_startup (void) static struct breakpoint * new_single_step_breakpoint (int thread, struct gdbarch *gdbarch) { - std::unique_ptr b (new breakpoint ()); + std::unique_ptr b (new momentary_breakpoint ()); =20 init_raw_breakpoint_without_location (b.get (), gdbarch, bp_single_step, &momentary_breakpoint_ops); @@ -11798,22 +11798,22 @@ struct breakpoint_ops vtable_breakpoint_ops =3D =20 /* Default breakpoint_ops methods. */ =20 -static void -bkpt_re_set (struct breakpoint *b) +void +base_breakpoint::re_set () { /* FIXME: is this still reachable? */ - if (breakpoint_event_location_empty_p (b)) + if (breakpoint_event_location_empty_p (this)) { /* Anything without a location can't be re-set. */ - delete_breakpoint (b); + delete_breakpoint (this); return; } =20 - breakpoint_re_set_default (b); + breakpoint_re_set_default (this); } =20 -static int -bkpt_insert_location (struct bp_location *bl) +int +base_breakpoint::insert_location (struct bp_location *bl) { CORE_ADDR addr =3D bl->target_info.reqstd_address; =20 @@ -11826,8 +11826,9 @@ bkpt_insert_location (struct bp_location *bl) return target_insert_breakpoint (bl->gdbarch, &bl->target_info); } =20 -static int -bkpt_remove_location (struct bp_location *bl, enum remove_bp_reason reason) +int +base_breakpoint::remove_location (struct bp_location *bl, + enum remove_bp_reason reason) { if (bl->loc_type =3D=3D bp_loc_hardware_breakpoint) return target_remove_hw_breakpoint (bl->gdbarch, &bl->target_info); @@ -11835,10 +11836,11 @@ bkpt_remove_location (struct bp_location *bl, enu= m remove_bp_reason reason) return target_remove_breakpoint (bl->gdbarch, &bl->target_info, reason= ); } =20 -static int -bkpt_breakpoint_hit (const struct bp_location *bl, - const address_space *aspace, CORE_ADDR bp_addr, - const target_waitstatus &ws) +int +base_breakpoint::breakpoint_hit (const struct bp_location *bl, + const address_space *aspace, + CORE_ADDR bp_addr, + const target_waitstatus &ws) { if (ws.kind () !=3D TARGET_WAITKIND_STOPPED || ws.sig () !=3D GDB_SIGNAL_TRAP) @@ -11870,7 +11872,7 @@ dprintf_breakpoint_hit (const struct bp_location *b= l, return 0; } =20 - return bkpt_breakpoint_hit (bl, aspace, bp_addr, ws); + return bl->owner->breakpoint_hit (bl, aspace, bp_addr, ws); } =20 static int @@ -11974,12 +11976,11 @@ bkpt_print_recreate (struct breakpoint *tp, struc= t ui_file *fp) print_recreate_thread (tp, fp); } =20 -static std::vector -bkpt_decode_location (struct breakpoint *b, - struct event_location *location, - struct program_space *search_pspace) +std::vector +base_breakpoint::decode_location (struct event_location *location, + struct program_space *search_pspace) { - return decode_location_default (b, location, search_pspace); + return decode_location_default (this, location, search_pspace); } =20 /* Virtual table for internal breakpoints. */ @@ -12126,7 +12127,7 @@ longjmp_breakpoint::~longjmp_breakpoint () static int bkpt_probe_insert_location (struct bp_location *bl) { - int v =3D bkpt_insert_location (bl); + int v =3D bl->owner->insert_location (bl); =20 if (v =3D=3D 0) { @@ -12145,7 +12146,7 @@ bkpt_probe_remove_location (struct bp_location *bl, /* Let's clear the semaphore before removing the location. */ bl->probe.prob->clear_semaphore (bl->probe.objfile, bl->gdbarch); =20 - return bkpt_remove_location (bl, reason); + return bl->owner->remove_location (bl, reason); } =20 static void @@ -14561,19 +14562,11 @@ initialize_breakpoint_ops (void) breakpoints (real breakpoints, i.e., user "break" breakpoints, internal and momentary breakpoints, etc.). */ ops =3D &bkpt_base_breakpoint_ops; - *ops =3D base_breakpoint_ops; - ops->re_set =3D bkpt_re_set; - ops->insert_location =3D bkpt_insert_location; - ops->remove_location =3D bkpt_remove_location; - ops->breakpoint_hit =3D bkpt_breakpoint_hit; - ops->create_sals_from_location =3D create_sals_from_location_default; - ops->create_breakpoints_sal =3D create_breakpoints_sal_default; - ops->decode_location =3D bkpt_decode_location; + *ops =3D vtable_breakpoint_ops; =20 /* The breakpoint_ops structure to be used in regular breakpoints. */ ops =3D &bkpt_breakpoint_ops; *ops =3D bkpt_base_breakpoint_ops; - ops->re_set =3D bkpt_re_set; ops->resources_needed =3D bkpt_resources_needed; ops->print_it =3D bkpt_print_it; ops->print_mention =3D bkpt_print_mention; diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h index a4b3ce17b01..de1ef5ef6b3 100644 --- a/gdb/breakpoint.h +++ b/gdb/breakpoint.h @@ -945,6 +945,17 @@ struct breakpoint breakpoints, etc.). */ struct base_breakpoint : public breakpoint { + void re_set () override; + int insert_location (struct bp_location *) override; + int remove_location (struct bp_location *, + enum remove_bp_reason reason) override; + int breakpoint_hit (const struct bp_location *bl, + const address_space *aspace, + CORE_ADDR bp_addr, + const target_waitstatus &ws) override; + std::vector decode_location + (struct event_location *location, + struct program_space *search_pspace) override; }; =20 /* An instance of this type is used to represent a watchpoint. */