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