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