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