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