2011-08-04 Pedro Alves <pedro@codesourcery.com>
[deliverable/binutils-gdb.git] / gdb / infcmd.c
1 /* Memory-access and commands for "inferior" process, for GDB.
2
3 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
4 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
5 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21
22 #include "defs.h"
23 #include "arch-utils.h"
24 #include <signal.h>
25 #include "gdb_string.h"
26 #include "symtab.h"
27 #include "gdbtypes.h"
28 #include "frame.h"
29 #include "inferior.h"
30 #include "environ.h"
31 #include "value.h"
32 #include "gdbcmd.h"
33 #include "symfile.h"
34 #include "gdbcore.h"
35 #include "target.h"
36 #include "language.h"
37 #include "symfile.h"
38 #include "objfiles.h"
39 #include "completer.h"
40 #include "ui-out.h"
41 #include "event-top.h"
42 #include "parser-defs.h"
43 #include "regcache.h"
44 #include "reggroups.h"
45 #include "block.h"
46 #include "solib.h"
47 #include <ctype.h>
48 #include "gdb_assert.h"
49 #include "observer.h"
50 #include "target-descriptions.h"
51 #include "user-regs.h"
52 #include "exceptions.h"
53 #include "cli/cli-decode.h"
54 #include "gdbthread.h"
55 #include "valprint.h"
56 #include "inline-frame.h"
57 #include "tracepoint.h"
58 #include "inf-loop.h"
59 #include "continuations.h"
60
61 /* Functions exported for general use, in inferior.h: */
62
63 void all_registers_info (char *, int);
64
65 void registers_info (char *, int);
66
67 void nexti_command (char *, int);
68
69 void stepi_command (char *, int);
70
71 void continue_command (char *, int);
72
73 void interrupt_target_command (char *args, int from_tty);
74
75 /* Local functions: */
76
77 static void nofp_registers_info (char *, int);
78
79 static void print_return_value (struct type *func_type,
80 struct type *value_type);
81
82 static void until_next_command (int);
83
84 static void until_command (char *, int);
85
86 static void path_info (char *, int);
87
88 static void path_command (char *, int);
89
90 static void unset_command (char *, int);
91
92 static void float_info (char *, int);
93
94 static void disconnect_command (char *, int);
95
96 static void unset_environment_command (char *, int);
97
98 static void set_environment_command (char *, int);
99
100 static void environment_info (char *, int);
101
102 static void program_info (char *, int);
103
104 static void finish_command (char *, int);
105
106 static void signal_command (char *, int);
107
108 static void jump_command (char *, int);
109
110 static void step_1 (int, int, char *);
111 static void step_once (int skip_subroutines, int single_inst,
112 int count, int thread);
113
114 static void next_command (char *, int);
115
116 static void step_command (char *, int);
117
118 static void run_command (char *, int);
119
120 static void run_no_args_command (char *args, int from_tty);
121
122 static void go_command (char *line_no, int from_tty);
123
124 static int strip_bg_char (char **);
125
126 void _initialize_infcmd (void);
127
128 #define ERROR_NO_INFERIOR \
129 if (!target_has_execution) error (_("The program is not being run."));
130
131 /* Scratch area where string containing arguments to give to the
132 program will be stored by 'set args'. As soon as anything is
133 stored, notice_args_set will move it into per-inferior storage.
134 Arguments are separated by spaces. Empty string (pointer to '\0')
135 means no args. */
136
137 static char *inferior_args_scratch;
138
139 /* Scratch area where 'set inferior-tty' will store user-provided value.
140 We'll immediate copy it into per-inferior storage. */
141
142 static char *inferior_io_terminal_scratch;
143
144 /* Pid of our debugged inferior, or 0 if no inferior now.
145 Since various parts of infrun.c test this to see whether there is a program
146 being debugged it should be nonzero (currently 3 is used) for remote
147 debugging. */
148
149 ptid_t inferior_ptid;
150
151 /* Address at which inferior stopped. */
152
153 CORE_ADDR stop_pc;
154
155 /* Flag indicating that a command has proceeded the inferior past the
156 current breakpoint. */
157
158 int breakpoint_proceeded;
159
160 /* Nonzero if stopped due to completion of a stack dummy routine. */
161
162 enum stop_stack_kind stop_stack_dummy;
163
164 /* Nonzero if stopped due to a random (unexpected) signal in inferior
165 process. */
166
167 int stopped_by_random_signal;
168
169 \f
170 /* Accessor routines. */
171
172 /* Set the io terminal for the current inferior. Ownership of
173 TERMINAL_NAME is not transferred. */
174
175 void
176 set_inferior_io_terminal (const char *terminal_name)
177 {
178 xfree (current_inferior ()->terminal);
179 current_inferior ()->terminal = terminal_name ? xstrdup (terminal_name) : 0;
180 }
181
182 const char *
183 get_inferior_io_terminal (void)
184 {
185 return current_inferior ()->terminal;
186 }
187
188 static void
189 set_inferior_tty_command (char *args, int from_tty,
190 struct cmd_list_element *c)
191 {
192 /* CLI has assigned the user-provided value to inferior_io_terminal_scratch.
193 Now route it to current inferior. */
194 set_inferior_io_terminal (inferior_io_terminal_scratch);
195 }
196
197 static void
198 show_inferior_tty_command (struct ui_file *file, int from_tty,
199 struct cmd_list_element *c, const char *value)
200 {
201 /* Note that we ignore the passed-in value in favor of computing it
202 directly. */
203 const char *inferior_io_terminal = get_inferior_io_terminal ();
204
205 if (inferior_io_terminal == NULL)
206 inferior_io_terminal = "";
207 fprintf_filtered (gdb_stdout,
208 _("Terminal for future runs of program being debugged "
209 "is \"%s\".\n"), inferior_io_terminal);
210 }
211
212 char *
213 get_inferior_args (void)
214 {
215 if (current_inferior ()->argc != 0)
216 {
217 char *n;
218
219 n = construct_inferior_arguments (current_inferior ()->argc,
220 current_inferior ()->argv);
221 set_inferior_args (n);
222 xfree (n);
223 }
224
225 if (current_inferior ()->args == NULL)
226 current_inferior ()->args = xstrdup ("");
227
228 return current_inferior ()->args;
229 }
230
231 /* Set the arguments for the current inferior. Ownership of
232 NEWARGS is not transferred. */
233
234 void
235 set_inferior_args (char *newargs)
236 {
237 xfree (current_inferior ()->args);
238 current_inferior ()->args = newargs ? xstrdup (newargs) : NULL;
239 current_inferior ()->argc = 0;
240 current_inferior ()->argv = 0;
241 }
242
243 void
244 set_inferior_args_vector (int argc, char **argv)
245 {
246 current_inferior ()->argc = argc;
247 current_inferior ()->argv = argv;
248 }
249
250 /* Notice when `set args' is run. */
251 static void
252 set_args_command (char *args, int from_tty, struct cmd_list_element *c)
253 {
254 /* CLI has assigned the user-provided value to inferior_args_scratch.
255 Now route it to current inferior. */
256 set_inferior_args (inferior_args_scratch);
257 }
258
259 /* Notice when `show args' is run. */
260 static void
261 show_args_command (struct ui_file *file, int from_tty,
262 struct cmd_list_element *c, const char *value)
263 {
264 /* Note that we ignore the passed-in value in favor of computing it
265 directly. */
266 deprecated_show_value_hack (file, from_tty, c, get_inferior_args ());
267 }
268
269 \f
270 /* Compute command-line string given argument vector. This does the
271 same shell processing as fork_inferior. */
272 char *
273 construct_inferior_arguments (int argc, char **argv)
274 {
275 char *result;
276
277 if (STARTUP_WITH_SHELL)
278 {
279 /* This holds all the characters considered special to the
280 typical Unix shells. We include `^' because the SunOS
281 /bin/sh treats it as a synonym for `|'. */
282 char *special = "\"!#$&*()\\|[]{}<>?'\"`~^; \t\n";
283 int i;
284 int length = 0;
285 char *out, *cp;
286
287 /* We over-compute the size. It shouldn't matter. */
288 for (i = 0; i < argc; ++i)
289 length += 3 * strlen (argv[i]) + 1 + 2 * (argv[i][0] == '\0');
290
291 result = (char *) xmalloc (length);
292 out = result;
293
294 for (i = 0; i < argc; ++i)
295 {
296 if (i > 0)
297 *out++ = ' ';
298
299 /* Need to handle empty arguments specially. */
300 if (argv[i][0] == '\0')
301 {
302 *out++ = '\'';
303 *out++ = '\'';
304 }
305 else
306 {
307 for (cp = argv[i]; *cp; ++cp)
308 {
309 if (*cp == '\n')
310 {
311 /* A newline cannot be quoted with a backslash (it
312 just disappears), only by putting it inside
313 quotes. */
314 *out++ = '\'';
315 *out++ = '\n';
316 *out++ = '\'';
317 }
318 else
319 {
320 if (strchr (special, *cp) != NULL)
321 *out++ = '\\';
322 *out++ = *cp;
323 }
324 }
325 }
326 }
327 *out = '\0';
328 }
329 else
330 {
331 /* In this case we can't handle arguments that contain spaces,
332 tabs, or newlines -- see breakup_args(). */
333 int i;
334 int length = 0;
335
336 for (i = 0; i < argc; ++i)
337 {
338 char *cp = strchr (argv[i], ' ');
339 if (cp == NULL)
340 cp = strchr (argv[i], '\t');
341 if (cp == NULL)
342 cp = strchr (argv[i], '\n');
343 if (cp != NULL)
344 error (_("can't handle command-line "
345 "argument containing whitespace"));
346 length += strlen (argv[i]) + 1;
347 }
348
349 result = (char *) xmalloc (length);
350 result[0] = '\0';
351 for (i = 0; i < argc; ++i)
352 {
353 if (i > 0)
354 strcat (result, " ");
355 strcat (result, argv[i]);
356 }
357 }
358
359 return result;
360 }
361 \f
362
363 /* This function detects whether or not a '&' character (indicating
364 background execution) has been added as *the last* of the arguments ARGS
365 of a command. If it has, it removes it and returns 1. Otherwise it
366 does nothing and returns 0. */
367 static int
368 strip_bg_char (char **args)
369 {
370 char *p = NULL;
371
372 p = strchr (*args, '&');
373
374 if (p)
375 {
376 if (p == (*args + strlen (*args) - 1))
377 {
378 if (strlen (*args) > 1)
379 {
380 do
381 p--;
382 while (*p == ' ' || *p == '\t');
383 *(p + 1) = '\0';
384 }
385 else
386 *args = 0;
387 return 1;
388 }
389 }
390 return 0;
391 }
392
393 /* Common actions to take after creating any sort of inferior, by any
394 means (running, attaching, connecting, et cetera). The target
395 should be stopped. */
396
397 void
398 post_create_inferior (struct target_ops *target, int from_tty)
399 {
400 volatile struct gdb_exception ex;
401
402 /* Be sure we own the terminal in case write operations are performed. */
403 target_terminal_ours ();
404
405 /* If the target hasn't taken care of this already, do it now.
406 Targets which need to access registers during to_open,
407 to_create_inferior, or to_attach should do it earlier; but many
408 don't need to. */
409 target_find_description ();
410
411 /* Now that we know the register layout, retrieve current PC. But
412 if the PC is unavailable (e.g., we're opening a core file with
413 missing registers info), ignore it. */
414 stop_pc = 0;
415 TRY_CATCH (ex, RETURN_MASK_ERROR)
416 {
417 stop_pc = regcache_read_pc (get_current_regcache ());
418 }
419 if (ex.reason < 0 && ex.error != NOT_AVAILABLE_ERROR)
420 throw_exception (ex);
421
422 if (exec_bfd)
423 {
424 const unsigned solib_add_generation
425 = current_program_space->solib_add_generation;
426
427 /* Create the hooks to handle shared library load and unload
428 events. */
429 #ifdef SOLIB_CREATE_INFERIOR_HOOK
430 SOLIB_CREATE_INFERIOR_HOOK (PIDGET (inferior_ptid));
431 #else
432 solib_create_inferior_hook (from_tty);
433 #endif
434
435 if (current_program_space->solib_add_generation == solib_add_generation)
436 {
437 /* The platform-specific hook should load initial shared libraries,
438 but didn't. FROM_TTY will be incorrectly 0 but such solib
439 targets should be fixed anyway. Call it only after the solib
440 target has been initialized by solib_create_inferior_hook. */
441
442 if (info_verbose)
443 warning (_("platform-specific solib_create_inferior_hook did "
444 "not load initial shared libraries."));
445
446 /* If the solist is global across processes, there's no need to
447 refetch it here. */
448 if (!gdbarch_has_global_solist (target_gdbarch))
449 {
450 #ifdef SOLIB_ADD
451 SOLIB_ADD (NULL, 0, target, auto_solib_add);
452 #else
453 solib_add (NULL, 0, target, auto_solib_add);
454 #endif
455 }
456 }
457 }
458
459 /* If the user sets watchpoints before execution having started,
460 then she gets software watchpoints, because GDB can't know which
461 target will end up being pushed, or if it supports hardware
462 watchpoints or not. breakpoint_re_set takes care of promoting
463 watchpoints to hardware watchpoints if possible, however, if this
464 new inferior doesn't load shared libraries or we don't pull in
465 symbols from any other source on this target/arch,
466 breakpoint_re_set is never called. Call it now so that software
467 watchpoints get a chance to be promoted to hardware watchpoints
468 if the now pushed target supports hardware watchpoints. */
469 breakpoint_re_set ();
470
471 observer_notify_inferior_created (target, from_tty);
472 }
473
474 /* Kill the inferior if already running. This function is designed
475 to be called when we are about to start the execution of the program
476 from the beginning. Ask the user to confirm that he wants to restart
477 the program being debugged when FROM_TTY is non-null. */
478
479 static void
480 kill_if_already_running (int from_tty)
481 {
482 if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
483 {
484 /* Bail out before killing the program if we will not be able to
485 restart it. */
486 target_require_runnable ();
487
488 if (from_tty
489 && !query (_("The program being debugged has been started already.\n\
490 Start it from the beginning? ")))
491 error (_("Program not restarted."));
492 target_kill ();
493 }
494 }
495
496 /* Implement the "run" command. If TBREAK_AT_MAIN is set, then insert
497 a temporary breakpoint at the begining of the main program before
498 running the program. */
499
500 static void
501 run_command_1 (char *args, int from_tty, int tbreak_at_main)
502 {
503 char *exec_file;
504 struct cleanup *old_chain;
505 ptid_t ptid;
506
507 dont_repeat ();
508
509 kill_if_already_running (from_tty);
510
511 init_wait_for_inferior ();
512 clear_breakpoint_hit_counts ();
513
514 /* Clean up any leftovers from other runs. Some other things from
515 this function should probably be moved into target_pre_inferior. */
516 target_pre_inferior (from_tty);
517
518 /* The comment here used to read, "The exec file is re-read every
519 time we do a generic_mourn_inferior, so we just have to worry
520 about the symbol file." The `generic_mourn_inferior' function
521 gets called whenever the program exits. However, suppose the
522 program exits, and *then* the executable file changes? We need
523 to check again here. Since reopen_exec_file doesn't do anything
524 if the timestamp hasn't changed, I don't see the harm. */
525 reopen_exec_file ();
526 reread_symbols ();
527
528 /* Insert the temporary breakpoint if a location was specified. */
529 if (tbreak_at_main)
530 tbreak_command (main_name (), 0);
531
532 exec_file = (char *) get_exec_file (0);
533
534 if (non_stop && !target_supports_non_stop ())
535 error (_("The target does not support running in non-stop mode."));
536
537 /* We keep symbols from add-symbol-file, on the grounds that the
538 user might want to add some symbols before running the program
539 (right?). But sometimes (dynamic loading where the user manually
540 introduces the new symbols with add-symbol-file), the code which
541 the symbols describe does not persist between runs. Currently
542 the user has to manually nuke all symbols between runs if they
543 want them to go away (PR 2207). This is probably reasonable. */
544
545 if (!args)
546 {
547 if (target_can_async_p ())
548 async_disable_stdin ();
549 }
550 else
551 {
552 int async_exec = strip_bg_char (&args);
553
554 /* If we get a request for running in the bg but the target
555 doesn't support it, error out. */
556 if (async_exec && !target_can_async_p ())
557 error (_("Asynchronous execution not supported on this target."));
558
559 /* If we don't get a request of running in the bg, then we need
560 to simulate synchronous (fg) execution. */
561 if (!async_exec && target_can_async_p ())
562 {
563 /* Simulate synchronous execution. */
564 async_disable_stdin ();
565 }
566
567 /* If there were other args, beside '&', process them. */
568 if (args)
569 set_inferior_args (args);
570 }
571
572 if (from_tty)
573 {
574 ui_out_field_string (uiout, NULL, "Starting program");
575 ui_out_text (uiout, ": ");
576 if (exec_file)
577 ui_out_field_string (uiout, "execfile", exec_file);
578 ui_out_spaces (uiout, 1);
579 /* We call get_inferior_args() because we might need to compute
580 the value now. */
581 ui_out_field_string (uiout, "infargs", get_inferior_args ());
582 ui_out_text (uiout, "\n");
583 ui_out_flush (uiout);
584 }
585
586 /* We call get_inferior_args() because we might need to compute
587 the value now. */
588 target_create_inferior (exec_file, get_inferior_args (),
589 environ_vector (current_inferior ()->environment),
590 from_tty);
591
592 /* We're starting off a new process. When we get out of here, in
593 non-stop mode, finish the state of all threads of that process,
594 but leave other threads alone, as they may be stopped in internal
595 events --- the frontend shouldn't see them as stopped. In
596 all-stop, always finish the state of all threads, as we may be
597 resuming more than just the new process. */
598 if (non_stop)
599 ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
600 else
601 ptid = minus_one_ptid;
602 old_chain = make_cleanup (finish_thread_state_cleanup, &ptid);
603
604 /* Pass zero for FROM_TTY, because at this point the "run" command
605 has done its thing; now we are setting up the running program. */
606 post_create_inferior (&current_target, 0);
607
608 /* Start the target running. Do not use -1 continuation as it would skip
609 breakpoint right at the entry point. */
610 proceed (regcache_read_pc (get_current_regcache ()), TARGET_SIGNAL_0, 0);
611
612 /* Since there was no error, there's no need to finish the thread
613 states here. */
614 discard_cleanups (old_chain);
615 }
616
617 static void
618 run_command (char *args, int from_tty)
619 {
620 run_command_1 (args, from_tty, 0);
621 }
622
623 static void
624 run_no_args_command (char *args, int from_tty)
625 {
626 set_inferior_args ("");
627 }
628 \f
629
630 /* Start the execution of the program up until the beginning of the main
631 program. */
632
633 static void
634 start_command (char *args, int from_tty)
635 {
636 /* Some languages such as Ada need to search inside the program
637 minimal symbols for the location where to put the temporary
638 breakpoint before starting. */
639 if (!have_minimal_symbols ())
640 error (_("No symbol table loaded. Use the \"file\" command."));
641
642 /* Run the program until reaching the main procedure... */
643 run_command_1 (args, from_tty, 1);
644 }
645
646 static int
647 proceed_thread_callback (struct thread_info *thread, void *arg)
648 {
649 /* We go through all threads individually instead of compressing
650 into a single target `resume_all' request, because some threads
651 may be stopped in internal breakpoints/events, or stopped waiting
652 for its turn in the displaced stepping queue (that is, they are
653 running && !executing). The target side has no idea about why
654 the thread is stopped, so a `resume_all' command would resume too
655 much. If/when GDB gains a way to tell the target `hold this
656 thread stopped until I say otherwise', then we can optimize
657 this. */
658 if (!is_stopped (thread->ptid))
659 return 0;
660
661 switch_to_thread (thread->ptid);
662 clear_proceed_status ();
663 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
664 return 0;
665 }
666
667 void
668 ensure_valid_thread (void)
669 {
670 if (ptid_equal (inferior_ptid, null_ptid)
671 || is_exited (inferior_ptid))
672 error (_("Cannot execute this command without a live selected thread."));
673 }
674
675 /* If the user is looking at trace frames, any resumption of execution
676 is likely to mix up recorded and live target data. So simply
677 disallow those commands. */
678
679 void
680 ensure_not_tfind_mode (void)
681 {
682 if (get_traceframe_number () >= 0)
683 error (_("Cannot execute this command while looking at trace frames."));
684 }
685
686 void
687 continue_1 (int all_threads)
688 {
689 ERROR_NO_INFERIOR;
690 ensure_not_tfind_mode ();
691
692 if (non_stop && all_threads)
693 {
694 /* Don't error out if the current thread is running, because
695 there may be other stopped threads. */
696 struct cleanup *old_chain;
697
698 /* Backup current thread and selected frame. */
699 old_chain = make_cleanup_restore_current_thread ();
700
701 iterate_over_threads (proceed_thread_callback, NULL);
702
703 /* Restore selected ptid. */
704 do_cleanups (old_chain);
705 }
706 else
707 {
708 ensure_valid_thread ();
709 ensure_not_running ();
710 clear_proceed_status ();
711 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
712 }
713 }
714
715 /* continue [-a] [proceed-count] [&] */
716 void
717 continue_command (char *args, int from_tty)
718 {
719 int async_exec = 0;
720 int all_threads = 0;
721 ERROR_NO_INFERIOR;
722
723 /* Find out whether we must run in the background. */
724 if (args != NULL)
725 async_exec = strip_bg_char (&args);
726
727 /* If we must run in the background, but the target can't do it,
728 error out. */
729 if (async_exec && !target_can_async_p ())
730 error (_("Asynchronous execution not supported on this target."));
731
732 /* If we are not asked to run in the bg, then prepare to run in the
733 foreground, synchronously. */
734 if (!async_exec && target_can_async_p ())
735 {
736 /* Simulate synchronous execution. */
737 async_disable_stdin ();
738 }
739
740 if (args != NULL)
741 {
742 if (strncmp (args, "-a", sizeof ("-a") - 1) == 0)
743 {
744 all_threads = 1;
745 args += sizeof ("-a") - 1;
746 if (*args == '\0')
747 args = NULL;
748 }
749 }
750
751 if (!non_stop && all_threads)
752 error (_("`-a' is meaningless in all-stop mode."));
753
754 if (args != NULL && all_threads)
755 error (_("Can't resume all threads and specify "
756 "proceed count simultaneously."));
757
758 /* If we have an argument left, set proceed count of breakpoint we
759 stopped at. */
760 if (args != NULL)
761 {
762 bpstat bs = NULL;
763 int num, stat;
764 int stopped = 0;
765 struct thread_info *tp;
766
767 if (non_stop)
768 tp = find_thread_ptid (inferior_ptid);
769 else
770 {
771 ptid_t last_ptid;
772 struct target_waitstatus ws;
773
774 get_last_target_status (&last_ptid, &ws);
775 tp = find_thread_ptid (last_ptid);
776 }
777 if (tp != NULL)
778 bs = tp->control.stop_bpstat;
779
780 while ((stat = bpstat_num (&bs, &num)) != 0)
781 if (stat > 0)
782 {
783 set_ignore_count (num,
784 parse_and_eval_long (args) - 1,
785 from_tty);
786 /* set_ignore_count prints a message ending with a period.
787 So print two spaces before "Continuing.". */
788 if (from_tty)
789 printf_filtered (" ");
790 stopped = 1;
791 }
792
793 if (!stopped && from_tty)
794 {
795 printf_filtered
796 ("Not stopped at any breakpoint; argument ignored.\n");
797 }
798 }
799
800 if (from_tty)
801 printf_filtered (_("Continuing.\n"));
802
803 continue_1 (all_threads);
804 }
805 \f
806 /* Record the starting point of a "step" or "next" command. */
807
808 static void
809 set_step_frame (void)
810 {
811 struct symtab_and_line sal;
812
813 find_frame_sal (get_current_frame (), &sal);
814 set_step_info (get_current_frame (), sal);
815 }
816
817 /* Step until outside of current statement. */
818
819 static void
820 step_command (char *count_string, int from_tty)
821 {
822 step_1 (0, 0, count_string);
823 }
824
825 /* Likewise, but skip over subroutine calls as if single instructions. */
826
827 static void
828 next_command (char *count_string, int from_tty)
829 {
830 step_1 (1, 0, count_string);
831 }
832
833 /* Likewise, but step only one instruction. */
834
835 void
836 stepi_command (char *count_string, int from_tty)
837 {
838 step_1 (0, 1, count_string);
839 }
840
841 void
842 nexti_command (char *count_string, int from_tty)
843 {
844 step_1 (1, 1, count_string);
845 }
846
847 void
848 delete_longjmp_breakpoint_cleanup (void *arg)
849 {
850 int thread = * (int *) arg;
851 delete_longjmp_breakpoint (thread);
852 }
853
854 static void
855 step_1 (int skip_subroutines, int single_inst, char *count_string)
856 {
857 int count = 1;
858 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL);
859 int async_exec = 0;
860 int thread = -1;
861
862 ERROR_NO_INFERIOR;
863 ensure_not_tfind_mode ();
864 ensure_valid_thread ();
865 ensure_not_running ();
866
867 if (count_string)
868 async_exec = strip_bg_char (&count_string);
869
870 /* If we get a request for running in the bg but the target
871 doesn't support it, error out. */
872 if (async_exec && !target_can_async_p ())
873 error (_("Asynchronous execution not supported on this target."));
874
875 /* If we don't get a request of running in the bg, then we need
876 to simulate synchronous (fg) execution. */
877 if (!async_exec && target_can_async_p ())
878 {
879 /* Simulate synchronous execution. */
880 async_disable_stdin ();
881 }
882
883 count = count_string ? parse_and_eval_long (count_string) : 1;
884
885 if (!single_inst || skip_subroutines) /* Leave si command alone. */
886 {
887 struct thread_info *tp = inferior_thread ();
888
889 if (in_thread_list (inferior_ptid))
890 thread = pid_to_thread_id (inferior_ptid);
891
892 set_longjmp_breakpoint (tp, get_frame_id (get_current_frame ()));
893
894 make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
895 }
896
897 /* In synchronous case, all is well; each step_once call will step once. */
898 if (!target_can_async_p ())
899 {
900 for (; count > 0; count--)
901 {
902 step_once (skip_subroutines, single_inst, count, thread);
903
904 if (!target_has_execution)
905 break;
906 else
907 {
908 struct thread_info *tp = inferior_thread ();
909
910 if (!tp->control.stop_step || !tp->step_multi)
911 {
912 /* If we stopped for some reason that is not stepping
913 there are no further steps to make. */
914 tp->step_multi = 0;
915 break;
916 }
917 }
918 }
919
920 do_cleanups (cleanups);
921 }
922 else
923 {
924 /* In the case of an asynchronous target things get complicated;
925 do only one step for now, before returning control to the
926 event loop. Let the continuation figure out how many other
927 steps we need to do, and handle them one at the time, through
928 step_once. */
929 step_once (skip_subroutines, single_inst, count, thread);
930
931 /* We are running, and the continuation is installed. It will
932 disable the longjmp breakpoint as appropriate. */
933 discard_cleanups (cleanups);
934 }
935 }
936
937 struct step_1_continuation_args
938 {
939 int count;
940 int skip_subroutines;
941 int single_inst;
942 int thread;
943 };
944
945 /* Called after we are done with one step operation, to check whether
946 we need to step again, before we print the prompt and return control
947 to the user. If count is > 1, we will need to do one more call to
948 proceed(), via step_once(). Basically it is like step_once and
949 step_1_continuation are co-recursive. */
950 static void
951 step_1_continuation (void *args, int err)
952 {
953 struct step_1_continuation_args *a = args;
954
955 if (target_has_execution)
956 {
957 struct thread_info *tp;
958
959 tp = inferior_thread ();
960 if (!err
961 && tp->step_multi && tp->control.stop_step)
962 {
963 /* There are more steps to make, and we did stop due to
964 ending a stepping range. Do another step. */
965 step_once (a->skip_subroutines, a->single_inst,
966 a->count - 1, a->thread);
967 return;
968 }
969 tp->step_multi = 0;
970 }
971
972 /* We either hit an error, or stopped for some reason that is
973 not stepping, or there are no further steps to make.
974 Cleanup. */
975 if (!a->single_inst || a->skip_subroutines)
976 delete_longjmp_breakpoint (a->thread);
977 }
978
979 /* Do just one step operation. This is useful to implement the 'step
980 n' kind of commands. In case of asynchronous targets, we will have
981 to set up a continuation to be done after the target stops (after
982 this one step). For synch targets, the caller handles further
983 stepping. */
984
985 static void
986 step_once (int skip_subroutines, int single_inst, int count, int thread)
987 {
988 struct frame_info *frame = get_current_frame ();
989
990 if (count > 0)
991 {
992 /* Don't assume THREAD is a valid thread id. It is set to -1 if
993 the longjmp breakpoint was not required. Use the
994 INFERIOR_PTID thread instead, which is the same thread when
995 THREAD is set. */
996 struct thread_info *tp = inferior_thread ();
997
998 clear_proceed_status ();
999 set_step_frame ();
1000
1001 if (!single_inst)
1002 {
1003 CORE_ADDR pc;
1004
1005 /* Step at an inlined function behaves like "down". */
1006 if (!skip_subroutines && !single_inst
1007 && inline_skipped_frames (inferior_ptid))
1008 {
1009 ptid_t resume_ptid;
1010
1011 /* Pretend that we've ran. */
1012 resume_ptid = user_visible_resume_ptid (1);
1013 set_running (resume_ptid, 1);
1014
1015 step_into_inline_frame (inferior_ptid);
1016 if (count > 1)
1017 step_once (skip_subroutines, single_inst, count - 1, thread);
1018 else
1019 {
1020 /* Pretend that we've stopped. */
1021 normal_stop ();
1022
1023 if (target_can_async_p ())
1024 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
1025 }
1026 return;
1027 }
1028
1029 pc = get_frame_pc (frame);
1030 find_pc_line_pc_range (pc,
1031 &tp->control.step_range_start,
1032 &tp->control.step_range_end);
1033
1034 /* If we have no line info, switch to stepi mode. */
1035 if (tp->control.step_range_end == 0 && step_stop_if_no_debug)
1036 tp->control.step_range_start = tp->control.step_range_end = 1;
1037 else if (tp->control.step_range_end == 0)
1038 {
1039 char *name;
1040
1041 if (find_pc_partial_function (pc, &name,
1042 &tp->control.step_range_start,
1043 &tp->control.step_range_end) == 0)
1044 error (_("Cannot find bounds of current function"));
1045
1046 target_terminal_ours ();
1047 printf_filtered (_("Single stepping until exit from function %s,"
1048 "\nwhich has no line number information.\n"),
1049 name);
1050 }
1051 }
1052 else
1053 {
1054 /* Say we are stepping, but stop after one insn whatever it does. */
1055 tp->control.step_range_start = tp->control.step_range_end = 1;
1056 if (!skip_subroutines)
1057 /* It is stepi.
1058 Don't step over function calls, not even to functions lacking
1059 line numbers. */
1060 tp->control.step_over_calls = STEP_OVER_NONE;
1061 }
1062
1063 if (skip_subroutines)
1064 tp->control.step_over_calls = STEP_OVER_ALL;
1065
1066 tp->step_multi = (count > 1);
1067 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
1068
1069 /* For async targets, register a continuation to do any
1070 additional steps. For sync targets, the caller will handle
1071 further stepping. */
1072 if (target_can_async_p ())
1073 {
1074 struct step_1_continuation_args *args;
1075
1076 args = xmalloc (sizeof (*args));
1077 args->skip_subroutines = skip_subroutines;
1078 args->single_inst = single_inst;
1079 args->count = count;
1080 args->thread = thread;
1081
1082 add_intermediate_continuation (tp, step_1_continuation, args, xfree);
1083 }
1084 }
1085 }
1086
1087 \f
1088 /* Continue program at specified address. */
1089
1090 static void
1091 jump_command (char *arg, int from_tty)
1092 {
1093 struct gdbarch *gdbarch = get_current_arch ();
1094 CORE_ADDR addr;
1095 struct symtabs_and_lines sals;
1096 struct symtab_and_line sal;
1097 struct symbol *fn;
1098 struct symbol *sfn;
1099 int async_exec = 0;
1100
1101 ERROR_NO_INFERIOR;
1102 ensure_not_tfind_mode ();
1103 ensure_valid_thread ();
1104 ensure_not_running ();
1105
1106 /* Find out whether we must run in the background. */
1107 if (arg != NULL)
1108 async_exec = strip_bg_char (&arg);
1109
1110 /* If we must run in the background, but the target can't do it,
1111 error out. */
1112 if (async_exec && !target_can_async_p ())
1113 error (_("Asynchronous execution not supported on this target."));
1114
1115 if (!arg)
1116 error_no_arg (_("starting address"));
1117
1118 sals = decode_line_spec_1 (arg, 1);
1119 if (sals.nelts != 1)
1120 {
1121 error (_("Unreasonable jump request"));
1122 }
1123
1124 sal = sals.sals[0];
1125 xfree (sals.sals);
1126
1127 if (sal.symtab == 0 && sal.pc == 0)
1128 error (_("No source file has been specified."));
1129
1130 resolve_sal_pc (&sal); /* May error out. */
1131
1132 /* See if we are trying to jump to another function. */
1133 fn = get_frame_function (get_current_frame ());
1134 sfn = find_pc_function (sal.pc);
1135 if (fn != NULL && sfn != fn)
1136 {
1137 if (!query (_("Line %d is not in `%s'. Jump anyway? "), sal.line,
1138 SYMBOL_PRINT_NAME (fn)))
1139 {
1140 error (_("Not confirmed."));
1141 /* NOTREACHED */
1142 }
1143 }
1144
1145 if (sfn != NULL)
1146 {
1147 fixup_symbol_section (sfn, 0);
1148 if (section_is_overlay (SYMBOL_OBJ_SECTION (sfn)) &&
1149 !section_is_mapped (SYMBOL_OBJ_SECTION (sfn)))
1150 {
1151 if (!query (_("WARNING!!! Destination is in "
1152 "unmapped overlay! Jump anyway? ")))
1153 {
1154 error (_("Not confirmed."));
1155 /* NOTREACHED */
1156 }
1157 }
1158 }
1159
1160 addr = sal.pc;
1161
1162 if (from_tty)
1163 {
1164 printf_filtered (_("Continuing at "));
1165 fputs_filtered (paddress (gdbarch, addr), gdb_stdout);
1166 printf_filtered (".\n");
1167 }
1168
1169 /* If we are not asked to run in the bg, then prepare to run in the
1170 foreground, synchronously. */
1171 if (!async_exec && target_can_async_p ())
1172 {
1173 /* Simulate synchronous execution. */
1174 async_disable_stdin ();
1175 }
1176
1177 clear_proceed_status ();
1178 proceed (addr, TARGET_SIGNAL_0, 0);
1179 }
1180 \f
1181
1182 /* Go to line or address in current procedure. */
1183 static void
1184 go_command (char *line_no, int from_tty)
1185 {
1186 if (line_no == (char *) NULL || !*line_no)
1187 printf_filtered (_("Usage: go <location>\n"));
1188 else
1189 {
1190 tbreak_command (line_no, from_tty);
1191 jump_command (line_no, from_tty);
1192 }
1193 }
1194 \f
1195
1196 /* Continue program giving it specified signal. */
1197
1198 static void
1199 signal_command (char *signum_exp, int from_tty)
1200 {
1201 enum target_signal oursig;
1202 int async_exec = 0;
1203
1204 dont_repeat (); /* Too dangerous. */
1205 ERROR_NO_INFERIOR;
1206 ensure_not_tfind_mode ();
1207 ensure_valid_thread ();
1208 ensure_not_running ();
1209
1210 /* Find out whether we must run in the background. */
1211 if (signum_exp != NULL)
1212 async_exec = strip_bg_char (&signum_exp);
1213
1214 /* If we must run in the background, but the target can't do it,
1215 error out. */
1216 if (async_exec && !target_can_async_p ())
1217 error (_("Asynchronous execution not supported on this target."));
1218
1219 /* If we are not asked to run in the bg, then prepare to run in the
1220 foreground, synchronously. */
1221 if (!async_exec && target_can_async_p ())
1222 {
1223 /* Simulate synchronous execution. */
1224 async_disable_stdin ();
1225 }
1226
1227 if (!signum_exp)
1228 error_no_arg (_("signal number"));
1229
1230 /* It would be even slicker to make signal names be valid expressions,
1231 (the type could be "enum $signal" or some such), then the user could
1232 assign them to convenience variables. */
1233 oursig = target_signal_from_name (signum_exp);
1234
1235 if (oursig == TARGET_SIGNAL_UNKNOWN)
1236 {
1237 /* No, try numeric. */
1238 int num = parse_and_eval_long (signum_exp);
1239
1240 if (num == 0)
1241 oursig = TARGET_SIGNAL_0;
1242 else
1243 oursig = target_signal_from_command (num);
1244 }
1245
1246 if (from_tty)
1247 {
1248 if (oursig == TARGET_SIGNAL_0)
1249 printf_filtered (_("Continuing with no signal.\n"));
1250 else
1251 printf_filtered (_("Continuing with signal %s.\n"),
1252 target_signal_to_name (oursig));
1253 }
1254
1255 clear_proceed_status ();
1256 proceed ((CORE_ADDR) -1, oursig, 0);
1257 }
1258
1259 /* Continuation args to be passed to the "until" command
1260 continuation. */
1261 struct until_next_continuation_args
1262 {
1263 /* The thread that was current when the command was executed. */
1264 int thread;
1265 };
1266
1267 /* A continuation callback for until_next_command. */
1268
1269 static void
1270 until_next_continuation (void *arg, int err)
1271 {
1272 struct until_next_continuation_args *a = arg;
1273
1274 delete_longjmp_breakpoint (a->thread);
1275 }
1276
1277 /* Proceed until we reach a different source line with pc greater than
1278 our current one or exit the function. We skip calls in both cases.
1279
1280 Note that eventually this command should probably be changed so
1281 that only source lines are printed out when we hit the breakpoint
1282 we set. This may involve changes to wait_for_inferior and the
1283 proceed status code. */
1284
1285 static void
1286 until_next_command (int from_tty)
1287 {
1288 struct frame_info *frame;
1289 CORE_ADDR pc;
1290 struct symbol *func;
1291 struct symtab_and_line sal;
1292 struct thread_info *tp = inferior_thread ();
1293 int thread = tp->num;
1294 struct cleanup *old_chain;
1295
1296 clear_proceed_status ();
1297 set_step_frame ();
1298
1299 frame = get_current_frame ();
1300
1301 /* Step until either exited from this function or greater
1302 than the current line (if in symbolic section) or pc (if
1303 not). */
1304
1305 pc = get_frame_pc (frame);
1306 func = find_pc_function (pc);
1307
1308 if (!func)
1309 {
1310 struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (pc);
1311
1312 if (msymbol == NULL)
1313 error (_("Execution is not within a known function."));
1314
1315 tp->control.step_range_start = SYMBOL_VALUE_ADDRESS (msymbol);
1316 tp->control.step_range_end = pc;
1317 }
1318 else
1319 {
1320 sal = find_pc_line (pc, 0);
1321
1322 tp->control.step_range_start = BLOCK_START (SYMBOL_BLOCK_VALUE (func));
1323 tp->control.step_range_end = sal.end;
1324 }
1325
1326 tp->control.step_over_calls = STEP_OVER_ALL;
1327
1328 tp->step_multi = 0; /* Only one call to proceed */
1329
1330 set_longjmp_breakpoint (tp, get_frame_id (frame));
1331 old_chain = make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
1332
1333 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
1334
1335 if (target_can_async_p () && is_running (inferior_ptid))
1336 {
1337 struct until_next_continuation_args *cont_args;
1338
1339 discard_cleanups (old_chain);
1340 cont_args = XNEW (struct until_next_continuation_args);
1341 cont_args->thread = inferior_thread ()->num;
1342
1343 add_continuation (tp, until_next_continuation, cont_args, xfree);
1344 }
1345 else
1346 do_cleanups (old_chain);
1347 }
1348
1349 static void
1350 until_command (char *arg, int from_tty)
1351 {
1352 int async_exec = 0;
1353
1354 ERROR_NO_INFERIOR;
1355 ensure_not_tfind_mode ();
1356 ensure_valid_thread ();
1357 ensure_not_running ();
1358
1359 /* Find out whether we must run in the background. */
1360 if (arg != NULL)
1361 async_exec = strip_bg_char (&arg);
1362
1363 /* If we must run in the background, but the target can't do it,
1364 error out. */
1365 if (async_exec && !target_can_async_p ())
1366 error (_("Asynchronous execution not supported on this target."));
1367
1368 /* If we are not asked to run in the bg, then prepare to run in the
1369 foreground, synchronously. */
1370 if (!async_exec && target_can_async_p ())
1371 {
1372 /* Simulate synchronous execution. */
1373 async_disable_stdin ();
1374 }
1375
1376 if (arg)
1377 until_break_command (arg, from_tty, 0);
1378 else
1379 until_next_command (from_tty);
1380 }
1381
1382 static void
1383 advance_command (char *arg, int from_tty)
1384 {
1385 int async_exec = 0;
1386
1387 ERROR_NO_INFERIOR;
1388 ensure_not_tfind_mode ();
1389 ensure_valid_thread ();
1390 ensure_not_running ();
1391
1392 if (arg == NULL)
1393 error_no_arg (_("a location"));
1394
1395 /* Find out whether we must run in the background. */
1396 if (arg != NULL)
1397 async_exec = strip_bg_char (&arg);
1398
1399 /* If we must run in the background, but the target can't do it,
1400 error out. */
1401 if (async_exec && !target_can_async_p ())
1402 error (_("Asynchronous execution not supported on this target."));
1403
1404 /* If we are not asked to run in the bg, then prepare to run in the
1405 foreground, synchronously. */
1406 if (!async_exec && target_can_async_p ())
1407 {
1408 /* Simulate synchronous execution. */
1409 async_disable_stdin ();
1410 }
1411
1412 until_break_command (arg, from_tty, 1);
1413 }
1414 \f
1415 /* Print the result of a function at the end of a 'finish' command. */
1416
1417 static void
1418 print_return_value (struct type *func_type, struct type *value_type)
1419 {
1420 struct gdbarch *gdbarch = get_regcache_arch (stop_registers);
1421 struct cleanup *old_chain;
1422 struct ui_stream *stb;
1423 struct value *value;
1424
1425 CHECK_TYPEDEF (value_type);
1426 gdb_assert (TYPE_CODE (value_type) != TYPE_CODE_VOID);
1427
1428 /* FIXME: 2003-09-27: When returning from a nested inferior function
1429 call, it's possible (with no help from the architecture vector)
1430 to locate and return/print a "struct return" value. This is just
1431 a more complicated case of what is already being done in the
1432 inferior function call code. In fact, when inferior function
1433 calls are made async, this will likely be made the norm. */
1434
1435 switch (gdbarch_return_value (gdbarch, func_type, value_type,
1436 NULL, NULL, NULL))
1437 {
1438 case RETURN_VALUE_REGISTER_CONVENTION:
1439 case RETURN_VALUE_ABI_RETURNS_ADDRESS:
1440 case RETURN_VALUE_ABI_PRESERVES_ADDRESS:
1441 value = allocate_value (value_type);
1442 gdbarch_return_value (gdbarch, func_type, value_type, stop_registers,
1443 value_contents_raw (value), NULL);
1444 break;
1445 case RETURN_VALUE_STRUCT_CONVENTION:
1446 value = NULL;
1447 break;
1448 default:
1449 internal_error (__FILE__, __LINE__, _("bad switch"));
1450 }
1451
1452 if (value)
1453 {
1454 struct value_print_options opts;
1455
1456 /* Print it. */
1457 stb = ui_out_stream_new (uiout);
1458 old_chain = make_cleanup_ui_out_stream_delete (stb);
1459 ui_out_text (uiout, "Value returned is ");
1460 ui_out_field_fmt (uiout, "gdb-result-var", "$%d",
1461 record_latest_value (value));
1462 ui_out_text (uiout, " = ");
1463 get_raw_print_options (&opts);
1464 value_print (value, stb->stream, &opts);
1465 ui_out_field_stream (uiout, "return-value", stb);
1466 ui_out_text (uiout, "\n");
1467 do_cleanups (old_chain);
1468 }
1469 else
1470 {
1471 ui_out_text (uiout, "Value returned has type: ");
1472 ui_out_field_string (uiout, "return-type", TYPE_NAME (value_type));
1473 ui_out_text (uiout, ".");
1474 ui_out_text (uiout, " Cannot determine contents\n");
1475 }
1476 }
1477
1478 /* Stuff that needs to be done by the finish command after the target
1479 has stopped. In asynchronous mode, we wait for the target to stop
1480 in the call to poll or select in the event loop, so it is
1481 impossible to do all the stuff as part of the finish_command
1482 function itself. The only chance we have to complete this command
1483 is in fetch_inferior_event, which is called by the event loop as
1484 soon as it detects that the target has stopped. */
1485
1486 struct finish_command_continuation_args
1487 {
1488 /* The thread that as current when the command was executed. */
1489 int thread;
1490 struct breakpoint *breakpoint;
1491 struct symbol *function;
1492 };
1493
1494 static void
1495 finish_command_continuation (void *arg, int err)
1496 {
1497 struct finish_command_continuation_args *a = arg;
1498
1499 if (!err)
1500 {
1501 struct thread_info *tp = NULL;
1502 bpstat bs = NULL;
1503
1504 if (!ptid_equal (inferior_ptid, null_ptid)
1505 && target_has_execution
1506 && is_stopped (inferior_ptid))
1507 {
1508 tp = inferior_thread ();
1509 bs = tp->control.stop_bpstat;
1510 }
1511
1512 if (bpstat_find_breakpoint (bs, a->breakpoint) != NULL
1513 && a->function != NULL)
1514 {
1515 struct type *value_type;
1516
1517 value_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (a->function));
1518 if (!value_type)
1519 internal_error (__FILE__, __LINE__,
1520 _("finish_command: function has no target type"));
1521
1522 if (TYPE_CODE (value_type) != TYPE_CODE_VOID)
1523 {
1524 volatile struct gdb_exception ex;
1525
1526 TRY_CATCH (ex, RETURN_MASK_ALL)
1527 {
1528 /* print_return_value can throw an exception in some
1529 circumstances. We need to catch this so that we still
1530 delete the breakpoint. */
1531 print_return_value (SYMBOL_TYPE (a->function), value_type);
1532 }
1533 if (ex.reason < 0)
1534 exception_print (gdb_stdout, ex);
1535 }
1536 }
1537
1538 /* We suppress normal call of normal_stop observer and do it
1539 here so that the *stopped notification includes the return
1540 value. */
1541 if (bs != NULL && tp->control.proceed_to_finish)
1542 observer_notify_normal_stop (bs, 1 /* print frame */);
1543 }
1544
1545 delete_breakpoint (a->breakpoint);
1546 delete_longjmp_breakpoint (a->thread);
1547 }
1548
1549 static void
1550 finish_command_continuation_free_arg (void *arg)
1551 {
1552 xfree (arg);
1553 }
1554
1555 /* finish_backward -- helper function for finish_command. */
1556
1557 static void
1558 finish_backward (struct symbol *function)
1559 {
1560 struct symtab_and_line sal;
1561 struct thread_info *tp = inferior_thread ();
1562 CORE_ADDR pc;
1563 CORE_ADDR func_addr;
1564
1565 pc = get_frame_pc (get_current_frame ());
1566
1567 if (find_pc_partial_function (pc, NULL, &func_addr, NULL) == 0)
1568 internal_error (__FILE__, __LINE__,
1569 _("Finish: couldn't find function."));
1570
1571 sal = find_pc_line (func_addr, 0);
1572
1573 tp->control.proceed_to_finish = 1;
1574 /* Special case: if we're sitting at the function entry point,
1575 then all we need to do is take a reverse singlestep. We
1576 don't need to set a breakpoint, and indeed it would do us
1577 no good to do so.
1578
1579 Note that this can only happen at frame #0, since there's
1580 no way that a function up the stack can have a return address
1581 that's equal to its entry point. */
1582
1583 if (sal.pc != pc)
1584 {
1585 struct frame_info *frame = get_selected_frame (NULL);
1586 struct gdbarch *gdbarch = get_frame_arch (frame);
1587 struct symtab_and_line sr_sal;
1588
1589 /* Set a step-resume at the function's entry point. Once that's
1590 hit, we'll do one more step backwards. */
1591 init_sal (&sr_sal);
1592 sr_sal.pc = sal.pc;
1593 sr_sal.pspace = get_frame_program_space (frame);
1594 insert_step_resume_breakpoint_at_sal (gdbarch,
1595 sr_sal, null_frame_id);
1596
1597 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
1598 }
1599 else
1600 {
1601 /* We're almost there -- we just need to back up by one more
1602 single-step. */
1603 tp->control.step_range_start = tp->control.step_range_end = 1;
1604 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
1605 }
1606 }
1607
1608 /* finish_forward -- helper function for finish_command. */
1609
1610 static void
1611 finish_forward (struct symbol *function, struct frame_info *frame)
1612 {
1613 struct gdbarch *gdbarch = get_frame_arch (frame);
1614 struct symtab_and_line sal;
1615 struct thread_info *tp = inferior_thread ();
1616 struct breakpoint *breakpoint;
1617 struct cleanup *old_chain;
1618 struct finish_command_continuation_args *cargs;
1619 int thread = tp->num;
1620
1621 sal = find_pc_line (get_frame_pc (frame), 0);
1622 sal.pc = get_frame_pc (frame);
1623
1624 breakpoint = set_momentary_breakpoint (gdbarch, sal,
1625 get_stack_frame_id (frame),
1626 bp_finish);
1627
1628 old_chain = make_cleanup_delete_breakpoint (breakpoint);
1629
1630 set_longjmp_breakpoint (tp, get_frame_id (frame));
1631 make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
1632
1633 /* We want stop_registers, please... */
1634 tp->control.proceed_to_finish = 1;
1635 cargs = xmalloc (sizeof (*cargs));
1636
1637 cargs->thread = thread;
1638 cargs->breakpoint = breakpoint;
1639 cargs->function = function;
1640 add_continuation (tp, finish_command_continuation, cargs,
1641 finish_command_continuation_free_arg);
1642 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
1643
1644 discard_cleanups (old_chain);
1645 if (!target_can_async_p ())
1646 do_all_continuations (0);
1647 }
1648
1649 /* "finish": Set a temporary breakpoint at the place the selected
1650 frame will return to, then continue. */
1651
1652 static void
1653 finish_command (char *arg, int from_tty)
1654 {
1655 struct frame_info *frame;
1656 struct symbol *function;
1657
1658 int async_exec = 0;
1659
1660 ERROR_NO_INFERIOR;
1661 ensure_not_tfind_mode ();
1662 ensure_valid_thread ();
1663 ensure_not_running ();
1664
1665 /* Find out whether we must run in the background. */
1666 if (arg != NULL)
1667 async_exec = strip_bg_char (&arg);
1668
1669 /* If we must run in the background, but the target can't do it,
1670 error out. */
1671 if (async_exec && !target_can_async_p ())
1672 error (_("Asynchronous execution not supported on this target."));
1673
1674 /* If we are not asked to run in the bg, then prepare to run in the
1675 foreground, synchronously. */
1676 if (!async_exec && target_can_async_p ())
1677 {
1678 /* Simulate synchronous execution. */
1679 async_disable_stdin ();
1680 }
1681
1682 if (arg)
1683 error (_("The \"finish\" command does not take any arguments."));
1684
1685 frame = get_prev_frame (get_selected_frame (_("No selected frame.")));
1686 if (frame == 0)
1687 error (_("\"finish\" not meaningful in the outermost frame."));
1688
1689 clear_proceed_status ();
1690
1691 /* Finishing from an inline frame is completely different. We don't
1692 try to show the "return value" - no way to locate it. So we do
1693 not need a completion. */
1694 if (get_frame_type (get_selected_frame (_("No selected frame.")))
1695 == INLINE_FRAME)
1696 {
1697 /* Claim we are stepping in the calling frame. An empty step
1698 range means that we will stop once we aren't in a function
1699 called by that frame. We don't use the magic "1" value for
1700 step_range_end, because then infrun will think this is nexti,
1701 and not step over the rest of this inlined function call. */
1702 struct thread_info *tp = inferior_thread ();
1703 struct symtab_and_line empty_sal;
1704
1705 init_sal (&empty_sal);
1706 set_step_info (frame, empty_sal);
1707 tp->control.step_range_start = get_frame_pc (frame);
1708 tp->control.step_range_end = tp->control.step_range_start;
1709 tp->control.step_over_calls = STEP_OVER_ALL;
1710
1711 /* Print info on the selected frame, including level number but not
1712 source. */
1713 if (from_tty)
1714 {
1715 printf_filtered (_("Run till exit from "));
1716 print_stack_frame (get_selected_frame (NULL), 1, LOCATION);
1717 }
1718
1719 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
1720 return;
1721 }
1722
1723 /* Find the function we will return from. */
1724
1725 function = find_pc_function (get_frame_pc (get_selected_frame (NULL)));
1726
1727 /* Print info on the selected frame, including level number but not
1728 source. */
1729 if (from_tty)
1730 {
1731 if (execution_direction == EXEC_REVERSE)
1732 printf_filtered (_("Run back to call of "));
1733 else
1734 printf_filtered (_("Run till exit from "));
1735
1736 print_stack_frame (get_selected_frame (NULL), 1, LOCATION);
1737 }
1738
1739 if (execution_direction == EXEC_REVERSE)
1740 finish_backward (function);
1741 else
1742 finish_forward (function, frame);
1743 }
1744 \f
1745
1746 static void
1747 program_info (char *args, int from_tty)
1748 {
1749 bpstat bs;
1750 int num, stat;
1751 struct thread_info *tp;
1752 ptid_t ptid;
1753
1754 if (!target_has_execution)
1755 {
1756 printf_filtered (_("The program being debugged is not being run.\n"));
1757 return;
1758 }
1759
1760 if (non_stop)
1761 ptid = inferior_ptid;
1762 else
1763 {
1764 struct target_waitstatus ws;
1765
1766 get_last_target_status (&ptid, &ws);
1767 }
1768
1769 if (ptid_equal (ptid, null_ptid) || is_exited (ptid))
1770 error (_("Invalid selected thread."));
1771 else if (is_running (ptid))
1772 error (_("Selected thread is running."));
1773
1774 tp = find_thread_ptid (ptid);
1775 bs = tp->control.stop_bpstat;
1776 stat = bpstat_num (&bs, &num);
1777
1778 target_files_info ();
1779 printf_filtered (_("Program stopped at %s.\n"),
1780 paddress (target_gdbarch, stop_pc));
1781 if (tp->control.stop_step)
1782 printf_filtered (_("It stopped after being stepped.\n"));
1783 else if (stat != 0)
1784 {
1785 /* There may be several breakpoints in the same place, so this
1786 isn't as strange as it seems. */
1787 while (stat != 0)
1788 {
1789 if (stat < 0)
1790 {
1791 printf_filtered (_("It stopped at a breakpoint "
1792 "that has since been deleted.\n"));
1793 }
1794 else
1795 printf_filtered (_("It stopped at breakpoint %d.\n"), num);
1796 stat = bpstat_num (&bs, &num);
1797 }
1798 }
1799 else if (tp->suspend.stop_signal != TARGET_SIGNAL_0)
1800 {
1801 printf_filtered (_("It stopped with signal %s, %s.\n"),
1802 target_signal_to_name (tp->suspend.stop_signal),
1803 target_signal_to_string (tp->suspend.stop_signal));
1804 }
1805
1806 if (!from_tty)
1807 {
1808 printf_filtered (_("Type \"info stack\" or \"info "
1809 "registers\" for more information.\n"));
1810 }
1811 }
1812 \f
1813 static void
1814 environment_info (char *var, int from_tty)
1815 {
1816 if (var)
1817 {
1818 char *val = get_in_environ (current_inferior ()->environment, var);
1819
1820 if (val)
1821 {
1822 puts_filtered (var);
1823 puts_filtered (" = ");
1824 puts_filtered (val);
1825 puts_filtered ("\n");
1826 }
1827 else
1828 {
1829 puts_filtered ("Environment variable \"");
1830 puts_filtered (var);
1831 puts_filtered ("\" not defined.\n");
1832 }
1833 }
1834 else
1835 {
1836 char **vector = environ_vector (current_inferior ()->environment);
1837
1838 while (*vector)
1839 {
1840 puts_filtered (*vector++);
1841 puts_filtered ("\n");
1842 }
1843 }
1844 }
1845
1846 static void
1847 set_environment_command (char *arg, int from_tty)
1848 {
1849 char *p, *val, *var;
1850 int nullset = 0;
1851
1852 if (arg == 0)
1853 error_no_arg (_("environment variable and value"));
1854
1855 /* Find seperation between variable name and value. */
1856 p = (char *) strchr (arg, '=');
1857 val = (char *) strchr (arg, ' ');
1858
1859 if (p != 0 && val != 0)
1860 {
1861 /* We have both a space and an equals. If the space is before the
1862 equals, walk forward over the spaces til we see a nonspace
1863 (possibly the equals). */
1864 if (p > val)
1865 while (*val == ' ')
1866 val++;
1867
1868 /* Now if the = is after the char following the spaces,
1869 take the char following the spaces. */
1870 if (p > val)
1871 p = val - 1;
1872 }
1873 else if (val != 0 && p == 0)
1874 p = val;
1875
1876 if (p == arg)
1877 error_no_arg (_("environment variable to set"));
1878
1879 if (p == 0 || p[1] == 0)
1880 {
1881 nullset = 1;
1882 if (p == 0)
1883 p = arg + strlen (arg); /* So that savestring below will work. */
1884 }
1885 else
1886 {
1887 /* Not setting variable value to null. */
1888 val = p + 1;
1889 while (*val == ' ' || *val == '\t')
1890 val++;
1891 }
1892
1893 while (p != arg && (p[-1] == ' ' || p[-1] == '\t'))
1894 p--;
1895
1896 var = savestring (arg, p - arg);
1897 if (nullset)
1898 {
1899 printf_filtered (_("Setting environment variable "
1900 "\"%s\" to null value.\n"),
1901 var);
1902 set_in_environ (current_inferior ()->environment, var, "");
1903 }
1904 else
1905 set_in_environ (current_inferior ()->environment, var, val);
1906 xfree (var);
1907 }
1908
1909 static void
1910 unset_environment_command (char *var, int from_tty)
1911 {
1912 if (var == 0)
1913 {
1914 /* If there is no argument, delete all environment variables.
1915 Ask for confirmation if reading from the terminal. */
1916 if (!from_tty || query (_("Delete all environment variables? ")))
1917 {
1918 free_environ (current_inferior ()->environment);
1919 current_inferior ()->environment = make_environ ();
1920 }
1921 }
1922 else
1923 unset_in_environ (current_inferior ()->environment, var);
1924 }
1925
1926 /* Handle the execution path (PATH variable). */
1927
1928 static const char path_var_name[] = "PATH";
1929
1930 static void
1931 path_info (char *args, int from_tty)
1932 {
1933 puts_filtered ("Executable and object file path: ");
1934 puts_filtered (get_in_environ (current_inferior ()->environment,
1935 path_var_name));
1936 puts_filtered ("\n");
1937 }
1938
1939 /* Add zero or more directories to the front of the execution path. */
1940
1941 static void
1942 path_command (char *dirname, int from_tty)
1943 {
1944 char *exec_path;
1945 char *env;
1946
1947 dont_repeat ();
1948 env = get_in_environ (current_inferior ()->environment, path_var_name);
1949 /* Can be null if path is not set. */
1950 if (!env)
1951 env = "";
1952 exec_path = xstrdup (env);
1953 mod_path (dirname, &exec_path);
1954 set_in_environ (current_inferior ()->environment, path_var_name, exec_path);
1955 xfree (exec_path);
1956 if (from_tty)
1957 path_info ((char *) NULL, from_tty);
1958 }
1959 \f
1960
1961 /* Print out the machine register regnum. If regnum is -1, print all
1962 registers (print_all == 1) or all non-float and non-vector
1963 registers (print_all == 0).
1964
1965 For most machines, having all_registers_info() print the
1966 register(s) one per line is good enough. If a different format is
1967 required, (eg, for MIPS or Pyramid 90x, which both have lots of
1968 regs), or there is an existing convention for showing all the
1969 registers, define the architecture method PRINT_REGISTERS_INFO to
1970 provide that format. */
1971
1972 void
1973 default_print_registers_info (struct gdbarch *gdbarch,
1974 struct ui_file *file,
1975 struct frame_info *frame,
1976 int regnum, int print_all)
1977 {
1978 int i;
1979 const int numregs = gdbarch_num_regs (gdbarch)
1980 + gdbarch_num_pseudo_regs (gdbarch);
1981
1982 for (i = 0; i < numregs; i++)
1983 {
1984 struct type *regtype;
1985 struct value *val;
1986
1987 /* Decide between printing all regs, non-float / vector regs, or
1988 specific reg. */
1989 if (regnum == -1)
1990 {
1991 if (print_all)
1992 {
1993 if (!gdbarch_register_reggroup_p (gdbarch, i, all_reggroup))
1994 continue;
1995 }
1996 else
1997 {
1998 if (!gdbarch_register_reggroup_p (gdbarch, i, general_reggroup))
1999 continue;
2000 }
2001 }
2002 else
2003 {
2004 if (i != regnum)
2005 continue;
2006 }
2007
2008 /* If the register name is empty, it is undefined for this
2009 processor, so don't display anything. */
2010 if (gdbarch_register_name (gdbarch, i) == NULL
2011 || *(gdbarch_register_name (gdbarch, i)) == '\0')
2012 continue;
2013
2014 fputs_filtered (gdbarch_register_name (gdbarch, i), file);
2015 print_spaces_filtered (15 - strlen (gdbarch_register_name
2016 (gdbarch, i)), file);
2017
2018 regtype = register_type (gdbarch, i);
2019 val = allocate_value (regtype);
2020
2021 /* Get the data in raw format. */
2022 if (! frame_register_read (frame, i, value_contents_raw (val)))
2023 {
2024 fprintf_filtered (file, "*value not available*\n");
2025 continue;
2026 }
2027
2028 /* If virtual format is floating, print it that way, and in raw
2029 hex. */
2030 if (TYPE_CODE (regtype) == TYPE_CODE_FLT
2031 || TYPE_CODE (regtype) == TYPE_CODE_DECFLOAT)
2032 {
2033 int j;
2034 struct value_print_options opts;
2035 const gdb_byte *valaddr = value_contents_for_printing (val);
2036
2037 get_user_print_options (&opts);
2038 opts.deref_ref = 1;
2039
2040 val_print (regtype,
2041 value_contents_for_printing (val),
2042 value_embedded_offset (val), 0,
2043 file, 0, val, &opts, current_language);
2044
2045 fprintf_filtered (file, "\t(raw 0x");
2046 for (j = 0; j < register_size (gdbarch, i); j++)
2047 {
2048 int idx;
2049
2050 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
2051 idx = j;
2052 else
2053 idx = register_size (gdbarch, i) - 1 - j;
2054 fprintf_filtered (file, "%02x", (unsigned char) valaddr[idx]);
2055 }
2056 fprintf_filtered (file, ")");
2057 }
2058 else
2059 {
2060 struct value_print_options opts;
2061
2062 /* Print the register in hex. */
2063 get_formatted_print_options (&opts, 'x');
2064 opts.deref_ref = 1;
2065 val_print (regtype,
2066 value_contents_for_printing (val),
2067 value_embedded_offset (val), 0,
2068 file, 0, val, &opts, current_language);
2069 /* If not a vector register, print it also according to its
2070 natural format. */
2071 if (TYPE_VECTOR (regtype) == 0)
2072 {
2073 get_user_print_options (&opts);
2074 opts.deref_ref = 1;
2075 fprintf_filtered (file, "\t");
2076 val_print (regtype,
2077 value_contents_for_printing (val),
2078 value_embedded_offset (val), 0,
2079 file, 0, val, &opts, current_language);
2080 }
2081 }
2082
2083 fprintf_filtered (file, "\n");
2084 }
2085 }
2086
2087 void
2088 registers_info (char *addr_exp, int fpregs)
2089 {
2090 struct frame_info *frame;
2091 struct gdbarch *gdbarch;
2092
2093 if (!target_has_registers)
2094 error (_("The program has no registers now."));
2095 frame = get_selected_frame (NULL);
2096 gdbarch = get_frame_arch (frame);
2097
2098 if (!addr_exp)
2099 {
2100 gdbarch_print_registers_info (gdbarch, gdb_stdout,
2101 frame, -1, fpregs);
2102 return;
2103 }
2104
2105 while (*addr_exp != '\0')
2106 {
2107 char *start;
2108 const char *end;
2109
2110 /* Keep skipping leading white space. */
2111 if (isspace ((*addr_exp)))
2112 {
2113 addr_exp++;
2114 continue;
2115 }
2116
2117 /* Discard any leading ``$''. Check that there is something
2118 resembling a register following it. */
2119 if (addr_exp[0] == '$')
2120 addr_exp++;
2121 if (isspace ((*addr_exp)) || (*addr_exp) == '\0')
2122 error (_("Missing register name"));
2123
2124 /* Find the start/end of this register name/num/group. */
2125 start = addr_exp;
2126 while ((*addr_exp) != '\0' && !isspace ((*addr_exp)))
2127 addr_exp++;
2128 end = addr_exp;
2129
2130 /* Figure out what we've found and display it. */
2131
2132 /* A register name? */
2133 {
2134 int regnum = user_reg_map_name_to_regnum (gdbarch, start, end - start);
2135
2136 if (regnum >= 0)
2137 {
2138 /* User registers lie completely outside of the range of
2139 normal registers. Catch them early so that the target
2140 never sees them. */
2141 if (regnum >= gdbarch_num_regs (gdbarch)
2142 + gdbarch_num_pseudo_regs (gdbarch))
2143 {
2144 struct value_print_options opts;
2145 struct value *val = value_of_user_reg (regnum, frame);
2146
2147 printf_filtered ("%s: ", start);
2148 get_formatted_print_options (&opts, 'x');
2149 val_print_scalar_formatted (check_typedef (value_type (val)),
2150 value_contents_for_printing (val),
2151 value_embedded_offset (val),
2152 val,
2153 &opts, 0, gdb_stdout);
2154 printf_filtered ("\n");
2155 }
2156 else
2157 gdbarch_print_registers_info (gdbarch, gdb_stdout,
2158 frame, regnum, fpregs);
2159 continue;
2160 }
2161 }
2162
2163 /* A register group? */
2164 {
2165 struct reggroup *group;
2166
2167 for (group = reggroup_next (gdbarch, NULL);
2168 group != NULL;
2169 group = reggroup_next (gdbarch, group))
2170 {
2171 /* Don't bother with a length check. Should the user
2172 enter a short register group name, go with the first
2173 group that matches. */
2174 if (strncmp (start, reggroup_name (group), end - start) == 0)
2175 break;
2176 }
2177 if (group != NULL)
2178 {
2179 int regnum;
2180
2181 for (regnum = 0;
2182 regnum < gdbarch_num_regs (gdbarch)
2183 + gdbarch_num_pseudo_regs (gdbarch);
2184 regnum++)
2185 {
2186 if (gdbarch_register_reggroup_p (gdbarch, regnum, group))
2187 gdbarch_print_registers_info (gdbarch,
2188 gdb_stdout, frame,
2189 regnum, fpregs);
2190 }
2191 continue;
2192 }
2193 }
2194
2195 /* Nothing matched. */
2196 error (_("Invalid register `%.*s'"), (int) (end - start), start);
2197 }
2198 }
2199
2200 void
2201 all_registers_info (char *addr_exp, int from_tty)
2202 {
2203 registers_info (addr_exp, 1);
2204 }
2205
2206 static void
2207 nofp_registers_info (char *addr_exp, int from_tty)
2208 {
2209 registers_info (addr_exp, 0);
2210 }
2211
2212 static void
2213 print_vector_info (struct ui_file *file,
2214 struct frame_info *frame, const char *args)
2215 {
2216 struct gdbarch *gdbarch = get_frame_arch (frame);
2217
2218 if (gdbarch_print_vector_info_p (gdbarch))
2219 gdbarch_print_vector_info (gdbarch, file, frame, args);
2220 else
2221 {
2222 int regnum;
2223 int printed_something = 0;
2224
2225 for (regnum = 0;
2226 regnum < gdbarch_num_regs (gdbarch)
2227 + gdbarch_num_pseudo_regs (gdbarch);
2228 regnum++)
2229 {
2230 if (gdbarch_register_reggroup_p (gdbarch, regnum, vector_reggroup))
2231 {
2232 printed_something = 1;
2233 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
2234 }
2235 }
2236 if (!printed_something)
2237 fprintf_filtered (file, "No vector information\n");
2238 }
2239 }
2240
2241 static void
2242 vector_info (char *args, int from_tty)
2243 {
2244 if (!target_has_registers)
2245 error (_("The program has no registers now."));
2246
2247 print_vector_info (gdb_stdout, get_selected_frame (NULL), args);
2248 }
2249 \f
2250 /* Kill the inferior process. Make us have no inferior. */
2251
2252 static void
2253 kill_command (char *arg, int from_tty)
2254 {
2255 /* FIXME: This should not really be inferior_ptid (or target_has_execution).
2256 It should be a distinct flag that indicates that a target is active, cuz
2257 some targets don't have processes! */
2258
2259 if (ptid_equal (inferior_ptid, null_ptid))
2260 error (_("The program is not being run."));
2261 if (!query (_("Kill the program being debugged? ")))
2262 error (_("Not confirmed."));
2263 target_kill ();
2264
2265 /* If we still have other inferiors to debug, then don't mess with
2266 with their threads. */
2267 if (!have_inferiors ())
2268 {
2269 init_thread_list (); /* Destroy thread info. */
2270
2271 /* Killing off the inferior can leave us with a core file. If
2272 so, print the state we are left in. */
2273 if (target_has_stack)
2274 {
2275 printf_filtered (_("In %s,\n"), target_longname);
2276 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC);
2277 }
2278 }
2279 bfd_cache_close_all ();
2280 }
2281
2282 /* Used in `attach&' command. ARG is a point to an integer
2283 representing a process id. Proceed threads of this process iff
2284 they stopped due to debugger request, and when they did, they
2285 reported a clean stop (TARGET_SIGNAL_0). Do not proceed threads
2286 that have been explicitly been told to stop. */
2287
2288 static int
2289 proceed_after_attach_callback (struct thread_info *thread,
2290 void *arg)
2291 {
2292 int pid = * (int *) arg;
2293
2294 if (ptid_get_pid (thread->ptid) == pid
2295 && !is_exited (thread->ptid)
2296 && !is_executing (thread->ptid)
2297 && !thread->stop_requested
2298 && thread->suspend.stop_signal == TARGET_SIGNAL_0)
2299 {
2300 switch_to_thread (thread->ptid);
2301 clear_proceed_status ();
2302 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
2303 }
2304
2305 return 0;
2306 }
2307
2308 static void
2309 proceed_after_attach (int pid)
2310 {
2311 /* Don't error out if the current thread is running, because
2312 there may be other stopped threads. */
2313 struct cleanup *old_chain;
2314
2315 /* Backup current thread and selected frame. */
2316 old_chain = make_cleanup_restore_current_thread ();
2317
2318 iterate_over_threads (proceed_after_attach_callback, &pid);
2319
2320 /* Restore selected ptid. */
2321 do_cleanups (old_chain);
2322 }
2323
2324 /*
2325 * TODO:
2326 * Should save/restore the tty state since it might be that the
2327 * program to be debugged was started on this tty and it wants
2328 * the tty in some state other than what we want. If it's running
2329 * on another terminal or without a terminal, then saving and
2330 * restoring the tty state is a harmless no-op.
2331 * This only needs to be done if we are attaching to a process.
2332 */
2333
2334 /* attach_command --
2335 takes a program started up outside of gdb and ``attaches'' to it.
2336 This stops it cold in its tracks and allows us to start debugging it.
2337 and wait for the trace-trap that results from attaching. */
2338
2339 static void
2340 attach_command_post_wait (char *args, int from_tty, int async_exec)
2341 {
2342 char *exec_file;
2343 char *full_exec_path = NULL;
2344 struct inferior *inferior;
2345
2346 inferior = current_inferior ();
2347 inferior->control.stop_soon = NO_STOP_QUIETLY;
2348
2349 /* If no exec file is yet known, try to determine it from the
2350 process itself. */
2351 exec_file = (char *) get_exec_file (0);
2352 if (!exec_file)
2353 {
2354 exec_file = target_pid_to_exec_file (PIDGET (inferior_ptid));
2355 if (exec_file)
2356 {
2357 /* It's possible we don't have a full path, but rather just a
2358 filename. Some targets, such as HP-UX, don't provide the
2359 full path, sigh.
2360
2361 Attempt to qualify the filename against the source path.
2362 (If that fails, we'll just fall back on the original
2363 filename. Not much more we can do...) */
2364
2365 if (!source_full_path_of (exec_file, &full_exec_path))
2366 full_exec_path = xstrdup (exec_file);
2367
2368 exec_file_attach (full_exec_path, from_tty);
2369 symbol_file_add_main (full_exec_path, from_tty);
2370 }
2371 }
2372 else
2373 {
2374 reopen_exec_file ();
2375 reread_symbols ();
2376 }
2377
2378 /* Take any necessary post-attaching actions for this platform. */
2379 target_post_attach (PIDGET (inferior_ptid));
2380
2381 post_create_inferior (&current_target, from_tty);
2382
2383 /* Install inferior's terminal modes. */
2384 target_terminal_inferior ();
2385
2386 if (async_exec)
2387 {
2388 /* The user requested an `attach&', so be sure to leave threads
2389 that didn't get a signal running. */
2390
2391 /* Immediatelly resume all suspended threads of this inferior,
2392 and this inferior only. This should have no effect on
2393 already running threads. If a thread has been stopped with a
2394 signal, leave it be. */
2395 if (non_stop)
2396 proceed_after_attach (inferior->pid);
2397 else
2398 {
2399 if (inferior_thread ()->suspend.stop_signal == TARGET_SIGNAL_0)
2400 {
2401 clear_proceed_status ();
2402 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
2403 }
2404 }
2405 }
2406 else
2407 {
2408 /* The user requested a plain `attach', so be sure to leave
2409 the inferior stopped. */
2410
2411 if (target_can_async_p ())
2412 async_enable_stdin ();
2413
2414 /* At least the current thread is already stopped. */
2415
2416 /* In all-stop, by definition, all threads have to be already
2417 stopped at this point. In non-stop, however, although the
2418 selected thread is stopped, others may still be executing.
2419 Be sure to explicitly stop all threads of the process. This
2420 should have no effect on already stopped threads. */
2421 if (non_stop)
2422 target_stop (pid_to_ptid (inferior->pid));
2423
2424 /* Tell the user/frontend where we're stopped. */
2425 normal_stop ();
2426 if (deprecated_attach_hook)
2427 deprecated_attach_hook ();
2428 }
2429 }
2430
2431 struct attach_command_continuation_args
2432 {
2433 char *args;
2434 int from_tty;
2435 int async_exec;
2436 };
2437
2438 static void
2439 attach_command_continuation (void *args, int err)
2440 {
2441 struct attach_command_continuation_args *a = args;
2442
2443 if (err)
2444 return;
2445
2446 attach_command_post_wait (a->args, a->from_tty, a->async_exec);
2447 }
2448
2449 static void
2450 attach_command_continuation_free_args (void *args)
2451 {
2452 struct attach_command_continuation_args *a = args;
2453
2454 xfree (a->args);
2455 xfree (a);
2456 }
2457
2458 void
2459 attach_command (char *args, int from_tty)
2460 {
2461 int async_exec = 0;
2462 struct cleanup *back_to = make_cleanup (null_cleanup, NULL);
2463
2464 dont_repeat (); /* Not for the faint of heart */
2465
2466 if (gdbarch_has_global_solist (target_gdbarch))
2467 /* Don't complain if all processes share the same symbol
2468 space. */
2469 ;
2470 else if (target_has_execution)
2471 {
2472 if (query (_("A program is being debugged already. Kill it? ")))
2473 target_kill ();
2474 else
2475 error (_("Not killed."));
2476 }
2477
2478 /* Clean up any leftovers from other runs. Some other things from
2479 this function should probably be moved into target_pre_inferior. */
2480 target_pre_inferior (from_tty);
2481
2482 if (non_stop && !target_supports_non_stop ())
2483 error (_("Cannot attach to this target in non-stop mode"));
2484
2485 if (args)
2486 {
2487 async_exec = strip_bg_char (&args);
2488
2489 /* If we get a request for running in the bg but the target
2490 doesn't support it, error out. */
2491 if (async_exec && !target_can_async_p ())
2492 error (_("Asynchronous execution not supported on this target."));
2493 }
2494
2495 /* If we don't get a request of running in the bg, then we need
2496 to simulate synchronous (fg) execution. */
2497 if (!async_exec && target_can_async_p ())
2498 {
2499 /* Simulate synchronous execution. */
2500 async_disable_stdin ();
2501 make_cleanup ((make_cleanup_ftype *)async_enable_stdin, NULL);
2502 }
2503
2504 target_attach (args, from_tty);
2505
2506 /* Set up the "saved terminal modes" of the inferior
2507 based on what modes we are starting it with. */
2508 target_terminal_init ();
2509
2510 /* Set up execution context to know that we should return from
2511 wait_for_inferior as soon as the target reports a stop. */
2512 init_wait_for_inferior ();
2513 clear_proceed_status ();
2514
2515 if (non_stop)
2516 {
2517 /* If we find that the current thread isn't stopped, explicitly
2518 do so now, because we're going to install breakpoints and
2519 poke at memory. */
2520
2521 if (async_exec)
2522 /* The user requested an `attach&'; stop just one thread. */
2523 target_stop (inferior_ptid);
2524 else
2525 /* The user requested an `attach', so stop all threads of this
2526 inferior. */
2527 target_stop (pid_to_ptid (ptid_get_pid (inferior_ptid)));
2528 }
2529
2530 /* Some system don't generate traps when attaching to inferior.
2531 E.g. Mach 3 or GNU hurd. */
2532 if (!target_attach_no_wait)
2533 {
2534 struct inferior *inferior = current_inferior ();
2535
2536 /* Careful here. See comments in inferior.h. Basically some
2537 OSes don't ignore SIGSTOPs on continue requests anymore. We
2538 need a way for handle_inferior_event to reset the stop_signal
2539 variable after an attach, and this is what
2540 STOP_QUIETLY_NO_SIGSTOP is for. */
2541 inferior->control.stop_soon = STOP_QUIETLY_NO_SIGSTOP;
2542
2543 if (target_can_async_p ())
2544 {
2545 /* sync_execution mode. Wait for stop. */
2546 struct attach_command_continuation_args *a;
2547
2548 a = xmalloc (sizeof (*a));
2549 a->args = xstrdup (args);
2550 a->from_tty = from_tty;
2551 a->async_exec = async_exec;
2552 add_inferior_continuation (attach_command_continuation, a,
2553 attach_command_continuation_free_args);
2554 discard_cleanups (back_to);
2555 return;
2556 }
2557
2558 wait_for_inferior ();
2559 }
2560
2561 attach_command_post_wait (args, from_tty, async_exec);
2562 discard_cleanups (back_to);
2563 }
2564
2565 /* We had just found out that the target was already attached to an
2566 inferior. PTID points at a thread of this new inferior, that is
2567 the most likely to be stopped right now, but not necessarily so.
2568 The new inferior is assumed to be already added to the inferior
2569 list at this point. If LEAVE_RUNNING, then leave the threads of
2570 this inferior running, except those we've explicitly seen reported
2571 as stopped. */
2572
2573 void
2574 notice_new_inferior (ptid_t ptid, int leave_running, int from_tty)
2575 {
2576 struct cleanup* old_chain;
2577 int async_exec;
2578
2579 old_chain = make_cleanup (null_cleanup, NULL);
2580
2581 /* If in non-stop, leave threads as running as they were. If
2582 they're stopped for some reason other than us telling it to, the
2583 target reports a signal != TARGET_SIGNAL_0. We don't try to
2584 resume threads with such a stop signal. */
2585 async_exec = non_stop;
2586
2587 if (!ptid_equal (inferior_ptid, null_ptid))
2588 make_cleanup_restore_current_thread ();
2589
2590 switch_to_thread (ptid);
2591
2592 /* When we "notice" a new inferior we need to do all the things we
2593 would normally do if we had just attached to it. */
2594
2595 if (is_executing (inferior_ptid))
2596 {
2597 struct inferior *inferior = current_inferior ();
2598
2599 /* We're going to install breakpoints, and poke at memory,
2600 ensure that the inferior is stopped for a moment while we do
2601 that. */
2602 target_stop (inferior_ptid);
2603
2604 inferior->control.stop_soon = STOP_QUIETLY_REMOTE;
2605
2606 /* Wait for stop before proceeding. */
2607 if (target_can_async_p ())
2608 {
2609 struct attach_command_continuation_args *a;
2610
2611 a = xmalloc (sizeof (*a));
2612 a->args = xstrdup ("");
2613 a->from_tty = from_tty;
2614 a->async_exec = async_exec;
2615 add_inferior_continuation (attach_command_continuation, a,
2616 attach_command_continuation_free_args);
2617
2618 do_cleanups (old_chain);
2619 return;
2620 }
2621 else
2622 wait_for_inferior ();
2623 }
2624
2625 async_exec = leave_running;
2626 attach_command_post_wait ("" /* args */, from_tty, async_exec);
2627
2628 do_cleanups (old_chain);
2629 }
2630
2631 /*
2632 * detach_command --
2633 * takes a program previously attached to and detaches it.
2634 * The program resumes execution and will no longer stop
2635 * on signals, etc. We better not have left any breakpoints
2636 * in the program or it'll die when it hits one. For this
2637 * to work, it may be necessary for the process to have been
2638 * previously attached. It *might* work if the program was
2639 * started via the normal ptrace (PTRACE_TRACEME).
2640 */
2641
2642 void
2643 detach_command (char *args, int from_tty)
2644 {
2645 dont_repeat (); /* Not for the faint of heart. */
2646
2647 if (ptid_equal (inferior_ptid, null_ptid))
2648 error (_("The program is not being run."));
2649
2650 disconnect_tracing (from_tty);
2651
2652 target_detach (args, from_tty);
2653
2654 /* If the solist is global across inferiors, don't clear it when we
2655 detach from a single inferior. */
2656 if (!gdbarch_has_global_solist (target_gdbarch))
2657 no_shared_libraries (NULL, from_tty);
2658
2659 /* If we still have inferiors to debug, then don't mess with their
2660 threads. */
2661 if (!have_inferiors ())
2662 init_thread_list ();
2663
2664 if (deprecated_detach_hook)
2665 deprecated_detach_hook ();
2666 }
2667
2668 /* Disconnect from the current target without resuming it (leaving it
2669 waiting for a debugger).
2670
2671 We'd better not have left any breakpoints in the program or the
2672 next debugger will get confused. Currently only supported for some
2673 remote targets, since the normal attach mechanisms don't work on
2674 stopped processes on some native platforms (e.g. GNU/Linux). */
2675
2676 static void
2677 disconnect_command (char *args, int from_tty)
2678 {
2679 dont_repeat (); /* Not for the faint of heart. */
2680 target_disconnect (args, from_tty);
2681 no_shared_libraries (NULL, from_tty);
2682 init_thread_list ();
2683 if (deprecated_detach_hook)
2684 deprecated_detach_hook ();
2685 }
2686
2687 void
2688 interrupt_target_1 (int all_threads)
2689 {
2690 ptid_t ptid;
2691
2692 if (all_threads)
2693 ptid = minus_one_ptid;
2694 else
2695 ptid = inferior_ptid;
2696 target_stop (ptid);
2697
2698 /* Tag the thread as having been explicitly requested to stop, so
2699 other parts of gdb know not to resume this thread automatically,
2700 if it was stopped due to an internal event. Limit this to
2701 non-stop mode, as when debugging a multi-threaded application in
2702 all-stop mode, we will only get one stop event --- it's undefined
2703 which thread will report the event. */
2704 if (non_stop)
2705 set_stop_requested (ptid, 1);
2706 }
2707
2708 /* Stop the execution of the target while running in async mode, in
2709 the backgound. In all-stop, stop the whole process. In non-stop
2710 mode, stop the current thread only by default, or stop all threads
2711 if the `-a' switch is used. */
2712
2713 /* interrupt [-a] */
2714 void
2715 interrupt_target_command (char *args, int from_tty)
2716 {
2717 if (target_can_async_p ())
2718 {
2719 int all_threads = 0;
2720
2721 dont_repeat (); /* Not for the faint of heart. */
2722
2723 if (args != NULL
2724 && strncmp (args, "-a", sizeof ("-a") - 1) == 0)
2725 all_threads = 1;
2726
2727 if (!non_stop && all_threads)
2728 error (_("-a is meaningless in all-stop mode."));
2729
2730 interrupt_target_1 (all_threads);
2731 }
2732 }
2733
2734 static void
2735 print_float_info (struct ui_file *file,
2736 struct frame_info *frame, const char *args)
2737 {
2738 struct gdbarch *gdbarch = get_frame_arch (frame);
2739
2740 if (gdbarch_print_float_info_p (gdbarch))
2741 gdbarch_print_float_info (gdbarch, file, frame, args);
2742 else
2743 {
2744 int regnum;
2745 int printed_something = 0;
2746
2747 for (regnum = 0;
2748 regnum < gdbarch_num_regs (gdbarch)
2749 + gdbarch_num_pseudo_regs (gdbarch);
2750 regnum++)
2751 {
2752 if (gdbarch_register_reggroup_p (gdbarch, regnum, float_reggroup))
2753 {
2754 printed_something = 1;
2755 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
2756 }
2757 }
2758 if (!printed_something)
2759 fprintf_filtered (file, "No floating-point info "
2760 "available for this processor.\n");
2761 }
2762 }
2763
2764 static void
2765 float_info (char *args, int from_tty)
2766 {
2767 if (!target_has_registers)
2768 error (_("The program has no registers now."));
2769
2770 print_float_info (gdb_stdout, get_selected_frame (NULL), args);
2771 }
2772 \f
2773 static void
2774 unset_command (char *args, int from_tty)
2775 {
2776 printf_filtered (_("\"unset\" must be followed by the "
2777 "name of an unset subcommand.\n"));
2778 help_list (unsetlist, "unset ", -1, gdb_stdout);
2779 }
2780
2781 void
2782 _initialize_infcmd (void)
2783 {
2784 struct cmd_list_element *c = NULL;
2785
2786 /* Add the filename of the terminal connected to inferior I/O. */
2787 add_setshow_filename_cmd ("inferior-tty", class_run,
2788 &inferior_io_terminal_scratch, _("\
2789 Set terminal for future runs of program being debugged."), _("\
2790 Show terminal for future runs of program being debugged."), _("\
2791 Usage: set inferior-tty /dev/pts/1"),
2792 set_inferior_tty_command,
2793 show_inferior_tty_command,
2794 &setlist, &showlist);
2795 add_com_alias ("tty", "set inferior-tty", class_alias, 0);
2796
2797 add_setshow_optional_filename_cmd ("args", class_run,
2798 &inferior_args_scratch, _("\
2799 Set argument list to give program being debugged when it is started."), _("\
2800 Show argument list to give program being debugged when it is started."), _("\
2801 Follow this command with any number of args, to be passed to the program."),
2802 set_args_command,
2803 show_args_command,
2804 &setlist, &showlist);
2805
2806 c = add_cmd ("environment", no_class, environment_info, _("\
2807 The environment to give the program, or one variable's value.\n\
2808 With an argument VAR, prints the value of environment variable VAR to\n\
2809 give the program being debugged. With no arguments, prints the entire\n\
2810 environment to be given to the program."), &showlist);
2811 set_cmd_completer (c, noop_completer);
2812
2813 add_prefix_cmd ("unset", no_class, unset_command,
2814 _("Complement to certain \"set\" commands."),
2815 &unsetlist, "unset ", 0, &cmdlist);
2816
2817 c = add_cmd ("environment", class_run, unset_environment_command, _("\
2818 Cancel environment variable VAR for the program.\n\
2819 This does not affect the program until the next \"run\" command."),
2820 &unsetlist);
2821 set_cmd_completer (c, noop_completer);
2822
2823 c = add_cmd ("environment", class_run, set_environment_command, _("\
2824 Set environment variable value to give the program.\n\
2825 Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\
2826 VALUES of environment variables are uninterpreted strings.\n\
2827 This does not affect the program until the next \"run\" command."),
2828 &setlist);
2829 set_cmd_completer (c, noop_completer);
2830
2831 c = add_com ("path", class_files, path_command, _("\
2832 Add directory DIR(s) to beginning of search path for object files.\n\
2833 $cwd in the path means the current working directory.\n\
2834 This path is equivalent to the $PATH shell variable. It is a list of\n\
2835 directories, separated by colons. These directories are searched to find\n\
2836 fully linked executable files and separately compiled object files as \
2837 needed."));
2838 set_cmd_completer (c, filename_completer);
2839
2840 c = add_cmd ("paths", no_class, path_info, _("\
2841 Current search path for finding object files.\n\
2842 $cwd in the path means the current working directory.\n\
2843 This path is equivalent to the $PATH shell variable. It is a list of\n\
2844 directories, separated by colons. These directories are searched to find\n\
2845 fully linked executable files and separately compiled object files as \
2846 needed."),
2847 &showlist);
2848 set_cmd_completer (c, noop_completer);
2849
2850 add_prefix_cmd ("kill", class_run, kill_command,
2851 _("Kill execution of program being debugged."),
2852 &killlist, "kill ", 0, &cmdlist);
2853
2854 add_com ("attach", class_run, attach_command, _("\
2855 Attach to a process or file outside of GDB.\n\
2856 This command attaches to another target, of the same type as your last\n\
2857 \"target\" command (\"info files\" will show your target stack).\n\
2858 The command may take as argument a process id or a device file.\n\
2859 For a process id, you must have permission to send the process a signal,\n\
2860 and it must have the same effective uid as the debugger.\n\
2861 When using \"attach\" with a process id, the debugger finds the\n\
2862 program running in the process, looking first in the current working\n\
2863 directory, or (if not found there) using the source file search path\n\
2864 (see the \"directory\" command). You can also use the \"file\" command\n\
2865 to specify the program, and to load its symbol table."));
2866
2867 add_prefix_cmd ("detach", class_run, detach_command, _("\
2868 Detach a process or file previously attached.\n\
2869 If a process, it is no longer traced, and it continues its execution. If\n\
2870 you were debugging a file, the file is closed and gdb no longer accesses it."),
2871 &detachlist, "detach ", 0, &cmdlist);
2872
2873 add_com ("disconnect", class_run, disconnect_command, _("\
2874 Disconnect from a target.\n\
2875 The target will wait for another debugger to connect. Not available for\n\
2876 all targets."));
2877
2878 add_com ("signal", class_run, signal_command, _("\
2879 Continue program giving it signal specified by the argument.\n\
2880 An argument of \"0\" means continue program without giving it a signal."));
2881
2882 add_com ("stepi", class_run, stepi_command, _("\
2883 Step one instruction exactly.\n\
2884 Argument N means do this N times (or till program stops for another \
2885 reason)."));
2886 add_com_alias ("si", "stepi", class_alias, 0);
2887
2888 add_com ("nexti", class_run, nexti_command, _("\
2889 Step one instruction, but proceed through subroutine calls.\n\
2890 Argument N means do this N times (or till program stops for another \
2891 reason)."));
2892 add_com_alias ("ni", "nexti", class_alias, 0);
2893
2894 add_com ("finish", class_run, finish_command, _("\
2895 Execute until selected stack frame returns.\n\
2896 Upon return, the value returned is printed and put in the value history."));
2897 add_com_alias ("fin", "finish", class_run, 1);
2898
2899 add_com ("next", class_run, next_command, _("\
2900 Step program, proceeding through subroutine calls.\n\
2901 Like the \"step\" command as long as subroutine calls do not happen;\n\
2902 when they do, the call is treated as one instruction.\n\
2903 Argument N means do this N times (or till program stops for another \
2904 reason)."));
2905 add_com_alias ("n", "next", class_run, 1);
2906 if (xdb_commands)
2907 add_com_alias ("S", "next", class_run, 1);
2908
2909 add_com ("step", class_run, step_command, _("\
2910 Step program until it reaches a different source line.\n\
2911 Argument N means do this N times (or till program stops for another \
2912 reason)."));
2913 add_com_alias ("s", "step", class_run, 1);
2914
2915 c = add_com ("until", class_run, until_command, _("\
2916 Execute until the program reaches a source line greater than the current\n\
2917 or a specified location (same args as break command) within the current \
2918 frame."));
2919 set_cmd_completer (c, location_completer);
2920 add_com_alias ("u", "until", class_run, 1);
2921
2922 c = add_com ("advance", class_run, advance_command, _("\
2923 Continue the program up to the given location (same form as args for break \
2924 command).\n\
2925 Execution will also stop upon exit from the current stack frame."));
2926 set_cmd_completer (c, location_completer);
2927
2928 c = add_com ("jump", class_run, jump_command, _("\
2929 Continue program being debugged at specified line or address.\n\
2930 Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\
2931 for an address to start at."));
2932 set_cmd_completer (c, location_completer);
2933
2934 if (xdb_commands)
2935 {
2936 c = add_com ("go", class_run, go_command, _("\
2937 Usage: go <location>\n\
2938 Continue program being debugged, stopping at specified line or \n\
2939 address.\n\
2940 Give as argument either LINENUM or *ADDR, where ADDR is an \n\
2941 expression for an address to start at.\n\
2942 This command is a combination of tbreak and jump."));
2943 set_cmd_completer (c, location_completer);
2944 }
2945
2946 if (xdb_commands)
2947 add_com_alias ("g", "go", class_run, 1);
2948
2949 add_com ("continue", class_run, continue_command, _("\
2950 Continue program being debugged, after signal or breakpoint.\n\
2951 If proceeding from breakpoint, a number N may be used as an argument,\n\
2952 which means to set the ignore count of that breakpoint to N - 1 (so that\n\
2953 the breakpoint won't break until the Nth time it is reached).\n\
2954 \n\
2955 If non-stop mode is enabled, continue only the current thread,\n\
2956 otherwise all the threads in the program are continued. To \n\
2957 continue all stopped threads in non-stop mode, use the -a option.\n\
2958 Specifying -a and an ignore count simultaneously is an error."));
2959 add_com_alias ("c", "cont", class_run, 1);
2960 add_com_alias ("fg", "cont", class_run, 1);
2961
2962 c = add_com ("run", class_run, run_command, _("\
2963 Start debugged program. You may specify arguments to give it.\n\
2964 Args may include \"*\", or \"[...]\"; they are expanded using \"sh\".\n\
2965 Input and output redirection with \">\", \"<\", or \">>\" are also \
2966 allowed.\n\n\
2967 With no arguments, uses arguments last specified (with \"run\" \
2968 or \"set args\").\n\
2969 To cancel previous arguments and run with no arguments,\n\
2970 use \"set args\" without arguments."));
2971 set_cmd_completer (c, filename_completer);
2972 add_com_alias ("r", "run", class_run, 1);
2973 if (xdb_commands)
2974 add_com ("R", class_run, run_no_args_command,
2975 _("Start debugged program with no arguments."));
2976
2977 c = add_com ("start", class_run, start_command, _("\
2978 Run the debugged program until the beginning of the main procedure.\n\
2979 You may specify arguments to give to your program, just as with the\n\
2980 \"run\" command."));
2981 set_cmd_completer (c, filename_completer);
2982
2983 add_com ("interrupt", class_run, interrupt_target_command,
2984 _("Interrupt the execution of the debugged program.\n\
2985 If non-stop mode is enabled, interrupt only the current thread,\n\
2986 otherwise all the threads in the program are stopped. To \n\
2987 interrupt all running threads in non-stop mode, use the -a option."));
2988
2989 add_info ("registers", nofp_registers_info, _("\
2990 List of integer registers and their contents, for selected stack frame.\n\
2991 Register name as argument means describe only that register."));
2992 add_info_alias ("r", "registers", 1);
2993
2994 if (xdb_commands)
2995 add_com ("lr", class_info, nofp_registers_info, _("\
2996 List of integer registers and their contents, for selected stack frame.\n\
2997 Register name as argument means describe only that register."));
2998 add_info ("all-registers", all_registers_info, _("\
2999 List of all registers and their contents, for selected stack frame.\n\
3000 Register name as argument means describe only that register."));
3001
3002 add_info ("program", program_info,
3003 _("Execution status of the program."));
3004
3005 add_info ("float", float_info,
3006 _("Print the status of the floating point unit\n"));
3007
3008 add_info ("vector", vector_info,
3009 _("Print the status of the vector unit\n"));
3010 }
This page took 0.09281 seconds and 5 git commands to generate.