From 0c613e170e60f673cd47b23a7052b19b128469c5 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Fri, 21 Apr 2023 09:45:30 -0400 Subject: [PATCH] gdb: add interp::on_inferior_appeared method Same idea as previous patches, but for inferior_appeared. Change-Id: Ibe4feba34274549a886b1dfb5b3f8d59ae79e1b5 --- gdb/inferior.c | 11 ++++++++++- gdb/interps.c | 8 ++++++++ gdb/interps.h | 10 ++++++++-- gdb/mi/mi-interp.c | 25 +++++++------------------ gdb/mi/mi-interp.h | 1 + 5 files changed, 34 insertions(+), 21 deletions(-) diff --git a/gdb/inferior.c b/gdb/inferior.c index a70bbe41247..46d418a2be3 100644 --- a/gdb/inferior.c +++ b/gdb/inferior.c @@ -345,6 +345,15 @@ detach_inferior (inferior *inf) target_pid_to_str (ptid_t (pid)).c_str ()); } +/* Notify interpreters and observers that inferior INF appeared. */ + +static void +notify_inferior_appeared (inferior *inf) +{ + interps_notify_inferior_appeared (inf); + gdb::observers::inferior_appeared.notify (inf); +} + void inferior_appeared (struct inferior *inf, int pid) { @@ -358,7 +367,7 @@ inferior_appeared (struct inferior *inf, int pid) inf->has_exit_code = false; inf->exit_code = 0; - gdb::observers::inferior_appeared.notify (inf); + notify_inferior_appeared (inf); } struct inferior * diff --git a/gdb/interps.c b/gdb/interps.c index f6486995308..ed33df2efd4 100644 --- a/gdb/interps.c +++ b/gdb/interps.c @@ -470,6 +470,14 @@ interps_notify_inferior_added (inferior *inf) interps_notify (&interp::on_inferior_added, inf); } +/* See interps.h. */ + +void +interps_notify_inferior_appeared (inferior *inf) +{ + interps_notify (&interp::on_inferior_appeared, inf); +} + /* This just adds the "interpreter-exec" command. */ void _initialize_interpreter (); void diff --git a/gdb/interps.h b/gdb/interps.h index 0c73a1a7ce8..09edaaeb003 100644 --- a/gdb/interps.h +++ b/gdb/interps.h @@ -122,9 +122,12 @@ public: /* Notify the interpreter that thread T has exited. */ virtual void on_thread_exited (thread_info *, int silent) {} - /* Notify the intepreter that inferior INF was added. */ + /* Notify the interpreter that inferior INF was added. */ virtual void on_inferior_added (inferior *inf) {} + /* Notify the interpreter that inferior INF was started or attached. */ + virtual void on_inferior_appeared (inferior *inf) {} + private: /* The memory for this is static, it comes from literal strings (e.g. "cli"). */ const char *m_name; @@ -242,9 +245,12 @@ extern void interps_notify_new_thread (thread_info *t); /* Notify all interpreters that thread T has exited. */ extern void interps_notify_thread_exited (thread_info *t, int silent); -/* Notify all intepreters that inferior INF was added. */ +/* Notify all interpreters that inferior INF was added. */ extern void interps_notify_inferior_added (inferior *inf); +/* Notify all interpreters that inferior INF was started or attached. */ +extern void interps_notify_inferior_appeared (inferior *inf); + /* well-known interpreters */ #define INTERP_CONSOLE "console" #define INTERP_MI2 "mi2" diff --git a/gdb/mi/mi-interp.c b/gdb/mi/mi-interp.c index c42c23d52bb..3fce9b69f98 100644 --- a/gdb/mi/mi-interp.c +++ b/gdb/mi/mi-interp.c @@ -62,7 +62,6 @@ static void mi_remove_notify_hooks (void); static void mi_record_changed (struct inferior*, int, const char *, const char *); -static void mi_inferior_appeared (struct inferior *inf); static void mi_inferior_exit (struct inferior *inf); static void mi_inferior_removed (struct inferior *inf); static void mi_on_resume (ptid_t ptid); @@ -369,24 +368,15 @@ mi_interp::on_inferior_added (inferior *inf) gdb_flush (this->event_channel); } -static void -mi_inferior_appeared (struct inferior *inf) +void +mi_interp::on_inferior_appeared (inferior *inf) { - SWITCH_THRU_ALL_UIS () - { - struct mi_interp *mi = as_mi_interp (top_level_interpreter ()); - - if (mi == NULL) - continue; - - target_terminal::scoped_restore_terminal_state term_state; - target_terminal::ours_for_output (); + target_terminal::scoped_restore_terminal_state term_state; + target_terminal::ours_for_output (); - gdb_printf (mi->event_channel, - "thread-group-started,id=\"i%d\",pid=\"%d\"", - inf->num, inf->pid); - gdb_flush (mi->event_channel); - } + gdb_printf (this->event_channel, "thread-group-started,id=\"i%d\",pid=\"%d\"", + inf->num, inf->pid); + gdb_flush (this->event_channel); } static void @@ -1140,7 +1130,6 @@ _initialize_mi_interp () interp_factory_register (INTERP_MI4, mi_interp_factory); interp_factory_register (INTERP_MI, mi_interp_factory); - gdb::observers::inferior_appeared.attach (mi_inferior_appeared, "mi-interp"); gdb::observers::inferior_exit.attach (mi_inferior_exit, "mi-interp"); gdb::observers::inferior_removed.attach (mi_inferior_removed, "mi-interp"); gdb::observers::record_changed.attach (mi_record_changed, "mi-interp"); diff --git a/gdb/mi/mi-interp.h b/gdb/mi/mi-interp.h index 71d526ff2e8..f57f99bffd3 100644 --- a/gdb/mi/mi-interp.h +++ b/gdb/mi/mi-interp.h @@ -53,6 +53,7 @@ public: void on_new_thread (thread_info *t) override; void on_thread_exited (thread_info *t, int silent) override; void on_inferior_added (inferior *inf) override; + void on_inferior_appeared (inferior *inf) override; /* MI's output channels */ mi_console_file *out; -- 2.30.2