From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2126) id 399353858405; Fri, 29 Apr 2022 22:22:40 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 399353858405 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 break-catch-fork to vtable ops X-Act-Checkin: binutils-gdb X-Git-Author: Tom Tromey X-Git-Refname: refs/heads/master X-Git-Oldrev: 021443b5f3d73a4e148afabc06a0b8dcec54734a X-Git-Newrev: 54485252a9dd409598df621d3072bd349c53a58c Message-Id: <20220429222240.399353858405@sourceware.org> Date: Fri, 29 Apr 2022 22:22:40 +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:22:40 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D54485252a9dd= 409598df621d3072bd349c53a58c commit 54485252a9dd409598df621d3072bd349c53a58c Author: Tom Tromey Date: Fri Jan 14 19:01:36 2022 -0700 Convert break-catch-fork to vtable ops =20 This converts break-catch-fork.c to use vtable_breakpoint_ops. Diff: --- gdb/break-catch-fork.c | 142 +++++++++++++++++++--------------------------= ---- 1 file changed, 56 insertions(+), 86 deletions(-) diff --git a/gdb/break-catch-fork.c b/gdb/break-catch-fork.c index a5c90e142bd..5af5aac9d98 100644 --- a/gdb/break-catch-fork.c +++ b/gdb/break-catch-fork.c @@ -34,6 +34,18 @@ =20 struct fork_catchpoint : public breakpoint { + 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; + enum print_stop_action print_it (struct bpstat *bs) override; + bool print_one (struct bp_location **) override; + void print_mention () override; + void print_recreate (struct ui_file *fp) override; + /* True if the breakpoint is for vfork, false for fork. */ bool is_vfork; =20 @@ -43,94 +55,82 @@ struct fork_catchpoint : public breakpoint ptid_t forked_inferior_pid; }; =20 -/* Implement the "insert" breakpoint_ops method for fork - catchpoints. */ +/* Implement the "insert" method for fork catchpoints. */ =20 -static int -insert_catch_fork (struct bp_location *bl) +int +fork_catchpoint::insert_location (struct bp_location *bl) { - struct fork_catchpoint *c =3D (struct fork_catchpoint *) bl->owner; - - if (c->is_vfork) + if (is_vfork) return target_insert_vfork_catchpoint (inferior_ptid.pid ()); else return target_insert_fork_catchpoint (inferior_ptid.pid ()); } =20 -/* Implement the "remove" breakpoint_ops method for fork - catchpoints. */ +/* Implement the "remove" method for fork catchpoints. */ =20 -static int -remove_catch_fork (struct bp_location *bl, enum remove_bp_reason reason) +int +fork_catchpoint::remove_location (struct bp_location *bl, + enum remove_bp_reason reason) { - struct fork_catchpoint *c =3D (struct fork_catchpoint *) bl->owner; - - if (c->is_vfork) + if (is_vfork) return target_remove_vfork_catchpoint (inferior_ptid.pid ()); else return target_remove_fork_catchpoint (inferior_ptid.pid ()); } =20 -/* Implement the "breakpoint_hit" breakpoint_ops method for fork - catchpoints. */ +/* Implement the "breakpoint_hit" method for fork catchpoints. */ =20 -static int -breakpoint_hit_catch_fork (const struct bp_location *bl, - const address_space *aspace, CORE_ADDR bp_addr, - const target_waitstatus &ws) +int +fork_catchpoint::breakpoint_hit (const struct bp_location *bl, + const address_space *aspace, + CORE_ADDR bp_addr, + const target_waitstatus &ws) { - struct fork_catchpoint *c =3D (struct fork_catchpoint *) bl->owner; - - if (ws.kind () !=3D (c->is_vfork + if (ws.kind () !=3D (is_vfork ? TARGET_WAITKIND_VFORKED : TARGET_WAITKIND_FORKED)) return 0; =20 - c->forked_inferior_pid =3D ws.child_ptid (); + forked_inferior_pid =3D ws.child_ptid (); return 1; } =20 -/* Implement the "print_it" breakpoint_ops method for fork - catchpoints. */ +/* Implement the "print_it" method for fork catchpoints. */ =20 -static enum print_stop_action -print_it_catch_fork (bpstat *bs) +enum print_stop_action +fork_catchpoint::print_it (bpstat *bs) { struct ui_out *uiout =3D current_uiout; - struct breakpoint *b =3D bs->breakpoint_at; - struct fork_catchpoint *c =3D (struct fork_catchpoint *) bs->breakpoint_= at; =20 - annotate_catchpoint (b->number); + annotate_catchpoint (number); maybe_print_thread_hit_breakpoint (uiout); - if (b->disposition =3D=3D disp_del) + if (disposition =3D=3D disp_del) uiout->text ("Temporary catchpoint "); else uiout->text ("Catchpoint "); if (uiout->is_mi_like_p ()) { uiout->field_string ("reason", - async_reason_lookup (c->is_vfork + async_reason_lookup (is_vfork ? EXEC_ASYNC_VFORK : EXEC_ASYNC_FORK)); - uiout->field_string ("disp", bpdisp_text (b->disposition)); + uiout->field_string ("disp", bpdisp_text (disposition)); } - uiout->field_signed ("bkptno", b->number); - if (c->is_vfork) + uiout->field_signed ("bkptno", number); + if (is_vfork) uiout->text (" (vforked process "); else uiout->text (" (forked process "); - uiout->field_signed ("newpid", c->forked_inferior_pid.pid ()); + uiout->field_signed ("newpid", forked_inferior_pid.pid ()); uiout->text ("), "); return PRINT_SRC_AND_LOC; } =20 -/* Implement the "print_one" breakpoint_ops method for fork - catchpoints. */ +/* Implement the "print_one" method for fork catchpoints. */ =20 -static bool -print_one_catch_fork (struct breakpoint *b, struct bp_location **last_loc) +bool +fork_catchpoint::print_one (struct bp_location **last_loc) { - struct fork_catchpoint *c =3D (struct fork_catchpoint *) b; struct value_print_options opts; struct ui_out *uiout =3D current_uiout; =20 @@ -142,12 +142,12 @@ print_one_catch_fork (struct breakpoint *b, struct bp= _location **last_loc) if (opts.addressprint) uiout->field_skip ("addr"); annotate_field (5); - const char *name =3D c->is_vfork ? "vfork" : "fork"; + const char *name =3D is_vfork ? "vfork" : "fork"; uiout->text (name); - if (c->forked_inferior_pid !=3D null_ptid) + if (forked_inferior_pid !=3D null_ptid) { uiout->text (", process "); - uiout->field_signed ("what", c->forked_inferior_pid.pid ()); + uiout->field_signed ("what", forked_inferior_pid.pid ()); uiout->spaces (1); } =20 @@ -157,33 +157,24 @@ print_one_catch_fork (struct breakpoint *b, struct bp= _location **last_loc) return true; } =20 -/* Implement the "print_mention" breakpoint_ops method for fork - catchpoints. */ +/* Implement the "print_mention" method for fork catchpoints. */ =20 -static void -print_mention_catch_fork (struct breakpoint *b) +void +fork_catchpoint::print_mention () { - struct fork_catchpoint *c =3D (struct fork_catchpoint *) b; - gdb_printf (_("Catchpoint %d (%s)"), c->number, - c->is_vfork ? "vfork" : "fork"); + gdb_printf (_("Catchpoint %d (%s)"), number, + is_vfork ? "vfork" : "fork"); } =20 -/* Implement the "print_recreate" breakpoint_ops method for fork - catchpoints. */ +/* Implement the "print_recreate" method for fork catchpoints. */ =20 -static void -print_recreate_catch_fork (struct breakpoint *b, struct ui_file *fp) +void +fork_catchpoint::print_recreate (struct ui_file *fp) { - struct fork_catchpoint *c =3D (struct fork_catchpoint *) b; - gdb_printf (fp, "catch %s", - c->is_vfork ? "vfork" : "fork"); - print_recreate_thread (b, fp); + gdb_printf (fp, "catch %s", is_vfork ? "vfork" : "fork"); + print_recreate_thread (this, fp); } =20 -/* The breakpoint_ops structure to be used in fork catchpoints. */ - -static struct breakpoint_ops catch_fork_breakpoint_ops; - static void create_fork_vfork_event_catchpoint (struct gdbarch *gdbarch, bool temp, const char *cond_string, @@ -192,7 +183,7 @@ create_fork_vfork_event_catchpoint (struct gdbarch *gdb= arch, std::unique_ptr c (new fork_catchpoint ()); =20 init_catchpoint (c.get (), gdbarch, temp, cond_string, - &catch_fork_breakpoint_ops); + &vtable_breakpoint_ops); c->is_vfork =3D is_vfork; c->forked_inferior_pid =3D null_ptid; =20 @@ -249,31 +240,10 @@ catch_fork_command_1 (const char *arg, int from_tty, } } =20 -static void -initialize_ops () -{ - struct breakpoint_ops *ops; - - initialize_breakpoint_ops (); - - /* Fork catchpoints. */ - ops =3D &catch_fork_breakpoint_ops; - *ops =3D base_breakpoint_ops; - ops->insert_location =3D insert_catch_fork; - ops->remove_location =3D remove_catch_fork; - ops->breakpoint_hit =3D breakpoint_hit_catch_fork; - ops->print_it =3D print_it_catch_fork; - ops->print_one =3D print_one_catch_fork; - ops->print_mention =3D print_mention_catch_fork; - ops->print_recreate =3D print_recreate_catch_fork; -} - void _initialize_break_catch_fork (); void _initialize_break_catch_fork () { - initialize_ops (); - add_catch_command ("fork", _("Catch calls to fork."), catch_fork_command_1, NULL,