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