3 Copyright (C) 2000-2018 Free Software Foundation, Inc.
5 Contributed by Cygnus Solutions (a Red Hat company).
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 #include "arch-utils.h"
28 #include "gdbthread.h"
31 #include "mi-getopt.h"
32 #include "mi-console.h"
36 #include "event-loop.h"
37 #include "event-top.h"
38 #include "gdbcore.h" /* For write_memory(). */
43 #include "mi-common.h"
48 #include "common/gdb_splay_tree.h"
49 #include "tracepoint.h"
53 #include "extension.h"
55 #include "observable.h"
56 #include "common/gdb_optional.h"
57 #include "common/byte-vector.h"
60 #include "run-time-clock.h"
62 #include "progspace-and-thread.h"
63 #include "common/rsp-low.h"
75 /* This is used to pass the current command timestamp down to
76 continuation routines. */
77 static struct mi_timestamp
*current_command_ts
;
79 static int do_timings
= 0;
82 /* Few commands would like to know if options like --thread-group were
83 explicitly specified. This variable keeps the current parsed
84 command including all option, and make it possible. */
85 static struct mi_parse
*current_context
;
87 int running_result_record_printed
= 1;
89 /* Flag indicating that the target has proceeded since the last
90 command was issued. */
93 static void mi_cmd_execute (struct mi_parse
*parse
);
95 static void mi_execute_cli_command (const char *cmd
, int args_p
,
97 static void mi_execute_async_cli_command (const char *cli_command
,
98 char **argv
, int argc
);
99 static bool register_changed_p (int regnum
, readonly_detached_regcache
*,
100 readonly_detached_regcache
*);
101 static void output_register (struct frame_info
*, int regnum
, int format
,
102 int skip_unavailable
);
104 /* Controls whether the frontend wants MI in async mode. */
105 static int mi_async
= 0;
107 /* The set command writes to this variable. If the inferior is
108 executing, mi_async is *not* updated. */
109 static int mi_async_1
= 0;
112 set_mi_async_command (const char *args
, int from_tty
,
113 struct cmd_list_element
*c
)
115 if (have_live_inferiors ())
117 mi_async_1
= mi_async
;
118 error (_("Cannot change this setting while the inferior is running."));
121 mi_async
= mi_async_1
;
125 show_mi_async_command (struct ui_file
*file
, int from_tty
,
126 struct cmd_list_element
*c
,
129 fprintf_filtered (file
,
130 _("Whether MI is in asynchronous mode is %s.\n"),
134 /* A wrapper for target_can_async_p that takes the MI setting into
140 return mi_async
&& target_can_async_p ();
143 /* Command implementations. FIXME: Is this libgdb? No. This is the MI
144 layer that calls libgdb. Any operation used in the below should be
147 static void timestamp (struct mi_timestamp
*tv
);
149 static void print_diff (struct ui_file
*file
, struct mi_timestamp
*start
,
150 struct mi_timestamp
*end
);
153 mi_cmd_gdb_exit (const char *command
, char **argv
, int argc
)
155 struct mi_interp
*mi
= (struct mi_interp
*) current_interpreter ();
157 /* We have to print everything right here because we never return. */
159 fputs_unfiltered (current_token
, mi
->raw_stdout
);
160 fputs_unfiltered ("^exit\n", mi
->raw_stdout
);
161 mi_out_put (current_uiout
, mi
->raw_stdout
);
162 gdb_flush (mi
->raw_stdout
);
163 /* FIXME: The function called is not yet a formal libgdb function. */
164 quit_force (NULL
, FROM_TTY
);
168 mi_cmd_exec_next (const char *command
, char **argv
, int argc
)
170 /* FIXME: Should call a libgdb function, not a cli wrapper. */
171 if (argc
> 0 && strcmp(argv
[0], "--reverse") == 0)
172 mi_execute_async_cli_command ("reverse-next", argv
+ 1, argc
- 1);
174 mi_execute_async_cli_command ("next", argv
, argc
);
178 mi_cmd_exec_next_instruction (const char *command
, char **argv
, int argc
)
180 /* FIXME: Should call a libgdb function, not a cli wrapper. */
181 if (argc
> 0 && strcmp(argv
[0], "--reverse") == 0)
182 mi_execute_async_cli_command ("reverse-nexti", argv
+ 1, argc
- 1);
184 mi_execute_async_cli_command ("nexti", argv
, argc
);
188 mi_cmd_exec_step (const char *command
, char **argv
, int argc
)
190 /* FIXME: Should call a libgdb function, not a cli wrapper. */
191 if (argc
> 0 && strcmp(argv
[0], "--reverse") == 0)
192 mi_execute_async_cli_command ("reverse-step", argv
+ 1, argc
- 1);
194 mi_execute_async_cli_command ("step", argv
, argc
);
198 mi_cmd_exec_step_instruction (const char *command
, char **argv
, int argc
)
200 /* FIXME: Should call a libgdb function, not a cli wrapper. */
201 if (argc
> 0 && strcmp(argv
[0], "--reverse") == 0)
202 mi_execute_async_cli_command ("reverse-stepi", argv
+ 1, argc
- 1);
204 mi_execute_async_cli_command ("stepi", argv
, argc
);
208 mi_cmd_exec_finish (const char *command
, char **argv
, int argc
)
210 /* FIXME: Should call a libgdb function, not a cli wrapper. */
211 if (argc
> 0 && strcmp(argv
[0], "--reverse") == 0)
212 mi_execute_async_cli_command ("reverse-finish", argv
+ 1, argc
- 1);
214 mi_execute_async_cli_command ("finish", argv
, argc
);
218 mi_cmd_exec_return (const char *command
, char **argv
, int argc
)
220 /* This command doesn't really execute the target, it just pops the
221 specified number of frames. */
223 /* Call return_command with from_tty argument equal to 0 so as to
224 avoid being queried. */
225 return_command (*argv
, 0);
227 /* Call return_command with from_tty argument equal to 0 so as to
228 avoid being queried. */
229 return_command (NULL
, 0);
231 /* Because we have called return_command with from_tty = 0, we need
232 to print the frame here. */
233 print_stack_frame (get_selected_frame (NULL
), 1, LOC_AND_ADDRESS
, 1);
237 mi_cmd_exec_jump (const char *args
, char **argv
, int argc
)
239 /* FIXME: Should call a libgdb function, not a cli wrapper. */
240 mi_execute_async_cli_command ("jump", argv
, argc
);
244 proceed_thread (struct thread_info
*thread
, int pid
)
246 if (thread
->state
!= THREAD_STOPPED
)
249 if (pid
!= 0 && thread
->ptid
.pid () != pid
)
252 switch_to_thread (thread
);
253 clear_proceed_status (0);
254 proceed ((CORE_ADDR
) -1, GDB_SIGNAL_DEFAULT
);
258 proceed_thread_callback (struct thread_info
*thread
, void *arg
)
260 int pid
= *(int *)arg
;
262 proceed_thread (thread
, pid
);
267 exec_continue (char **argv
, int argc
)
269 prepare_execution_command (current_top_target (), mi_async_p ());
273 /* In non-stop mode, 'resume' always resumes a single thread.
274 Therefore, to resume all threads of the current inferior, or
275 all threads in all inferiors, we need to iterate over
278 See comment on infcmd.c:proceed_thread_callback for rationale. */
279 if (current_context
->all
|| current_context
->thread_group
!= -1)
281 scoped_restore_current_thread restore_thread
;
284 if (!current_context
->all
)
287 = find_inferior_id (current_context
->thread_group
);
291 iterate_over_threads (proceed_thread_callback
, &pid
);
300 scoped_restore save_multi
= make_scoped_restore (&sched_multi
);
302 if (current_context
->all
)
309 /* In all-stop mode, -exec-continue traditionally resumed
310 either all threads, or one thread, depending on the
311 'scheduler-locking' variable. Let's continue to do the
319 exec_reverse_continue (char **argv
, int argc
)
321 enum exec_direction_kind dir
= execution_direction
;
323 if (dir
== EXEC_REVERSE
)
324 error (_("Already in reverse mode."));
326 if (!target_can_execute_reverse
)
327 error (_("Target %s does not support this command."), target_shortname
);
329 scoped_restore save_exec_dir
= make_scoped_restore (&execution_direction
,
331 exec_continue (argv
, argc
);
335 mi_cmd_exec_continue (const char *command
, char **argv
, int argc
)
337 if (argc
> 0 && strcmp (argv
[0], "--reverse") == 0)
338 exec_reverse_continue (argv
+ 1, argc
- 1);
340 exec_continue (argv
, argc
);
344 interrupt_thread_callback (struct thread_info
*thread
, void *arg
)
346 int pid
= *(int *)arg
;
348 if (thread
->state
!= THREAD_RUNNING
)
351 if (thread
->ptid
.pid () != pid
)
354 target_stop (thread
->ptid
);
358 /* Interrupt the execution of the target. Note how we must play
359 around with the token variables, in order to display the current
360 token in the result of the interrupt command, and the previous
361 execution token when the target finally stops. See comments in
365 mi_cmd_exec_interrupt (const char *command
, char **argv
, int argc
)
367 /* In all-stop mode, everything stops, so we don't need to try
368 anything specific. */
371 interrupt_target_1 (0);
375 if (current_context
->all
)
377 /* This will interrupt all threads in all inferiors. */
378 interrupt_target_1 (1);
380 else if (current_context
->thread_group
!= -1)
382 struct inferior
*inf
= find_inferior_id (current_context
->thread_group
);
384 iterate_over_threads (interrupt_thread_callback
, &inf
->pid
);
388 /* Interrupt just the current thread -- either explicitly
389 specified via --thread or whatever was current before
390 MI command was sent. */
391 interrupt_target_1 (0);
395 /* Callback for iterate_over_inferiors which starts the execution
396 of the given inferior.
398 ARG is a pointer to an integer whose value, if non-zero, indicates
399 that the program should be stopped when reaching the main subprogram
400 (similar to what the CLI "start" command does). */
403 run_one_inferior (struct inferior
*inf
, void *arg
)
405 int start_p
= *(int *) arg
;
406 const char *run_cmd
= start_p
? "start" : "run";
407 struct target_ops
*run_target
= find_run_target ();
408 int async_p
= mi_async
&& run_target
->can_async_p ();
412 thread_info
*tp
= any_thread_of_inferior (inf
);
414 error (_("Inferior has no threads."));
416 switch_to_thread (tp
);
420 set_current_inferior (inf
);
421 switch_to_no_thread ();
422 set_current_program_space (inf
->pspace
);
424 mi_execute_cli_command (run_cmd
, async_p
,
425 async_p
? "&" : NULL
);
430 mi_cmd_exec_run (const char *command
, char **argv
, int argc
)
434 /* Parse the command options. */
439 static const struct mi_opt opts
[] =
441 {"-start", START_OPT
, 0},
450 int opt
= mi_getopt ("-exec-run", argc
, argv
, opts
, &oind
, &oarg
);
454 switch ((enum opt
) opt
)
462 /* This command does not accept any argument. Make sure the user
463 did not provide any. */
465 error (_("Invalid argument: %s"), argv
[oind
]);
467 if (current_context
->all
)
469 scoped_restore_current_pspace_and_thread restore_pspace_thread
;
471 iterate_over_inferiors (run_one_inferior
, &start_p
);
475 const char *run_cmd
= start_p
? "start" : "run";
476 struct target_ops
*run_target
= find_run_target ();
477 int async_p
= mi_async
&& run_target
->can_async_p ();
479 mi_execute_cli_command (run_cmd
, async_p
,
480 async_p
? "&" : NULL
);
486 find_thread_of_process (struct thread_info
*ti
, void *p
)
490 if (ti
->ptid
.pid () == pid
&& ti
->state
!= THREAD_EXITED
)
497 mi_cmd_target_detach (const char *command
, char **argv
, int argc
)
499 if (argc
!= 0 && argc
!= 1)
500 error (_("Usage: -target-detach [pid | thread-group]"));
504 struct thread_info
*tp
;
508 /* First see if we are dealing with a thread-group id. */
511 struct inferior
*inf
;
512 int id
= strtoul (argv
[0] + 1, &end
, 0);
515 error (_("Invalid syntax of thread-group id '%s'"), argv
[0]);
517 inf
= find_inferior_id (id
);
519 error (_("Non-existent thread-group id '%d'"), id
);
525 /* We must be dealing with a pid. */
526 pid
= strtol (argv
[0], &end
, 10);
529 error (_("Invalid identifier '%s'"), argv
[0]);
532 /* Pick any thread in the desired process. Current
533 target_detach detaches from the parent of inferior_ptid. */
534 tp
= iterate_over_threads (find_thread_of_process
, &pid
);
536 error (_("Thread group is empty"));
538 switch_to_thread (tp
);
541 detach_command (NULL
, 0);
545 mi_cmd_target_flash_erase (const char *command
, char **argv
, int argc
)
547 flash_erase_command (NULL
, 0);
551 mi_cmd_thread_select (const char *command
, char **argv
, int argc
)
554 error (_("-thread-select: USAGE: threadnum."));
556 int num
= value_as_long (parse_and_eval (argv
[0]));
557 thread_info
*thr
= find_thread_global_id (num
);
559 error (_("Thread ID %d not known."), num
);
561 ptid_t previous_ptid
= inferior_ptid
;
563 thread_select (argv
[0], thr
);
565 print_selected_thread_frame (current_uiout
,
566 USER_SELECTED_THREAD
| USER_SELECTED_FRAME
);
568 /* Notify if the thread has effectively changed. */
569 if (!ptid_equal (inferior_ptid
, previous_ptid
))
571 gdb::observers::user_selected_context_changed
.notify
572 (USER_SELECTED_THREAD
| USER_SELECTED_FRAME
);
577 mi_cmd_thread_list_ids (const char *command
, char **argv
, int argc
)
580 error (_("-thread-list-ids: No arguments required."));
583 int current_thread
= -1;
585 update_thread_list ();
588 ui_out_emit_tuple
tuple_emitter (current_uiout
, "thread-ids");
590 struct thread_info
*tp
;
591 ALL_NON_EXITED_THREADS (tp
)
593 if (tp
->ptid
== inferior_ptid
)
594 current_thread
= tp
->global_num
;
597 current_uiout
->field_int ("thread-id", tp
->global_num
);
601 if (current_thread
!= -1)
602 current_uiout
->field_int ("current-thread-id", current_thread
);
603 current_uiout
->field_int ("number-of-threads", num
);
607 mi_cmd_thread_info (const char *command
, char **argv
, int argc
)
609 if (argc
!= 0 && argc
!= 1)
610 error (_("Invalid MI command"));
612 print_thread_info (current_uiout
, argv
[0], -1);
615 struct collect_cores_data
622 collect_cores (struct thread_info
*ti
, void *xdata
)
624 struct collect_cores_data
*data
= (struct collect_cores_data
*) xdata
;
626 if (ti
->ptid
.pid () == data
->pid
)
628 int core
= target_core_of_thread (ti
->ptid
);
631 data
->cores
.insert (core
);
637 struct print_one_inferior_data
640 const std::set
<int> *inferiors
;
644 print_one_inferior (struct inferior
*inferior
, void *xdata
)
646 struct print_one_inferior_data
*top_data
647 = (struct print_one_inferior_data
*) xdata
;
648 struct ui_out
*uiout
= current_uiout
;
650 if (top_data
->inferiors
->empty ()
651 || (top_data
->inferiors
->find (inferior
->pid
)
652 != top_data
->inferiors
->end ()))
654 struct collect_cores_data data
;
655 ui_out_emit_tuple
tuple_emitter (uiout
, NULL
);
657 uiout
->field_fmt ("id", "i%d", inferior
->num
);
658 uiout
->field_string ("type", "process");
659 if (inferior
->has_exit_code
)
660 uiout
->field_string ("exit-code",
661 int_string (inferior
->exit_code
, 8, 0, 0, 1));
662 if (inferior
->pid
!= 0)
663 uiout
->field_int ("pid", inferior
->pid
);
665 if (inferior
->pspace
->pspace_exec_filename
!= NULL
)
667 uiout
->field_string ("executable",
668 inferior
->pspace
->pspace_exec_filename
);
671 if (inferior
->pid
!= 0)
673 data
.pid
= inferior
->pid
;
674 iterate_over_threads (collect_cores
, &data
);
677 if (!data
.cores
.empty ())
679 ui_out_emit_list
list_emitter (uiout
, "cores");
681 for (int b
: data
.cores
)
682 uiout
->field_int (NULL
, b
);
685 if (top_data
->recurse
)
686 print_thread_info (uiout
, NULL
, inferior
->pid
);
692 /* Output a field named 'cores' with a list as the value. The
693 elements of the list are obtained by splitting 'cores' on
697 output_cores (struct ui_out
*uiout
, const char *field_name
, const char *xcores
)
699 ui_out_emit_list
list_emitter (uiout
, field_name
);
700 gdb::unique_xmalloc_ptr
<char> cores (xstrdup (xcores
));
701 char *p
= cores
.get ();
703 for (p
= strtok (p
, ","); p
; p
= strtok (NULL
, ","))
704 uiout
->field_string (NULL
, p
);
708 list_available_thread_groups (const std::set
<int> &ids
, int recurse
)
710 struct ui_out
*uiout
= current_uiout
;
712 /* This keeps a map from integer (pid) to vector of struct osdata_item.
713 The vector contains information about all threads for the given pid. */
714 std::map
<int, std::vector
<osdata_item
>> tree
;
716 /* get_osdata will throw if it cannot return data. */
717 std::unique_ptr
<osdata
> data
= get_osdata ("processes");
721 std::unique_ptr
<osdata
> threads
= get_osdata ("threads");
723 for (const osdata_item
&item
: threads
->items
)
725 const std::string
*pid
= get_osdata_column (item
, "pid");
726 int pid_i
= strtoul (pid
->c_str (), NULL
, 0);
728 tree
[pid_i
].push_back (item
);
732 ui_out_emit_list
list_emitter (uiout
, "groups");
734 for (const osdata_item
&item
: data
->items
)
736 const std::string
*pid
= get_osdata_column (item
, "pid");
737 const std::string
*cmd
= get_osdata_column (item
, "command");
738 const std::string
*user
= get_osdata_column (item
, "user");
739 const std::string
*cores
= get_osdata_column (item
, "cores");
741 int pid_i
= strtoul (pid
->c_str (), NULL
, 0);
743 /* At present, the target will return all available processes
744 and if information about specific ones was required, we filter
745 undesired processes here. */
746 if (!ids
.empty () && ids
.find (pid_i
) == ids
.end ())
749 ui_out_emit_tuple
tuple_emitter (uiout
, NULL
);
751 uiout
->field_fmt ("id", "%s", pid
->c_str ());
752 uiout
->field_string ("type", "process");
754 uiout
->field_string ("description", cmd
->c_str ());
756 uiout
->field_string ("user", user
->c_str ());
758 output_cores (uiout
, "cores", cores
->c_str ());
762 auto n
= tree
.find (pid_i
);
763 if (n
!= tree
.end ())
765 std::vector
<osdata_item
> &children
= n
->second
;
767 ui_out_emit_list
thread_list_emitter (uiout
, "threads");
769 for (const osdata_item
&child
: children
)
771 ui_out_emit_tuple
tuple_emitter (uiout
, NULL
);
772 const std::string
*tid
= get_osdata_column (child
, "tid");
773 const std::string
*tcore
= get_osdata_column (child
, "core");
775 uiout
->field_string ("id", tid
->c_str ());
777 uiout
->field_string ("core", tcore
->c_str ());
785 mi_cmd_list_thread_groups (const char *command
, char **argv
, int argc
)
787 struct ui_out
*uiout
= current_uiout
;
794 AVAILABLE_OPT
, RECURSE_OPT
796 static const struct mi_opt opts
[] =
798 {"-available", AVAILABLE_OPT
, 0},
799 {"-recurse", RECURSE_OPT
, 1},
808 int opt
= mi_getopt ("-list-thread-groups", argc
, argv
, opts
,
813 switch ((enum opt
) opt
)
819 if (strcmp (oarg
, "0") == 0)
821 else if (strcmp (oarg
, "1") == 0)
824 error (_("only '0' and '1' are valid values "
825 "for the '--recurse' option"));
830 for (; oind
< argc
; ++oind
)
835 if (*(argv
[oind
]) != 'i')
836 error (_("invalid syntax of group id '%s'"), argv
[oind
]);
838 inf
= strtoul (argv
[oind
] + 1, &end
, 0);
841 error (_("invalid syntax of group id '%s'"), argv
[oind
]);
847 list_available_thread_groups (ids
, recurse
);
849 else if (ids
.size () == 1)
851 /* Local thread groups, single id. */
852 int id
= *(ids
.begin ());
853 struct inferior
*inf
= find_inferior_id (id
);
856 error (_("Non-existent thread group id '%d'"), id
);
858 print_thread_info (uiout
, NULL
, inf
->pid
);
862 struct print_one_inferior_data data
;
864 data
.recurse
= recurse
;
865 data
.inferiors
= &ids
;
867 /* Local thread groups. Either no explicit ids -- and we
868 print everything, or several explicit ids. In both cases,
869 we print more than one group, and have to use 'groups'
870 as the top-level element. */
871 ui_out_emit_list
list_emitter (uiout
, "groups");
872 update_thread_list ();
873 iterate_over_inferiors (print_one_inferior
, &data
);
878 mi_cmd_data_list_register_names (const char *command
, char **argv
, int argc
)
880 struct gdbarch
*gdbarch
;
881 struct ui_out
*uiout
= current_uiout
;
885 /* Note that the test for a valid register must include checking the
886 gdbarch_register_name because gdbarch_num_regs may be allocated
887 for the union of the register sets within a family of related
888 processors. In this case, some entries of gdbarch_register_name
889 will change depending upon the particular processor being
892 gdbarch
= get_current_arch ();
893 numregs
= gdbarch_num_regs (gdbarch
) + gdbarch_num_pseudo_regs (gdbarch
);
895 ui_out_emit_list
list_emitter (uiout
, "register-names");
897 if (argc
== 0) /* No args, just do all the regs. */
903 if (gdbarch_register_name (gdbarch
, regnum
) == NULL
904 || *(gdbarch_register_name (gdbarch
, regnum
)) == '\0')
905 uiout
->field_string (NULL
, "");
907 uiout
->field_string (NULL
, gdbarch_register_name (gdbarch
, regnum
));
911 /* Else, list of register #s, just do listed regs. */
912 for (i
= 0; i
< argc
; i
++)
914 regnum
= atoi (argv
[i
]);
915 if (regnum
< 0 || regnum
>= numregs
)
916 error (_("bad register number"));
918 if (gdbarch_register_name (gdbarch
, regnum
) == NULL
919 || *(gdbarch_register_name (gdbarch
, regnum
)) == '\0')
920 uiout
->field_string (NULL
, "");
922 uiout
->field_string (NULL
, gdbarch_register_name (gdbarch
, regnum
));
927 mi_cmd_data_list_changed_registers (const char *command
, char **argv
, int argc
)
929 static std::unique_ptr
<readonly_detached_regcache
> this_regs
;
930 struct ui_out
*uiout
= current_uiout
;
931 std::unique_ptr
<readonly_detached_regcache
> prev_regs
;
932 struct gdbarch
*gdbarch
;
936 /* The last time we visited this function, the current frame's
937 register contents were saved in THIS_REGS. Move THIS_REGS over
938 to PREV_REGS, and refresh THIS_REGS with the now-current register
941 prev_regs
= std::move (this_regs
);
942 this_regs
= frame_save_as_regcache (get_selected_frame (NULL
));
944 /* Note that the test for a valid register must include checking the
945 gdbarch_register_name because gdbarch_num_regs may be allocated
946 for the union of the register sets within a family of related
947 processors. In this case, some entries of gdbarch_register_name
948 will change depending upon the particular processor being
951 gdbarch
= this_regs
->arch ();
952 numregs
= gdbarch_num_regs (gdbarch
) + gdbarch_num_pseudo_regs (gdbarch
);
954 ui_out_emit_list
list_emitter (uiout
, "changed-registers");
958 /* No args, just do all the regs. */
963 if (gdbarch_register_name (gdbarch
, regnum
) == NULL
964 || *(gdbarch_register_name (gdbarch
, regnum
)) == '\0')
967 if (register_changed_p (regnum
, prev_regs
.get (),
969 uiout
->field_int (NULL
, regnum
);
973 /* Else, list of register #s, just do listed regs. */
974 for (i
= 0; i
< argc
; i
++)
976 regnum
= atoi (argv
[i
]);
980 && gdbarch_register_name (gdbarch
, regnum
) != NULL
981 && *gdbarch_register_name (gdbarch
, regnum
) != '\000')
983 if (register_changed_p (regnum
, prev_regs
.get (),
985 uiout
->field_int (NULL
, regnum
);
988 error (_("bad register number"));
993 register_changed_p (int regnum
, readonly_detached_regcache
*prev_regs
,
994 readonly_detached_regcache
*this_regs
)
996 struct gdbarch
*gdbarch
= this_regs
->arch ();
997 struct value
*prev_value
, *this_value
;
999 /* First time through or after gdbarch change consider all registers
1001 if (!prev_regs
|| prev_regs
->arch () != gdbarch
)
1004 /* Get register contents and compare. */
1005 prev_value
= prev_regs
->cooked_read_value (regnum
);
1006 this_value
= this_regs
->cooked_read_value (regnum
);
1007 gdb_assert (prev_value
!= NULL
);
1008 gdb_assert (this_value
!= NULL
);
1010 auto ret
= !value_contents_eq (prev_value
, 0, this_value
, 0,
1011 register_size (gdbarch
, regnum
));
1013 release_value (prev_value
);
1014 release_value (this_value
);
1018 /* Return a list of register number and value pairs. The valid
1019 arguments expected are: a letter indicating the format in which to
1020 display the registers contents. This can be one of: x
1021 (hexadecimal), d (decimal), N (natural), t (binary), o (octal), r
1022 (raw). After the format argument there can be a sequence of
1023 numbers, indicating which registers to fetch the content of. If
1024 the format is the only argument, a list of all the registers with
1025 their values is returned. */
1028 mi_cmd_data_list_register_values (const char *command
, char **argv
, int argc
)
1030 struct ui_out
*uiout
= current_uiout
;
1031 struct frame_info
*frame
;
1032 struct gdbarch
*gdbarch
;
1033 int regnum
, numregs
, format
;
1035 int skip_unavailable
= 0;
1041 static const struct mi_opt opts
[] =
1043 {"-skip-unavailable", SKIP_UNAVAILABLE
, 0},
1047 /* Note that the test for a valid register must include checking the
1048 gdbarch_register_name because gdbarch_num_regs may be allocated
1049 for the union of the register sets within a family of related
1050 processors. In this case, some entries of gdbarch_register_name
1051 will change depending upon the particular processor being
1057 int opt
= mi_getopt ("-data-list-register-values", argc
, argv
,
1058 opts
, &oind
, &oarg
);
1062 switch ((enum opt
) opt
)
1064 case SKIP_UNAVAILABLE
:
1065 skip_unavailable
= 1;
1070 if (argc
- oind
< 1)
1071 error (_("-data-list-register-values: Usage: "
1072 "-data-list-register-values [--skip-unavailable] <format>"
1073 " [<regnum1>...<regnumN>]"));
1075 format
= (int) argv
[oind
][0];
1077 frame
= get_selected_frame (NULL
);
1078 gdbarch
= get_frame_arch (frame
);
1079 numregs
= gdbarch_num_regs (gdbarch
) + gdbarch_num_pseudo_regs (gdbarch
);
1081 ui_out_emit_list
list_emitter (uiout
, "register-values");
1083 if (argc
- oind
== 1)
1085 /* No args, beside the format: do all the regs. */
1090 if (gdbarch_register_name (gdbarch
, regnum
) == NULL
1091 || *(gdbarch_register_name (gdbarch
, regnum
)) == '\0')
1094 output_register (frame
, regnum
, format
, skip_unavailable
);
1098 /* Else, list of register #s, just do listed regs. */
1099 for (i
= 1 + oind
; i
< argc
; i
++)
1101 regnum
= atoi (argv
[i
]);
1105 && gdbarch_register_name (gdbarch
, regnum
) != NULL
1106 && *gdbarch_register_name (gdbarch
, regnum
) != '\000')
1107 output_register (frame
, regnum
, format
, skip_unavailable
);
1109 error (_("bad register number"));
1113 /* Output one register REGNUM's contents in the desired FORMAT. If
1114 SKIP_UNAVAILABLE is true, skip the register if it is
1118 output_register (struct frame_info
*frame
, int regnum
, int format
,
1119 int skip_unavailable
)
1121 struct ui_out
*uiout
= current_uiout
;
1122 struct value
*val
= value_of_register (regnum
, frame
);
1123 struct value_print_options opts
;
1125 if (skip_unavailable
&& !value_entirely_available (val
))
1128 ui_out_emit_tuple
tuple_emitter (uiout
, NULL
);
1129 uiout
->field_int ("number", regnum
);
1139 get_formatted_print_options (&opts
, format
);
1141 val_print (value_type (val
),
1142 value_embedded_offset (val
), 0,
1143 &stb
, 0, val
, &opts
, current_language
);
1144 uiout
->field_stream ("value", stb
);
1147 /* Write given values into registers. The registers and values are
1148 given as pairs. The corresponding MI command is
1149 -data-write-register-values <format>
1150 [<regnum1> <value1>...<regnumN> <valueN>] */
1152 mi_cmd_data_write_register_values (const char *command
, char **argv
, int argc
)
1154 struct regcache
*regcache
;
1155 struct gdbarch
*gdbarch
;
1158 /* Note that the test for a valid register must include checking the
1159 gdbarch_register_name because gdbarch_num_regs may be allocated
1160 for the union of the register sets within a family of related
1161 processors. In this case, some entries of gdbarch_register_name
1162 will change depending upon the particular processor being
1165 regcache
= get_current_regcache ();
1166 gdbarch
= regcache
->arch ();
1167 numregs
= gdbarch_num_regs (gdbarch
) + gdbarch_num_pseudo_regs (gdbarch
);
1170 error (_("-data-write-register-values: Usage: -data-write-register-"
1171 "values <format> [<regnum1> <value1>...<regnumN> <valueN>]"));
1173 if (!target_has_registers
)
1174 error (_("-data-write-register-values: No registers."));
1177 error (_("-data-write-register-values: No regs and values specified."));
1180 error (_("-data-write-register-values: "
1181 "Regs and vals are not in pairs."));
1183 for (i
= 1; i
< argc
; i
= i
+ 2)
1185 int regnum
= atoi (argv
[i
]);
1187 if (regnum
>= 0 && regnum
< numregs
1188 && gdbarch_register_name (gdbarch
, regnum
)
1189 && *gdbarch_register_name (gdbarch
, regnum
))
1193 /* Get the value as a number. */
1194 value
= parse_and_eval_address (argv
[i
+ 1]);
1196 /* Write it down. */
1197 regcache_cooked_write_signed (regcache
, regnum
, value
);
1200 error (_("bad register number"));
1204 /* Evaluate the value of the argument. The argument is an
1205 expression. If the expression contains spaces it needs to be
1206 included in double quotes. */
1209 mi_cmd_data_evaluate_expression (const char *command
, char **argv
, int argc
)
1212 struct value_print_options opts
;
1213 struct ui_out
*uiout
= current_uiout
;
1216 error (_("-data-evaluate-expression: "
1217 "Usage: -data-evaluate-expression expression"));
1219 expression_up expr
= parse_expression (argv
[0]);
1221 val
= evaluate_expression (expr
.get ());
1225 /* Print the result of the expression evaluation. */
1226 get_user_print_options (&opts
);
1228 common_val_print (val
, &stb
, 0, &opts
, current_language
);
1230 uiout
->field_stream ("value", stb
);
1233 /* This is the -data-read-memory command.
1235 ADDR: start address of data to be dumped.
1236 WORD-FORMAT: a char indicating format for the ``word''. See
1238 WORD-SIZE: size of each ``word''; 1,2,4, or 8 bytes.
1239 NR_ROW: Number of rows.
1240 NR_COL: The number of colums (words per row).
1241 ASCHAR: (OPTIONAL) Append an ascii character dump to each row. Use
1242 ASCHAR for unprintable characters.
1244 Reads SIZE*NR_ROW*NR_COL bytes starting at ADDR from memory and
1245 displayes them. Returns:
1247 {addr="...",rowN={wordN="..." ,... [,ascii="..."]}, ...}
1250 The number of bytes read is SIZE*ROW*COL. */
1253 mi_cmd_data_read_memory (const char *command
, char **argv
, int argc
)
1255 struct gdbarch
*gdbarch
= get_current_arch ();
1256 struct ui_out
*uiout
= current_uiout
;
1258 long total_bytes
, nr_cols
, nr_rows
;
1260 struct type
*word_type
;
1272 static const struct mi_opt opts
[] =
1274 {"o", OFFSET_OPT
, 1},
1280 int opt
= mi_getopt ("-data-read-memory", argc
, argv
, opts
,
1285 switch ((enum opt
) opt
)
1288 offset
= atol (oarg
);
1295 if (argc
< 5 || argc
> 6)
1296 error (_("-data-read-memory: Usage: "
1297 "ADDR WORD-FORMAT WORD-SIZE NR-ROWS NR-COLS [ASCHAR]."));
1299 /* Extract all the arguments. */
1301 /* Start address of the memory dump. */
1302 addr
= parse_and_eval_address (argv
[0]) + offset
;
1303 /* The format character to use when displaying a memory word. See
1304 the ``x'' command. */
1305 word_format
= argv
[1][0];
1306 /* The size of the memory word. */
1307 word_size
= atol (argv
[2]);
1311 word_type
= builtin_type (gdbarch
)->builtin_int8
;
1315 word_type
= builtin_type (gdbarch
)->builtin_int16
;
1319 word_type
= builtin_type (gdbarch
)->builtin_int32
;
1323 word_type
= builtin_type (gdbarch
)->builtin_int64
;
1327 word_type
= builtin_type (gdbarch
)->builtin_int8
;
1330 /* The number of rows. */
1331 nr_rows
= atol (argv
[3]);
1333 error (_("-data-read-memory: invalid number of rows."));
1335 /* Number of bytes per row. */
1336 nr_cols
= atol (argv
[4]);
1338 error (_("-data-read-memory: invalid number of columns."));
1340 /* The un-printable character when printing ascii. */
1346 /* Create a buffer and read it in. */
1347 total_bytes
= word_size
* nr_rows
* nr_cols
;
1349 gdb::byte_vector
mbuf (total_bytes
);
1351 nr_bytes
= target_read (current_top_target (), TARGET_OBJECT_MEMORY
, NULL
,
1352 mbuf
.data (), addr
, total_bytes
);
1354 error (_("Unable to read memory."));
1356 /* Output the header information. */
1357 uiout
->field_core_addr ("addr", gdbarch
, addr
);
1358 uiout
->field_int ("nr-bytes", nr_bytes
);
1359 uiout
->field_int ("total-bytes", total_bytes
);
1360 uiout
->field_core_addr ("next-row", gdbarch
, addr
+ word_size
* nr_cols
);
1361 uiout
->field_core_addr ("prev-row", gdbarch
, addr
- word_size
* nr_cols
);
1362 uiout
->field_core_addr ("next-page", gdbarch
, addr
+ total_bytes
);
1363 uiout
->field_core_addr ("prev-page", gdbarch
, addr
- total_bytes
);
1365 /* Build the result as a two dimentional table. */
1372 ui_out_emit_list
list_emitter (uiout
, "memory");
1373 for (row
= 0, row_byte
= 0;
1375 row
++, row_byte
+= nr_cols
* word_size
)
1379 struct value_print_options opts
;
1381 ui_out_emit_tuple
tuple_emitter (uiout
, NULL
);
1382 uiout
->field_core_addr ("addr", gdbarch
, addr
+ row_byte
);
1383 /* ui_out_field_core_addr_symbolic (uiout, "saddr", addr +
1386 ui_out_emit_list
list_data_emitter (uiout
, "data");
1387 get_formatted_print_options (&opts
, word_format
);
1388 for (col
= 0, col_byte
= row_byte
;
1390 col
++, col_byte
+= word_size
)
1392 if (col_byte
+ word_size
> nr_bytes
)
1394 uiout
->field_string (NULL
, "N/A");
1399 print_scalar_formatted (&mbuf
[col_byte
], word_type
, &opts
,
1400 word_asize
, &stream
);
1401 uiout
->field_stream (NULL
, stream
);
1411 for (byte
= row_byte
;
1412 byte
< row_byte
+ word_size
* nr_cols
; byte
++)
1414 if (byte
>= nr_bytes
)
1416 else if (mbuf
[byte
] < 32 || mbuf
[byte
] > 126)
1417 stream
.putc (aschar
);
1419 stream
.putc (mbuf
[byte
]);
1421 uiout
->field_stream ("ascii", stream
);
1428 mi_cmd_data_read_memory_bytes (const char *command
, char **argv
, int argc
)
1430 struct gdbarch
*gdbarch
= get_current_arch ();
1431 struct ui_out
*uiout
= current_uiout
;
1435 int unit_size
= gdbarch_addressable_memory_unit_size (gdbarch
);
1442 static const struct mi_opt opts
[] =
1444 {"o", OFFSET_OPT
, 1},
1450 int opt
= mi_getopt ("-data-read-memory-bytes", argc
, argv
, opts
,
1454 switch ((enum opt
) opt
)
1457 offset
= atol (oarg
);
1465 error (_("Usage: [ -o OFFSET ] ADDR LENGTH."));
1467 addr
= parse_and_eval_address (argv
[0]) + offset
;
1468 length
= atol (argv
[1]);
1470 std::vector
<memory_read_result
> result
1471 = read_memory_robust (current_top_target (), addr
, length
);
1473 if (result
.size () == 0)
1474 error (_("Unable to read memory."));
1476 ui_out_emit_list
list_emitter (uiout
, "memory");
1477 for (const memory_read_result
&read_result
: result
)
1479 ui_out_emit_tuple
tuple_emitter (uiout
, NULL
);
1481 uiout
->field_core_addr ("begin", gdbarch
, read_result
.begin
);
1482 uiout
->field_core_addr ("offset", gdbarch
, read_result
.begin
- addr
);
1483 uiout
->field_core_addr ("end", gdbarch
, read_result
.end
);
1485 std::string data
= bin2hex (read_result
.data
.get (),
1486 (read_result
.end
- read_result
.begin
)
1488 uiout
->field_string ("contents", data
.c_str ());
1492 /* Implementation of the -data-write_memory command.
1494 COLUMN_OFFSET: optional argument. Must be preceded by '-o'. The
1495 offset from the beginning of the memory grid row where the cell to
1497 ADDR: start address of the row in the memory grid where the memory
1498 cell is, if OFFSET_COLUMN is specified. Otherwise, the address of
1499 the location to write to.
1500 FORMAT: a char indicating format for the ``word''. See
1502 WORD_SIZE: size of each ``word''; 1,2,4, or 8 bytes
1503 VALUE: value to be written into the memory address.
1505 Writes VALUE into ADDR + (COLUMN_OFFSET * WORD_SIZE).
1510 mi_cmd_data_write_memory (const char *command
, char **argv
, int argc
)
1512 struct gdbarch
*gdbarch
= get_current_arch ();
1513 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
1516 /* FIXME: ezannoni 2000-02-17 LONGEST could possibly not be big
1517 enough when using a compiler other than GCC. */
1526 static const struct mi_opt opts
[] =
1528 {"o", OFFSET_OPT
, 1},
1534 int opt
= mi_getopt ("-data-write-memory", argc
, argv
, opts
,
1539 switch ((enum opt
) opt
)
1542 offset
= atol (oarg
);
1550 error (_("-data-write-memory: Usage: "
1551 "[-o COLUMN_OFFSET] ADDR FORMAT WORD-SIZE VALUE."));
1553 /* Extract all the arguments. */
1554 /* Start address of the memory dump. */
1555 addr
= parse_and_eval_address (argv
[0]);
1556 /* The size of the memory word. */
1557 word_size
= atol (argv
[2]);
1559 /* Calculate the real address of the write destination. */
1560 addr
+= (offset
* word_size
);
1562 /* Get the value as a number. */
1563 value
= parse_and_eval_address (argv
[3]);
1564 /* Get the value into an array. */
1565 gdb::byte_vector
buffer (word_size
);
1566 store_signed_integer (buffer
.data (), word_size
, byte_order
, value
);
1567 /* Write it down to memory. */
1568 write_memory_with_notification (addr
, buffer
.data (), word_size
);
1571 /* Implementation of the -data-write-memory-bytes command.
1574 DATA: string of bytes to write at that address
1575 COUNT: number of bytes to be filled (decimal integer). */
1578 mi_cmd_data_write_memory_bytes (const char *command
, char **argv
, int argc
)
1582 size_t len_hex
, len_bytes
, len_units
, i
, steps
, remaining_units
;
1583 long int count_units
;
1586 if (argc
!= 2 && argc
!= 3)
1587 error (_("Usage: ADDR DATA [COUNT]."));
1589 addr
= parse_and_eval_address (argv
[0]);
1591 len_hex
= strlen (cdata
);
1592 unit_size
= gdbarch_addressable_memory_unit_size (get_current_arch ());
1594 if (len_hex
% (unit_size
* 2) != 0)
1595 error (_("Hex-encoded '%s' must represent an integral number of "
1596 "addressable memory units."),
1599 len_bytes
= len_hex
/ 2;
1600 len_units
= len_bytes
/ unit_size
;
1603 count_units
= strtoul (argv
[2], NULL
, 10);
1605 count_units
= len_units
;
1607 gdb::byte_vector
databuf (len_bytes
);
1609 for (i
= 0; i
< len_bytes
; ++i
)
1612 if (sscanf (cdata
+ i
* 2, "%02x", &x
) != 1)
1613 error (_("Invalid argument"));
1614 databuf
[i
] = (gdb_byte
) x
;
1617 gdb::byte_vector data
;
1618 if (len_units
< count_units
)
1620 /* Pattern is made of less units than count:
1621 repeat pattern to fill memory. */
1622 data
= gdb::byte_vector (count_units
* unit_size
);
1624 /* Number of times the pattern is entirely repeated. */
1625 steps
= count_units
/ len_units
;
1626 /* Number of remaining addressable memory units. */
1627 remaining_units
= count_units
% len_units
;
1628 for (i
= 0; i
< steps
; i
++)
1629 memcpy (&data
[i
* len_bytes
], &databuf
[0], len_bytes
);
1631 if (remaining_units
> 0)
1632 memcpy (&data
[steps
* len_bytes
], &databuf
[0],
1633 remaining_units
* unit_size
);
1637 /* Pattern is longer than or equal to count:
1638 just copy count addressable memory units. */
1639 data
= std::move (databuf
);
1642 write_memory_with_notification (addr
, data
.data (), count_units
);
1646 mi_cmd_enable_timings (const char *command
, char **argv
, int argc
)
1652 if (strcmp (argv
[0], "yes") == 0)
1654 else if (strcmp (argv
[0], "no") == 0)
1665 error (_("-enable-timings: Usage: %s {yes|no}"), command
);
1669 mi_cmd_list_features (const char *command
, char **argv
, int argc
)
1673 struct ui_out
*uiout
= current_uiout
;
1675 ui_out_emit_list
list_emitter (uiout
, "features");
1676 uiout
->field_string (NULL
, "frozen-varobjs");
1677 uiout
->field_string (NULL
, "pending-breakpoints");
1678 uiout
->field_string (NULL
, "thread-info");
1679 uiout
->field_string (NULL
, "data-read-memory-bytes");
1680 uiout
->field_string (NULL
, "breakpoint-notifications");
1681 uiout
->field_string (NULL
, "ada-task-info");
1682 uiout
->field_string (NULL
, "language-option");
1683 uiout
->field_string (NULL
, "info-gdb-mi-command");
1684 uiout
->field_string (NULL
, "undefined-command-error-code");
1685 uiout
->field_string (NULL
, "exec-run-start-option");
1687 if (ext_lang_initialized_p (get_ext_lang_defn (EXT_LANG_PYTHON
)))
1688 uiout
->field_string (NULL
, "python");
1693 error (_("-list-features should be passed no arguments"));
1697 mi_cmd_list_target_features (const char *command
, char **argv
, int argc
)
1701 struct ui_out
*uiout
= current_uiout
;
1703 ui_out_emit_list
list_emitter (uiout
, "features");
1705 uiout
->field_string (NULL
, "async");
1706 if (target_can_execute_reverse
)
1707 uiout
->field_string (NULL
, "reverse");
1711 error (_("-list-target-features should be passed no arguments"));
1715 mi_cmd_add_inferior (const char *command
, char **argv
, int argc
)
1717 struct inferior
*inf
;
1720 error (_("-add-inferior should be passed no arguments"));
1722 inf
= add_inferior_with_spaces ();
1724 current_uiout
->field_fmt ("inferior", "i%d", inf
->num
);
1727 /* Callback used to find the first inferior other than the current
1731 get_other_inferior (struct inferior
*inf
, void *arg
)
1733 if (inf
== current_inferior ())
1740 mi_cmd_remove_inferior (const char *command
, char **argv
, int argc
)
1743 struct inferior
*inf
;
1746 error (_("-remove-inferior should be passed a single argument"));
1748 if (sscanf (argv
[0], "i%d", &id
) != 1)
1749 error (_("the thread group id is syntactically invalid"));
1751 inf
= find_inferior_id (id
);
1753 error (_("the specified thread group does not exist"));
1756 error (_("cannot remove an active inferior"));
1758 if (inf
== current_inferior ())
1760 struct thread_info
*tp
= 0;
1761 struct inferior
*new_inferior
1762 = iterate_over_inferiors (get_other_inferior
, NULL
);
1764 if (new_inferior
== NULL
)
1765 error (_("Cannot remove last inferior"));
1767 set_current_inferior (new_inferior
);
1768 if (new_inferior
->pid
!= 0)
1769 tp
= any_thread_of_inferior (new_inferior
);
1771 switch_to_thread (tp
);
1773 switch_to_no_thread ();
1774 set_current_program_space (new_inferior
->pspace
);
1777 delete_inferior (inf
);
1782 /* Execute a command within a safe environment.
1783 Return <0 for error; >=0 for ok.
1785 args->action will tell mi_execute_command what action
1786 to perform after the given command has executed (display/suppress
1787 prompt, display error). */
1790 captured_mi_execute_command (struct ui_out
*uiout
, struct mi_parse
*context
)
1792 struct mi_interp
*mi
= (struct mi_interp
*) command_interp ();
1795 current_command_ts
= context
->cmd_start
;
1797 scoped_restore save_token
= make_scoped_restore (¤t_token
,
1800 running_result_record_printed
= 0;
1802 switch (context
->op
)
1805 /* A MI command was read from the input stream. */
1807 /* FIXME: gdb_???? */
1808 fprintf_unfiltered (mi
->raw_stdout
,
1809 " token=`%s' command=`%s' args=`%s'\n",
1810 context
->token
, context
->command
, context
->args
);
1812 mi_cmd_execute (context
);
1814 /* Print the result if there were no errors.
1816 Remember that on the way out of executing a command, you have
1817 to directly use the mi_interp's uiout, since the command
1818 could have reset the interpreter, in which case the current
1819 uiout will most likely crash in the mi_out_* routines. */
1820 if (!running_result_record_printed
)
1822 fputs_unfiltered (context
->token
, mi
->raw_stdout
);
1823 /* There's no particularly good reason why target-connect results
1824 in not ^done. Should kill ^connected for MI3. */
1825 fputs_unfiltered (strcmp (context
->command
, "target-select") == 0
1826 ? "^connected" : "^done", mi
->raw_stdout
);
1827 mi_out_put (uiout
, mi
->raw_stdout
);
1828 mi_out_rewind (uiout
);
1829 mi_print_timing_maybe (mi
->raw_stdout
);
1830 fputs_unfiltered ("\n", mi
->raw_stdout
);
1833 /* The command does not want anything to be printed. In that
1834 case, the command probably should not have written anything
1835 to uiout, but in case it has written something, discard it. */
1836 mi_out_rewind (uiout
);
1843 /* A CLI command was read from the input stream. */
1844 /* This "feature" will be removed as soon as we have a
1845 complete set of mi commands. */
1846 /* Echo the command on the console. */
1847 fprintf_unfiltered (gdb_stdlog
, "%s\n", context
->command
);
1848 /* Call the "console" interpreter. */
1849 argv
[0] = (char *) INTERP_CONSOLE
;
1850 argv
[1] = context
->command
;
1851 mi_cmd_interpreter_exec ("-interpreter-exec", argv
, 2);
1853 /* If we changed interpreters, DON'T print out anything. */
1854 if (current_interp_named_p (INTERP_MI
)
1855 || current_interp_named_p (INTERP_MI1
)
1856 || current_interp_named_p (INTERP_MI2
)
1857 || current_interp_named_p (INTERP_MI3
))
1859 if (!running_result_record_printed
)
1861 fputs_unfiltered (context
->token
, mi
->raw_stdout
);
1862 fputs_unfiltered ("^done", mi
->raw_stdout
);
1863 mi_out_put (uiout
, mi
->raw_stdout
);
1864 mi_out_rewind (uiout
);
1865 mi_print_timing_maybe (mi
->raw_stdout
);
1866 fputs_unfiltered ("\n", mi
->raw_stdout
);
1869 mi_out_rewind (uiout
);
1876 /* Print a gdb exception to the MI output stream. */
1879 mi_print_exception (const char *token
, struct gdb_exception exception
)
1881 struct mi_interp
*mi
= (struct mi_interp
*) current_interpreter ();
1883 fputs_unfiltered (token
, mi
->raw_stdout
);
1884 fputs_unfiltered ("^error,msg=\"", mi
->raw_stdout
);
1885 if (exception
.message
== NULL
)
1886 fputs_unfiltered ("unknown error", mi
->raw_stdout
);
1888 fputstr_unfiltered (exception
.message
, '"', mi
->raw_stdout
);
1889 fputs_unfiltered ("\"", mi
->raw_stdout
);
1891 switch (exception
.error
)
1893 case UNDEFINED_COMMAND_ERROR
:
1894 fputs_unfiltered (",code=\"undefined-command\"", mi
->raw_stdout
);
1898 fputs_unfiltered ("\n", mi
->raw_stdout
);
1901 /* Determine whether the parsed command already notifies the
1902 user_selected_context_changed observer. */
1905 command_notifies_uscc_observer (struct mi_parse
*command
)
1907 if (command
->op
== CLI_COMMAND
)
1909 /* CLI commands "thread" and "inferior" already send it. */
1910 return (strncmp (command
->command
, "thread ", 7) == 0
1911 || strncmp (command
->command
, "inferior ", 9) == 0);
1913 else /* MI_COMMAND */
1915 if (strcmp (command
->command
, "interpreter-exec") == 0
1916 && command
->argc
> 1)
1918 /* "thread" and "inferior" again, but through -interpreter-exec. */
1919 return (strncmp (command
->argv
[1], "thread ", 7) == 0
1920 || strncmp (command
->argv
[1], "inferior ", 9) == 0);
1924 /* -thread-select already sends it. */
1925 return strcmp (command
->command
, "thread-select") == 0;
1930 mi_execute_command (const char *cmd
, int from_tty
)
1933 std::unique_ptr
<struct mi_parse
> command
;
1935 /* This is to handle EOF (^D). We just quit gdb. */
1936 /* FIXME: we should call some API function here. */
1938 quit_force (NULL
, from_tty
);
1940 target_log_command (cmd
);
1944 command
= mi_parse (cmd
, &token
);
1946 CATCH (exception
, RETURN_MASK_ALL
)
1948 mi_print_exception (token
, exception
);
1953 if (command
!= NULL
)
1955 ptid_t previous_ptid
= inferior_ptid
;
1957 gdb::optional
<scoped_restore_tmpl
<int>> restore_suppress
;
1959 if (command
->cmd
!= NULL
&& command
->cmd
->suppress_notification
!= NULL
)
1960 restore_suppress
.emplace (command
->cmd
->suppress_notification
, 1);
1962 command
->token
= token
;
1966 command
->cmd_start
= new mi_timestamp ();
1967 timestamp (command
->cmd_start
);
1972 captured_mi_execute_command (current_uiout
, command
.get ());
1974 CATCH (result
, RETURN_MASK_ALL
)
1976 /* Like in start_event_loop, enable input and force display
1977 of the prompt. Otherwise, any command that calls
1978 async_disable_stdin, and then throws, will leave input
1980 async_enable_stdin ();
1981 current_ui
->prompt_state
= PROMPT_NEEDED
;
1983 /* The command execution failed and error() was called
1985 mi_print_exception (command
->token
, result
);
1986 mi_out_rewind (current_uiout
);
1990 bpstat_do_actions ();
1992 if (/* The notifications are only output when the top-level
1993 interpreter (specified on the command line) is MI. */
1994 top_level_interpreter ()->interp_ui_out ()->is_mi_like_p ()
1995 /* Don't try report anything if there are no threads --
1996 the program is dead. */
1997 && thread_count () != 0
1998 /* If the command already reports the thread change, no need to do it
2000 && !command_notifies_uscc_observer (command
.get ()))
2002 struct mi_interp
*mi
= (struct mi_interp
*) top_level_interpreter ();
2003 int report_change
= 0;
2005 if (command
->thread
== -1)
2007 report_change
= (!ptid_equal (previous_ptid
, null_ptid
)
2008 && !ptid_equal (inferior_ptid
, previous_ptid
)
2009 && !ptid_equal (inferior_ptid
, null_ptid
));
2011 else if (!ptid_equal (inferior_ptid
, null_ptid
))
2013 struct thread_info
*ti
= inferior_thread ();
2015 report_change
= (ti
->global_num
!= command
->thread
);
2020 gdb::observers::user_selected_context_changed
.notify
2021 (USER_SELECTED_THREAD
| USER_SELECTED_FRAME
);
2028 mi_cmd_execute (struct mi_parse
*parse
)
2030 scoped_value_mark cleanup
= prepare_execute_command ();
2032 if (parse
->all
&& parse
->thread_group
!= -1)
2033 error (_("Cannot specify --thread-group together with --all"));
2035 if (parse
->all
&& parse
->thread
!= -1)
2036 error (_("Cannot specify --thread together with --all"));
2038 if (parse
->thread_group
!= -1 && parse
->thread
!= -1)
2039 error (_("Cannot specify --thread together with --thread-group"));
2041 if (parse
->frame
!= -1 && parse
->thread
== -1)
2042 error (_("Cannot specify --frame without --thread"));
2044 if (parse
->thread_group
!= -1)
2046 struct inferior
*inf
= find_inferior_id (parse
->thread_group
);
2047 struct thread_info
*tp
= 0;
2050 error (_("Invalid thread group for the --thread-group option"));
2052 set_current_inferior (inf
);
2053 /* This behaviour means that if --thread-group option identifies
2054 an inferior with multiple threads, then a random one will be
2055 picked. This is not a problem -- frontend should always
2056 provide --thread if it wishes to operate on a specific
2059 tp
= any_live_thread_of_inferior (inf
);
2061 switch_to_thread (tp
);
2063 switch_to_no_thread ();
2064 set_current_program_space (inf
->pspace
);
2067 if (parse
->thread
!= -1)
2069 thread_info
*tp
= find_thread_global_id (parse
->thread
);
2072 error (_("Invalid thread id: %d"), parse
->thread
);
2074 if (tp
->state
== THREAD_EXITED
)
2075 error (_("Thread id: %d has terminated"), parse
->thread
);
2077 switch_to_thread (tp
);
2080 if (parse
->frame
!= -1)
2082 struct frame_info
*fid
;
2083 int frame
= parse
->frame
;
2085 fid
= find_relative_frame (get_current_frame (), &frame
);
2087 /* find_relative_frame was successful */
2090 error (_("Invalid frame id: %d"), frame
);
2093 gdb::optional
<scoped_restore_current_language
> lang_saver
;
2094 if (parse
->language
!= language_unknown
)
2096 lang_saver
.emplace ();
2097 set_language (parse
->language
);
2100 current_context
= parse
;
2102 if (parse
->cmd
->argv_func
!= NULL
)
2104 parse
->cmd
->argv_func (parse
->command
, parse
->argv
, parse
->argc
);
2106 else if (parse
->cmd
->cli
.cmd
!= 0)
2108 /* FIXME: DELETE THIS. */
2109 /* The operation is still implemented by a cli command. */
2110 /* Must be a synchronous one. */
2111 mi_execute_cli_command (parse
->cmd
->cli
.cmd
, parse
->cmd
->cli
.args_p
,
2116 /* FIXME: DELETE THIS. */
2119 stb
.puts ("Undefined mi command: ");
2120 stb
.putstr (parse
->command
, '"');
2121 stb
.puts (" (missing implementation)");
2127 /* FIXME: This is just a hack so we can get some extra commands going.
2128 We don't want to channel things through the CLI, but call libgdb directly.
2129 Use only for synchronous commands. */
2132 mi_execute_cli_command (const char *cmd
, int args_p
, const char *args
)
2136 std::string run
= cmd
;
2139 run
= run
+ " " + args
;
2141 /* FIXME: gdb_???? */
2142 fprintf_unfiltered (gdb_stdout
, "cli=%s run=%s\n",
2144 execute_command (run
.c_str (), 0 /* from_tty */ );
2149 mi_execute_async_cli_command (const char *cli_command
, char **argv
, int argc
)
2151 std::string run
= cli_command
;
2154 run
= run
+ " " + *argv
;
2158 execute_command (run
.c_str (), 0 /* from_tty */ );
2162 mi_load_progress (const char *section_name
,
2163 unsigned long sent_so_far
,
2164 unsigned long total_section
,
2165 unsigned long total_sent
,
2166 unsigned long grand_total
)
2168 using namespace std::chrono
;
2169 static steady_clock::time_point last_update
;
2170 static char *previous_sect_name
= NULL
;
2172 struct mi_interp
*mi
= (struct mi_interp
*) current_interpreter ();
2174 /* This function is called through deprecated_show_load_progress
2175 which means uiout may not be correct. Fix it for the duration
2176 of this function. */
2178 std::unique_ptr
<ui_out
> uiout
;
2180 if (current_interp_named_p (INTERP_MI
)
2181 || current_interp_named_p (INTERP_MI2
))
2182 uiout
.reset (mi_out_new (2));
2183 else if (current_interp_named_p (INTERP_MI1
))
2184 uiout
.reset (mi_out_new (1));
2185 else if (current_interp_named_p (INTERP_MI3
))
2186 uiout
.reset (mi_out_new (3));
2190 scoped_restore save_uiout
2191 = make_scoped_restore (¤t_uiout
, uiout
.get ());
2193 new_section
= (previous_sect_name
?
2194 strcmp (previous_sect_name
, section_name
) : 1);
2197 xfree (previous_sect_name
);
2198 previous_sect_name
= xstrdup (section_name
);
2201 fputs_unfiltered (current_token
, mi
->raw_stdout
);
2202 fputs_unfiltered ("+download", mi
->raw_stdout
);
2204 ui_out_emit_tuple
tuple_emitter (uiout
.get (), NULL
);
2205 uiout
->field_string ("section", section_name
);
2206 uiout
->field_int ("section-size", total_section
);
2207 uiout
->field_int ("total-size", grand_total
);
2209 mi_out_put (uiout
.get (), mi
->raw_stdout
);
2210 fputs_unfiltered ("\n", mi
->raw_stdout
);
2211 gdb_flush (mi
->raw_stdout
);
2214 steady_clock::time_point time_now
= steady_clock::now ();
2215 if (time_now
- last_update
> milliseconds (500))
2217 last_update
= time_now
;
2219 fputs_unfiltered (current_token
, mi
->raw_stdout
);
2220 fputs_unfiltered ("+download", mi
->raw_stdout
);
2222 ui_out_emit_tuple
tuple_emitter (uiout
.get (), NULL
);
2223 uiout
->field_string ("section", section_name
);
2224 uiout
->field_int ("section-sent", sent_so_far
);
2225 uiout
->field_int ("section-size", total_section
);
2226 uiout
->field_int ("total-sent", total_sent
);
2227 uiout
->field_int ("total-size", grand_total
);
2229 mi_out_put (uiout
.get (), mi
->raw_stdout
);
2230 fputs_unfiltered ("\n", mi
->raw_stdout
);
2231 gdb_flush (mi
->raw_stdout
);
2236 timestamp (struct mi_timestamp
*tv
)
2238 using namespace std::chrono
;
2240 tv
->wallclock
= steady_clock::now ();
2241 run_time_clock::now (tv
->utime
, tv
->stime
);
2245 print_diff_now (struct ui_file
*file
, struct mi_timestamp
*start
)
2247 struct mi_timestamp now
;
2250 print_diff (file
, start
, &now
);
2254 mi_print_timing_maybe (struct ui_file
*file
)
2256 /* If the command is -enable-timing then do_timings may be true
2257 whilst current_command_ts is not initialized. */
2258 if (do_timings
&& current_command_ts
)
2259 print_diff_now (file
, current_command_ts
);
2263 print_diff (struct ui_file
*file
, struct mi_timestamp
*start
,
2264 struct mi_timestamp
*end
)
2266 using namespace std::chrono
;
2268 duration
<double> wallclock
= end
->wallclock
- start
->wallclock
;
2269 duration
<double> utime
= end
->utime
- start
->utime
;
2270 duration
<double> stime
= end
->stime
- start
->stime
;
2274 ",time={wallclock=\"%0.5f\",user=\"%0.5f\",system=\"%0.5f\"}",
2275 wallclock
.count (), utime
.count (), stime
.count ());
2279 mi_cmd_trace_define_variable (const char *command
, char **argv
, int argc
)
2281 LONGEST initval
= 0;
2282 struct trace_state_variable
*tsv
;
2285 if (argc
!= 1 && argc
!= 2)
2286 error (_("Usage: -trace-define-variable VARIABLE [VALUE]"));
2290 error (_("Name of trace variable should start with '$'"));
2292 validate_trace_state_variable_name (name
);
2294 tsv
= find_trace_state_variable (name
);
2296 tsv
= create_trace_state_variable (name
);
2299 initval
= value_as_long (parse_and_eval (argv
[1]));
2301 tsv
->initial_value
= initval
;
2305 mi_cmd_trace_list_variables (const char *command
, char **argv
, int argc
)
2308 error (_("-trace-list-variables: no arguments allowed"));
2310 tvariables_info_1 ();
2314 mi_cmd_trace_find (const char *command
, char **argv
, int argc
)
2319 error (_("trace selection mode is required"));
2323 if (strcmp (mode
, "none") == 0)
2325 tfind_1 (tfind_number
, -1, 0, 0, 0);
2329 check_trace_running (current_trace_status ());
2331 if (strcmp (mode
, "frame-number") == 0)
2334 error (_("frame number is required"));
2335 tfind_1 (tfind_number
, atoi (argv
[1]), 0, 0, 0);
2337 else if (strcmp (mode
, "tracepoint-number") == 0)
2340 error (_("tracepoint number is required"));
2341 tfind_1 (tfind_tp
, atoi (argv
[1]), 0, 0, 0);
2343 else if (strcmp (mode
, "pc") == 0)
2346 error (_("PC is required"));
2347 tfind_1 (tfind_pc
, 0, parse_and_eval_address (argv
[1]), 0, 0);
2349 else if (strcmp (mode
, "pc-inside-range") == 0)
2352 error (_("Start and end PC are required"));
2353 tfind_1 (tfind_range
, 0, parse_and_eval_address (argv
[1]),
2354 parse_and_eval_address (argv
[2]), 0);
2356 else if (strcmp (mode
, "pc-outside-range") == 0)
2359 error (_("Start and end PC are required"));
2360 tfind_1 (tfind_outside
, 0, parse_and_eval_address (argv
[1]),
2361 parse_and_eval_address (argv
[2]), 0);
2363 else if (strcmp (mode
, "line") == 0)
2366 error (_("Line is required"));
2368 std::vector
<symtab_and_line
> sals
2369 = decode_line_with_current_source (argv
[1],
2370 DECODE_LINE_FUNFIRSTLINE
);
2371 const symtab_and_line
&sal
= sals
[0];
2373 if (sal
.symtab
== 0)
2374 error (_("Could not find the specified line"));
2376 CORE_ADDR start_pc
, end_pc
;
2377 if (sal
.line
> 0 && find_line_pc_range (sal
, &start_pc
, &end_pc
))
2378 tfind_1 (tfind_range
, 0, start_pc
, end_pc
- 1, 0);
2380 error (_("Could not find the specified line"));
2383 error (_("Invalid mode '%s'"), mode
);
2385 if (has_stack_frames () || get_traceframe_number () >= 0)
2386 print_stack_frame (get_selected_frame (NULL
), 1, LOC_AND_ADDRESS
, 1);
2390 mi_cmd_trace_save (const char *command
, char **argv
, int argc
)
2392 int target_saves
= 0;
2393 int generate_ctf
= 0;
2400 TARGET_SAVE_OPT
, CTF_OPT
2402 static const struct mi_opt opts
[] =
2404 {"r", TARGET_SAVE_OPT
, 0},
2405 {"ctf", CTF_OPT
, 0},
2411 int opt
= mi_getopt ("-trace-save", argc
, argv
, opts
,
2416 switch ((enum opt
) opt
)
2418 case TARGET_SAVE_OPT
:
2427 if (argc
- oind
!= 1)
2428 error (_("Exactly one argument required "
2429 "(file in which to save trace data)"));
2431 filename
= argv
[oind
];
2434 trace_save_ctf (filename
, target_saves
);
2436 trace_save_tfile (filename
, target_saves
);
2440 mi_cmd_trace_start (const char *command
, char **argv
, int argc
)
2442 start_tracing (NULL
);
2446 mi_cmd_trace_status (const char *command
, char **argv
, int argc
)
2448 trace_status_mi (0);
2452 mi_cmd_trace_stop (const char *command
, char **argv
, int argc
)
2454 stop_tracing (NULL
);
2455 trace_status_mi (1);
2458 /* Implement the "-ada-task-info" command. */
2461 mi_cmd_ada_task_info (const char *command
, char **argv
, int argc
)
2463 if (argc
!= 0 && argc
!= 1)
2464 error (_("Invalid MI command"));
2466 print_ada_task_info (current_uiout
, argv
[0], current_inferior ());
2469 /* Print EXPRESSION according to VALUES. */
2472 print_variable_or_computed (const char *expression
, enum print_values values
)
2476 struct ui_out
*uiout
= current_uiout
;
2480 expression_up expr
= parse_expression (expression
);
2482 if (values
== PRINT_SIMPLE_VALUES
)
2483 val
= evaluate_type (expr
.get ());
2485 val
= evaluate_expression (expr
.get ());
2487 gdb::optional
<ui_out_emit_tuple
> tuple_emitter
;
2488 if (values
!= PRINT_NO_VALUES
)
2489 tuple_emitter
.emplace (uiout
, nullptr);
2490 uiout
->field_string ("name", expression
);
2494 case PRINT_SIMPLE_VALUES
:
2495 type
= check_typedef (value_type (val
));
2496 type_print (value_type (val
), "", &stb
, -1);
2497 uiout
->field_stream ("type", stb
);
2498 if (TYPE_CODE (type
) != TYPE_CODE_ARRAY
2499 && TYPE_CODE (type
) != TYPE_CODE_STRUCT
2500 && TYPE_CODE (type
) != TYPE_CODE_UNION
)
2502 struct value_print_options opts
;
2504 get_no_prettyformat_print_options (&opts
);
2506 common_val_print (val
, &stb
, 0, &opts
, current_language
);
2507 uiout
->field_stream ("value", stb
);
2510 case PRINT_ALL_VALUES
:
2512 struct value_print_options opts
;
2514 get_no_prettyformat_print_options (&opts
);
2516 common_val_print (val
, &stb
, 0, &opts
, current_language
);
2517 uiout
->field_stream ("value", stb
);
2523 /* Implement the "-trace-frame-collected" command. */
2526 mi_cmd_trace_frame_collected (const char *command
, char **argv
, int argc
)
2528 struct bp_location
*tloc
;
2530 struct collection_list
*clist
;
2531 struct collection_list tracepoint_list
, stepping_list
;
2532 struct traceframe_info
*tinfo
;
2534 enum print_values var_print_values
= PRINT_ALL_VALUES
;
2535 enum print_values comp_print_values
= PRINT_ALL_VALUES
;
2536 int registers_format
= 'x';
2537 int memory_contents
= 0;
2538 struct ui_out
*uiout
= current_uiout
;
2546 static const struct mi_opt opts
[] =
2548 {"-var-print-values", VAR_PRINT_VALUES
, 1},
2549 {"-comp-print-values", COMP_PRINT_VALUES
, 1},
2550 {"-registers-format", REGISTERS_FORMAT
, 1},
2551 {"-memory-contents", MEMORY_CONTENTS
, 0},
2558 int opt
= mi_getopt ("-trace-frame-collected", argc
, argv
, opts
,
2562 switch ((enum opt
) opt
)
2564 case VAR_PRINT_VALUES
:
2565 var_print_values
= mi_parse_print_values (oarg
);
2567 case COMP_PRINT_VALUES
:
2568 comp_print_values
= mi_parse_print_values (oarg
);
2570 case REGISTERS_FORMAT
:
2571 registers_format
= oarg
[0];
2573 case MEMORY_CONTENTS
:
2574 memory_contents
= 1;
2580 error (_("Usage: -trace-frame-collected "
2581 "[--var-print-values PRINT_VALUES] "
2582 "[--comp-print-values PRINT_VALUES] "
2583 "[--registers-format FORMAT]"
2584 "[--memory-contents]"));
2586 /* This throws an error is not inspecting a trace frame. */
2587 tloc
= get_traceframe_location (&stepping_frame
);
2589 /* This command only makes sense for the current frame, not the
2591 scoped_restore_current_thread restore_thread
;
2592 select_frame (get_current_frame ());
2594 encode_actions (tloc
, &tracepoint_list
, &stepping_list
);
2597 clist
= &stepping_list
;
2599 clist
= &tracepoint_list
;
2601 tinfo
= get_traceframe_info ();
2603 /* Explicitly wholly collected variables. */
2605 ui_out_emit_list
list_emitter (uiout
, "explicit-variables");
2606 const std::vector
<std::string
> &wholly_collected
2607 = clist
->wholly_collected ();
2608 for (size_t i
= 0; i
< wholly_collected
.size (); i
++)
2610 const std::string
&str
= wholly_collected
[i
];
2611 print_variable_or_computed (str
.c_str (), var_print_values
);
2615 /* Computed expressions. */
2617 ui_out_emit_list
list_emitter (uiout
, "computed-expressions");
2619 const std::vector
<std::string
> &computed
= clist
->computed ();
2620 for (size_t i
= 0; i
< computed
.size (); i
++)
2622 const std::string
&str
= computed
[i
];
2623 print_variable_or_computed (str
.c_str (), comp_print_values
);
2627 /* Registers. Given pseudo-registers, and that some architectures
2628 (like MIPS) actually hide the raw registers, we don't go through
2629 the trace frame info, but instead consult the register cache for
2630 register availability. */
2632 struct frame_info
*frame
;
2633 struct gdbarch
*gdbarch
;
2637 ui_out_emit_list
list_emitter (uiout
, "registers");
2639 frame
= get_selected_frame (NULL
);
2640 gdbarch
= get_frame_arch (frame
);
2641 numregs
= gdbarch_num_regs (gdbarch
) + gdbarch_num_pseudo_regs (gdbarch
);
2643 for (regnum
= 0; regnum
< numregs
; regnum
++)
2645 if (gdbarch_register_name (gdbarch
, regnum
) == NULL
2646 || *(gdbarch_register_name (gdbarch
, regnum
)) == '\0')
2649 output_register (frame
, regnum
, registers_format
, 1);
2653 /* Trace state variables. */
2655 ui_out_emit_list
list_emitter (uiout
, "tvars");
2657 for (int tvar
: tinfo
->tvars
)
2659 struct trace_state_variable
*tsv
;
2661 tsv
= find_trace_state_variable_by_number (tvar
);
2663 ui_out_emit_tuple
tuple_emitter (uiout
, NULL
);
2667 uiout
->field_fmt ("name", "$%s", tsv
->name
.c_str ());
2669 tsv
->value_known
= target_get_trace_state_variable_value (tsv
->number
,
2671 uiout
->field_int ("current", tsv
->value
);
2675 uiout
->field_skip ("name");
2676 uiout
->field_skip ("current");
2683 std::vector
<mem_range
> available_memory
;
2685 traceframe_available_memory (&available_memory
, 0, ULONGEST_MAX
);
2687 ui_out_emit_list
list_emitter (uiout
, "memory");
2689 for (const mem_range
&r
: available_memory
)
2691 struct gdbarch
*gdbarch
= target_gdbarch ();
2693 ui_out_emit_tuple
tuple_emitter (uiout
, NULL
);
2695 uiout
->field_core_addr ("address", gdbarch
, r
.start
);
2696 uiout
->field_int ("length", r
.length
);
2698 gdb::byte_vector
data (r
.length
);
2700 if (memory_contents
)
2702 if (target_read_memory (r
.start
, data
.data (), r
.length
) == 0)
2704 std::string data_str
= bin2hex (data
.data (), r
.length
);
2705 uiout
->field_string ("contents", data_str
.c_str ());
2708 uiout
->field_skip ("contents");
2715 _initialize_mi_main (void)
2717 struct cmd_list_element
*c
;
2719 add_setshow_boolean_cmd ("mi-async", class_run
,
2721 Set whether MI asynchronous mode is enabled."), _("\
2722 Show whether MI asynchronous mode is enabled."), _("\
2723 Tells GDB whether MI should be in asynchronous mode."),
2724 set_mi_async_command
,
2725 show_mi_async_command
,
2729 /* Alias old "target-async" to "mi-async". */
2730 c
= add_alias_cmd ("target-async", "mi-async", class_run
, 0, &setlist
);
2731 deprecate_cmd (c
, "set mi-async");
2732 c
= add_alias_cmd ("target-async", "mi-async", class_run
, 0, &showlist
);
2733 deprecate_cmd (c
, "show mi-async");