Remove ptid_match
[deliverable/binutils-gdb.git] / gdb / mi / mi-interp.c
CommitLineData
4a8f6654
AC
1/* MI Interpreter Definitions and Commands for GDB, the GNU debugger.
2
e2882c85 3 Copyright (C) 2002-2018 Free Software Foundation, Inc.
4a8f6654
AC
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
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
4a8f6654
AC
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
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
4a8f6654
AC
19
20#include "defs.h"
4a8f6654
AC
21#include "interps.h"
22#include "event-top.h"
23#include "event-loop.h"
24#include "inferior.h"
45741a9c 25#include "infrun.h"
4a8f6654
AC
26#include "ui-out.h"
27#include "top.h"
4a8f6654
AC
28#include "mi-main.h"
29#include "mi-cmds.h"
30#include "mi-out.h"
31#include "mi-console.h"
66bb093b 32#include "mi-common.h"
76727919 33#include "observable.h"
683f2885 34#include "gdbthread.h"
c86cf029 35#include "solist.h"
8de0566d 36#include "objfiles.h"
134a2066 37#include "tracepoint.h"
17b2616c 38#include "cli-out.h"
243a9253 39#include "thread-fsm.h"
26cde2cc 40#include "cli/cli-interp.h"
4a8f6654 41
2b03b41d
SS
42/* These are the interpreter setup, etc. functions for the MI
43 interpreter. */
44
ee047554 45static void mi_execute_command_wrapper (const char *cmd);
e837f12a 46static void mi_execute_command_input_handler (char *cmd);
4a8f6654
AC
47
48/* These are hooks that we put in place while doing interpreter_exec
2b03b41d
SS
49 so we can report interesting things that happened "behind the MI's
50 back" in this command. */
51
bee0189a 52static int mi_interp_query_hook (const char *ctlstr, va_list ap)
2b03b41d 53 ATTRIBUTE_PRINTF (1, 0);
4a8f6654 54
4a8f6654
AC
55static void mi_insert_notify_hooks (void);
56static void mi_remove_notify_hooks (void);
fd664c91
PA
57
58static void mi_on_signal_received (enum gdb_signal siggnal);
59static void mi_on_end_stepping_range (void);
60static void mi_on_signal_exited (enum gdb_signal siggnal);
61static void mi_on_exited (int exitstatus);
1d33d6ba 62static void mi_on_normal_stop (struct bpstats *bs, int print_frame);
fd664c91 63static void mi_on_no_history (void);
4a8f6654 64
683f2885 65static void mi_new_thread (struct thread_info *t);
a07daef3 66static void mi_thread_exit (struct thread_info *t, int silent);
38b022b4
SM
67static void mi_record_changed (struct inferior*, int, const char *,
68 const char *);
a79b8f6e
VP
69static void mi_inferior_added (struct inferior *inf);
70static void mi_inferior_appeared (struct inferior *inf);
71static void mi_inferior_exit (struct inferior *inf);
72static void mi_inferior_removed (struct inferior *inf);
e1ac3328 73static void mi_on_resume (ptid_t ptid);
c86cf029
VP
74static void mi_solib_loaded (struct so_list *solib);
75static void mi_solib_unloaded (struct so_list *solib);
f3b1572e 76static void mi_about_to_proceed (void);
201b4506 77static void mi_traceframe_changed (int tfnum, int tpnum);
134a2066
YQ
78static void mi_tsv_created (const struct trace_state_variable *tsv);
79static void mi_tsv_deleted (const struct trace_state_variable *tsv);
80static void mi_tsv_modified (const struct trace_state_variable *tsv);
8d3788bd
VP
81static void mi_breakpoint_created (struct breakpoint *b);
82static void mi_breakpoint_deleted (struct breakpoint *b);
83static void mi_breakpoint_modified (struct breakpoint *b);
5b9afe8a 84static void mi_command_param_changed (const char *param, const char *value);
8de0566d
YQ
85static void mi_memory_changed (struct inferior *inf, CORE_ADDR memaddr,
86 ssize_t len, const bfd_byte *myaddr);
329ea579 87static void mi_on_sync_execution_done (void);
683f2885 88
a79b8f6e
VP
89static int report_initial_inferior (struct inferior *inf, void *closure);
90
05beb275
PA
91/* Display the MI prompt. */
92
93static void
9204d692 94display_mi_prompt (struct mi_interp *mi)
05beb275 95{
3b12939d
PA
96 struct ui *ui = current_ui;
97
9204d692
PA
98 fputs_unfiltered ("(gdb) \n", mi->raw_stdout);
99 gdb_flush (mi->raw_stdout);
3b12939d 100 ui->prompt_state = PROMPTED;
05beb275
PA
101}
102
73ab01a0
PA
103/* Returns the INTERP's data cast as mi_interp if INTERP is an MI, and
104 returns NULL otherwise. */
105
106static struct mi_interp *
107as_mi_interp (struct interp *interp)
108{
716b8bc5 109 return dynamic_cast<mi_interp *> (interp);
73ab01a0
PA
110}
111
d6f9b0fb
PA
112void
113mi_interp::init (bool top_level)
4a8f6654 114{
d6f9b0fb 115 mi_interp *mi = this;
4801a9a3 116 int mi_version;
4a8f6654 117
9204d692
PA
118 /* Store the current output channel, so that we can create a console
119 channel that encapsulates and prefixes all gdb_output-type bits
120 coming from the rest of the debugger. */
121 mi->raw_stdout = gdb_stdout;
4a8f6654 122
2b03b41d
SS
123 /* Create MI console channels, each with a different prefix so they
124 can be distinguished. */
d7e74731
PA
125 mi->out = new mi_console_file (mi->raw_stdout, "~", '"');
126 mi->err = new mi_console_file (mi->raw_stdout, "&", '"');
4a8f6654 127 mi->log = mi->err;
d7e74731
PA
128 mi->targ = new mi_console_file (mi->raw_stdout, "@", '"');
129 mi->event_channel = new mi_console_file (mi->raw_stdout, "=", 0);
4a8f6654 130
4801a9a3
PA
131 /* INTERP_MI selects the most recent released version. "mi2" was
132 released as part of GDB 6.0. */
d525a99b 133 if (strcmp (name (), INTERP_MI) == 0)
4801a9a3 134 mi_version = 2;
d525a99b 135 else if (strcmp (name (), INTERP_MI1) == 0)
4801a9a3 136 mi_version = 1;
d525a99b 137 else if (strcmp (name (), INTERP_MI2) == 0)
4801a9a3 138 mi_version = 2;
d525a99b 139 else if (strcmp (name (), INTERP_MI3) == 0)
4801a9a3
PA
140 mi_version = 3;
141 else
142 gdb_assert_not_reached ("unhandled MI version");
143
fd664c91
PA
144 mi->mi_uiout = mi_out_new (mi_version);
145 mi->cli_uiout = cli_out_new (mi->out);
146
683f2885 147 if (top_level)
063bfe2e 148 {
2b03b41d
SS
149 /* The initial inferior is created before this function is
150 called, so we need to report it explicitly. Use iteration in
151 case future version of GDB creates more than one inferior
152 up-front. */
a79b8f6e 153 iterate_over_inferiors (report_initial_inferior, mi);
063bfe2e 154 }
4a8f6654
AC
155}
156
d6f9b0fb
PA
157void
158mi_interp::resume ()
4a8f6654 159{
d6f9b0fb 160 struct mi_interp *mi = this;
a74e1786 161 struct ui *ui = current_ui;
4a8f6654 162
2b03b41d
SS
163 /* As per hack note in mi_interpreter_init, swap in the output
164 channels... */
3c216924 165 gdb_setup_readline (0);
4a8f6654 166
a74e1786
PA
167 ui->call_readline = gdb_readline_no_editing_callback;
168 ui->input_handler = mi_execute_command_input_handler;
4a8f6654
AC
169
170 gdb_stdout = mi->out;
2b03b41d 171 /* Route error and log output through the MI. */
4a8f6654
AC
172 gdb_stderr = mi->err;
173 gdb_stdlog = mi->log;
2b03b41d 174 /* Route target output through the MI. */
4a8f6654 175 gdb_stdtarg = mi->targ;
2b03b41d 176 /* Route target error through the MI as well. */
1f20321b 177 gdb_stdtargerr = mi->targ;
4a8f6654
AC
178
179 /* Replace all the hooks that we know about. There really needs to
180 be a better way of doing this... */
181 clear_interpreter_hooks ();
182
9a4105ab 183 deprecated_show_load_progress = mi_load_progress;
4a8f6654
AC
184}
185
d6f9b0fb
PA
186void
187mi_interp::suspend ()
4a8f6654
AC
188{
189 gdb_disable_readline ();
4a8f6654
AC
190}
191
d6f9b0fb
PA
192gdb_exception
193mi_interp::exec (const char *command)
4a8f6654 194{
ee047554 195 mi_execute_command_wrapper (command);
c1043fc2 196 return exception_none;
4a8f6654
AC
197}
198
ce8f13f8 199void
9f33b8b7 200mi_cmd_interpreter_exec (const char *command, char **argv, int argc)
4a8f6654
AC
201{
202 struct interp *interp_to_use;
4a8f6654 203 int i;
4a8f6654
AC
204
205 if (argc < 2)
1b05df00 206 error (_("-interpreter-exec: "
9b20d036 207 "Usage: -interpreter-exec interp command"));
4a8f6654 208
8322445e 209 interp_to_use = interp_lookup (current_ui, argv[0]);
4a8f6654 210 if (interp_to_use == NULL)
1b05df00 211 error (_("-interpreter-exec: could not find interpreter \"%s\""),
9a2b4c1b 212 argv[0]);
4a8f6654 213
17b2616c
PA
214 /* Note that unlike the CLI version of this command, we don't
215 actually set INTERP_TO_USE as the current interpreter, as we
216 still want gdb_stdout, etc. to point at MI streams. */
217
2b03b41d
SS
218 /* Insert the MI out hooks, making sure to also call the
219 interpreter's hooks if it has any. */
220 /* KRS: We shouldn't need this... Events should be installed and
221 they should just ALWAYS fire something out down the MI
222 channel. */
4a8f6654
AC
223 mi_insert_notify_hooks ();
224
2b03b41d 225 /* Now run the code. */
4a8f6654 226
56496dd4 227 std::string mi_error_message;
4a8f6654
AC
228 for (i = 1; i < argc; i++)
229 {
32c1e744 230 struct gdb_exception e = interp_exec (interp_to_use, argv[i]);
102040f0 231
32c1e744
VP
232 if (e.reason < 0)
233 {
56496dd4 234 mi_error_message = e.message;
32c1e744
VP
235 break;
236 }
4a8f6654
AC
237 }
238
239 mi_remove_notify_hooks ();
240
56496dd4
TT
241 if (!mi_error_message.empty ())
242 error ("%s", mi_error_message.c_str ());
4a8f6654
AC
243}
244
2b03b41d
SS
245/* This inserts a number of hooks that are meant to produce
246 async-notify ("=") MI messages while running commands in another
247 interpreter using mi_interpreter_exec. The canonical use for this
248 is to allow access to the gdb CLI interpreter from within the MI,
249 while still producing MI style output when actions in the CLI
250 command change GDB's state. */
4a8f6654
AC
251
252static void
253mi_insert_notify_hooks (void)
254{
9a4105ab 255 deprecated_query_hook = mi_interp_query_hook;
4a8f6654
AC
256}
257
258static void
11308a41 259mi_remove_notify_hooks (void)
4a8f6654 260{
9a4105ab 261 deprecated_query_hook = NULL;
4a8f6654
AC
262}
263
264static int
265mi_interp_query_hook (const char *ctlstr, va_list ap)
266{
267 return 1;
268}
269
4a8f6654 270static void
ee047554 271mi_execute_command_wrapper (const char *cmd)
4a8f6654 272{
f38d3ad1
PA
273 struct ui *ui = current_ui;
274
268a799a 275 mi_execute_command (cmd, ui->instream == ui->stdin_stream);
4a8f6654
AC
276}
277
329ea579
PA
278/* Observer for the synchronous_command_done notification. */
279
280static void
281mi_on_sync_execution_done (void)
282{
73ab01a0
PA
283 struct mi_interp *mi = as_mi_interp (top_level_interpreter ());
284
285 if (mi == NULL)
286 return;
287
0b333c5e
PA
288 /* If MI is sync, then output the MI prompt now, indicating we're
289 ready for further input. */
329ea579 290 if (!mi_async_p ())
9204d692 291 display_mi_prompt (mi);
329ea579
PA
292}
293
e837f12a
JK
294/* mi_execute_command_wrapper wrapper suitable for INPUT_HANDLER. */
295
296static void
297mi_execute_command_input_handler (char *cmd)
298{
9204d692 299 struct mi_interp *mi = as_mi_interp (top_level_interpreter ());
3b12939d
PA
300 struct ui *ui = current_ui;
301
302 ui->prompt_state = PROMPT_NEEDED;
9204d692 303
e837f12a
JK
304 mi_execute_command_wrapper (cmd);
305
0b333c5e
PA
306 /* Print a prompt, indicating we're ready for further input, unless
307 we just started a synchronous command. In that case, we're about
308 to go back to the event loop and will output the prompt in the
309 'synchronous_command_done' observer when the target next
310 stops. */
3b12939d 311 if (ui->prompt_state == PROMPT_NEEDED)
9204d692 312 display_mi_prompt (mi);
e837f12a
JK
313}
314
d6f9b0fb
PA
315void
316mi_interp::pre_command_loop ()
4a8f6654 317{
d6f9b0fb 318 struct mi_interp *mi = this;
9204d692 319
4a8f6654 320 /* Turn off 8 bit strings in quoted output. Any character with the
2b03b41d 321 high bit set is printed using C's octal format. */
4a8f6654 322 sevenbit_strings = 1;
2b03b41d
SS
323
324 /* Tell the world that we're alive. */
9204d692 325 display_mi_prompt (mi);
4a8f6654
AC
326}
327
683f2885
VP
328static void
329mi_new_thread (struct thread_info *t)
330{
0e454242 331 SWITCH_THRU_ALL_UIS ()
73ab01a0
PA
332 {
333 struct mi_interp *mi = as_mi_interp (top_level_interpreter ());
5fe96654 334
73ab01a0
PA
335 if (mi == NULL)
336 continue;
5fe96654 337
223ffa71
TT
338 target_terminal::scoped_restore_terminal_state term_state;
339 target_terminal::ours_for_output ();
73ab01a0
PA
340
341 fprintf_unfiltered (mi->event_channel,
342 "thread-created,id=\"%d\",group-id=\"i%d\"",
00431a78 343 t->global_num, t->inf->num);
73ab01a0 344 gdb_flush (mi->event_channel);
73ab01a0 345 }
683f2885
VP
346}
347
063bfe2e 348static void
a07daef3 349mi_thread_exit (struct thread_info *t, int silent)
063bfe2e 350{
a07daef3
PA
351 if (silent)
352 return;
353
0e454242 354 SWITCH_THRU_ALL_UIS ()
73ab01a0
PA
355 {
356 struct mi_interp *mi = as_mi_interp (top_level_interpreter ());
a79b8f6e 357
73ab01a0
PA
358 if (mi == NULL)
359 continue;
5fe96654 360
223ffa71
TT
361 target_terminal::scoped_restore_terminal_state term_state;
362 target_terminal::ours_for_output ();
73ab01a0
PA
363 fprintf_unfiltered (mi->event_channel,
364 "thread-exited,id=\"%d\",group-id=\"i%d\"",
365 t->global_num, t->inf->num);
366 gdb_flush (mi->event_channel);
73ab01a0 367 }
063bfe2e
VP
368}
369
82a90ccf
YQ
370/* Emit notification on changing the state of record. */
371
372static void
38b022b4
SM
373mi_record_changed (struct inferior *inferior, int started, const char *method,
374 const char *format)
82a90ccf 375{
0e454242 376 SWITCH_THRU_ALL_UIS ()
38b022b4 377 {
73ab01a0 378 struct mi_interp *mi = as_mi_interp (top_level_interpreter ());
73ab01a0
PA
379
380 if (mi == NULL)
381 continue;
382
223ffa71
TT
383 target_terminal::scoped_restore_terminal_state term_state;
384 target_terminal::ours_for_output ();
73ab01a0
PA
385
386 if (started)
1aec0b6a 387 {
73ab01a0
PA
388 if (format != NULL)
389 {
390 fprintf_unfiltered (mi->event_channel,
391 "record-started,thread-group=\"i%d\","
392 "method=\"%s\",format=\"%s\"",
393 inferior->num, method, format);
394 }
395 else
396 {
397 fprintf_unfiltered (mi->event_channel,
398 "record-started,thread-group=\"i%d\","
399 "method=\"%s\"",
400 inferior->num, method);
401 }
1aec0b6a 402 }
38b022b4 403 else
1aec0b6a 404 {
73ab01a0
PA
405 fprintf_unfiltered (mi->event_channel,
406 "record-stopped,thread-group=\"i%d\"",
407 inferior->num);
1aec0b6a 408 }
38b022b4 409
73ab01a0 410 gdb_flush (mi->event_channel);
73ab01a0 411 }
82a90ccf
YQ
412}
413
a79b8f6e
VP
414static void
415mi_inferior_added (struct inferior *inf)
416{
0e454242 417 SWITCH_THRU_ALL_UIS ()
73ab01a0
PA
418 {
419 struct interp *interp;
420 struct mi_interp *mi;
102040f0 421
73ab01a0
PA
422 /* We'll be called once for the initial inferior, before the top
423 level interpreter is set. */
424 interp = top_level_interpreter ();
425 if (interp == NULL)
426 continue;
5fe96654 427
73ab01a0
PA
428 mi = as_mi_interp (interp);
429 if (mi == NULL)
430 continue;
431
223ffa71
TT
432 target_terminal::scoped_restore_terminal_state term_state;
433 target_terminal::ours_for_output ();
73ab01a0
PA
434
435 fprintf_unfiltered (mi->event_channel,
436 "thread-group-added,id=\"i%d\"",
437 inf->num);
438 gdb_flush (mi->event_channel);
73ab01a0 439 }
a79b8f6e
VP
440}
441
442static void
443mi_inferior_appeared (struct inferior *inf)
4a92f99b 444{
0e454242 445 SWITCH_THRU_ALL_UIS ()
73ab01a0
PA
446 {
447 struct mi_interp *mi = as_mi_interp (top_level_interpreter ());
102040f0 448
73ab01a0
PA
449 if (mi == NULL)
450 continue;
5fe96654 451
223ffa71
TT
452 target_terminal::scoped_restore_terminal_state term_state;
453 target_terminal::ours_for_output ();
73ab01a0
PA
454
455 fprintf_unfiltered (mi->event_channel,
456 "thread-group-started,id=\"i%d\",pid=\"%d\"",
457 inf->num, inf->pid);
458 gdb_flush (mi->event_channel);
73ab01a0 459 }
4a92f99b
VP
460}
461
462static void
a79b8f6e 463mi_inferior_exit (struct inferior *inf)
4a92f99b 464{
0e454242 465 SWITCH_THRU_ALL_UIS ()
73ab01a0
PA
466 {
467 struct mi_interp *mi = as_mi_interp (top_level_interpreter ());
102040f0 468
73ab01a0
PA
469 if (mi == NULL)
470 continue;
8cf64490 471
223ffa71
TT
472 target_terminal::scoped_restore_terminal_state term_state;
473 target_terminal::ours_for_output ();
73ab01a0
PA
474
475 if (inf->has_exit_code)
476 fprintf_unfiltered (mi->event_channel,
477 "thread-group-exited,id=\"i%d\",exit-code=\"%s\"",
478 inf->num, int_string (inf->exit_code, 8, 0, 0, 1));
479 else
480 fprintf_unfiltered (mi->event_channel,
481 "thread-group-exited,id=\"i%d\"", inf->num);
482
483 gdb_flush (mi->event_channel);
73ab01a0 484 }
4a92f99b
VP
485}
486
a79b8f6e
VP
487static void
488mi_inferior_removed (struct inferior *inf)
489{
0e454242 490 SWITCH_THRU_ALL_UIS ()
73ab01a0
PA
491 {
492 struct mi_interp *mi = as_mi_interp (top_level_interpreter ());
102040f0 493
73ab01a0
PA
494 if (mi == NULL)
495 continue;
5fe96654 496
223ffa71
TT
497 target_terminal::scoped_restore_terminal_state term_state;
498 target_terminal::ours_for_output ();
73ab01a0
PA
499
500 fprintf_unfiltered (mi->event_channel,
501 "thread-group-removed,id=\"i%d\"",
502 inf->num);
503 gdb_flush (mi->event_channel);
73ab01a0 504 }
a79b8f6e
VP
505}
506
fd664c91
PA
507/* Return the MI interpreter, if it is active -- either because it's
508 the top-level interpreter or the interpreter executing the current
509 command. Returns NULL if the MI interpreter is not being used. */
510
73ab01a0
PA
511static struct mi_interp *
512find_mi_interp (void)
fd664c91 513{
73ab01a0 514 struct mi_interp *mi;
fd664c91 515
73ab01a0
PA
516 mi = as_mi_interp (top_level_interpreter ());
517 if (mi != NULL)
518 return mi;
fd664c91 519
73ab01a0
PA
520 mi = as_mi_interp (command_interp ());
521 if (mi != NULL)
522 return mi;
fd664c91 523
fd664c91
PA
524 return NULL;
525}
526
527/* Observers for several run control events that print why the
528 inferior has stopped to both the the MI event channel and to the MI
529 console. If the MI interpreter is not active, print nothing. */
530
531/* Observer for the signal_received notification. */
532
533static void
534mi_on_signal_received (enum gdb_signal siggnal)
535{
0e454242 536 SWITCH_THRU_ALL_UIS ()
73ab01a0
PA
537 {
538 struct mi_interp *mi = find_mi_interp ();
539
540 if (mi == NULL)
541 continue;
fd664c91 542
73ab01a0
PA
543 print_signal_received_reason (mi->mi_uiout, siggnal);
544 print_signal_received_reason (mi->cli_uiout, siggnal);
545 }
fd664c91
PA
546}
547
548/* Observer for the end_stepping_range notification. */
549
550static void
551mi_on_end_stepping_range (void)
552{
0e454242 553 SWITCH_THRU_ALL_UIS ()
73ab01a0
PA
554 {
555 struct mi_interp *mi = find_mi_interp ();
556
557 if (mi == NULL)
558 continue;
fd664c91 559
73ab01a0
PA
560 print_end_stepping_range_reason (mi->mi_uiout);
561 print_end_stepping_range_reason (mi->cli_uiout);
562 }
fd664c91
PA
563}
564
565/* Observer for the signal_exited notification. */
17b2616c
PA
566
567static void
fd664c91 568mi_on_signal_exited (enum gdb_signal siggnal)
17b2616c 569{
0e454242 570 SWITCH_THRU_ALL_UIS ()
73ab01a0
PA
571 {
572 struct mi_interp *mi = find_mi_interp ();
573
574 if (mi == NULL)
575 continue;
fd664c91 576
73ab01a0
PA
577 print_signal_exited_reason (mi->mi_uiout, siggnal);
578 print_signal_exited_reason (mi->cli_uiout, siggnal);
579 }
fd664c91
PA
580}
581
582/* Observer for the exited notification. */
583
584static void
585mi_on_exited (int exitstatus)
586{
0e454242 587 SWITCH_THRU_ALL_UIS ()
73ab01a0
PA
588 {
589 struct mi_interp *mi = find_mi_interp ();
590
591 if (mi == NULL)
592 continue;
fd664c91 593
73ab01a0
PA
594 print_exited_reason (mi->mi_uiout, exitstatus);
595 print_exited_reason (mi->cli_uiout, exitstatus);
596 }
fd664c91
PA
597}
598
599/* Observer for the no_history notification. */
600
601static void
602mi_on_no_history (void)
603{
0e454242 604 SWITCH_THRU_ALL_UIS ()
73ab01a0
PA
605 {
606 struct mi_interp *mi = find_mi_interp ();
fd664c91 607
73ab01a0
PA
608 if (mi == NULL)
609 continue;
610
611 print_no_history_reason (mi->mi_uiout);
612 print_no_history_reason (mi->cli_uiout);
613 }
17b2616c
PA
614}
615
f7f9a841 616static void
73ab01a0 617mi_on_normal_stop_1 (struct bpstats *bs, int print_frame)
f7f9a841
VP
618{
619 /* Since this can be called when CLI command is executing,
620 using cli interpreter, be sure to use MI uiout for output,
621 not the current one. */
29f94340 622 struct ui_out *mi_uiout = top_level_interpreter ()->interp_ui_out ();
d6f9b0fb 623 struct mi_interp *mi = (struct mi_interp *) top_level_interpreter ();
f7f9a841 624
1d33d6ba
VP
625 if (print_frame)
626 {
243a9253 627 struct thread_info *tp;
dc146f7c 628 int core;
26cde2cc 629 struct interp *console_interp;
102040f0 630
243a9253 631 tp = inferior_thread ();
36dfb11c 632
243a9253
PA
633 if (tp->thread_fsm != NULL
634 && thread_fsm_finished_p (tp->thread_fsm))
635 {
636 enum async_reply_reason reason;
36dfb11c 637
243a9253 638 reason = thread_fsm_async_reply_reason (tp->thread_fsm);
112e8700 639 mi_uiout->field_string ("reason", async_reason_lookup (reason));
1d33d6ba 640 }
243a9253
PA
641 print_stop_event (mi_uiout);
642
26cde2cc
PA
643 console_interp = interp_lookup (current_ui, INTERP_CONSOLE);
644 if (should_print_stop_to_console (console_interp, tp))
9204d692 645 print_stop_event (mi->cli_uiout);
1d33d6ba 646
112e8700 647 mi_uiout->field_int ("thread-id", tp->global_num);
1d33d6ba
VP
648 if (non_stop)
649 {
10f489e5 650 ui_out_emit_list list_emitter (mi_uiout, "stopped-threads");
102040f0 651
112e8700 652 mi_uiout->field_int (NULL, tp->global_num);
1d33d6ba
VP
653 }
654 else
112e8700 655 mi_uiout->field_string ("stopped-threads", "all");
dc146f7c 656
00431a78 657 core = target_core_of_thread (tp->ptid);
dc146f7c 658 if (core != -1)
112e8700 659 mi_uiout->field_int ("core", core);
1d33d6ba
VP
660 }
661
9204d692
PA
662 fputs_unfiltered ("*stopped", mi->raw_stdout);
663 mi_out_put (mi_uiout, mi->raw_stdout);
1d33d6ba 664 mi_out_rewind (mi_uiout);
9204d692
PA
665 mi_print_timing_maybe (mi->raw_stdout);
666 fputs_unfiltered ("\n", mi->raw_stdout);
667 gdb_flush (mi->raw_stdout);
f7f9a841
VP
668}
669
73ab01a0
PA
670static void
671mi_on_normal_stop (struct bpstats *bs, int print_frame)
672{
0e454242 673 SWITCH_THRU_ALL_UIS ()
73ab01a0
PA
674 {
675 if (as_mi_interp (top_level_interpreter ()) == NULL)
676 continue;
677
678 mi_on_normal_stop_1 (bs, print_frame);
679 }
680}
681
f3b1572e
PA
682static void
683mi_about_to_proceed (void)
684{
685 /* Suppress output while calling an inferior function. */
686
687 if (!ptid_equal (inferior_ptid, null_ptid))
688 {
689 struct thread_info *tp = inferior_thread ();
102040f0 690
16c381f0 691 if (tp->control.in_infcall)
f3b1572e
PA
692 return;
693 }
694
695 mi_proceeded = 1;
696}
697
5b9afe8a
YQ
698/* When the element is non-zero, no MI notifications will be emitted in
699 response to the corresponding observers. */
2b03b41d 700
5b9afe8a
YQ
701struct mi_suppress_notification mi_suppress_notification =
702 {
703 0,
704 0,
201b4506 705 0,
4034d0ff 706 0,
5b9afe8a 707 };
8d3788bd 708
201b4506
YQ
709/* Emit notification on changing a traceframe. */
710
711static void
712mi_traceframe_changed (int tfnum, int tpnum)
713{
201b4506
YQ
714 if (mi_suppress_notification.traceframe)
715 return;
716
0e454242 717 SWITCH_THRU_ALL_UIS ()
73ab01a0
PA
718 {
719 struct mi_interp *mi = as_mi_interp (top_level_interpreter ());
201b4506 720
73ab01a0
PA
721 if (mi == NULL)
722 continue;
201b4506 723
223ffa71
TT
724 target_terminal::scoped_restore_terminal_state term_state;
725 target_terminal::ours_for_output ();
5fe96654 726
73ab01a0
PA
727 if (tfnum >= 0)
728 fprintf_unfiltered (mi->event_channel, "traceframe-changed,"
729 "num=\"%d\",tracepoint=\"%d\"\n",
730 tfnum, tpnum);
731 else
732 fprintf_unfiltered (mi->event_channel, "traceframe-changed,end");
733
734 gdb_flush (mi->event_channel);
73ab01a0 735 }
201b4506
YQ
736}
737
bb25a15c
YQ
738/* Emit notification on creating a trace state variable. */
739
740static void
134a2066 741mi_tsv_created (const struct trace_state_variable *tsv)
bb25a15c 742{
0e454242 743 SWITCH_THRU_ALL_UIS ()
73ab01a0
PA
744 {
745 struct mi_interp *mi = as_mi_interp (top_level_interpreter ());
bb25a15c 746
73ab01a0
PA
747 if (mi == NULL)
748 continue;
bb25a15c 749
223ffa71
TT
750 target_terminal::scoped_restore_terminal_state term_state;
751 target_terminal::ours_for_output ();
5fe96654 752
73ab01a0
PA
753 fprintf_unfiltered (mi->event_channel, "tsv-created,"
754 "name=\"%s\",initial=\"%s\"\n",
c252925c 755 tsv->name.c_str (), plongest (tsv->initial_value));
73ab01a0
PA
756
757 gdb_flush (mi->event_channel);
73ab01a0 758 }
bb25a15c
YQ
759}
760
761/* Emit notification on deleting a trace state variable. */
762
763static void
134a2066 764mi_tsv_deleted (const struct trace_state_variable *tsv)
bb25a15c 765{
0e454242 766 SWITCH_THRU_ALL_UIS ()
73ab01a0
PA
767 {
768 struct mi_interp *mi = as_mi_interp (top_level_interpreter ());
bb25a15c 769
73ab01a0
PA
770 if (mi == NULL)
771 continue;
bb25a15c 772
223ffa71
TT
773 target_terminal::scoped_restore_terminal_state term_state;
774 target_terminal::ours_for_output ();
5fe96654 775
73ab01a0
PA
776 if (tsv != NULL)
777 fprintf_unfiltered (mi->event_channel, "tsv-deleted,"
c252925c 778 "name=\"%s\"\n", tsv->name.c_str ());
73ab01a0
PA
779 else
780 fprintf_unfiltered (mi->event_channel, "tsv-deleted\n");
781
782 gdb_flush (mi->event_channel);
73ab01a0 783 }
bb25a15c
YQ
784}
785
134a2066
YQ
786/* Emit notification on modifying a trace state variable. */
787
788static void
789mi_tsv_modified (const struct trace_state_variable *tsv)
790{
0e454242 791 SWITCH_THRU_ALL_UIS ()
73ab01a0
PA
792 {
793 struct mi_interp *mi = as_mi_interp (top_level_interpreter ());
794 struct ui_out *mi_uiout;
134a2066 795
73ab01a0
PA
796 if (mi == NULL)
797 continue;
134a2066 798
29f94340 799 mi_uiout = top_level_interpreter ()->interp_ui_out ();
134a2066 800
223ffa71
TT
801 target_terminal::scoped_restore_terminal_state term_state;
802 target_terminal::ours_for_output ();
134a2066 803
73ab01a0
PA
804 fprintf_unfiltered (mi->event_channel,
805 "tsv-modified");
134a2066 806
112e8700 807 mi_uiout->redirect (mi->event_channel);
5fe96654 808
112e8700
SM
809 mi_uiout->field_string ("name", tsv->name);
810 mi_uiout->field_string ("initial",
73ab01a0
PA
811 plongest (tsv->initial_value));
812 if (tsv->value_known)
112e8700 813 mi_uiout->field_string ("current", plongest (tsv->value));
73ab01a0 814
112e8700 815 mi_uiout->redirect (NULL);
73ab01a0
PA
816
817 gdb_flush (mi->event_channel);
73ab01a0 818 }
134a2066
YQ
819}
820
65630365
PA
821/* Print breakpoint BP on MI's event channel. */
822
823static void
824mi_print_breakpoint_for_event (struct mi_interp *mi, breakpoint *bp)
825{
29f94340 826 ui_out *mi_uiout = mi->interp_ui_out ();
65630365
PA
827
828 /* We want the output from print_breakpoint to go to
829 mi->event_channel. One approach would be to just call
830 print_breakpoint, and then use mi_out_put to send the current
831 content of mi_uiout into mi->event_channel. However, that will
832 break if anything is output to mi_uiout prior to calling the
833 breakpoint_created notifications. So, we use
834 ui_out_redirect. */
835 mi_uiout->redirect (mi->event_channel);
836
837 TRY
838 {
839 scoped_restore restore_uiout
840 = make_scoped_restore (&current_uiout, mi_uiout);
841
842 print_breakpoint (bp);
843 }
844 CATCH (ex, RETURN_MASK_ALL)
845 {
846 exception_print (gdb_stderr, ex);
847 }
848 END_CATCH
849
850 mi_uiout->redirect (NULL);
851}
852
8d3788bd 853/* Emit notification about a created breakpoint. */
2b03b41d 854
8d3788bd
VP
855static void
856mi_breakpoint_created (struct breakpoint *b)
857{
5b9afe8a 858 if (mi_suppress_notification.breakpoint)
8d3788bd
VP
859 return;
860
861 if (b->number <= 0)
862 return;
863
0e454242 864 SWITCH_THRU_ALL_UIS ()
492d29ea 865 {
73ab01a0 866 struct mi_interp *mi = as_mi_interp (top_level_interpreter ());
492d29ea 867
73ab01a0
PA
868 if (mi == NULL)
869 continue;
8d3788bd 870
223ffa71
TT
871 target_terminal::scoped_restore_terminal_state term_state;
872 target_terminal::ours_for_output ();
73ab01a0
PA
873
874 fprintf_unfiltered (mi->event_channel,
875 "breakpoint-created");
65630365 876 mi_print_breakpoint_for_event (mi, b);
73ab01a0
PA
877
878 gdb_flush (mi->event_channel);
73ab01a0 879 }
8d3788bd
VP
880}
881
882/* Emit notification about deleted breakpoint. */
2b03b41d 883
8d3788bd
VP
884static void
885mi_breakpoint_deleted (struct breakpoint *b)
886{
5b9afe8a 887 if (mi_suppress_notification.breakpoint)
8d3788bd
VP
888 return;
889
890 if (b->number <= 0)
891 return;
892
0e454242 893 SWITCH_THRU_ALL_UIS ()
73ab01a0
PA
894 {
895 struct mi_interp *mi = as_mi_interp (top_level_interpreter ());
8d3788bd 896
73ab01a0
PA
897 if (mi == NULL)
898 continue;
8d3788bd 899
223ffa71
TT
900 target_terminal::scoped_restore_terminal_state term_state;
901 target_terminal::ours_for_output ();
5fe96654 902
73ab01a0
PA
903 fprintf_unfiltered (mi->event_channel, "breakpoint-deleted,id=\"%d\"",
904 b->number);
905
906 gdb_flush (mi->event_channel);
73ab01a0 907 }
8d3788bd
VP
908}
909
910/* Emit notification about modified breakpoint. */
2b03b41d 911
8d3788bd
VP
912static void
913mi_breakpoint_modified (struct breakpoint *b)
914{
5b9afe8a 915 if (mi_suppress_notification.breakpoint)
8d3788bd
VP
916 return;
917
918 if (b->number <= 0)
919 return;
920
0e454242 921 SWITCH_THRU_ALL_UIS ()
492d29ea 922 {
73ab01a0 923 struct mi_interp *mi = as_mi_interp (top_level_interpreter ());
492d29ea 924
73ab01a0
PA
925 if (mi == NULL)
926 continue;
8d3788bd 927
223ffa71
TT
928 target_terminal::scoped_restore_terminal_state term_state;
929 target_terminal::ours_for_output ();
73ab01a0
PA
930 fprintf_unfiltered (mi->event_channel,
931 "breakpoint-modified");
65630365 932 mi_print_breakpoint_for_event (mi, b);
73ab01a0
PA
933
934 gdb_flush (mi->event_channel);
73ab01a0 935 }
8d3788bd
VP
936}
937
00431a78
PA
938static void
939mi_output_running (struct thread_info *thread)
d90e17a7 940{
0e454242 941 SWITCH_THRU_ALL_UIS ()
73ab01a0
PA
942 {
943 struct mi_interp *mi = as_mi_interp (top_level_interpreter ());
944
945 if (mi == NULL)
946 continue;
947
00431a78
PA
948 fprintf_unfiltered (mi->raw_stdout,
949 "*running,thread-id=\"%d\"\n",
950 thread->global_num);
73ab01a0 951 }
d90e17a7
PA
952}
953
e1ac3328 954static void
9204d692 955mi_on_resume_1 (struct mi_interp *mi, ptid_t ptid)
e1ac3328 956{
a2840c35
VP
957 /* To cater for older frontends, emit ^running, but do it only once
958 per each command. We do it here, since at this point we know
959 that the target was successfully resumed, and in non-async mode,
960 we won't return back to MI interpreter code until the target
961 is done running, so delaying the output of "^running" until then
962 will make it impossible for frontend to know what's going on.
963
964 In future (MI3), we'll be outputting "^done" here. */
f3b1572e 965 if (!running_result_record_printed && mi_proceeded)
a2840c35 966 {
9204d692 967 fprintf_unfiltered (mi->raw_stdout, "%s^running\n",
c271b6e2 968 current_token ? current_token : "");
a2840c35
VP
969 }
970
e99b03dc 971 if (ptid.pid () == -1)
9204d692 972 fprintf_unfiltered (mi->raw_stdout, "*running,thread-id=\"all\"\n");
0e998d96 973 else if (ptid.is_pid ())
bb599c81 974 {
ab730e72 975 int count = 0;
00431a78 976 inferior *inf;
d90e17a7
PA
977
978 /* Backwards compatibility. If there's only one inferior,
979 output "all", otherwise, output each resumed thread
980 individually. */
00431a78
PA
981 ALL_INFERIORS (inf)
982 if (inf->pid != 0)
983 {
984 count++;
985 if (count > 1)
986 break;
987 }
d90e17a7
PA
988
989 if (count == 1)
9204d692 990 fprintf_unfiltered (mi->raw_stdout, "*running,thread-id=\"all\"\n");
d90e17a7 991 else
00431a78
PA
992 {
993 thread_info *tp;
994 inferior *curinf = current_inferior ();
995
996 ALL_NON_EXITED_THREADS (tp)
997 if (tp->inf == curinf)
998 mi_output_running (tp);
999 }
bb599c81 1000 }
e1ac3328
VP
1001 else
1002 {
00431a78 1003 thread_info *ti = find_thread_ptid (ptid);
102040f0 1004
e1ac3328 1005 gdb_assert (ti);
00431a78 1006 mi_output_running (ti);
e1ac3328 1007 }
a2840c35 1008
f3b1572e 1009 if (!running_result_record_printed && mi_proceeded)
a2840c35
VP
1010 {
1011 running_result_record_printed = 1;
3b12939d
PA
1012 /* This is what gdb used to do historically -- printing prompt
1013 even if it cannot actually accept any input. This will be
1014 surely removed for MI3, and may be removed even earlier. */
1015 if (current_ui->prompt_state == PROMPT_BLOCKED)
9204d692 1016 fputs_unfiltered ("(gdb) \n", mi->raw_stdout);
a2840c35 1017 }
9204d692 1018 gdb_flush (mi->raw_stdout);
e1ac3328
VP
1019}
1020
c86cf029 1021static void
73ab01a0 1022mi_on_resume (ptid_t ptid)
c86cf029 1023{
73ab01a0 1024 struct thread_info *tp = NULL;
6ef284bd 1025
0e998d96 1026 if (ptid_equal (ptid, minus_one_ptid) || ptid.is_pid ())
73ab01a0
PA
1027 tp = inferior_thread ();
1028 else
1029 tp = find_thread_ptid (ptid);
6ef284bd 1030
73ab01a0
PA
1031 /* Suppress output while calling an inferior function. */
1032 if (tp->control.in_infcall)
1033 return;
6ef284bd 1034
0e454242 1035 SWITCH_THRU_ALL_UIS ()
6ef284bd 1036 {
73ab01a0 1037 struct mi_interp *mi = as_mi_interp (top_level_interpreter ());
73ab01a0
PA
1038
1039 if (mi == NULL)
1040 continue;
1041
223ffa71
TT
1042 target_terminal::scoped_restore_terminal_state term_state;
1043 target_terminal::ours_for_output ();
73ab01a0 1044
9204d692 1045 mi_on_resume_1 (mi, ptid);
6ef284bd 1046 }
73ab01a0 1047}
6ef284bd 1048
51457a05
MAL
1049/* See mi-interp.h. */
1050
1051void
1052mi_output_solib_attribs (ui_out *uiout, struct so_list *solib)
1053{
1054 struct gdbarch *gdbarch = target_gdbarch ();
1055
1056 uiout->field_string ("id", solib->so_original_name);
1057 uiout->field_string ("target-name", solib->so_original_name);
1058 uiout->field_string ("host-name", solib->so_name);
1059 uiout->field_int ("symbols-loaded", solib->symbols_loaded);
1060 if (!gdbarch_has_global_solist (target_gdbarch ()))
1061 uiout->field_fmt ("thread-group", "i%d", current_inferior ()->num);
1062
10f489e5
TT
1063 ui_out_emit_list list_emitter (uiout, "ranges");
1064 ui_out_emit_tuple tuple_emitter (uiout, NULL);
51457a05
MAL
1065 if (solib->addr_high != 0)
1066 {
1067 uiout->field_core_addr ("from", gdbarch, solib->addr_low);
1068 uiout->field_core_addr ("to", gdbarch, solib->addr_high);
1069 }
51457a05
MAL
1070}
1071
73ab01a0
PA
1072static void
1073mi_solib_loaded (struct so_list *solib)
1074{
0e454242 1075 SWITCH_THRU_ALL_UIS ()
73ab01a0
PA
1076 {
1077 struct mi_interp *mi = as_mi_interp (top_level_interpreter ());
1078 struct ui_out *uiout;
5fe96654 1079
73ab01a0
PA
1080 if (mi == NULL)
1081 continue;
1082
29f94340 1083 uiout = top_level_interpreter ()->interp_ui_out ();
73ab01a0 1084
223ffa71
TT
1085 target_terminal::scoped_restore_terminal_state term_state;
1086 target_terminal::ours_for_output ();
73ab01a0
PA
1087
1088 fprintf_unfiltered (mi->event_channel, "library-loaded");
1089
112e8700 1090 uiout->redirect (mi->event_channel);
73ab01a0 1091
51457a05 1092 mi_output_solib_attribs (uiout, solib);
73ab01a0 1093
112e8700 1094 uiout->redirect (NULL);
73ab01a0
PA
1095
1096 gdb_flush (mi->event_channel);
73ab01a0 1097 }
c86cf029
VP
1098}
1099
1100static void
1101mi_solib_unloaded (struct so_list *solib)
1102{
0e454242 1103 SWITCH_THRU_ALL_UIS ()
73ab01a0
PA
1104 {
1105 struct mi_interp *mi = as_mi_interp (top_level_interpreter ());
1106 struct ui_out *uiout;
6ef284bd 1107
73ab01a0
PA
1108 if (mi == NULL)
1109 continue;
6ef284bd 1110
29f94340 1111 uiout = top_level_interpreter ()->interp_ui_out ();
6ef284bd 1112
223ffa71
TT
1113 target_terminal::scoped_restore_terminal_state term_state;
1114 target_terminal::ours_for_output ();
6ef284bd 1115
73ab01a0 1116 fprintf_unfiltered (mi->event_channel, "library-unloaded");
a79b8f6e 1117
112e8700 1118 uiout->redirect (mi->event_channel);
5fe96654 1119
112e8700
SM
1120 uiout->field_string ("id", solib->so_original_name);
1121 uiout->field_string ("target-name", solib->so_original_name);
1122 uiout->field_string ("host-name", solib->so_name);
73ab01a0
PA
1123 if (!gdbarch_has_global_solist (target_gdbarch ()))
1124 {
112e8700 1125 uiout->field_fmt ("thread-group", "i%d", current_inferior ()->num);
73ab01a0
PA
1126 }
1127
112e8700 1128 uiout->redirect (NULL);
73ab01a0
PA
1129
1130 gdb_flush (mi->event_channel);
73ab01a0 1131 }
c86cf029
VP
1132}
1133
5b9afe8a
YQ
1134/* Emit notification about the command parameter change. */
1135
1136static void
1137mi_command_param_changed (const char *param, const char *value)
1138{
5b9afe8a
YQ
1139 if (mi_suppress_notification.cmd_param_changed)
1140 return;
1141
0e454242 1142 SWITCH_THRU_ALL_UIS ()
73ab01a0
PA
1143 {
1144 struct mi_interp *mi = as_mi_interp (top_level_interpreter ());
1145 struct ui_out *mi_uiout;
5b9afe8a 1146
73ab01a0
PA
1147 if (mi == NULL)
1148 continue;
5b9afe8a 1149
29f94340 1150 mi_uiout = top_level_interpreter ()->interp_ui_out ();
5b9afe8a 1151
223ffa71
TT
1152 target_terminal::scoped_restore_terminal_state term_state;
1153 target_terminal::ours_for_output ();
5b9afe8a 1154
73ab01a0 1155 fprintf_unfiltered (mi->event_channel, "cmd-param-changed");
5b9afe8a 1156
112e8700 1157 mi_uiout->redirect (mi->event_channel);
5fe96654 1158
112e8700
SM
1159 mi_uiout->field_string ("param", param);
1160 mi_uiout->field_string ("value", value);
73ab01a0 1161
112e8700 1162 mi_uiout->redirect (NULL);
73ab01a0
PA
1163
1164 gdb_flush (mi->event_channel);
73ab01a0 1165 }
5b9afe8a
YQ
1166}
1167
8de0566d
YQ
1168/* Emit notification about the target memory change. */
1169
1170static void
1171mi_memory_changed (struct inferior *inferior, CORE_ADDR memaddr,
1172 ssize_t len, const bfd_byte *myaddr)
1173{
8de0566d
YQ
1174 if (mi_suppress_notification.memory)
1175 return;
1176
0e454242 1177 SWITCH_THRU_ALL_UIS ()
73ab01a0
PA
1178 {
1179 struct mi_interp *mi = as_mi_interp (top_level_interpreter ());
1180 struct ui_out *mi_uiout;
1181 struct obj_section *sec;
8de0566d 1182
73ab01a0
PA
1183 if (mi == NULL)
1184 continue;
8de0566d 1185
29f94340 1186 mi_uiout = top_level_interpreter ()->interp_ui_out ();
8de0566d 1187
223ffa71
TT
1188 target_terminal::scoped_restore_terminal_state term_state;
1189 target_terminal::ours_for_output ();
8de0566d 1190
73ab01a0 1191 fprintf_unfiltered (mi->event_channel, "memory-changed");
8de0566d 1192
112e8700 1193 mi_uiout->redirect (mi->event_channel);
8de0566d 1194
112e8700
SM
1195 mi_uiout->field_fmt ("thread-group", "i%d", inferior->num);
1196 mi_uiout->field_core_addr ("addr", target_gdbarch (), memaddr);
1197 mi_uiout->field_fmt ("len", "%s", hex_string (len));
8de0566d 1198
73ab01a0
PA
1199 /* Append 'type=code' into notification if MEMADDR falls in the range of
1200 sections contain code. */
1201 sec = find_pc_section (memaddr);
1202 if (sec != NULL && sec->objfile != NULL)
1203 {
1204 flagword flags = bfd_get_section_flags (sec->objfile->obfd,
1205 sec->the_bfd_section);
5fe96654 1206
73ab01a0 1207 if (flags & SEC_CODE)
112e8700 1208 mi_uiout->field_string ("type", "code");
73ab01a0
PA
1209 }
1210
112e8700 1211 mi_uiout->redirect (NULL);
73ab01a0
PA
1212
1213 gdb_flush (mi->event_channel);
73ab01a0 1214 }
8de0566d
YQ
1215}
1216
4034d0ff
AT
1217/* Emit an event when the selection context (inferior, thread, frame)
1218 changed. */
1219
1220static void
1221mi_user_selected_context_changed (user_selected_what selection)
1222{
4034d0ff
AT
1223 struct thread_info *tp;
1224
1225 /* Don't send an event if we're responding to an MI command. */
1226 if (mi_suppress_notification.user_selected_context)
1227 return;
1228
00431a78
PA
1229 if (inferior_ptid != null_ptid)
1230 tp = inferior_thread ();
1231 else
1232 tp = NULL;
4034d0ff 1233
0e454242 1234 SWITCH_THRU_ALL_UIS ()
4034d0ff
AT
1235 {
1236 struct mi_interp *mi = as_mi_interp (top_level_interpreter ());
1237 struct ui_out *mi_uiout;
4034d0ff
AT
1238
1239 if (mi == NULL)
1240 continue;
1241
29f94340 1242 mi_uiout = top_level_interpreter ()->interp_ui_out ();
4034d0ff 1243
112e8700 1244 mi_uiout->redirect (mi->event_channel);
ca5909c7 1245 ui_out_redirect_pop redirect_popper (mi_uiout);
4034d0ff 1246
223ffa71
TT
1247 target_terminal::scoped_restore_terminal_state term_state;
1248 target_terminal::ours_for_output ();
4034d0ff
AT
1249
1250 if (selection & USER_SELECTED_INFERIOR)
1251 print_selected_inferior (mi->cli_uiout);
1252
1253 if (tp != NULL
1254 && (selection & (USER_SELECTED_THREAD | USER_SELECTED_FRAME)))
1255 {
1256 print_selected_thread_frame (mi->cli_uiout, selection);
1257
1258 fprintf_unfiltered (mi->event_channel,
1259 "thread-selected,id=\"%d\"",
1260 tp->global_num);
1261
1262 if (tp->state != THREAD_RUNNING)
1263 {
1264 if (has_stack_frames ())
1265 print_stack_frame_to_uiout (mi_uiout, get_selected_frame (NULL),
1266 1, SRC_AND_LOC, 1);
1267 }
1268 }
1269
1270 gdb_flush (mi->event_channel);
4034d0ff
AT
1271 }
1272}
1273
a79b8f6e
VP
1274static int
1275report_initial_inferior (struct inferior *inf, void *closure)
1276{
73ab01a0 1277 /* This function is called from mi_interpreter_init, and since
a79b8f6e
VP
1278 mi_inferior_added assumes that inferior is fully initialized
1279 and top_level_interpreter_data is set, we cannot call
1280 it here. */
19ba03f4 1281 struct mi_interp *mi = (struct mi_interp *) closure;
5fe96654 1282
223ffa71
TT
1283 target_terminal::scoped_restore_terminal_state term_state;
1284 target_terminal::ours_for_output ();
102040f0 1285
a79b8f6e
VP
1286 fprintf_unfiltered (mi->event_channel,
1287 "thread-group-added,id=\"i%d\"",
1288 inf->num);
1289 gdb_flush (mi->event_channel);
5fe96654 1290
a79b8f6e
VP
1291 return 0;
1292}
c86cf029 1293
d6f9b0fb
PA
1294ui_out *
1295mi_interp::interp_ui_out ()
4801a9a3 1296{
d6f9b0fb 1297 return this->mi_uiout;
4801a9a3
PA
1298}
1299
37ce89eb
SS
1300/* Do MI-specific logging actions; save raw_stdout, and change all
1301 the consoles to use the supplied ui-file(s). */
1302
d6f9b0fb
PA
1303void
1304mi_interp::set_logging (ui_file_up logfile, bool logging_redirect)
37ce89eb 1305{
d6f9b0fb 1306 struct mi_interp *mi = this;
37ce89eb 1307
616268b6 1308 if (logfile != NULL)
37ce89eb 1309 {
9204d692 1310 mi->saved_raw_stdout = mi->raw_stdout;
616268b6
PA
1311 mi->raw_stdout = make_logging_output (mi->raw_stdout,
1312 std::move (logfile),
1313 logging_redirect);
1314
37ce89eb
SS
1315 }
1316 else
1317 {
616268b6 1318 delete mi->raw_stdout;
9204d692
PA
1319 mi->raw_stdout = mi->saved_raw_stdout;
1320 mi->saved_raw_stdout = NULL;
37ce89eb
SS
1321 }
1322
d7e74731
PA
1323 mi->out->set_raw (mi->raw_stdout);
1324 mi->err->set_raw (mi->raw_stdout);
1325 mi->log->set_raw (mi->raw_stdout);
1326 mi->targ->set_raw (mi->raw_stdout);
1327 mi->event_channel->set_raw (mi->raw_stdout);
37ce89eb
SS
1328}
1329
8322445e
PA
1330/* Factory for MI interpreters. */
1331
1332static struct interp *
1333mi_interp_factory (const char *name)
1334{
d6f9b0fb 1335 return new mi_interp (name);
8322445e
PA
1336}
1337
4a8f6654
AC
1338void
1339_initialize_mi_interp (void)
1340{
2fcf52f0 1341 /* The various interpreter levels. */
8322445e
PA
1342 interp_factory_register (INTERP_MI1, mi_interp_factory);
1343 interp_factory_register (INTERP_MI2, mi_interp_factory);
1344 interp_factory_register (INTERP_MI3, mi_interp_factory);
1345 interp_factory_register (INTERP_MI, mi_interp_factory);
73ab01a0 1346
76727919
TT
1347 gdb::observers::signal_received.attach (mi_on_signal_received);
1348 gdb::observers::end_stepping_range.attach (mi_on_end_stepping_range);
1349 gdb::observers::signal_exited.attach (mi_on_signal_exited);
1350 gdb::observers::exited.attach (mi_on_exited);
1351 gdb::observers::no_history.attach (mi_on_no_history);
1352 gdb::observers::new_thread.attach (mi_new_thread);
1353 gdb::observers::thread_exit.attach (mi_thread_exit);
1354 gdb::observers::inferior_added.attach (mi_inferior_added);
1355 gdb::observers::inferior_appeared.attach (mi_inferior_appeared);
1356 gdb::observers::inferior_exit.attach (mi_inferior_exit);
1357 gdb::observers::inferior_removed.attach (mi_inferior_removed);
1358 gdb::observers::record_changed.attach (mi_record_changed);
1359 gdb::observers::normal_stop.attach (mi_on_normal_stop);
1360 gdb::observers::target_resumed.attach (mi_on_resume);
1361 gdb::observers::solib_loaded.attach (mi_solib_loaded);
1362 gdb::observers::solib_unloaded.attach (mi_solib_unloaded);
1363 gdb::observers::about_to_proceed.attach (mi_about_to_proceed);
1364 gdb::observers::traceframe_changed.attach (mi_traceframe_changed);
1365 gdb::observers::tsv_created.attach (mi_tsv_created);
1366 gdb::observers::tsv_deleted.attach (mi_tsv_deleted);
1367 gdb::observers::tsv_modified.attach (mi_tsv_modified);
1368 gdb::observers::breakpoint_created.attach (mi_breakpoint_created);
1369 gdb::observers::breakpoint_deleted.attach (mi_breakpoint_deleted);
1370 gdb::observers::breakpoint_modified.attach (mi_breakpoint_modified);
1371 gdb::observers::command_param_changed.attach (mi_command_param_changed);
1372 gdb::observers::memory_changed.attach (mi_memory_changed);
1373 gdb::observers::sync_execution_done.attach (mi_on_sync_execution_done);
1374 gdb::observers::user_selected_context_changed.attach
4034d0ff 1375 (mi_user_selected_context_changed);
4a8f6654 1376}
This page took 1.465309 seconds and 4 git commands to generate.