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