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