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