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