gdb: Fix phony iconv build
[deliverable/binutils-gdb.git] / gdb / mi / mi-main.c
CommitLineData
fb40c209 1/* MI Command Set.
cd0bfa36 2
618f726f 3 Copyright (C) 2000-2016 Free Software Foundation, Inc.
cd0bfa36 4
ab91fdd5 5 Contributed by Cygnus Solutions (a Red Hat company).
fb40c209
AC
6
7 This file is part of GDB.
8
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
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
fb40c209
AC
12 (at your option) any later version.
13
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.
18
19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
fb40c209 21
fb40c209 22#include "defs.h"
e17c207e 23#include "arch-utils.h"
fb40c209
AC
24#include "target.h"
25#include "inferior.h"
45741a9c 26#include "infrun.h"
fb40c209
AC
27#include "top.h"
28#include "gdbthread.h"
29#include "mi-cmds.h"
30#include "mi-parse.h"
31#include "mi-getopt.h"
32#include "mi-console.h"
33#include "ui-out.h"
34#include "mi-out.h"
4389a95a 35#include "interps.h"
fb40c209
AC
36#include "event-loop.h"
37#include "event-top.h"
41296c92 38#include "gdbcore.h" /* For write_memory(). */
56178203 39#include "value.h"
4e052eda 40#include "regcache.h"
5b7f31a4 41#include "gdb.h"
36dc181b 42#include "frame.h"
b9362cc7 43#include "mi-main.h"
66bb093b 44#include "mi-common.h"
d8ca156b 45#include "language.h"
79a45b7d 46#include "valprint.h"
3ee1c036 47#include "inferior.h"
07e059b5 48#include "osdata.h"
dc146f7c 49#include "splay-tree.h"
f224b49d 50#include "tracepoint.h"
d0353e76 51#include "ctf.h"
75082e8c 52#include "ada-lang.h"
f8eba3c6 53#include "linespec.h"
6dddc817 54#include "extension.h"
329ea579 55#include "gdbcmd.h"
4034d0ff 56#include "observer.h"
36dc181b 57
fb40c209 58#include <ctype.h>
438e1e42 59#include "gdb_sys_time.h"
fb40c209 60
d8c83789
NR
61#if defined HAVE_SYS_RESOURCE_H
62#include <sys/resource.h>
63#endif
64
65#ifdef HAVE_GETRUSAGE
66struct rusage rusage;
67#endif
68
fb40c209
AC
69enum
70 {
71 FROM_TTY = 0
72 };
73
fb40c209 74int mi_debug_p;
2b03b41d 75
2b03b41d
SS
76/* This is used to pass the current command timestamp down to
77 continuation routines. */
d8c83789
NR
78static struct mi_timestamp *current_command_ts;
79
80static int do_timings = 0;
81
a2840c35 82char *current_token;
2b03b41d
SS
83/* Few commands would like to know if options like --thread-group were
84 explicitly specified. This variable keeps the current parsed
85 command including all option, and make it possible. */
a79b8f6e
VP
86static struct mi_parse *current_context;
87
a2840c35 88int running_result_record_printed = 1;
fb40c209 89
f3b1572e
PA
90/* Flag indicating that the target has proceeded since the last
91 command was issued. */
92int mi_proceeded;
93
fb40c209 94extern void _initialize_mi_main (void);
ce8f13f8 95static void mi_cmd_execute (struct mi_parse *parse);
fb40c209 96
b2af646b
AC
97static void mi_execute_cli_command (const char *cmd, int args_p,
98 const char *args);
c1244769 99static void mi_execute_async_cli_command (char *cli_command,
9a2b4c1b 100 char **argv, int argc);
6ed7ea50
UW
101static int register_changed_p (int regnum, struct regcache *,
102 struct regcache *);
c898adb7
YQ
103static void output_register (struct frame_info *, int regnum, int format,
104 int skip_unavailable);
4389a95a 105
329ea579
PA
106/* Controls whether the frontend wants MI in async mode. */
107static int mi_async = 0;
108
109/* The set command writes to this variable. If the inferior is
110 executing, mi_async is *not* updated. */
111static int mi_async_1 = 0;
112
113static void
114set_mi_async_command (char *args, int from_tty,
115 struct cmd_list_element *c)
116{
117 if (have_live_inferiors ())
118 {
119 mi_async_1 = mi_async;
120 error (_("Cannot change this setting while the inferior is running."));
121 }
122
123 mi_async = mi_async_1;
124}
125
126static void
127show_mi_async_command (struct ui_file *file, int from_tty,
128 struct cmd_list_element *c,
129 const char *value)
130{
131 fprintf_filtered (file,
132 _("Whether MI is in asynchronous mode is %s.\n"),
133 value);
134}
135
136/* A wrapper for target_can_async_p that takes the MI setting into
137 account. */
138
139int
140mi_async_p (void)
141{
142 return mi_async && target_can_async_p ();
143}
144
41296c92 145/* Command implementations. FIXME: Is this libgdb? No. This is the MI
fb40c209 146 layer that calls libgdb. Any operation used in the below should be
41296c92 147 formalized. */
fb40c209 148
d8c83789
NR
149static void timestamp (struct mi_timestamp *tv);
150
9204d692
PA
151static void print_diff (struct ui_file *file, struct mi_timestamp *start,
152 struct mi_timestamp *end);
d8c83789 153
ce8f13f8 154void
fb40c209
AC
155mi_cmd_gdb_exit (char *command, char **argv, int argc)
156{
9204d692
PA
157 struct mi_interp *mi
158 = (struct mi_interp *) interp_data (current_interpreter ());
159
41296c92 160 /* We have to print everything right here because we never return. */
721c02de 161 if (current_token)
9204d692
PA
162 fputs_unfiltered (current_token, mi->raw_stdout);
163 fputs_unfiltered ("^exit\n", mi->raw_stdout);
164 mi_out_put (current_uiout, mi->raw_stdout);
165 gdb_flush (mi->raw_stdout);
41296c92 166 /* FIXME: The function called is not yet a formal libgdb function. */
fb40c209 167 quit_force (NULL, FROM_TTY);
fb40c209
AC
168}
169
ce8f13f8 170void
9e22b03a 171mi_cmd_exec_next (char *command, char **argv, int argc)
fb40c209 172{
41296c92 173 /* FIXME: Should call a libgdb function, not a cli wrapper. */
e5829bee
MS
174 if (argc > 0 && strcmp(argv[0], "--reverse") == 0)
175 mi_execute_async_cli_command ("reverse-next", argv + 1, argc - 1);
176 else
177 mi_execute_async_cli_command ("next", argv, argc);
fb40c209
AC
178}
179
ce8f13f8 180void
9e22b03a 181mi_cmd_exec_next_instruction (char *command, char **argv, int argc)
fb40c209 182{
41296c92 183 /* FIXME: Should call a libgdb function, not a cli wrapper. */
e5829bee
MS
184 if (argc > 0 && strcmp(argv[0], "--reverse") == 0)
185 mi_execute_async_cli_command ("reverse-nexti", argv + 1, argc - 1);
186 else
187 mi_execute_async_cli_command ("nexti", argv, argc);
fb40c209
AC
188}
189
ce8f13f8 190void
9e22b03a 191mi_cmd_exec_step (char *command, char **argv, int argc)
fb40c209 192{
41296c92 193 /* FIXME: Should call a libgdb function, not a cli wrapper. */
e5829bee
MS
194 if (argc > 0 && strcmp(argv[0], "--reverse") == 0)
195 mi_execute_async_cli_command ("reverse-step", argv + 1, argc - 1);
196 else
197 mi_execute_async_cli_command ("step", argv, argc);
fb40c209
AC
198}
199
ce8f13f8 200void
9e22b03a 201mi_cmd_exec_step_instruction (char *command, char **argv, int argc)
fb40c209 202{
41296c92 203 /* FIXME: Should call a libgdb function, not a cli wrapper. */
e5829bee
MS
204 if (argc > 0 && strcmp(argv[0], "--reverse") == 0)
205 mi_execute_async_cli_command ("reverse-stepi", argv + 1, argc - 1);
206 else
207 mi_execute_async_cli_command ("stepi", argv, argc);
fb40c209
AC
208}
209
ce8f13f8 210void
9e22b03a 211mi_cmd_exec_finish (char *command, char **argv, int argc)
fb40c209 212{
41296c92 213 /* FIXME: Should call a libgdb function, not a cli wrapper. */
e5829bee
MS
214 if (argc > 0 && strcmp(argv[0], "--reverse") == 0)
215 mi_execute_async_cli_command ("reverse-finish", argv + 1, argc - 1);
216 else
217 mi_execute_async_cli_command ("finish", argv, argc);
fb40c209
AC
218}
219
ce8f13f8 220void
9e22b03a 221mi_cmd_exec_return (char *command, char **argv, int argc)
fb40c209 222{
fb40c209 223 /* This command doesn't really execute the target, it just pops the
2b03b41d 224 specified number of frames. */
9e22b03a 225 if (argc)
fb40c209 226 /* Call return_command with from_tty argument equal to 0 so as to
41296c92 227 avoid being queried. */
9e22b03a 228 return_command (*argv, 0);
fb40c209
AC
229 else
230 /* Call return_command with from_tty argument equal to 0 so as to
41296c92 231 avoid being queried. */
36dc181b 232 return_command (NULL, 0);
fb40c209
AC
233
234 /* Because we have called return_command with from_tty = 0, we need
41296c92 235 to print the frame here. */
08d72866 236 print_stack_frame (get_selected_frame (NULL), 1, LOC_AND_ADDRESS, 1);
fb40c209
AC
237}
238
143260c9
VP
239void
240mi_cmd_exec_jump (char *args, char **argv, int argc)
241{
242 /* FIXME: Should call a libgdb function, not a cli wrapper. */
202b96c1 243 mi_execute_async_cli_command ("jump", argv, argc);
143260c9 244}
c1244769 245
a79b8f6e
VP
246static void
247proceed_thread (struct thread_info *thread, int pid)
8dd4f202 248{
8dd4f202 249 if (!is_stopped (thread->ptid))
a79b8f6e 250 return;
8dd4f202 251
dfd4cc63 252 if (pid != 0 && ptid_get_pid (thread->ptid) != pid)
a79b8f6e 253 return;
8dd4f202
VP
254
255 switch_to_thread (thread->ptid);
70509625 256 clear_proceed_status (0);
64ce06e4 257 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
a79b8f6e
VP
258}
259
a79b8f6e
VP
260static int
261proceed_thread_callback (struct thread_info *thread, void *arg)
262{
263 int pid = *(int *)arg;
102040f0 264
a79b8f6e 265 proceed_thread (thread, pid);
8dd4f202
VP
266 return 0;
267}
268
e5829bee
MS
269static void
270exec_continue (char **argv, int argc)
fb40c209 271{
329ea579
PA
272 prepare_execution_command (&current_target, mi_async_p ());
273
a79b8f6e 274 if (non_stop)
8dd4f202 275 {
2b03b41d
SS
276 /* In non-stop mode, 'resume' always resumes a single thread.
277 Therefore, to resume all threads of the current inferior, or
278 all threads in all inferiors, we need to iterate over
279 threads.
a79b8f6e
VP
280
281 See comment on infcmd.c:proceed_thread_callback for rationale. */
282 if (current_context->all || current_context->thread_group != -1)
283 {
284 int pid = 0;
285 struct cleanup *back_to = make_cleanup_restore_current_thread ();
8dd4f202 286
a79b8f6e
VP
287 if (!current_context->all)
288 {
9a2b4c1b
MS
289 struct inferior *inf
290 = find_inferior_id (current_context->thread_group);
291
a79b8f6e
VP
292 pid = inf->pid;
293 }
294 iterate_over_threads (proceed_thread_callback, &pid);
295 do_cleanups (back_to);
296 }
297 else
298 {
299 continue_1 (0);
300 }
8dd4f202 301 }
77ebaa5a 302 else
a79b8f6e
VP
303 {
304 struct cleanup *back_to = make_cleanup_restore_integer (&sched_multi);
102040f0 305
a79b8f6e
VP
306 if (current_context->all)
307 {
308 sched_multi = 1;
309 continue_1 (0);
310 }
311 else
312 {
2b03b41d
SS
313 /* In all-stop mode, -exec-continue traditionally resumed
314 either all threads, or one thread, depending on the
315 'scheduler-locking' variable. Let's continue to do the
316 same. */
a79b8f6e
VP
317 continue_1 (1);
318 }
319 do_cleanups (back_to);
320 }
e5829bee
MS
321}
322
e5829bee 323static void
a79b8f6e 324exec_direction_forward (void *notused)
e5829bee 325{
e5829bee
MS
326 execution_direction = EXEC_FORWARD;
327}
328
329static void
330exec_reverse_continue (char **argv, int argc)
331{
332 enum exec_direction_kind dir = execution_direction;
333 struct cleanup *old_chain;
334
e5829bee
MS
335 if (dir == EXEC_REVERSE)
336 error (_("Already in reverse mode."));
337
338 if (!target_can_execute_reverse)
339 error (_("Target %s does not support this command."), target_shortname);
340
a79b8f6e 341 old_chain = make_cleanup (exec_direction_forward, NULL);
e5829bee
MS
342 execution_direction = EXEC_REVERSE;
343 exec_continue (argv, argc);
344 do_cleanups (old_chain);
345}
346
347void
348mi_cmd_exec_continue (char *command, char **argv, int argc)
349{
a79b8f6e 350 if (argc > 0 && strcmp (argv[0], "--reverse") == 0)
e5829bee
MS
351 exec_reverse_continue (argv + 1, argc - 1);
352 else
353 exec_continue (argv, argc);
8dd4f202
VP
354}
355
356static int
357interrupt_thread_callback (struct thread_info *thread, void *arg)
358{
359 int pid = *(int *)arg;
360
361 if (!is_running (thread->ptid))
362 return 0;
363
dfd4cc63 364 if (ptid_get_pid (thread->ptid) != pid)
8dd4f202
VP
365 return 0;
366
367 target_stop (thread->ptid);
368 return 0;
fb40c209
AC
369}
370
2b03b41d
SS
371/* Interrupt the execution of the target. Note how we must play
372 around with the token variables, in order to display the current
373 token in the result of the interrupt command, and the previous
374 execution token when the target finally stops. See comments in
41296c92 375 mi_cmd_execute. */
2b03b41d 376
ce8f13f8 377void
9e22b03a 378mi_cmd_exec_interrupt (char *command, char **argv, int argc)
fb40c209 379{
a79b8f6e
VP
380 /* In all-stop mode, everything stops, so we don't need to try
381 anything specific. */
382 if (!non_stop)
77ebaa5a 383 {
77ebaa5a 384 interrupt_target_1 (0);
a79b8f6e 385 return;
77ebaa5a 386 }
a79b8f6e
VP
387
388 if (current_context->all)
77ebaa5a 389 {
a79b8f6e 390 /* This will interrupt all threads in all inferiors. */
77ebaa5a
VP
391 interrupt_target_1 (1);
392 }
a79b8f6e 393 else if (current_context->thread_group != -1)
8dd4f202 394 {
a79b8f6e 395 struct inferior *inf = find_inferior_id (current_context->thread_group);
102040f0 396
a79b8f6e
VP
397 iterate_over_threads (interrupt_thread_callback, &inf->pid);
398 }
399 else
400 {
401 /* Interrupt just the current thread -- either explicitly
402 specified via --thread or whatever was current before
403 MI command was sent. */
404 interrupt_target_1 (0);
405 }
406}
407
5713b9b5
JB
408/* Callback for iterate_over_inferiors which starts the execution
409 of the given inferior.
410
411 ARG is a pointer to an integer whose value, if non-zero, indicates
412 that the program should be stopped when reaching the main subprogram
413 (similar to what the CLI "start" command does). */
414
a79b8f6e
VP
415static int
416run_one_inferior (struct inferior *inf, void *arg)
417{
5713b9b5
JB
418 int start_p = *(int *) arg;
419 const char *run_cmd = start_p ? "start" : "run";
61c6156d
SM
420 struct target_ops *run_target = find_run_target ();
421 int async_p = mi_async && run_target->to_can_async_p (run_target);
5713b9b5 422
a79b8f6e
VP
423 if (inf->pid != 0)
424 {
425 if (inf->pid != ptid_get_pid (inferior_ptid))
426 {
427 struct thread_info *tp;
8dd4f202 428
a79b8f6e
VP
429 tp = any_thread_of_process (inf->pid);
430 if (!tp)
431 error (_("Inferior has no threads."));
432
433 switch_to_thread (tp->ptid);
434 }
8dd4f202 435 }
77ebaa5a 436 else
a79b8f6e
VP
437 {
438 set_current_inferior (inf);
439 switch_to_thread (null_ptid);
440 set_current_program_space (inf->pspace);
441 }
61c6156d
SM
442 mi_execute_cli_command (run_cmd, async_p,
443 async_p ? "&" : NULL);
a79b8f6e 444 return 0;
fb40c209
AC
445}
446
115d30f9
VP
447void
448mi_cmd_exec_run (char *command, char **argv, int argc)
449{
5713b9b5
JB
450 int start_p = 0;
451
452 /* Parse the command options. */
453 enum opt
454 {
455 START_OPT,
456 };
457 static const struct mi_opt opts[] =
458 {
459 {"-start", START_OPT, 0},
460 {NULL, 0, 0},
461 };
462
463 int oind = 0;
464 char *oarg;
465
466 while (1)
467 {
468 int opt = mi_getopt ("-exec-run", argc, argv, opts, &oind, &oarg);
469
470 if (opt < 0)
471 break;
472 switch ((enum opt) opt)
473 {
474 case START_OPT:
475 start_p = 1;
476 break;
477 }
478 }
479
480 /* This command does not accept any argument. Make sure the user
481 did not provide any. */
482 if (oind != argc)
483 error (_("Invalid argument: %s"), argv[oind]);
484
a79b8f6e
VP
485 if (current_context->all)
486 {
487 struct cleanup *back_to = save_current_space_and_thread ();
102040f0 488
5713b9b5 489 iterate_over_inferiors (run_one_inferior, &start_p);
a79b8f6e
VP
490 do_cleanups (back_to);
491 }
492 else
493 {
5713b9b5 494 const char *run_cmd = start_p ? "start" : "run";
61c6156d
SM
495 struct target_ops *run_target = find_run_target ();
496 int async_p = mi_async && run_target->to_can_async_p (run_target);
5713b9b5 497
61c6156d
SM
498 mi_execute_cli_command (run_cmd, async_p,
499 async_p ? "&" : NULL);
a79b8f6e 500 }
115d30f9
VP
501}
502
a79b8f6e 503
6418d433
VP
504static int
505find_thread_of_process (struct thread_info *ti, void *p)
506{
507 int pid = *(int *)p;
102040f0 508
dfd4cc63 509 if (ptid_get_pid (ti->ptid) == pid && !is_exited (ti->ptid))
6418d433
VP
510 return 1;
511
512 return 0;
513}
514
515void
516mi_cmd_target_detach (char *command, char **argv, int argc)
517{
518 if (argc != 0 && argc != 1)
9b20d036 519 error (_("Usage: -target-detach [pid | thread-group]"));
6418d433
VP
520
521 if (argc == 1)
522 {
523 struct thread_info *tp;
524 char *end = argv[0];
f1b9e6e7 525 int pid;
102040f0 526
f1b9e6e7
MK
527 /* First see if we are dealing with a thread-group id. */
528 if (*argv[0] == 'i')
529 {
530 struct inferior *inf;
531 int id = strtoul (argv[0] + 1, &end, 0);
532
533 if (*end != '\0')
534 error (_("Invalid syntax of thread-group id '%s'"), argv[0]);
535
536 inf = find_inferior_id (id);
537 if (!inf)
538 error (_("Non-existent thread-group id '%d'"), id);
539
540 pid = inf->pid;
541 }
542 else
543 {
544 /* We must be dealing with a pid. */
545 pid = strtol (argv[0], &end, 10);
546
547 if (*end != '\0')
548 error (_("Invalid identifier '%s'"), argv[0]);
549 }
6418d433
VP
550
551 /* Pick any thread in the desired process. Current
f1b9e6e7 552 target_detach detaches from the parent of inferior_ptid. */
6418d433
VP
553 tp = iterate_over_threads (find_thread_of_process, &pid);
554 if (!tp)
555 error (_("Thread group is empty"));
556
557 switch_to_thread (tp->ptid);
558 }
559
560 detach_command (NULL, 0);
561}
562
ce8f13f8 563void
fb40c209
AC
564mi_cmd_thread_select (char *command, char **argv, int argc)
565{
566 enum gdb_rc rc;
a13e061a 567 char *mi_error_message;
4034d0ff 568 ptid_t previous_ptid = inferior_ptid;
fb40c209
AC
569
570 if (argc != 1)
1b05df00 571 error (_("-thread-select: USAGE: threadnum."));
a13e061a 572
79a45e25 573 rc = gdb_thread_select (current_uiout, argv[0], &mi_error_message);
a13e061a 574
4034d0ff 575 /* If thread switch did not succeed don't notify or print. */
a13e061a 576 if (rc == GDB_RC_FAIL)
fb40c209 577 {
a13e061a
PA
578 make_cleanup (xfree, mi_error_message);
579 error ("%s", mi_error_message);
fb40c209 580 }
4034d0ff
AT
581
582 print_selected_thread_frame (current_uiout,
583 USER_SELECTED_THREAD | USER_SELECTED_FRAME);
584
585 /* Notify if the thread has effectively changed. */
586 if (!ptid_equal (inferior_ptid, previous_ptid))
587 {
588 observer_notify_user_selected_context_changed (USER_SELECTED_THREAD
589 | USER_SELECTED_FRAME);
590 }
fb40c209
AC
591}
592
ce8f13f8 593void
fb40c209
AC
594mi_cmd_thread_list_ids (char *command, char **argv, int argc)
595{
b0b13bb4 596 enum gdb_rc rc;
a13e061a 597 char *mi_error_message;
fb40c209
AC
598
599 if (argc != 0)
7ea6d463 600 error (_("-thread-list-ids: No arguments required."));
a13e061a 601
79a45e25 602 rc = gdb_list_thread_ids (current_uiout, &mi_error_message);
a13e061a
PA
603
604 if (rc == GDB_RC_FAIL)
fb40c209 605 {
a13e061a
PA
606 make_cleanup (xfree, mi_error_message);
607 error ("%s", mi_error_message);
fb40c209 608 }
fb40c209
AC
609}
610
ce8f13f8 611void
8e8901c5
VP
612mi_cmd_thread_info (char *command, char **argv, int argc)
613{
8e8901c5 614 if (argc != 0 && argc != 1)
7ea6d463 615 error (_("Invalid MI command"));
8e8901c5 616
79a45e25 617 print_thread_info (current_uiout, argv[0], -1);
3ee1c036
VP
618}
619
dc146f7c
VP
620struct collect_cores_data
621{
622 int pid;
623
624 VEC (int) *cores;
625};
626
3ee1c036 627static int
dc146f7c 628collect_cores (struct thread_info *ti, void *xdata)
3ee1c036 629{
19ba03f4 630 struct collect_cores_data *data = (struct collect_cores_data *) xdata;
dc146f7c
VP
631
632 if (ptid_get_pid (ti->ptid) == data->pid)
6c95b8df 633 {
dc146f7c 634 int core = target_core_of_thread (ti->ptid);
102040f0 635
dc146f7c
VP
636 if (core != -1)
637 VEC_safe_push (int, data->cores, core);
638 }
639
640 return 0;
641}
642
643static int *
644unique (int *b, int *e)
645{
646 int *d = b;
102040f0 647
dc146f7c
VP
648 while (++b != e)
649 if (*d != *b)
650 *++d = *b;
651 return ++d;
652}
653
654struct print_one_inferior_data
655{
656 int recurse;
657 VEC (int) *inferiors;
658};
659
660static int
661print_one_inferior (struct inferior *inferior, void *xdata)
662{
19ba03f4
SM
663 struct print_one_inferior_data *top_data
664 = (struct print_one_inferior_data *) xdata;
79a45e25 665 struct ui_out *uiout = current_uiout;
dc146f7c
VP
666
667 if (VEC_empty (int, top_data->inferiors)
668 || bsearch (&(inferior->pid), VEC_address (int, top_data->inferiors),
669 VEC_length (int, top_data->inferiors), sizeof (int),
670 compare_positive_ints))
671 {
672 struct collect_cores_data data;
6c95b8df
PA
673 struct cleanup *back_to
674 = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
675
a79b8f6e 676 ui_out_field_fmt (uiout, "id", "i%d", inferior->num);
6c95b8df 677 ui_out_field_string (uiout, "type", "process");
2ddf4301
SM
678 if (inferior->has_exit_code)
679 ui_out_field_string (uiout, "exit-code",
680 int_string (inferior->exit_code, 8, 0, 0, 1));
a79b8f6e
VP
681 if (inferior->pid != 0)
682 ui_out_field_int (uiout, "pid", inferior->pid);
683
1f0c4988 684 if (inferior->pspace->pspace_exec_filename != NULL)
a79b8f6e
VP
685 {
686 ui_out_field_string (uiout, "executable",
1f0c4988 687 inferior->pspace->pspace_exec_filename);
a79b8f6e 688 }
6c95b8df 689
dc146f7c 690 data.cores = 0;
a79b8f6e
VP
691 if (inferior->pid != 0)
692 {
693 data.pid = inferior->pid;
694 iterate_over_threads (collect_cores, &data);
695 }
dc146f7c
VP
696
697 if (!VEC_empty (int, data.cores))
698 {
dc146f7c
VP
699 int *b, *e;
700 struct cleanup *back_to_2 =
701 make_cleanup_ui_out_list_begin_end (uiout, "cores");
702
703 qsort (VEC_address (int, data.cores),
704 VEC_length (int, data.cores), sizeof (int),
705 compare_positive_ints);
706
707 b = VEC_address (int, data.cores);
708 e = b + VEC_length (int, data.cores);
709 e = unique (b, e);
710
711 for (; b != e; ++b)
712 ui_out_field_int (uiout, NULL, *b);
713
714 do_cleanups (back_to_2);
715 }
716
717 if (top_data->recurse)
aea5b279 718 print_thread_info (uiout, NULL, inferior->pid);
dc146f7c 719
6c95b8df
PA
720 do_cleanups (back_to);
721 }
3ee1c036 722
3ee1c036
VP
723 return 0;
724}
725
2b03b41d
SS
726/* Output a field named 'cores' with a list as the value. The
727 elements of the list are obtained by splitting 'cores' on
728 comma. */
dc146f7c
VP
729
730static void
731output_cores (struct ui_out *uiout, const char *field_name, const char *xcores)
3ee1c036 732{
dc146f7c
VP
733 struct cleanup *back_to = make_cleanup_ui_out_list_begin_end (uiout,
734 field_name);
735 char *cores = xstrdup (xcores);
736 char *p = cores;
3ee1c036 737
dc146f7c 738 make_cleanup (xfree, cores);
3ee1c036 739
dc146f7c
VP
740 for (p = strtok (p, ","); p; p = strtok (NULL, ","))
741 ui_out_field_string (uiout, NULL, p);
3ee1c036 742
dc146f7c
VP
743 do_cleanups (back_to);
744}
3ee1c036 745
dc146f7c
VP
746static void
747free_vector_of_ints (void *xvector)
748{
19ba03f4 749 VEC (int) **vector = (VEC (int) **) xvector;
102040f0 750
dc146f7c
VP
751 VEC_free (int, *vector);
752}
753
754static void
755do_nothing (splay_tree_key k)
756{
757}
07e059b5 758
dc146f7c
VP
759static void
760free_vector_of_osdata_items (splay_tree_value xvalue)
761{
762 VEC (osdata_item_s) *value = (VEC (osdata_item_s) *) xvalue;
102040f0 763
dc146f7c
VP
764 /* We don't free the items itself, it will be done separately. */
765 VEC_free (osdata_item_s, value);
766}
e0665bc8 767
dc146f7c
VP
768static int
769splay_tree_int_comparator (splay_tree_key xa, splay_tree_key xb)
770{
771 int a = xa;
772 int b = xb;
102040f0 773
dc146f7c
VP
774 return a - b;
775}
776
777static void
778free_splay_tree (void *xt)
779{
19ba03f4 780 splay_tree t = (splay_tree) xt;
dc146f7c
VP
781 splay_tree_delete (t);
782}
783
784static void
785list_available_thread_groups (VEC (int) *ids, int recurse)
786{
787 struct osdata *data;
788 struct osdata_item *item;
789 int ix_items;
79a45e25 790 struct ui_out *uiout = current_uiout;
b9635925 791 struct cleanup *cleanup;
102040f0 792
dc146f7c 793 /* This keeps a map from integer (pid) to VEC (struct osdata_item *)*
8eee9c5a
DE
794 The vector contains information about all threads for the given pid.
795 This is assigned an initial value to avoid "may be used uninitialized"
796 warning from gcc. */
797 splay_tree tree = NULL;
dc146f7c
VP
798
799 /* get_osdata will throw if it cannot return data. */
800 data = get_osdata ("processes");
b9635925 801 cleanup = make_cleanup_osdata_free (data);
dc146f7c
VP
802
803 if (recurse)
804 {
805 struct osdata *threads = get_osdata ("threads");
dc146f7c 806
102040f0 807 make_cleanup_osdata_free (threads);
dc146f7c
VP
808 tree = splay_tree_new (splay_tree_int_comparator,
809 do_nothing,
810 free_vector_of_osdata_items);
811 make_cleanup (free_splay_tree, tree);
e0665bc8 812
07e059b5 813 for (ix_items = 0;
dc146f7c 814 VEC_iterate (osdata_item_s, threads->items,
e0665bc8 815 ix_items, item);
07e059b5
VP
816 ix_items++)
817 {
07e059b5 818 const char *pid = get_osdata_column (item, "pid");
dc146f7c
VP
819 int pid_i = strtoul (pid, NULL, 0);
820 VEC (osdata_item_s) *vec = 0;
821
822 splay_tree_node n = splay_tree_lookup (tree, pid_i);
823 if (!n)
824 {
825 VEC_safe_push (osdata_item_s, vec, item);
826 splay_tree_insert (tree, pid_i, (splay_tree_value)vec);
827 }
828 else
829 {
830 vec = (VEC (osdata_item_s) *) n->value;
831 VEC_safe_push (osdata_item_s, vec, item);
832 n->value = (splay_tree_value) vec;
833 }
834 }
835 }
836
837 make_cleanup_ui_out_list_begin_end (uiout, "groups");
07e059b5 838
dc146f7c
VP
839 for (ix_items = 0;
840 VEC_iterate (osdata_item_s, data->items,
841 ix_items, item);
842 ix_items++)
843 {
844 struct cleanup *back_to;
e0665bc8 845
dc146f7c
VP
846 const char *pid = get_osdata_column (item, "pid");
847 const char *cmd = get_osdata_column (item, "command");
848 const char *user = get_osdata_column (item, "user");
849 const char *cores = get_osdata_column (item, "cores");
850
851 int pid_i = strtoul (pid, NULL, 0);
852
853 /* At present, the target will return all available processes
854 and if information about specific ones was required, we filter
855 undesired processes here. */
856 if (ids && bsearch (&pid_i, VEC_address (int, ids),
857 VEC_length (int, ids),
858 sizeof (int), compare_positive_ints) == NULL)
859 continue;
860
861
862 back_to = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
863
864 ui_out_field_fmt (uiout, "id", "%s", pid);
865 ui_out_field_string (uiout, "type", "process");
866 if (cmd)
867 ui_out_field_string (uiout, "description", cmd);
868 if (user)
869 ui_out_field_string (uiout, "user", user);
870 if (cores)
871 output_cores (uiout, "cores", cores);
872
873 if (recurse)
874 {
875 splay_tree_node n = splay_tree_lookup (tree, pid_i);
876 if (n)
877 {
878 VEC (osdata_item_s) *children = (VEC (osdata_item_s) *) n->value;
879 struct osdata_item *child;
880 int ix_child;
881
882 make_cleanup_ui_out_list_begin_end (uiout, "threads");
883
884 for (ix_child = 0;
885 VEC_iterate (osdata_item_s, children, ix_child, child);
886 ++ix_child)
887 {
888 struct cleanup *back_to_2 =
889 make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
dc146f7c
VP
890 const char *tid = get_osdata_column (child, "tid");
891 const char *tcore = get_osdata_column (child, "core");
102040f0 892
dc146f7c
VP
893 ui_out_field_string (uiout, "id", tid);
894 if (tcore)
895 ui_out_field_string (uiout, "core", tcore);
896
897 do_cleanups (back_to_2);
898 }
899 }
07e059b5 900 }
dc146f7c
VP
901
902 do_cleanups (back_to);
07e059b5 903 }
b9635925
TT
904
905 do_cleanups (cleanup);
dc146f7c
VP
906}
907
908void
909mi_cmd_list_thread_groups (char *command, char **argv, int argc)
910{
79a45e25 911 struct ui_out *uiout = current_uiout;
dc146f7c
VP
912 struct cleanup *back_to;
913 int available = 0;
914 int recurse = 0;
915 VEC (int) *ids = 0;
916
917 enum opt
dc146f7c 918 {
2b03b41d 919 AVAILABLE_OPT, RECURSE_OPT
dc146f7c 920 };
2b03b41d
SS
921 static const struct mi_opt opts[] =
922 {
923 {"-available", AVAILABLE_OPT, 0},
924 {"-recurse", RECURSE_OPT, 1},
925 { 0, 0, 0 }
926 };
dc146f7c 927
56934ab1
AS
928 int oind = 0;
929 char *oarg;
dc146f7c
VP
930
931 while (1)
932 {
933 int opt = mi_getopt ("-list-thread-groups", argc, argv, opts,
56934ab1 934 &oind, &oarg);
102040f0 935
dc146f7c
VP
936 if (opt < 0)
937 break;
938 switch ((enum opt) opt)
939 {
940 case AVAILABLE_OPT:
941 available = 1;
942 break;
943 case RECURSE_OPT:
56934ab1 944 if (strcmp (oarg, "0") == 0)
dc146f7c 945 ;
56934ab1 946 else if (strcmp (oarg, "1") == 0)
dc146f7c
VP
947 recurse = 1;
948 else
7ea6d463
PM
949 error (_("only '0' and '1' are valid values "
950 "for the '--recurse' option"));
dc146f7c
VP
951 break;
952 }
953 }
954
56934ab1 955 for (; oind < argc; ++oind)
dc146f7c
VP
956 {
957 char *end;
2f296114
VP
958 int inf;
959
56934ab1
AS
960 if (*(argv[oind]) != 'i')
961 error (_("invalid syntax of group id '%s'"), argv[oind]);
2f296114 962
56934ab1 963 inf = strtoul (argv[oind] + 1, &end, 0);
102040f0 964
dc146f7c 965 if (*end != '\0')
56934ab1 966 error (_("invalid syntax of group id '%s'"), argv[oind]);
dc146f7c
VP
967 VEC_safe_push (int, ids, inf);
968 }
969 if (VEC_length (int, ids) > 1)
970 qsort (VEC_address (int, ids),
971 VEC_length (int, ids),
972 sizeof (int), compare_positive_ints);
973
974 back_to = make_cleanup (free_vector_of_ints, &ids);
975
976 if (available)
977 {
978 list_available_thread_groups (ids, recurse);
979 }
980 else if (VEC_length (int, ids) == 1)
3ee1c036 981 {
2b03b41d 982 /* Local thread groups, single id. */
2f296114
VP
983 int id = *VEC_address (int, ids);
984 struct inferior *inf = find_inferior_id (id);
102040f0 985
2f296114 986 if (!inf)
7ea6d463 987 error (_("Non-existent thread group id '%d'"), id);
c1244769 988
aea5b279 989 print_thread_info (uiout, NULL, inf->pid);
3ee1c036
VP
990 }
991 else
992 {
dc146f7c 993 struct print_one_inferior_data data;
102040f0 994
dc146f7c
VP
995 data.recurse = recurse;
996 data.inferiors = ids;
997
998 /* Local thread groups. Either no explicit ids -- and we
999 print everything, or several explicit ids. In both cases,
1000 we print more than one group, and have to use 'groups'
1001 as the top-level element. */
3ee1c036 1002 make_cleanup_ui_out_list_begin_end (uiout, "groups");
dc146f7c
VP
1003 update_thread_list ();
1004 iterate_over_inferiors (print_one_inferior, &data);
3ee1c036 1005 }
dc146f7c 1006
3ee1c036 1007 do_cleanups (back_to);
8e8901c5
VP
1008}
1009
ce8f13f8 1010void
fb40c209
AC
1011mi_cmd_data_list_register_names (char *command, char **argv, int argc)
1012{
7ccb0be9 1013 struct gdbarch *gdbarch;
79a45e25 1014 struct ui_out *uiout = current_uiout;
fb40c209
AC
1015 int regnum, numregs;
1016 int i;
4060713b 1017 struct cleanup *cleanup;
fb40c209
AC
1018
1019 /* Note that the test for a valid register must include checking the
2b03b41d
SS
1020 gdbarch_register_name because gdbarch_num_regs may be allocated
1021 for the union of the register sets within a family of related
1022 processors. In this case, some entries of gdbarch_register_name
1023 will change depending upon the particular processor being
1024 debugged. */
fb40c209 1025
441b986a 1026 gdbarch = get_current_arch ();
7ccb0be9 1027 numregs = gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch);
fb40c209 1028
4060713b 1029 cleanup = make_cleanup_ui_out_list_begin_end (uiout, "register-names");
fb40c209 1030
41296c92 1031 if (argc == 0) /* No args, just do all the regs. */
fb40c209
AC
1032 {
1033 for (regnum = 0;
1034 regnum < numregs;
1035 regnum++)
1036 {
7ccb0be9
UW
1037 if (gdbarch_register_name (gdbarch, regnum) == NULL
1038 || *(gdbarch_register_name (gdbarch, regnum)) == '\0')
173d6894
AC
1039 ui_out_field_string (uiout, NULL, "");
1040 else
c9f4d572 1041 ui_out_field_string (uiout, NULL,
7ccb0be9 1042 gdbarch_register_name (gdbarch, regnum));
fb40c209
AC
1043 }
1044 }
1045
41296c92 1046 /* Else, list of register #s, just do listed regs. */
fb40c209
AC
1047 for (i = 0; i < argc; i++)
1048 {
1049 regnum = atoi (argv[i]);
173d6894 1050 if (regnum < 0 || regnum >= numregs)
7ea6d463 1051 error (_("bad register number"));
a13e061a 1052
7ccb0be9
UW
1053 if (gdbarch_register_name (gdbarch, regnum) == NULL
1054 || *(gdbarch_register_name (gdbarch, regnum)) == '\0')
173d6894
AC
1055 ui_out_field_string (uiout, NULL, "");
1056 else
c9f4d572 1057 ui_out_field_string (uiout, NULL,
7ccb0be9 1058 gdbarch_register_name (gdbarch, regnum));
fb40c209 1059 }
4060713b 1060 do_cleanups (cleanup);
fb40c209
AC
1061}
1062
ce8f13f8 1063void
fb40c209
AC
1064mi_cmd_data_list_changed_registers (char *command, char **argv, int argc)
1065{
6ed7ea50 1066 static struct regcache *this_regs = NULL;
79a45e25 1067 struct ui_out *uiout = current_uiout;
6ed7ea50 1068 struct regcache *prev_regs;
7ccb0be9 1069 struct gdbarch *gdbarch;
fb40c209
AC
1070 int regnum, numregs, changed;
1071 int i;
4060713b 1072 struct cleanup *cleanup;
fb40c209 1073
2b03b41d
SS
1074 /* The last time we visited this function, the current frame's
1075 register contents were saved in THIS_REGS. Move THIS_REGS over
1076 to PREV_REGS, and refresh THIS_REGS with the now-current register
1077 contents. */
6ed7ea50
UW
1078
1079 prev_regs = this_regs;
1080 this_regs = frame_save_as_regcache (get_selected_frame (NULL));
1081 cleanup = make_cleanup_regcache_xfree (prev_regs);
1082
fb40c209 1083 /* Note that the test for a valid register must include checking the
2b03b41d
SS
1084 gdbarch_register_name because gdbarch_num_regs may be allocated
1085 for the union of the register sets within a family of related
1086 processors. In this case, some entries of gdbarch_register_name
1087 will change depending upon the particular processor being
1088 debugged. */
fb40c209 1089
7ccb0be9
UW
1090 gdbarch = get_regcache_arch (this_regs);
1091 numregs = gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch);
fb40c209 1092
6ed7ea50 1093 make_cleanup_ui_out_list_begin_end (uiout, "changed-registers");
fb40c209 1094
2b03b41d 1095 if (argc == 0)
fb40c209 1096 {
2b03b41d 1097 /* No args, just do all the regs. */
fb40c209
AC
1098 for (regnum = 0;
1099 regnum < numregs;
1100 regnum++)
1101 {
7ccb0be9
UW
1102 if (gdbarch_register_name (gdbarch, regnum) == NULL
1103 || *(gdbarch_register_name (gdbarch, regnum)) == '\0')
fb40c209 1104 continue;
6ed7ea50 1105 changed = register_changed_p (regnum, prev_regs, this_regs);
fb40c209 1106 if (changed < 0)
7ea6d463
PM
1107 error (_("-data-list-changed-registers: "
1108 "Unable to read register contents."));
fb40c209
AC
1109 else if (changed)
1110 ui_out_field_int (uiout, NULL, regnum);
1111 }
1112 }
1113
41296c92 1114 /* Else, list of register #s, just do listed regs. */
fb40c209
AC
1115 for (i = 0; i < argc; i++)
1116 {
1117 regnum = atoi (argv[i]);
1118
1119 if (regnum >= 0
1120 && regnum < numregs
7ccb0be9
UW
1121 && gdbarch_register_name (gdbarch, regnum) != NULL
1122 && *gdbarch_register_name (gdbarch, regnum) != '\000')
fb40c209 1123 {
6ed7ea50 1124 changed = register_changed_p (regnum, prev_regs, this_regs);
fb40c209 1125 if (changed < 0)
7ea6d463
PM
1126 error (_("-data-list-changed-registers: "
1127 "Unable to read register contents."));
fb40c209
AC
1128 else if (changed)
1129 ui_out_field_int (uiout, NULL, regnum);
1130 }
1131 else
7ea6d463 1132 error (_("bad register number"));
fb40c209 1133 }
4060713b 1134 do_cleanups (cleanup);
fb40c209
AC
1135}
1136
1137static int
6ed7ea50
UW
1138register_changed_p (int regnum, struct regcache *prev_regs,
1139 struct regcache *this_regs)
fb40c209 1140{
6ed7ea50
UW
1141 struct gdbarch *gdbarch = get_regcache_arch (this_regs);
1142 gdb_byte prev_buffer[MAX_REGISTER_SIZE];
1143 gdb_byte this_buffer[MAX_REGISTER_SIZE];
e69aa73e
PA
1144 enum register_status prev_status;
1145 enum register_status this_status;
fb40c209 1146
e69aa73e
PA
1147 /* First time through or after gdbarch change consider all registers
1148 as changed. */
1149 if (!prev_regs || get_regcache_arch (prev_regs) != gdbarch)
6ed7ea50 1150 return 1;
fb40c209 1151
6ed7ea50 1152 /* Get register contents and compare. */
e69aa73e
PA
1153 prev_status = regcache_cooked_read (prev_regs, regnum, prev_buffer);
1154 this_status = regcache_cooked_read (this_regs, regnum, this_buffer);
fb40c209 1155
e69aa73e
PA
1156 if (this_status != prev_status)
1157 return 1;
1158 else if (this_status == REG_VALID)
1159 return memcmp (prev_buffer, this_buffer,
1160 register_size (gdbarch, regnum)) != 0;
1161 else
1162 return 0;
fb40c209
AC
1163}
1164
41296c92 1165/* Return a list of register number and value pairs. The valid
fb40c209 1166 arguments expected are: a letter indicating the format in which to
2b03b41d
SS
1167 display the registers contents. This can be one of: x
1168 (hexadecimal), d (decimal), N (natural), t (binary), o (octal), r
1169 (raw). After the format argument there can be a sequence of
1170 numbers, indicating which registers to fetch the content of. If
1171 the format is the only argument, a list of all the registers with
1172 their values is returned. */
1173
ce8f13f8 1174void
fb40c209
AC
1175mi_cmd_data_list_register_values (char *command, char **argv, int argc)
1176{
79a45e25 1177 struct ui_out *uiout = current_uiout;
7ccb0be9
UW
1178 struct frame_info *frame;
1179 struct gdbarch *gdbarch;
a13e061a 1180 int regnum, numregs, format;
fb40c209 1181 int i;
1edebdbf 1182 struct cleanup *list_cleanup;
c898adb7
YQ
1183 int skip_unavailable = 0;
1184 int oind = 0;
1185 enum opt
1186 {
1187 SKIP_UNAVAILABLE,
1188 };
1189 static const struct mi_opt opts[] =
1190 {
1191 {"-skip-unavailable", SKIP_UNAVAILABLE, 0},
1192 { 0, 0, 0 }
1193 };
fb40c209
AC
1194
1195 /* Note that the test for a valid register must include checking the
2b03b41d
SS
1196 gdbarch_register_name because gdbarch_num_regs may be allocated
1197 for the union of the register sets within a family of related
1198 processors. In this case, some entries of gdbarch_register_name
1199 will change depending upon the particular processor being
1200 debugged. */
fb40c209 1201
c898adb7
YQ
1202 while (1)
1203 {
1204 char *oarg;
1205 int opt = mi_getopt ("-data-list-register-values", argc, argv,
1206 opts, &oind, &oarg);
1207
1208 if (opt < 0)
1209 break;
1210 switch ((enum opt) opt)
1211 {
1212 case SKIP_UNAVAILABLE:
1213 skip_unavailable = 1;
1214 break;
1215 }
1216 }
1217
1218 if (argc - oind < 1)
7ea6d463 1219 error (_("-data-list-register-values: Usage: "
c898adb7
YQ
1220 "-data-list-register-values [--skip-unavailable] <format>"
1221 " [<regnum1>...<regnumN>]"));
fb40c209 1222
c898adb7 1223 format = (int) argv[oind][0];
fb40c209 1224
7ccb0be9
UW
1225 frame = get_selected_frame (NULL);
1226 gdbarch = get_frame_arch (frame);
1227 numregs = gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch);
1228
4060713b 1229 list_cleanup = make_cleanup_ui_out_list_begin_end (uiout, "register-values");
fb40c209 1230
c898adb7 1231 if (argc - oind == 1)
fb40c209 1232 {
2b03b41d 1233 /* No args, beside the format: do all the regs. */
fb40c209
AC
1234 for (regnum = 0;
1235 regnum < numregs;
1236 regnum++)
1237 {
7ccb0be9
UW
1238 if (gdbarch_register_name (gdbarch, regnum) == NULL
1239 || *(gdbarch_register_name (gdbarch, regnum)) == '\0')
fb40c209 1240 continue;
1edebdbf 1241
c898adb7 1242 output_register (frame, regnum, format, skip_unavailable);
fb40c209
AC
1243 }
1244 }
1245
41296c92 1246 /* Else, list of register #s, just do listed regs. */
c898adb7 1247 for (i = 1 + oind; i < argc; i++)
fb40c209
AC
1248 {
1249 regnum = atoi (argv[i]);
1250
1251 if (regnum >= 0
1252 && regnum < numregs
7ccb0be9
UW
1253 && gdbarch_register_name (gdbarch, regnum) != NULL
1254 && *gdbarch_register_name (gdbarch, regnum) != '\000')
c898adb7 1255 output_register (frame, regnum, format, skip_unavailable);
fb40c209 1256 else
7ea6d463 1257 error (_("bad register number"));
fb40c209 1258 }
4060713b 1259 do_cleanups (list_cleanup);
fb40c209
AC
1260}
1261
c898adb7
YQ
1262/* Output one register REGNUM's contents in the desired FORMAT. If
1263 SKIP_UNAVAILABLE is true, skip the register if it is
1264 unavailable. */
2b03b41d 1265
a13e061a 1266static void
c898adb7
YQ
1267output_register (struct frame_info *frame, int regnum, int format,
1268 int skip_unavailable)
fb40c209 1269{
79a45e25 1270 struct ui_out *uiout = current_uiout;
901461f8 1271 struct value *val = value_of_register (regnum, frame);
1edebdbf 1272 struct cleanup *tuple_cleanup;
fdc8aae8
AB
1273 struct value_print_options opts;
1274 struct ui_file *stb;
1edebdbf 1275
c898adb7
YQ
1276 if (skip_unavailable && !value_entirely_available (val))
1277 return;
1278
1edebdbf
YQ
1279 tuple_cleanup = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
1280 ui_out_field_int (uiout, "number", regnum);
fb40c209 1281
fb40c209
AC
1282 if (format == 'N')
1283 format = 0;
1284
fb40c209 1285 if (format == 'r')
fdc8aae8
AB
1286 format = 'z';
1287
1288 stb = mem_fileopen ();
1289 make_cleanup_ui_file_delete (stb);
1290
1291 get_formatted_print_options (&opts, format);
1292 opts.deref_ref = 1;
1293 val_print (value_type (val),
1294 value_contents_for_printing (val),
1295 value_embedded_offset (val), 0,
1296 stb, 0, val, &opts, current_language);
1297 ui_out_field_stream (uiout, "value", stb);
1edebdbf
YQ
1298
1299 do_cleanups (tuple_cleanup);
fb40c209
AC
1300}
1301
24e8cecf 1302/* Write given values into registers. The registers and values are
c1244769 1303 given as pairs. The corresponding MI command is
9a2b4c1b
MS
1304 -data-write-register-values <format>
1305 [<regnum1> <value1>...<regnumN> <valueN>] */
ce8f13f8 1306void
24e8cecf
EZ
1307mi_cmd_data_write_register_values (char *command, char **argv, int argc)
1308{
7ccb0be9
UW
1309 struct regcache *regcache;
1310 struct gdbarch *gdbarch;
9f3a1602 1311 int numregs, i;
24e8cecf
EZ
1312
1313 /* Note that the test for a valid register must include checking the
2b03b41d
SS
1314 gdbarch_register_name because gdbarch_num_regs may be allocated
1315 for the union of the register sets within a family of related
1316 processors. In this case, some entries of gdbarch_register_name
1317 will change depending upon the particular processor being
1318 debugged. */
24e8cecf 1319
7ccb0be9
UW
1320 regcache = get_current_regcache ();
1321 gdbarch = get_regcache_arch (regcache);
1322 numregs = gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch);
24e8cecf
EZ
1323
1324 if (argc == 0)
7ea6d463
PM
1325 error (_("-data-write-register-values: Usage: -data-write-register-"
1326 "values <format> [<regnum1> <value1>...<regnumN> <valueN>]"));
24e8cecf 1327
24e8cecf 1328 if (!target_has_registers)
7ea6d463 1329 error (_("-data-write-register-values: No registers."));
24e8cecf
EZ
1330
1331 if (!(argc - 1))
7ea6d463 1332 error (_("-data-write-register-values: No regs and values specified."));
24e8cecf
EZ
1333
1334 if ((argc - 1) % 2)
7ea6d463
PM
1335 error (_("-data-write-register-values: "
1336 "Regs and vals are not in pairs."));
24e8cecf
EZ
1337
1338 for (i = 1; i < argc; i = i + 2)
1339 {
9f3a1602 1340 int regnum = atoi (argv[i]);
24e8cecf 1341
9f3a1602 1342 if (regnum >= 0 && regnum < numregs
7ccb0be9
UW
1343 && gdbarch_register_name (gdbarch, regnum)
1344 && *gdbarch_register_name (gdbarch, regnum))
24e8cecf 1345 {
9f3a1602 1346 LONGEST value;
d8bf3afa 1347
9f3a1602 1348 /* Get the value as a number. */
24e8cecf 1349 value = parse_and_eval_address (argv[i + 1]);
9f3a1602 1350
41296c92 1351 /* Write it down. */
7ccb0be9 1352 regcache_cooked_write_signed (regcache, regnum, value);
24e8cecf
EZ
1353 }
1354 else
7ea6d463 1355 error (_("bad register number"));
24e8cecf 1356 }
24e8cecf
EZ
1357}
1358
41296c92 1359/* Evaluate the value of the argument. The argument is an
fb40c209 1360 expression. If the expression contains spaces it needs to be
41296c92 1361 included in double quotes. */
2b03b41d 1362
ce8f13f8 1363void
fb40c209
AC
1364mi_cmd_data_evaluate_expression (char *command, char **argv, int argc)
1365{
1366 struct expression *expr;
f99d8bf4 1367 struct cleanup *old_chain;
96052a95 1368 struct value *val;
f99d8bf4 1369 struct ui_file *stb;
79a45b7d 1370 struct value_print_options opts;
79a45e25 1371 struct ui_out *uiout = current_uiout;
fb40c209 1372
f99d8bf4
PA
1373 stb = mem_fileopen ();
1374 old_chain = make_cleanup_ui_file_delete (stb);
fb40c209
AC
1375
1376 if (argc != 1)
f99d8bf4
PA
1377 error (_("-data-evaluate-expression: "
1378 "Usage: -data-evaluate-expression expression"));
fb40c209
AC
1379
1380 expr = parse_expression (argv[0]);
1381
f99d8bf4 1382 make_cleanup (free_current_contents, &expr);
fb40c209
AC
1383
1384 val = evaluate_expression (expr);
1385
41296c92 1386 /* Print the result of the expression evaluation. */
79a45b7d
TT
1387 get_user_print_options (&opts);
1388 opts.deref_ref = 0;
f99d8bf4 1389 common_val_print (val, stb, 0, &opts, current_language);
fb40c209
AC
1390
1391 ui_out_field_stream (uiout, "value", stb);
fb40c209
AC
1392
1393 do_cleanups (old_chain);
fb40c209
AC
1394}
1395
2b03b41d 1396/* This is the -data-read-memory command.
fb40c209
AC
1397
1398 ADDR: start address of data to be dumped.
c1244769 1399 WORD-FORMAT: a char indicating format for the ``word''. See
fb40c209 1400 the ``x'' command.
41296c92 1401 WORD-SIZE: size of each ``word''; 1,2,4, or 8 bytes.
fb40c209
AC
1402 NR_ROW: Number of rows.
1403 NR_COL: The number of colums (words per row).
1404 ASCHAR: (OPTIONAL) Append an ascii character dump to each row. Use
1405 ASCHAR for unprintable characters.
1406
1407 Reads SIZE*NR_ROW*NR_COL bytes starting at ADDR from memory and
1408 displayes them. Returns:
1409
1410 {addr="...",rowN={wordN="..." ,... [,ascii="..."]}, ...}
1411
c1244769 1412 Returns:
2b03b41d 1413 The number of bytes read is SIZE*ROW*COL. */
fb40c209 1414
ce8f13f8 1415void
fb40c209
AC
1416mi_cmd_data_read_memory (char *command, char **argv, int argc)
1417{
e17c207e 1418 struct gdbarch *gdbarch = get_current_arch ();
79a45e25 1419 struct ui_out *uiout = current_uiout;
fb40c209
AC
1420 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL);
1421 CORE_ADDR addr;
2b03b41d 1422 long total_bytes, nr_cols, nr_rows;
fb40c209
AC
1423 char word_format;
1424 struct type *word_type;
1425 long word_size;
1426 char word_asize;
1427 char aschar;
508416a1 1428 gdb_byte *mbuf;
fb40c209
AC
1429 int nr_bytes;
1430 long offset = 0;
56934ab1
AS
1431 int oind = 0;
1432 char *oarg;
fb40c209 1433 enum opt
fb40c209 1434 {
2b03b41d 1435 OFFSET_OPT
fb40c209 1436 };
2b03b41d
SS
1437 static const struct mi_opt opts[] =
1438 {
1439 {"o", OFFSET_OPT, 1},
1440 { 0, 0, 0 }
1441 };
fb40c209
AC
1442
1443 while (1)
1444 {
1b05df00 1445 int opt = mi_getopt ("-data-read-memory", argc, argv, opts,
56934ab1 1446 &oind, &oarg);
102040f0 1447
fb40c209
AC
1448 if (opt < 0)
1449 break;
1450 switch ((enum opt) opt)
1451 {
1452 case OFFSET_OPT:
56934ab1 1453 offset = atol (oarg);
fb40c209
AC
1454 break;
1455 }
1456 }
56934ab1
AS
1457 argv += oind;
1458 argc -= oind;
fb40c209
AC
1459
1460 if (argc < 5 || argc > 6)
7ea6d463
PM
1461 error (_("-data-read-memory: Usage: "
1462 "ADDR WORD-FORMAT WORD-SIZE NR-ROWS NR-COLS [ASCHAR]."));
fb40c209
AC
1463
1464 /* Extract all the arguments. */
1465
41296c92 1466 /* Start address of the memory dump. */
fb40c209 1467 addr = parse_and_eval_address (argv[0]) + offset;
41296c92 1468 /* The format character to use when displaying a memory word. See
2b03b41d 1469 the ``x'' command. */
fb40c209 1470 word_format = argv[1][0];
41296c92 1471 /* The size of the memory word. */
fb40c209
AC
1472 word_size = atol (argv[2]);
1473 switch (word_size)
1474 {
1475 case 1:
df4df182 1476 word_type = builtin_type (gdbarch)->builtin_int8;
fb40c209
AC
1477 word_asize = 'b';
1478 break;
1479 case 2:
df4df182 1480 word_type = builtin_type (gdbarch)->builtin_int16;
fb40c209
AC
1481 word_asize = 'h';
1482 break;
1483 case 4:
df4df182 1484 word_type = builtin_type (gdbarch)->builtin_int32;
fb40c209
AC
1485 word_asize = 'w';
1486 break;
1487 case 8:
df4df182 1488 word_type = builtin_type (gdbarch)->builtin_int64;
fb40c209
AC
1489 word_asize = 'g';
1490 break;
1491 default:
df4df182 1492 word_type = builtin_type (gdbarch)->builtin_int8;
fb40c209
AC
1493 word_asize = 'b';
1494 }
41296c92 1495 /* The number of rows. */
fb40c209
AC
1496 nr_rows = atol (argv[3]);
1497 if (nr_rows <= 0)
7ea6d463 1498 error (_("-data-read-memory: invalid number of rows."));
a13e061a 1499
41296c92 1500 /* Number of bytes per row. */
fb40c209
AC
1501 nr_cols = atol (argv[4]);
1502 if (nr_cols <= 0)
7ea6d463 1503 error (_("-data-read-memory: invalid number of columns."));
a13e061a 1504
41296c92 1505 /* The un-printable character when printing ascii. */
fb40c209
AC
1506 if (argc == 6)
1507 aschar = *argv[5];
1508 else
1509 aschar = 0;
1510
41296c92 1511 /* Create a buffer and read it in. */
fb40c209 1512 total_bytes = word_size * nr_rows * nr_cols;
224c3ddb 1513 mbuf = XCNEWVEC (gdb_byte, total_bytes);
b8c9b27d 1514 make_cleanup (xfree, mbuf);
cf7a04e8 1515
a4261689
PA
1516 /* Dispatch memory reads to the topmost target, not the flattened
1517 current_target. */
8dedea02
VP
1518 nr_bytes = target_read (current_target.beneath,
1519 TARGET_OBJECT_MEMORY, NULL, mbuf,
1520 addr, total_bytes);
cf7a04e8 1521 if (nr_bytes <= 0)
7ea6d463 1522 error (_("Unable to read memory."));
fb40c209 1523
41296c92 1524 /* Output the header information. */
5af949e3 1525 ui_out_field_core_addr (uiout, "addr", gdbarch, addr);
fb40c209
AC
1526 ui_out_field_int (uiout, "nr-bytes", nr_bytes);
1527 ui_out_field_int (uiout, "total-bytes", total_bytes);
5af949e3
UW
1528 ui_out_field_core_addr (uiout, "next-row",
1529 gdbarch, addr + word_size * nr_cols);
1530 ui_out_field_core_addr (uiout, "prev-row",
1531 gdbarch, addr - word_size * nr_cols);
1532 ui_out_field_core_addr (uiout, "next-page", gdbarch, addr + total_bytes);
1533 ui_out_field_core_addr (uiout, "prev-page", gdbarch, addr - total_bytes);
fb40c209 1534
41296c92 1535 /* Build the result as a two dimentional table. */
fb40c209 1536 {
f99d8bf4
PA
1537 struct ui_file *stream;
1538 struct cleanup *cleanup_stream;
fb40c209
AC
1539 int row;
1540 int row_byte;
102040f0 1541
f99d8bf4
PA
1542 stream = mem_fileopen ();
1543 cleanup_stream = make_cleanup_ui_file_delete (stream);
1544
1545 make_cleanup_ui_out_list_begin_end (uiout, "memory");
fb40c209
AC
1546 for (row = 0, row_byte = 0;
1547 row < nr_rows;
1548 row++, row_byte += nr_cols * word_size)
1549 {
1550 int col;
1551 int col_byte;
6ad4a2cf
JJ
1552 struct cleanup *cleanup_tuple;
1553 struct cleanup *cleanup_list_data;
79a45b7d
TT
1554 struct value_print_options opts;
1555
6ad4a2cf 1556 cleanup_tuple = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
5af949e3 1557 ui_out_field_core_addr (uiout, "addr", gdbarch, addr + row_byte);
9a2b4c1b
MS
1558 /* ui_out_field_core_addr_symbolic (uiout, "saddr", addr +
1559 row_byte); */
6ad4a2cf 1560 cleanup_list_data = make_cleanup_ui_out_list_begin_end (uiout, "data");
79a45b7d 1561 get_formatted_print_options (&opts, word_format);
fb40c209
AC
1562 for (col = 0, col_byte = row_byte;
1563 col < nr_cols;
1564 col++, col_byte += word_size)
1565 {
1566 if (col_byte + word_size > nr_bytes)
1567 {
1568 ui_out_field_string (uiout, NULL, "N/A");
1569 }
1570 else
1571 {
f99d8bf4 1572 ui_file_rewind (stream);
79a45b7d 1573 print_scalar_formatted (mbuf + col_byte, word_type, &opts,
f99d8bf4 1574 word_asize, stream);
fb40c209
AC
1575 ui_out_field_stream (uiout, NULL, stream);
1576 }
1577 }
6ad4a2cf 1578 do_cleanups (cleanup_list_data);
fb40c209
AC
1579 if (aschar)
1580 {
1581 int byte;
102040f0 1582
f99d8bf4 1583 ui_file_rewind (stream);
9a2b4c1b
MS
1584 for (byte = row_byte;
1585 byte < row_byte + word_size * nr_cols; byte++)
fb40c209
AC
1586 {
1587 if (byte >= nr_bytes)
f99d8bf4 1588 fputc_unfiltered ('X', stream);
fb40c209 1589 else if (mbuf[byte] < 32 || mbuf[byte] > 126)
f99d8bf4 1590 fputc_unfiltered (aschar, stream);
fb40c209 1591 else
f99d8bf4 1592 fputc_unfiltered (mbuf[byte], stream);
fb40c209
AC
1593 }
1594 ui_out_field_stream (uiout, "ascii", stream);
1595 }
6ad4a2cf 1596 do_cleanups (cleanup_tuple);
fb40c209 1597 }
f99d8bf4 1598 do_cleanups (cleanup_stream);
fb40c209
AC
1599 }
1600 do_cleanups (cleanups);
fb40c209
AC
1601}
1602
8dedea02
VP
1603void
1604mi_cmd_data_read_memory_bytes (char *command, char **argv, int argc)
1605{
1606 struct gdbarch *gdbarch = get_current_arch ();
79a45e25 1607 struct ui_out *uiout = current_uiout;
8dedea02
VP
1608 struct cleanup *cleanups;
1609 CORE_ADDR addr;
1610 LONGEST length;
1611 memory_read_result_s *read_result;
1612 int ix;
1613 VEC(memory_read_result_s) *result;
1614 long offset = 0;
cfc32360 1615 int unit_size = gdbarch_addressable_memory_unit_size (gdbarch);
56934ab1
AS
1616 int oind = 0;
1617 char *oarg;
8dedea02 1618 enum opt
8dedea02 1619 {
2b03b41d 1620 OFFSET_OPT
8dedea02 1621 };
2b03b41d
SS
1622 static const struct mi_opt opts[] =
1623 {
1624 {"o", OFFSET_OPT, 1},
1625 { 0, 0, 0 }
1626 };
8dedea02
VP
1627
1628 while (1)
1629 {
1b05df00 1630 int opt = mi_getopt ("-data-read-memory-bytes", argc, argv, opts,
56934ab1 1631 &oind, &oarg);
8dedea02
VP
1632 if (opt < 0)
1633 break;
1634 switch ((enum opt) opt)
1635 {
1636 case OFFSET_OPT:
56934ab1 1637 offset = atol (oarg);
8dedea02
VP
1638 break;
1639 }
1640 }
56934ab1
AS
1641 argv += oind;
1642 argc -= oind;
8dedea02
VP
1643
1644 if (argc != 2)
7ea6d463 1645 error (_("Usage: [ -o OFFSET ] ADDR LENGTH."));
8dedea02
VP
1646
1647 addr = parse_and_eval_address (argv[0]) + offset;
1648 length = atol (argv[1]);
1649
1650 result = read_memory_robust (current_target.beneath, addr, length);
1651
9d78f827 1652 cleanups = make_cleanup (free_memory_read_result_vector, &result);
8dedea02
VP
1653
1654 if (VEC_length (memory_read_result_s, result) == 0)
7ea6d463 1655 error (_("Unable to read memory."));
8dedea02
VP
1656
1657 make_cleanup_ui_out_list_begin_end (uiout, "memory");
1658 for (ix = 0;
1659 VEC_iterate (memory_read_result_s, result, ix, read_result);
1660 ++ix)
1661 {
1662 struct cleanup *t = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
1663 char *data, *p;
1664 int i;
224c3ddb 1665 int alloc_len;
8dedea02
VP
1666
1667 ui_out_field_core_addr (uiout, "begin", gdbarch, read_result->begin);
1668 ui_out_field_core_addr (uiout, "offset", gdbarch, read_result->begin
1669 - addr);
1670 ui_out_field_core_addr (uiout, "end", gdbarch, read_result->end);
1671
224c3ddb
SM
1672 alloc_len = (read_result->end - read_result->begin) * 2 * unit_size + 1;
1673 data = (char *) xmalloc (alloc_len);
8dedea02
VP
1674
1675 for (i = 0, p = data;
cfc32360 1676 i < ((read_result->end - read_result->begin) * unit_size);
8dedea02
VP
1677 ++i, p += 2)
1678 {
1679 sprintf (p, "%02x", read_result->data[i]);
1680 }
1681 ui_out_field_string (uiout, "contents", data);
1682 xfree (data);
1683 do_cleanups (t);
1684 }
1685 do_cleanups (cleanups);
1686}
1687
2b03b41d 1688/* Implementation of the -data-write_memory command.
fb40c209 1689
177b42fe 1690 COLUMN_OFFSET: optional argument. Must be preceded by '-o'. The
fb40c209
AC
1691 offset from the beginning of the memory grid row where the cell to
1692 be written is.
1693 ADDR: start address of the row in the memory grid where the memory
41296c92 1694 cell is, if OFFSET_COLUMN is specified. Otherwise, the address of
fb40c209 1695 the location to write to.
c1244769 1696 FORMAT: a char indicating format for the ``word''. See
fb40c209
AC
1697 the ``x'' command.
1698 WORD_SIZE: size of each ``word''; 1,2,4, or 8 bytes
1699 VALUE: value to be written into the memory address.
1700
1701 Writes VALUE into ADDR + (COLUMN_OFFSET * WORD_SIZE).
1702
41296c92 1703 Prints nothing. */
2b03b41d 1704
ce8f13f8 1705void
fb40c209
AC
1706mi_cmd_data_write_memory (char *command, char **argv, int argc)
1707{
e17a4113
UW
1708 struct gdbarch *gdbarch = get_current_arch ();
1709 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
fb40c209 1710 CORE_ADDR addr;
fb40c209
AC
1711 long word_size;
1712 /* FIXME: ezannoni 2000-02-17 LONGEST could possibly not be big
41296c92 1713 enough when using a compiler other than GCC. */
fb40c209 1714 LONGEST value;
7c543f7b 1715 gdb_byte *buffer;
d8bf3afa 1716 struct cleanup *old_chain;
fb40c209 1717 long offset = 0;
56934ab1
AS
1718 int oind = 0;
1719 char *oarg;
fb40c209 1720 enum opt
fb40c209 1721 {
2b03b41d 1722 OFFSET_OPT
fb40c209 1723 };
2b03b41d
SS
1724 static const struct mi_opt opts[] =
1725 {
1726 {"o", OFFSET_OPT, 1},
1727 { 0, 0, 0 }
1728 };
fb40c209
AC
1729
1730 while (1)
1731 {
1b05df00 1732 int opt = mi_getopt ("-data-write-memory", argc, argv, opts,
56934ab1 1733 &oind, &oarg);
102040f0 1734
fb40c209
AC
1735 if (opt < 0)
1736 break;
1737 switch ((enum opt) opt)
1738 {
1739 case OFFSET_OPT:
56934ab1 1740 offset = atol (oarg);
fb40c209
AC
1741 break;
1742 }
1743 }
56934ab1
AS
1744 argv += oind;
1745 argc -= oind;
fb40c209
AC
1746
1747 if (argc != 4)
7ea6d463
PM
1748 error (_("-data-write-memory: Usage: "
1749 "[-o COLUMN_OFFSET] ADDR FORMAT WORD-SIZE VALUE."));
fb40c209 1750
41296c92
NR
1751 /* Extract all the arguments. */
1752 /* Start address of the memory dump. */
fb40c209 1753 addr = parse_and_eval_address (argv[0]);
2b03b41d 1754 /* The size of the memory word. */
fb40c209
AC
1755 word_size = atol (argv[2]);
1756
41296c92 1757 /* Calculate the real address of the write destination. */
fb40c209
AC
1758 addr += (offset * word_size);
1759
41296c92 1760 /* Get the value as a number. */
fb40c209 1761 value = parse_and_eval_address (argv[3]);
41296c92 1762 /* Get the value into an array. */
7c543f7b 1763 buffer = (gdb_byte *) xmalloc (word_size);
d8bf3afa 1764 old_chain = make_cleanup (xfree, buffer);
e17a4113 1765 store_signed_integer (buffer, word_size, byte_order, value);
41296c92 1766 /* Write it down to memory. */
4c2786ba 1767 write_memory_with_notification (addr, buffer, word_size);
d8bf3afa
KB
1768 /* Free the buffer. */
1769 do_cleanups (old_chain);
fb40c209
AC
1770}
1771
2b03b41d 1772/* Implementation of the -data-write-memory-bytes command.
8dedea02
VP
1773
1774 ADDR: start address
62747a60
TT
1775 DATA: string of bytes to write at that address
1776 COUNT: number of bytes to be filled (decimal integer). */
2b03b41d 1777
8dedea02
VP
1778void
1779mi_cmd_data_write_memory_bytes (char *command, char **argv, int argc)
1780{
1781 CORE_ADDR addr;
1782 char *cdata;
1783 gdb_byte *data;
62747a60 1784 gdb_byte *databuf;
cfc32360
SM
1785 size_t len_hex, len_bytes, len_units, i, steps, remaining_units;
1786 long int count_units;
8dedea02 1787 struct cleanup *back_to;
cfc32360 1788 int unit_size;
8dedea02 1789
62747a60
TT
1790 if (argc != 2 && argc != 3)
1791 error (_("Usage: ADDR DATA [COUNT]."));
8dedea02
VP
1792
1793 addr = parse_and_eval_address (argv[0]);
1794 cdata = argv[1];
cfc32360
SM
1795 len_hex = strlen (cdata);
1796 unit_size = gdbarch_addressable_memory_unit_size (get_current_arch ());
1797
1798 if (len_hex % (unit_size * 2) != 0)
1799 error (_("Hex-encoded '%s' must represent an integral number of "
1800 "addressable memory units."),
1ae0c35e
YQ
1801 cdata);
1802
cfc32360
SM
1803 len_bytes = len_hex / 2;
1804 len_units = len_bytes / unit_size;
1805
62747a60 1806 if (argc == 3)
cfc32360 1807 count_units = strtoul (argv[2], NULL, 10);
62747a60 1808 else
cfc32360 1809 count_units = len_units;
8dedea02 1810
224c3ddb 1811 databuf = XNEWVEC (gdb_byte, len_bytes);
62747a60 1812 back_to = make_cleanup (xfree, databuf);
8dedea02 1813
cfc32360 1814 for (i = 0; i < len_bytes; ++i)
8dedea02
VP
1815 {
1816 int x;
62747a60
TT
1817 if (sscanf (cdata + i * 2, "%02x", &x) != 1)
1818 error (_("Invalid argument"));
1819 databuf[i] = (gdb_byte) x;
1820 }
1821
cfc32360 1822 if (len_units < count_units)
62747a60 1823 {
cfc32360 1824 /* Pattern is made of less units than count:
62747a60 1825 repeat pattern to fill memory. */
224c3ddb 1826 data = (gdb_byte *) xmalloc (count_units * unit_size);
62747a60 1827 make_cleanup (xfree, data);
c1244769 1828
cfc32360
SM
1829 /* Number of times the pattern is entirely repeated. */
1830 steps = count_units / len_units;
1831 /* Number of remaining addressable memory units. */
1832 remaining_units = count_units % len_units;
1833 for (i = 0; i < steps; i++)
1834 memcpy (data + i * len_bytes, databuf, len_bytes);
62747a60 1835
cfc32360
SM
1836 if (remaining_units > 0)
1837 memcpy (data + steps * len_bytes, databuf,
1838 remaining_units * unit_size);
62747a60 1839 }
c1244769 1840 else
62747a60 1841 {
c1244769 1842 /* Pattern is longer than or equal to count:
cfc32360 1843 just copy count addressable memory units. */
62747a60 1844 data = databuf;
8dedea02
VP
1845 }
1846
cfc32360 1847 write_memory_with_notification (addr, data, count_units);
8dedea02
VP
1848
1849 do_cleanups (back_to);
1850}
1851
ce8f13f8 1852void
d8c83789
NR
1853mi_cmd_enable_timings (char *command, char **argv, int argc)
1854{
1855 if (argc == 0)
1856 do_timings = 1;
1857 else if (argc == 1)
1858 {
1859 if (strcmp (argv[0], "yes") == 0)
1860 do_timings = 1;
1861 else if (strcmp (argv[0], "no") == 0)
1862 do_timings = 0;
1863 else
1864 goto usage_error;
1865 }
1866 else
1867 goto usage_error;
c1244769 1868
ce8f13f8 1869 return;
d8c83789
NR
1870
1871 usage_error:
7ea6d463 1872 error (_("-enable-timings: Usage: %s {yes|no}"), command);
d8c83789
NR
1873}
1874
ce8f13f8 1875void
084344da
VP
1876mi_cmd_list_features (char *command, char **argv, int argc)
1877{
1878 if (argc == 0)
1879 {
1880 struct cleanup *cleanup = NULL;
79a45e25 1881 struct ui_out *uiout = current_uiout;
084344da 1882
c1244769 1883 cleanup = make_cleanup_ui_out_list_begin_end (uiout, "features");
084344da 1884 ui_out_field_string (uiout, NULL, "frozen-varobjs");
8b4ed427 1885 ui_out_field_string (uiout, NULL, "pending-breakpoints");
8e8901c5 1886 ui_out_field_string (uiout, NULL, "thread-info");
8dedea02 1887 ui_out_field_string (uiout, NULL, "data-read-memory-bytes");
39c4d40a 1888 ui_out_field_string (uiout, NULL, "breakpoint-notifications");
75082e8c 1889 ui_out_field_string (uiout, NULL, "ada-task-info");
422ad5c2 1890 ui_out_field_string (uiout, NULL, "language-option");
6b7cbff1 1891 ui_out_field_string (uiout, NULL, "info-gdb-mi-command");
2ea126fa 1892 ui_out_field_string (uiout, NULL, "undefined-command-error-code");
72bfa06c 1893 ui_out_field_string (uiout, NULL, "exec-run-start-option");
c1244769 1894
6dddc817 1895 if (ext_lang_initialized_p (get_ext_lang_defn (EXT_LANG_PYTHON)))
0646da15 1896 ui_out_field_string (uiout, NULL, "python");
c1244769 1897
084344da 1898 do_cleanups (cleanup);
ce8f13f8 1899 return;
084344da
VP
1900 }
1901
7ea6d463 1902 error (_("-list-features should be passed no arguments"));
084344da 1903}
c6ebd6cf
VP
1904
1905void
1906mi_cmd_list_target_features (char *command, char **argv, int argc)
1907{
1908 if (argc == 0)
1909 {
1910 struct cleanup *cleanup = NULL;
79a45e25 1911 struct ui_out *uiout = current_uiout;
c6ebd6cf 1912
c1244769 1913 cleanup = make_cleanup_ui_out_list_begin_end (uiout, "features");
329ea579 1914 if (mi_async_p ())
c6ebd6cf 1915 ui_out_field_string (uiout, NULL, "async");
f75d858b
MK
1916 if (target_can_execute_reverse)
1917 ui_out_field_string (uiout, NULL, "reverse");
c6ebd6cf
VP
1918 do_cleanups (cleanup);
1919 return;
1920 }
1921
7ea6d463 1922 error (_("-list-target-features should be passed no arguments"));
c6ebd6cf
VP
1923}
1924
a79b8f6e
VP
1925void
1926mi_cmd_add_inferior (char *command, char **argv, int argc)
1927{
1928 struct inferior *inf;
1929
1930 if (argc != 0)
1931 error (_("-add-inferior should be passed no arguments"));
1932
1933 inf = add_inferior_with_spaces ();
1934
79a45e25 1935 ui_out_field_fmt (current_uiout, "inferior", "i%d", inf->num);
a79b8f6e
VP
1936}
1937
2b03b41d
SS
1938/* Callback used to find the first inferior other than the current
1939 one. */
c1244769 1940
57bf2d7e
MK
1941static int
1942get_other_inferior (struct inferior *inf, void *arg)
1943{
1944 if (inf == current_inferior ())
1945 return 0;
1946
1947 return 1;
1948}
1949
a79b8f6e
VP
1950void
1951mi_cmd_remove_inferior (char *command, char **argv, int argc)
1952{
1953 int id;
1954 struct inferior *inf;
1955
1956 if (argc != 1)
7ea6d463 1957 error (_("-remove-inferior should be passed a single argument"));
a79b8f6e 1958
e2b4a699 1959 if (sscanf (argv[0], "i%d", &id) != 1)
7ea6d463 1960 error (_("the thread group id is syntactically invalid"));
a79b8f6e
VP
1961
1962 inf = find_inferior_id (id);
1963 if (!inf)
7ea6d463 1964 error (_("the specified thread group does not exist"));
a79b8f6e 1965
8fa067af 1966 if (inf->pid != 0)
81ec3cce 1967 error (_("cannot remove an active inferior"));
8fa067af 1968
57bf2d7e
MK
1969 if (inf == current_inferior ())
1970 {
1971 struct thread_info *tp = 0;
c1244769 1972 struct inferior *new_inferior
57bf2d7e
MK
1973 = iterate_over_inferiors (get_other_inferior, NULL);
1974
1975 if (new_inferior == NULL)
1976 error (_("Cannot remove last inferior"));
1977
1978 set_current_inferior (new_inferior);
1979 if (new_inferior->pid != 0)
1980 tp = any_thread_of_process (new_inferior->pid);
1981 switch_to_thread (tp ? tp->ptid : null_ptid);
1982 set_current_program_space (new_inferior->pspace);
1983 }
1984
7a41607e 1985 delete_inferior (inf);
a79b8f6e
VP
1986}
1987
1988\f
1989
8d34ea23
KS
1990/* Execute a command within a safe environment.
1991 Return <0 for error; >=0 for ok.
1992
1993 args->action will tell mi_execute_command what action
42972f50 1994 to perfrom after the given command has executed (display/suppress
2b03b41d 1995 prompt, display error). */
fb40c209 1996
f30f06b8 1997static void
04bd08de 1998captured_mi_execute_command (struct ui_out *uiout, struct mi_parse *context)
fb40c209 1999{
9204d692 2000 struct mi_interp *mi = (struct mi_interp *) interp_data (command_interp ());
1f31650a 2001 struct cleanup *cleanup;
fb40c209 2002
4333ada3
VP
2003 if (do_timings)
2004 current_command_ts = context->cmd_start;
d8c83789 2005
1f31650a
VP
2006 current_token = xstrdup (context->token);
2007 cleanup = make_cleanup (free_current_contents, &current_token);
2008
a2840c35 2009 running_result_record_printed = 0;
f3b1572e 2010 mi_proceeded = 0;
fb40c209
AC
2011 switch (context->op)
2012 {
fb40c209 2013 case MI_COMMAND:
41296c92 2014 /* A MI command was read from the input stream. */
fb40c209
AC
2015 if (mi_debug_p)
2016 /* FIXME: gdb_???? */
9204d692
PA
2017 fprintf_unfiltered (mi->raw_stdout,
2018 " token=`%s' command=`%s' args=`%s'\n",
fb40c209 2019 context->token, context->command, context->args);
d8c83789 2020
ce8f13f8 2021 mi_cmd_execute (context);
8d34ea23 2022
a2840c35 2023 /* Print the result if there were no errors.
4389a95a 2024
a2840c35 2025 Remember that on the way out of executing a command, you have
2b03b41d
SS
2026 to directly use the mi_interp's uiout, since the command
2027 could have reset the interpreter, in which case the current
2028 uiout will most likely crash in the mi_out_* routines. */
ce8f13f8 2029 if (!running_result_record_printed)
a2840c35 2030 {
9204d692 2031 fputs_unfiltered (context->token, mi->raw_stdout);
ce8f13f8
VP
2032 /* There's no particularly good reason why target-connect results
2033 in not ^done. Should kill ^connected for MI3. */
2034 fputs_unfiltered (strcmp (context->command, "target-select") == 0
9204d692
PA
2035 ? "^connected" : "^done", mi->raw_stdout);
2036 mi_out_put (uiout, mi->raw_stdout);
a2840c35 2037 mi_out_rewind (uiout);
9204d692
PA
2038 mi_print_timing_maybe (mi->raw_stdout);
2039 fputs_unfiltered ("\n", mi->raw_stdout);
a2840c35
VP
2040 }
2041 else
2b03b41d
SS
2042 /* The command does not want anything to be printed. In that
2043 case, the command probably should not have written anything
2044 to uiout, but in case it has written something, discard it. */
a2840c35 2045 mi_out_rewind (uiout);
fb40c209
AC
2046 break;
2047
2048 case CLI_COMMAND:
78f5381d
AC
2049 {
2050 char *argv[2];
102040f0 2051
78f5381d
AC
2052 /* A CLI command was read from the input stream. */
2053 /* This "feature" will be removed as soon as we have a
2054 complete set of mi commands. */
2055 /* Echo the command on the console. */
2056 fprintf_unfiltered (gdb_stdlog, "%s\n", context->command);
2057 /* Call the "console" interpreter. */
26cde2cc 2058 argv[0] = INTERP_CONSOLE;
78f5381d 2059 argv[1] = context->command;
ce8f13f8 2060 mi_cmd_interpreter_exec ("-interpreter-exec", argv, 2);
78f5381d 2061
eec01795 2062 /* If we changed interpreters, DON'T print out anything. */
78f5381d
AC
2063 if (current_interp_named_p (INTERP_MI)
2064 || current_interp_named_p (INTERP_MI1)
2065 || current_interp_named_p (INTERP_MI2)
2066 || current_interp_named_p (INTERP_MI3))
2067 {
ce8f13f8 2068 if (!running_result_record_printed)
eec01795 2069 {
9204d692
PA
2070 fputs_unfiltered (context->token, mi->raw_stdout);
2071 fputs_unfiltered ("^done", mi->raw_stdout);
2072 mi_out_put (uiout, mi->raw_stdout);
eec01795 2073 mi_out_rewind (uiout);
9204d692
PA
2074 mi_print_timing_maybe (mi->raw_stdout);
2075 fputs_unfiltered ("\n", mi->raw_stdout);
eec01795 2076 }
eec01795
DJ
2077 else
2078 mi_out_rewind (uiout);
78f5381d
AC
2079 }
2080 break;
2081 }
fb40c209 2082 }
8d34ea23 2083
1f31650a 2084 do_cleanups (cleanup);
fb40c209
AC
2085}
2086
305aeedc
TT
2087/* Print a gdb exception to the MI output stream. */
2088
2089static void
2090mi_print_exception (const char *token, struct gdb_exception exception)
2091{
9204d692
PA
2092 struct mi_interp *mi
2093 = (struct mi_interp *) interp_data (current_interpreter ());
2094
2095 fputs_unfiltered (token, mi->raw_stdout);
2096 fputs_unfiltered ("^error,msg=\"", mi->raw_stdout);
305aeedc 2097 if (exception.message == NULL)
9204d692 2098 fputs_unfiltered ("unknown error", mi->raw_stdout);
305aeedc 2099 else
9204d692
PA
2100 fputstr_unfiltered (exception.message, '"', mi->raw_stdout);
2101 fputs_unfiltered ("\"", mi->raw_stdout);
2ea126fa
JB
2102
2103 switch (exception.error)
2104 {
2105 case UNDEFINED_COMMAND_ERROR:
9204d692 2106 fputs_unfiltered (",code=\"undefined-command\"", mi->raw_stdout);
2ea126fa
JB
2107 break;
2108 }
2109
9204d692 2110 fputs_unfiltered ("\n", mi->raw_stdout);
305aeedc 2111}
fb40c209 2112
4034d0ff
AT
2113/* Determine whether the parsed command already notifies the
2114 user_selected_context_changed observer. */
2115
2116static int
2117command_notifies_uscc_observer (struct mi_parse *command)
2118{
2119 if (command->op == CLI_COMMAND)
2120 {
2121 /* CLI commands "thread" and "inferior" already send it. */
2122 return (strncmp (command->command, "thread ", 7) == 0
2123 || strncmp (command->command, "inferior ", 9) == 0);
2124 }
2125 else /* MI_COMMAND */
2126 {
2127 if (strcmp (command->command, "interpreter-exec") == 0
2128 && command->argc > 1)
2129 {
2130 /* "thread" and "inferior" again, but through -interpreter-exec. */
2131 return (strncmp (command->argv[1], "thread ", 7) == 0
2132 || strncmp (command->argv[1], "inferior ", 9) == 0);
2133 }
2134
2135 else
2136 /* -thread-select already sends it. */
2137 return strcmp (command->command, "thread-select") == 0;
2138 }
2139}
2140
fb40c209 2141void
ee047554 2142mi_execute_command (const char *cmd, int from_tty)
fb40c209 2143{
305aeedc
TT
2144 char *token;
2145 struct mi_parse *command = NULL;
fb40c209 2146
41296c92
NR
2147 /* This is to handle EOF (^D). We just quit gdb. */
2148 /* FIXME: we should call some API function here. */
fb40c209
AC
2149 if (cmd == 0)
2150 quit_force (NULL, from_tty);
2151
11334b82
VP
2152 target_log_command (cmd);
2153
492d29ea 2154 TRY
305aeedc
TT
2155 {
2156 command = mi_parse (cmd, &token);
2157 }
492d29ea 2158 CATCH (exception, RETURN_MASK_ALL)
305aeedc
TT
2159 {
2160 mi_print_exception (token, exception);
2161 xfree (token);
2162 }
492d29ea
PA
2163 END_CATCH
2164
2165 if (command != NULL)
fb40c209 2166 {
66bb093b 2167 ptid_t previous_ptid = inferior_ptid;
4034d0ff 2168 struct cleanup *cleanup = make_cleanup (null_cleanup, NULL);
d8c83789 2169
305aeedc
TT
2170 command->token = token;
2171
4034d0ff
AT
2172 if (command->cmd != NULL && command->cmd->suppress_notification != NULL)
2173 {
2174 make_cleanup_restore_integer (command->cmd->suppress_notification);
2175 *command->cmd->suppress_notification = 1;
2176 }
2177
d8c83789
NR
2178 if (do_timings)
2179 {
8d749320 2180 command->cmd_start = XNEW (struct mi_timestamp);
d8c83789
NR
2181 timestamp (command->cmd_start);
2182 }
2183
492d29ea 2184 TRY
04bd08de 2185 {
79a45e25 2186 captured_mi_execute_command (current_uiout, command);
04bd08de 2187 }
492d29ea 2188 CATCH (result, RETURN_MASK_ALL)
fb40c209 2189 {
80614914
PA
2190 /* Like in start_event_loop, enable input and force display
2191 of the prompt. Otherwise, any command that calls
2192 async_disable_stdin, and then throws, will leave input
2193 disabled. */
2194 async_enable_stdin ();
2195 current_ui->prompt_state = PROMPT_NEEDED;
2196
fb40c209 2197 /* The command execution failed and error() was called
589e074d 2198 somewhere. */
305aeedc 2199 mi_print_exception (command->token, result);
79a45e25 2200 mi_out_rewind (current_uiout);
fb40c209 2201 }
492d29ea 2202 END_CATCH
a13e061a 2203
5d4e2b76
VP
2204 bpstat_do_actions ();
2205
66bb093b 2206 if (/* The notifications are only output when the top-level
c1244769 2207 interpreter (specified on the command line) is MI. */
66bb093b 2208 ui_out_is_mi_like_p (interp_ui_out (top_level_interpreter ()))
c1244769 2209 /* Don't try report anything if there are no threads --
66bb093b
VP
2210 the program is dead. */
2211 && thread_count () != 0
4034d0ff
AT
2212 /* If the command already reports the thread change, no need to do it
2213 again. */
2214 && !command_notifies_uscc_observer (command))
66bb093b 2215 {
19ba03f4
SM
2216 struct mi_interp *mi
2217 = (struct mi_interp *) top_level_interpreter_data ();
d729566a 2218 int report_change = 0;
66bb093b
VP
2219
2220 if (command->thread == -1)
2221 {
d729566a
PA
2222 report_change = (!ptid_equal (previous_ptid, null_ptid)
2223 && !ptid_equal (inferior_ptid, previous_ptid)
2224 && !ptid_equal (inferior_ptid, null_ptid));
66bb093b 2225 }
d729566a 2226 else if (!ptid_equal (inferior_ptid, null_ptid))
66bb093b 2227 {
d729566a 2228 struct thread_info *ti = inferior_thread ();
102040f0 2229
5d5658a1 2230 report_change = (ti->global_num != command->thread);
66bb093b
VP
2231 }
2232
2233 if (report_change)
c1244769 2234 {
4034d0ff
AT
2235 observer_notify_user_selected_context_changed
2236 (USER_SELECTED_THREAD | USER_SELECTED_FRAME);
66bb093b
VP
2237 }
2238 }
2239
fb40c209 2240 mi_parse_free (command);
4034d0ff
AT
2241
2242 do_cleanups (cleanup);
fb40c209 2243 }
fb40c209
AC
2244}
2245
ce8f13f8 2246static void
fb40c209
AC
2247mi_cmd_execute (struct mi_parse *parse)
2248{
f107f563 2249 struct cleanup *cleanup;
e23110bb 2250
028d0ed5 2251 cleanup = prepare_execute_command ();
1b98914a 2252
a79b8f6e
VP
2253 if (parse->all && parse->thread_group != -1)
2254 error (_("Cannot specify --thread-group together with --all"));
2255
2256 if (parse->all && parse->thread != -1)
2257 error (_("Cannot specify --thread together with --all"));
2258
2259 if (parse->thread_group != -1 && parse->thread != -1)
2260 error (_("Cannot specify --thread together with --thread-group"));
2261
1e92afda
VP
2262 if (parse->frame != -1 && parse->thread == -1)
2263 error (_("Cannot specify --frame without --thread"));
dcf4fbde 2264
a79b8f6e
VP
2265 if (parse->thread_group != -1)
2266 {
2267 struct inferior *inf = find_inferior_id (parse->thread_group);
2268 struct thread_info *tp = 0;
2269
2270 if (!inf)
46ef47e5 2271 error (_("Invalid thread group for the --thread-group option"));
a79b8f6e
VP
2272
2273 set_current_inferior (inf);
2274 /* This behaviour means that if --thread-group option identifies
2b03b41d
SS
2275 an inferior with multiple threads, then a random one will be
2276 picked. This is not a problem -- frontend should always
2277 provide --thread if it wishes to operate on a specific
2278 thread. */
a79b8f6e 2279 if (inf->pid != 0)
4734f50e 2280 tp = any_live_thread_of_process (inf->pid);
a79b8f6e
VP
2281 switch_to_thread (tp ? tp->ptid : null_ptid);
2282 set_current_program_space (inf->pspace);
2283 }
2284
1e92afda
VP
2285 if (parse->thread != -1)
2286 {
5d5658a1 2287 struct thread_info *tp = find_thread_global_id (parse->thread);
102040f0 2288
1e92afda
VP
2289 if (!tp)
2290 error (_("Invalid thread id: %d"), parse->thread);
dcf4fbde
PA
2291
2292 if (is_exited (tp->ptid))
2293 error (_("Thread id: %d has terminated"), parse->thread);
2294
2295 switch_to_thread (tp->ptid);
1e92afda 2296 }
dcf4fbde 2297
1e92afda
VP
2298 if (parse->frame != -1)
2299 {
2300 struct frame_info *fid;
2301 int frame = parse->frame;
102040f0 2302
1e92afda
VP
2303 fid = find_relative_frame (get_current_frame (), &frame);
2304 if (frame == 0)
2305 /* find_relative_frame was successful */
2306 select_frame (fid);
2307 else
ea069267 2308 error (_("Invalid frame id: %d"), frame);
1e92afda 2309 }
dcf4fbde 2310
403cb6b1
JB
2311 if (parse->language != language_unknown)
2312 {
2313 make_cleanup_restore_current_language ();
2314 set_language (parse->language);
2315 }
2316
a79b8f6e
VP
2317 current_context = parse;
2318
9e22b03a 2319 if (parse->cmd->argv_func != NULL)
8d3788bd
VP
2320 {
2321 parse->cmd->argv_func (parse->command, parse->argv, parse->argc);
2322 }
b2af646b 2323 else if (parse->cmd->cli.cmd != 0)
fb40c209
AC
2324 {
2325 /* FIXME: DELETE THIS. */
41296c92
NR
2326 /* The operation is still implemented by a cli command. */
2327 /* Must be a synchronous one. */
b2af646b
AC
2328 mi_execute_cli_command (parse->cmd->cli.cmd, parse->cmd->cli.args_p,
2329 parse->args);
fb40c209
AC
2330 }
2331 else
2332 {
41296c92 2333 /* FIXME: DELETE THIS. */
a13e061a
PA
2334 struct ui_file *stb;
2335
2336 stb = mem_fileopen ();
2337
2338 fputs_unfiltered ("Undefined mi command: ", stb);
2339 fputstr_unfiltered (parse->command, '"', stb);
2340 fputs_unfiltered (" (missing implementation)", stb);
2341
2342 make_cleanup_ui_file_delete (stb);
2343 error_stream (stb);
fb40c209 2344 }
1b98914a 2345 do_cleanups (cleanup);
fb40c209
AC
2346}
2347
fb40c209 2348/* FIXME: This is just a hack so we can get some extra commands going.
41296c92
NR
2349 We don't want to channel things through the CLI, but call libgdb directly.
2350 Use only for synchronous commands. */
fb40c209
AC
2351
2352void
b2af646b 2353mi_execute_cli_command (const char *cmd, int args_p, const char *args)
fb40c209 2354{
b2af646b 2355 if (cmd != 0)
fb40c209
AC
2356 {
2357 struct cleanup *old_cleanups;
2358 char *run;
102040f0 2359
b2af646b 2360 if (args_p)
c6902d46 2361 run = xstrprintf ("%s %s", cmd, args);
b2af646b
AC
2362 else
2363 run = xstrdup (cmd);
fb40c209
AC
2364 if (mi_debug_p)
2365 /* FIXME: gdb_???? */
2366 fprintf_unfiltered (gdb_stdout, "cli=%s run=%s\n",
b2af646b 2367 cmd, run);
b8c9b27d 2368 old_cleanups = make_cleanup (xfree, run);
2b03b41d 2369 execute_command (run, 0 /* from_tty */ );
fb40c209
AC
2370 do_cleanups (old_cleanups);
2371 return;
2372 }
2373}
2374
ce8f13f8 2375void
9e22b03a 2376mi_execute_async_cli_command (char *cli_command, char **argv, int argc)
fb40c209
AC
2377{
2378 struct cleanup *old_cleanups;
2379 char *run;
fb40c209 2380
329ea579 2381 if (mi_async_p ())
9e22b03a 2382 run = xstrprintf ("%s %s&", cli_command, argc ? *argv : "");
fb40c209 2383 else
9e22b03a 2384 run = xstrprintf ("%s %s", cli_command, argc ? *argv : "");
c1244769 2385 old_cleanups = make_cleanup (xfree, run);
fb40c209 2386
2b03b41d 2387 execute_command (run, 0 /* from_tty */ );
fb40c209 2388
09cee04b
PA
2389 /* Do this before doing any printing. It would appear that some
2390 print code leaves garbage around in the buffer. */
2391 do_cleanups (old_cleanups);
fb40c209
AC
2392}
2393
2394void
fb40c209
AC
2395mi_load_progress (const char *section_name,
2396 unsigned long sent_so_far,
2397 unsigned long total_section,
2398 unsigned long total_sent,
2399 unsigned long grand_total)
2400{
2401 struct timeval time_now, delta, update_threshold;
2402 static struct timeval last_update;
2403 static char *previous_sect_name = NULL;
2404 int new_section;
0be75e02 2405 struct ui_out *saved_uiout;
79a45e25 2406 struct ui_out *uiout;
9204d692
PA
2407 struct mi_interp *mi
2408 = (struct mi_interp *) interp_data (current_interpreter ());
fb40c209 2409
0be75e02
AS
2410 /* This function is called through deprecated_show_load_progress
2411 which means uiout may not be correct. Fix it for the duration
2412 of this function. */
79a45e25 2413 saved_uiout = current_uiout;
0be75e02 2414
edff0c0a
DJ
2415 if (current_interp_named_p (INTERP_MI)
2416 || current_interp_named_p (INTERP_MI2))
79a45e25 2417 current_uiout = mi_out_new (2);
0be75e02 2418 else if (current_interp_named_p (INTERP_MI1))
79a45e25 2419 current_uiout = mi_out_new (1);
edff0c0a 2420 else if (current_interp_named_p (INTERP_MI3))
79a45e25 2421 current_uiout = mi_out_new (3);
0be75e02 2422 else
fb40c209
AC
2423 return;
2424
79a45e25
PA
2425 uiout = current_uiout;
2426
fb40c209
AC
2427 update_threshold.tv_sec = 0;
2428 update_threshold.tv_usec = 500000;
2429 gettimeofday (&time_now, NULL);
2430
2431 delta.tv_usec = time_now.tv_usec - last_update.tv_usec;
2432 delta.tv_sec = time_now.tv_sec - last_update.tv_sec;
2433
2434 if (delta.tv_usec < 0)
2435 {
2436 delta.tv_sec -= 1;
f2395593 2437 delta.tv_usec += 1000000L;
fb40c209
AC
2438 }
2439
2440 new_section = (previous_sect_name ?
2441 strcmp (previous_sect_name, section_name) : 1);
2442 if (new_section)
2443 {
6ad4a2cf 2444 struct cleanup *cleanup_tuple;
102040f0 2445
b8c9b27d 2446 xfree (previous_sect_name);
fb40c209
AC
2447 previous_sect_name = xstrdup (section_name);
2448
721c02de 2449 if (current_token)
9204d692
PA
2450 fputs_unfiltered (current_token, mi->raw_stdout);
2451 fputs_unfiltered ("+download", mi->raw_stdout);
6ad4a2cf 2452 cleanup_tuple = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
fb40c209
AC
2453 ui_out_field_string (uiout, "section", section_name);
2454 ui_out_field_int (uiout, "section-size", total_section);
2455 ui_out_field_int (uiout, "total-size", grand_total);
6ad4a2cf 2456 do_cleanups (cleanup_tuple);
9204d692
PA
2457 mi_out_put (uiout, mi->raw_stdout);
2458 fputs_unfiltered ("\n", mi->raw_stdout);
2459 gdb_flush (mi->raw_stdout);
fb40c209
AC
2460 }
2461
2462 if (delta.tv_sec >= update_threshold.tv_sec &&
2463 delta.tv_usec >= update_threshold.tv_usec)
2464 {
6ad4a2cf 2465 struct cleanup *cleanup_tuple;
102040f0 2466
fb40c209
AC
2467 last_update.tv_sec = time_now.tv_sec;
2468 last_update.tv_usec = time_now.tv_usec;
721c02de 2469 if (current_token)
9204d692
PA
2470 fputs_unfiltered (current_token, mi->raw_stdout);
2471 fputs_unfiltered ("+download", mi->raw_stdout);
6ad4a2cf 2472 cleanup_tuple = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
fb40c209
AC
2473 ui_out_field_string (uiout, "section", section_name);
2474 ui_out_field_int (uiout, "section-sent", sent_so_far);
2475 ui_out_field_int (uiout, "section-size", total_section);
2476 ui_out_field_int (uiout, "total-sent", total_sent);
2477 ui_out_field_int (uiout, "total-size", grand_total);
6ad4a2cf 2478 do_cleanups (cleanup_tuple);
9204d692
PA
2479 mi_out_put (uiout, mi->raw_stdout);
2480 fputs_unfiltered ("\n", mi->raw_stdout);
2481 gdb_flush (mi->raw_stdout);
fb40c209 2482 }
0be75e02
AS
2483
2484 xfree (uiout);
67ba4e42 2485 current_uiout = saved_uiout;
fb40c209
AC
2486}
2487
c1244769 2488static void
d8c83789 2489timestamp (struct mi_timestamp *tv)
2b03b41d
SS
2490{
2491 gettimeofday (&tv->wallclock, NULL);
d8c83789 2492#ifdef HAVE_GETRUSAGE
2b03b41d
SS
2493 getrusage (RUSAGE_SELF, &rusage);
2494 tv->utime.tv_sec = rusage.ru_utime.tv_sec;
2495 tv->utime.tv_usec = rusage.ru_utime.tv_usec;
2496 tv->stime.tv_sec = rusage.ru_stime.tv_sec;
2497 tv->stime.tv_usec = rusage.ru_stime.tv_usec;
d8c83789 2498#else
2b03b41d
SS
2499 {
2500 long usec = get_run_time ();
a1b7d198 2501
2b03b41d
SS
2502 tv->utime.tv_sec = usec/1000000L;
2503 tv->utime.tv_usec = usec - 1000000L*tv->utime.tv_sec;
2504 tv->stime.tv_sec = 0;
2505 tv->stime.tv_usec = 0;
d8c83789 2506 }
2b03b41d
SS
2507#endif
2508}
d8c83789 2509
c1244769 2510static void
9204d692 2511print_diff_now (struct ui_file *file, struct mi_timestamp *start)
2b03b41d
SS
2512{
2513 struct mi_timestamp now;
102040f0 2514
2b03b41d 2515 timestamp (&now);
9204d692 2516 print_diff (file, start, &now);
2b03b41d 2517}
d8c83789 2518
4333ada3 2519void
9204d692 2520mi_print_timing_maybe (struct ui_file *file)
4333ada3 2521{
2b03b41d
SS
2522 /* If the command is -enable-timing then do_timings may be true
2523 whilst current_command_ts is not initialized. */
4333ada3 2524 if (do_timings && current_command_ts)
9204d692 2525 print_diff_now (file, current_command_ts);
4333ada3
VP
2526}
2527
c1244769 2528static long
d8c83789 2529timeval_diff (struct timeval start, struct timeval end)
2b03b41d
SS
2530{
2531 return ((end.tv_sec - start.tv_sec) * 1000000L)
2532 + (end.tv_usec - start.tv_usec);
2533}
d8c83789 2534
c1244769 2535static void
9204d692
PA
2536print_diff (struct ui_file *file, struct mi_timestamp *start,
2537 struct mi_timestamp *end)
2b03b41d
SS
2538{
2539 fprintf_unfiltered
9204d692 2540 (file,
c1244769
JB
2541 ",time={wallclock=\"%0.5f\",user=\"%0.5f\",system=\"%0.5f\"}",
2542 timeval_diff (start->wallclock, end->wallclock) / 1000000.0,
2543 timeval_diff (start->utime, end->utime) / 1000000.0,
2b03b41d
SS
2544 timeval_diff (start->stime, end->stime) / 1000000.0);
2545}
f224b49d 2546
40e1c229
VP
2547void
2548mi_cmd_trace_define_variable (char *command, char **argv, int argc)
2549{
40e1c229
VP
2550 LONGEST initval = 0;
2551 struct trace_state_variable *tsv;
2552 char *name = 0;
2553
2554 if (argc != 1 && argc != 2)
2555 error (_("Usage: -trace-define-variable VARIABLE [VALUE]"));
2556
1773c82c
HAQ
2557 name = argv[0];
2558 if (*name++ != '$')
2559 error (_("Name of trace variable should start with '$'"));
40e1c229 2560
1773c82c 2561 validate_trace_state_variable_name (name);
40e1c229
VP
2562
2563 tsv = find_trace_state_variable (name);
2564 if (!tsv)
2565 tsv = create_trace_state_variable (name);
2566
2567 if (argc == 2)
2568 initval = value_as_long (parse_and_eval (argv[1]));
2569
2570 tsv->initial_value = initval;
40e1c229
VP
2571}
2572
2573void
2574mi_cmd_trace_list_variables (char *command, char **argv, int argc)
2575{
2576 if (argc != 0)
2b03b41d 2577 error (_("-trace-list-variables: no arguments allowed"));
40e1c229
VP
2578
2579 tvariables_info_1 ();
2580}
2581
f197e0f1
VP
2582void
2583mi_cmd_trace_find (char *command, char **argv, int argc)
2584{
2585 char *mode;
2586
2587 if (argc == 0)
2588 error (_("trace selection mode is required"));
2589
2590 mode = argv[0];
2591
2592 if (strcmp (mode, "none") == 0)
2593 {
2594 tfind_1 (tfind_number, -1, 0, 0, 0);
2595 return;
2596 }
2597
cc3da688 2598 check_trace_running (current_trace_status ());
f197e0f1
VP
2599
2600 if (strcmp (mode, "frame-number") == 0)
2601 {
2602 if (argc != 2)
2603 error (_("frame number is required"));
2604 tfind_1 (tfind_number, atoi (argv[1]), 0, 0, 0);
2605 }
2606 else if (strcmp (mode, "tracepoint-number") == 0)
2607 {
2608 if (argc != 2)
2609 error (_("tracepoint number is required"));
2610 tfind_1 (tfind_tp, atoi (argv[1]), 0, 0, 0);
2611 }
2612 else if (strcmp (mode, "pc") == 0)
2613 {
2614 if (argc != 2)
2615 error (_("PC is required"));
2616 tfind_1 (tfind_pc, 0, parse_and_eval_address (argv[1]), 0, 0);
2617 }
2618 else if (strcmp (mode, "pc-inside-range") == 0)
2619 {
2620 if (argc != 3)
2621 error (_("Start and end PC are required"));
2622 tfind_1 (tfind_range, 0, parse_and_eval_address (argv[1]),
2623 parse_and_eval_address (argv[2]), 0);
2624 }
2625 else if (strcmp (mode, "pc-outside-range") == 0)
2626 {
2627 if (argc != 3)
2628 error (_("Start and end PC are required"));
2629 tfind_1 (tfind_outside, 0, parse_and_eval_address (argv[1]),
2630 parse_and_eval_address (argv[2]), 0);
2631 }
2632 else if (strcmp (mode, "line") == 0)
2633 {
2634 struct symtabs_and_lines sals;
2635 struct symtab_and_line sal;
2636 static CORE_ADDR start_pc, end_pc;
2637 struct cleanup *back_to;
2638
2639 if (argc != 2)
2640 error (_("Line is required"));
2641
39cf75f7
DE
2642 sals = decode_line_with_current_source (argv[1],
2643 DECODE_LINE_FUNFIRSTLINE);
f197e0f1
VP
2644 back_to = make_cleanup (xfree, sals.sals);
2645
2646 sal = sals.sals[0];
2647
2648 if (sal.symtab == 0)
2649 error (_("Could not find the specified line"));
2650
2651 if (sal.line > 0 && find_line_pc_range (sal, &start_pc, &end_pc))
2652 tfind_1 (tfind_range, 0, start_pc, end_pc - 1, 0);
2653 else
2654 error (_("Could not find the specified line"));
2655
2656 do_cleanups (back_to);
2657 }
2658 else
2659 error (_("Invalid mode '%s'"), mode);
2660
2661 if (has_stack_frames () || get_traceframe_number () >= 0)
08d72866 2662 print_stack_frame (get_selected_frame (NULL), 1, LOC_AND_ADDRESS, 1);
f197e0f1
VP
2663}
2664
011aacb0
VP
2665void
2666mi_cmd_trace_save (char *command, char **argv, int argc)
2667{
2668 int target_saves = 0;
d0353e76 2669 int generate_ctf = 0;
011aacb0 2670 char *filename;
d0353e76
YQ
2671 int oind = 0;
2672 char *oarg;
011aacb0 2673
d0353e76
YQ
2674 enum opt
2675 {
2676 TARGET_SAVE_OPT, CTF_OPT
2677 };
2678 static const struct mi_opt opts[] =
011aacb0 2679 {
d0353e76
YQ
2680 {"r", TARGET_SAVE_OPT, 0},
2681 {"ctf", CTF_OPT, 0},
2682 { 0, 0, 0 }
2683 };
2684
2685 while (1)
011aacb0 2686 {
d0353e76
YQ
2687 int opt = mi_getopt ("-trace-save", argc, argv, opts,
2688 &oind, &oarg);
2689
2690 if (opt < 0)
2691 break;
2692 switch ((enum opt) opt)
2693 {
2694 case TARGET_SAVE_OPT:
2695 target_saves = 1;
2696 break;
2697 case CTF_OPT:
2698 generate_ctf = 1;
2699 break;
2700 }
011aacb0 2701 }
d0353e76 2702 filename = argv[oind];
011aacb0 2703
d0353e76
YQ
2704 if (generate_ctf)
2705 trace_save_ctf (filename, target_saves);
2706 else
2707 trace_save_tfile (filename, target_saves);
011aacb0
VP
2708}
2709
f224b49d
VP
2710void
2711mi_cmd_trace_start (char *command, char **argv, int argc)
2712{
f196051f 2713 start_tracing (NULL);
f224b49d
VP
2714}
2715
2716void
2717mi_cmd_trace_status (char *command, char **argv, int argc)
2718{
2719 trace_status_mi (0);
2720}
2721
2722void
2723mi_cmd_trace_stop (char *command, char **argv, int argc)
2724{
f196051f 2725 stop_tracing (NULL);
f224b49d
VP
2726 trace_status_mi (1);
2727}
75082e8c 2728
2b03b41d 2729/* Implement the "-ada-task-info" command. */
75082e8c
JB
2730
2731void
2732mi_cmd_ada_task_info (char *command, char **argv, int argc)
2733{
2734 if (argc != 0 && argc != 1)
2735 error (_("Invalid MI command"));
2736
2737 print_ada_task_info (current_uiout, argv[0], current_inferior ());
2738}
dc673c81
YQ
2739
2740/* Print EXPRESSION according to VALUES. */
2741
2742static void
2743print_variable_or_computed (char *expression, enum print_values values)
2744{
2745 struct expression *expr;
2746 struct cleanup *old_chain;
2747 struct value *val;
2748 struct ui_file *stb;
dc673c81
YQ
2749 struct type *type;
2750 struct ui_out *uiout = current_uiout;
2751
2752 stb = mem_fileopen ();
2753 old_chain = make_cleanup_ui_file_delete (stb);
2754
2755 expr = parse_expression (expression);
2756
2757 make_cleanup (free_current_contents, &expr);
2758
2759 if (values == PRINT_SIMPLE_VALUES)
2760 val = evaluate_type (expr);
2761 else
2762 val = evaluate_expression (expr);
2763
2764 if (values != PRINT_NO_VALUES)
2765 make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
2766 ui_out_field_string (uiout, "name", expression);
2767
2768 switch (values)
2769 {
2770 case PRINT_SIMPLE_VALUES:
2771 type = check_typedef (value_type (val));
2772 type_print (value_type (val), "", stb, -1);
2773 ui_out_field_stream (uiout, "type", stb);
2774 if (TYPE_CODE (type) != TYPE_CODE_ARRAY
2775 && TYPE_CODE (type) != TYPE_CODE_STRUCT
2776 && TYPE_CODE (type) != TYPE_CODE_UNION)
2777 {
2778 struct value_print_options opts;
2779
2a998fc0 2780 get_no_prettyformat_print_options (&opts);
dc673c81
YQ
2781 opts.deref_ref = 1;
2782 common_val_print (val, stb, 0, &opts, current_language);
2783 ui_out_field_stream (uiout, "value", stb);
2784 }
2785 break;
2786 case PRINT_ALL_VALUES:
2787 {
2788 struct value_print_options opts;
2789
2a998fc0 2790 get_no_prettyformat_print_options (&opts);
dc673c81
YQ
2791 opts.deref_ref = 1;
2792 common_val_print (val, stb, 0, &opts, current_language);
2793 ui_out_field_stream (uiout, "value", stb);
2794 }
2795 break;
2796 }
2797
2798 do_cleanups (old_chain);
2799}
2800
2801/* Implement the "-trace-frame-collected" command. */
2802
2803void
2804mi_cmd_trace_frame_collected (char *command, char **argv, int argc)
2805{
2806 struct cleanup *old_chain;
2807 struct bp_location *tloc;
2808 int stepping_frame;
2809 struct collection_list *clist;
2810 struct collection_list tracepoint_list, stepping_list;
2811 struct traceframe_info *tinfo;
2812 int oind = 0;
f486487f
SM
2813 enum print_values var_print_values = PRINT_ALL_VALUES;
2814 enum print_values comp_print_values = PRINT_ALL_VALUES;
dc673c81
YQ
2815 int registers_format = 'x';
2816 int memory_contents = 0;
2817 struct ui_out *uiout = current_uiout;
2818 enum opt
2819 {
2820 VAR_PRINT_VALUES,
2821 COMP_PRINT_VALUES,
2822 REGISTERS_FORMAT,
2823 MEMORY_CONTENTS,
2824 };
2825 static const struct mi_opt opts[] =
2826 {
2827 {"-var-print-values", VAR_PRINT_VALUES, 1},
2828 {"-comp-print-values", COMP_PRINT_VALUES, 1},
2829 {"-registers-format", REGISTERS_FORMAT, 1},
2830 {"-memory-contents", MEMORY_CONTENTS, 0},
2831 { 0, 0, 0 }
2832 };
2833
2834 while (1)
2835 {
2836 char *oarg;
2837 int opt = mi_getopt ("-trace-frame-collected", argc, argv, opts,
2838 &oind, &oarg);
2839 if (opt < 0)
2840 break;
2841 switch ((enum opt) opt)
2842 {
2843 case VAR_PRINT_VALUES:
2844 var_print_values = mi_parse_print_values (oarg);
2845 break;
2846 case COMP_PRINT_VALUES:
2847 comp_print_values = mi_parse_print_values (oarg);
2848 break;
2849 case REGISTERS_FORMAT:
2850 registers_format = oarg[0];
2851 case MEMORY_CONTENTS:
2852 memory_contents = 1;
2853 break;
2854 }
2855 }
2856
2857 if (oind != argc)
2858 error (_("Usage: -trace-frame-collected "
2859 "[--var-print-values PRINT_VALUES] "
2860 "[--comp-print-values PRINT_VALUES] "
2861 "[--registers-format FORMAT]"
2862 "[--memory-contents]"));
2863
2864 /* This throws an error is not inspecting a trace frame. */
2865 tloc = get_traceframe_location (&stepping_frame);
2866
2867 /* This command only makes sense for the current frame, not the
2868 selected frame. */
2869 old_chain = make_cleanup_restore_current_thread ();
2870 select_frame (get_current_frame ());
2871
2872 encode_actions_and_make_cleanup (tloc, &tracepoint_list,
2873 &stepping_list);
2874
2875 if (stepping_frame)
2876 clist = &stepping_list;
2877 else
2878 clist = &tracepoint_list;
2879
2880 tinfo = get_traceframe_info ();
2881
2882 /* Explicitly wholly collected variables. */
2883 {
2884 struct cleanup *list_cleanup;
2885 char *p;
2886 int i;
2887
2888 list_cleanup = make_cleanup_ui_out_list_begin_end (uiout,
2889 "explicit-variables");
2890 for (i = 0; VEC_iterate (char_ptr, clist->wholly_collected, i, p); i++)
2891 print_variable_or_computed (p, var_print_values);
2892 do_cleanups (list_cleanup);
2893 }
2894
2895 /* Computed expressions. */
2896 {
2897 struct cleanup *list_cleanup;
2898 char *p;
2899 int i;
2900
2901 list_cleanup
2902 = make_cleanup_ui_out_list_begin_end (uiout,
2903 "computed-expressions");
2904 for (i = 0; VEC_iterate (char_ptr, clist->computed, i, p); i++)
2905 print_variable_or_computed (p, comp_print_values);
2906 do_cleanups (list_cleanup);
2907 }
2908
2909 /* Registers. Given pseudo-registers, and that some architectures
2910 (like MIPS) actually hide the raw registers, we don't go through
2911 the trace frame info, but instead consult the register cache for
2912 register availability. */
2913 {
2914 struct cleanup *list_cleanup;
2915 struct frame_info *frame;
2916 struct gdbarch *gdbarch;
2917 int regnum;
2918 int numregs;
2919
2920 list_cleanup = make_cleanup_ui_out_list_begin_end (uiout, "registers");
2921
2922 frame = get_selected_frame (NULL);
2923 gdbarch = get_frame_arch (frame);
2924 numregs = gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch);
2925
2926 for (regnum = 0; regnum < numregs; regnum++)
2927 {
2928 if (gdbarch_register_name (gdbarch, regnum) == NULL
2929 || *(gdbarch_register_name (gdbarch, regnum)) == '\0')
2930 continue;
2931
2932 output_register (frame, regnum, registers_format, 1);
2933 }
2934
2935 do_cleanups (list_cleanup);
2936 }
2937
2938 /* Trace state variables. */
2939 {
2940 struct cleanup *list_cleanup;
2941 int tvar;
2942 char *tsvname;
2943 int i;
2944
2945 list_cleanup = make_cleanup_ui_out_list_begin_end (uiout, "tvars");
2946
2947 tsvname = NULL;
2948 make_cleanup (free_current_contents, &tsvname);
2949
2950 for (i = 0; VEC_iterate (int, tinfo->tvars, i, tvar); i++)
2951 {
2952 struct cleanup *cleanup_child;
2953 struct trace_state_variable *tsv;
2954
2955 tsv = find_trace_state_variable_by_number (tvar);
2956
2957 cleanup_child = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
2958
2959 if (tsv != NULL)
2960 {
224c3ddb 2961 tsvname = (char *) xrealloc (tsvname, strlen (tsv->name) + 2);
dc673c81
YQ
2962 tsvname[0] = '$';
2963 strcpy (tsvname + 1, tsv->name);
2964 ui_out_field_string (uiout, "name", tsvname);
2965
2966 tsv->value_known = target_get_trace_state_variable_value (tsv->number,
2967 &tsv->value);
2968 ui_out_field_int (uiout, "current", tsv->value);
2969 }
2970 else
2971 {
2972 ui_out_field_skip (uiout, "name");
2973 ui_out_field_skip (uiout, "current");
2974 }
2975
2976 do_cleanups (cleanup_child);
2977 }
2978
2979 do_cleanups (list_cleanup);
2980 }
2981
2982 /* Memory. */
2983 {
2984 struct cleanup *list_cleanup;
2985 VEC(mem_range_s) *available_memory = NULL;
2986 struct mem_range *r;
2987 int i;
2988
2989 traceframe_available_memory (&available_memory, 0, ULONGEST_MAX);
2990 make_cleanup (VEC_cleanup(mem_range_s), &available_memory);
2991
2992 list_cleanup = make_cleanup_ui_out_list_begin_end (uiout, "memory");
2993
2994 for (i = 0; VEC_iterate (mem_range_s, available_memory, i, r); i++)
2995 {
2996 struct cleanup *cleanup_child;
2997 gdb_byte *data;
2998 struct gdbarch *gdbarch = target_gdbarch ();
2999
3000 cleanup_child = make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
3001
3002 ui_out_field_core_addr (uiout, "address", gdbarch, r->start);
3003 ui_out_field_int (uiout, "length", r->length);
3004
224c3ddb 3005 data = (gdb_byte *) xmalloc (r->length);
dc673c81
YQ
3006 make_cleanup (xfree, data);
3007
3008 if (memory_contents)
3009 {
3010 if (target_read_memory (r->start, data, r->length) == 0)
3011 {
3012 int m;
3013 char *data_str, *p;
3014
224c3ddb 3015 data_str = (char *) xmalloc (r->length * 2 + 1);
dc673c81
YQ
3016 make_cleanup (xfree, data_str);
3017
3018 for (m = 0, p = data_str; m < r->length; ++m, p += 2)
3019 sprintf (p, "%02x", data[m]);
3020 ui_out_field_string (uiout, "contents", data_str);
3021 }
3022 else
3023 ui_out_field_skip (uiout, "contents");
3024 }
3025 do_cleanups (cleanup_child);
3026 }
3027
3028 do_cleanups (list_cleanup);
3029 }
3030
3031 do_cleanups (old_chain);
3032}
329ea579
PA
3033
3034void
3035_initialize_mi_main (void)
3036{
3037 struct cmd_list_element *c;
3038
3039 add_setshow_boolean_cmd ("mi-async", class_run,
3040 &mi_async_1, _("\
3041Set whether MI asynchronous mode is enabled."), _("\
3042Show whether MI asynchronous mode is enabled."), _("\
3043Tells GDB whether MI should be in asynchronous mode."),
3044 set_mi_async_command,
3045 show_mi_async_command,
3046 &setlist,
3047 &showlist);
3048
3049 /* Alias old "target-async" to "mi-async". */
3050 c = add_alias_cmd ("target-async", "mi-async", class_run, 0, &setlist);
3051 deprecate_cmd (c, "set mi-async");
3052 c = add_alias_cmd ("target-async", "mi-async", class_run, 0, &showlist);
3053 deprecate_cmd (c, "show mi-async");
3054}
This page took 1.84201 seconds and 4 git commands to generate.