* target.c (target_async_permitted, target_async_permitted_1)
[deliverable/binutils-gdb.git] / gdb / infcmd.c
... / ...
CommitLineData
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 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 <signal.h>
24#include "gdb_string.h"
25#include "symtab.h"
26#include "gdbtypes.h"
27#include "frame.h"
28#include "inferior.h"
29#include "environ.h"
30#include "value.h"
31#include "gdbcmd.h"
32#include "symfile.h"
33#include "gdbcore.h"
34#include "target.h"
35#include "language.h"
36#include "symfile.h"
37#include "objfiles.h"
38#include "completer.h"
39#include "ui-out.h"
40#include "event-top.h"
41#include "parser-defs.h"
42#include "regcache.h"
43#include "reggroups.h"
44#include "block.h"
45#include "solib.h"
46#include <ctype.h>
47#include "gdb_assert.h"
48#include "observer.h"
49#include "target-descriptions.h"
50#include "user-regs.h"
51#include "exceptions.h"
52#include "cli/cli-decode.h"
53#include "gdbthread.h"
54
55/* Functions exported for general use, in inferior.h: */
56
57void all_registers_info (char *, int);
58
59void registers_info (char *, int);
60
61void nexti_command (char *, int);
62
63void stepi_command (char *, int);
64
65void continue_command (char *, int);
66
67void interrupt_target_command (char *args, int from_tty);
68
69/* Local functions: */
70
71static void nofp_registers_info (char *, int);
72
73static void print_return_value (struct type *func_type,
74 struct type *value_type);
75
76static void until_next_command (int);
77
78static void until_command (char *, int);
79
80static void path_info (char *, int);
81
82static void path_command (char *, int);
83
84static void unset_command (char *, int);
85
86static void float_info (char *, int);
87
88static void detach_command (char *, int);
89
90static void disconnect_command (char *, int);
91
92static void unset_environment_command (char *, int);
93
94static void set_environment_command (char *, int);
95
96static void environment_info (char *, int);
97
98static void program_info (char *, int);
99
100static void finish_command (char *, int);
101
102static void signal_command (char *, int);
103
104static void jump_command (char *, int);
105
106static void step_1 (int, int, char *);
107static void step_once (int skip_subroutines, int single_inst, int count, int thread);
108
109static void next_command (char *, int);
110
111static void step_command (char *, int);
112
113static void run_command (char *, int);
114
115static void run_no_args_command (char *args, int from_tty);
116
117static void go_command (char *line_no, int from_tty);
118
119static int strip_bg_char (char **);
120
121void _initialize_infcmd (void);
122
123#define GO_USAGE "Usage: go <location>\n"
124
125#define ERROR_NO_INFERIOR \
126 if (!target_has_execution) error (_("The program is not being run."));
127
128/* String containing arguments to give to the program, separated by spaces.
129 Empty string (pointer to '\0') means no args. */
130
131static char *inferior_args;
132
133/* The inferior arguments as a vector. If INFERIOR_ARGC is nonzero,
134 then we must compute INFERIOR_ARGS from this (via the target). */
135
136static int inferior_argc;
137static char **inferior_argv;
138
139/* File name for default use for standard in/out in the inferior. */
140
141static char *inferior_io_terminal;
142
143/* Pid of our debugged inferior, or 0 if no inferior now.
144 Since various parts of infrun.c test this to see whether there is a program
145 being debugged it should be nonzero (currently 3 is used) for remote
146 debugging. */
147
148ptid_t inferior_ptid;
149
150/* Last signal that the inferior received (why it stopped). */
151
152enum target_signal stop_signal;
153
154/* Address at which inferior stopped. */
155
156CORE_ADDR stop_pc;
157
158/* Chain containing status of breakpoint(s) that we have stopped at. */
159
160bpstat stop_bpstat;
161
162/* Flag indicating that a command has proceeded the inferior past the
163 current breakpoint. */
164
165int breakpoint_proceeded;
166
167/* Nonzero if stopped due to a step command. */
168
169int stop_step;
170
171/* Nonzero if stopped due to completion of a stack dummy routine. */
172
173int stop_stack_dummy;
174
175/* Nonzero if stopped due to a random (unexpected) signal in inferior
176 process. */
177
178int stopped_by_random_signal;
179
180/* Range to single step within.
181 If this is nonzero, respond to a single-step signal
182 by continuing to step if the pc is in this range. */
183
184CORE_ADDR step_range_start; /* Inclusive */
185CORE_ADDR step_range_end; /* Exclusive */
186
187/* Stack frame address as of when stepping command was issued.
188 This is how we know when we step into a subroutine call,
189 and how to set the frame for the breakpoint used to step out. */
190
191struct frame_id step_frame_id;
192
193enum step_over_calls_kind step_over_calls;
194
195/* If stepping, nonzero means step count is > 1
196 so don't print frame next time inferior stops
197 if it stops due to stepping. */
198
199int step_multi;
200
201/* Environment to use for running inferior,
202 in format described in environ.h. */
203
204struct gdb_environ *inferior_environ;
205
206/* When set, no calls to target_resumed observer will be made. */
207int suppress_resume_observer = 0;
208/* When set, normal_stop will not call the normal_stop observer. */
209int suppress_stop_observer = 0;
210\f
211/* Accessor routines. */
212
213void
214set_inferior_io_terminal (const char *terminal_name)
215{
216 if (inferior_io_terminal)
217 xfree (inferior_io_terminal);
218
219 if (!terminal_name)
220 inferior_io_terminal = NULL;
221 else
222 inferior_io_terminal = savestring (terminal_name, strlen (terminal_name));
223}
224
225const char *
226get_inferior_io_terminal (void)
227{
228 return inferior_io_terminal;
229}
230
231char *
232get_inferior_args (void)
233{
234 if (inferior_argc != 0)
235 {
236 char *n, *old;
237
238 n = gdbarch_construct_inferior_arguments (current_gdbarch,
239 inferior_argc, inferior_argv);
240 old = set_inferior_args (n);
241 xfree (old);
242 }
243
244 if (inferior_args == NULL)
245 inferior_args = xstrdup ("");
246
247 return inferior_args;
248}
249
250char *
251set_inferior_args (char *newargs)
252{
253 char *saved_args = inferior_args;
254
255 inferior_args = newargs;
256 inferior_argc = 0;
257 inferior_argv = 0;
258
259 return saved_args;
260}
261
262void
263set_inferior_args_vector (int argc, char **argv)
264{
265 inferior_argc = argc;
266 inferior_argv = argv;
267}
268
269/* Notice when `set args' is run. */
270static void
271notice_args_set (char *args, int from_tty, struct cmd_list_element *c)
272{
273 inferior_argc = 0;
274 inferior_argv = 0;
275}
276
277/* Notice when `show args' is run. */
278static void
279notice_args_read (struct ui_file *file, int from_tty,
280 struct cmd_list_element *c, const char *value)
281{
282 /* Note that we ignore the passed-in value in favor of computing it
283 directly. */
284 deprecated_show_value_hack (file, from_tty, c, get_inferior_args ());
285}
286
287\f
288/* Compute command-line string given argument vector. This does the
289 same shell processing as fork_inferior. */
290char *
291construct_inferior_arguments (struct gdbarch *gdbarch, int argc, char **argv)
292{
293 char *result;
294
295 if (STARTUP_WITH_SHELL)
296 {
297 /* This holds all the characters considered special to the
298 typical Unix shells. We include `^' because the SunOS
299 /bin/sh treats it as a synonym for `|'. */
300 char *special = "\"!#$&*()\\|[]{}<>?'\"`~^; \t\n";
301 int i;
302 int length = 0;
303 char *out, *cp;
304
305 /* We over-compute the size. It shouldn't matter. */
306 for (i = 0; i < argc; ++i)
307 length += 2 * strlen (argv[i]) + 1 + 2 * (argv[i][0] == '\0');
308
309 result = (char *) xmalloc (length);
310 out = result;
311
312 for (i = 0; i < argc; ++i)
313 {
314 if (i > 0)
315 *out++ = ' ';
316
317 /* Need to handle empty arguments specially. */
318 if (argv[i][0] == '\0')
319 {
320 *out++ = '\'';
321 *out++ = '\'';
322 }
323 else
324 {
325 for (cp = argv[i]; *cp; ++cp)
326 {
327 if (strchr (special, *cp) != NULL)
328 *out++ = '\\';
329 *out++ = *cp;
330 }
331 }
332 }
333 *out = '\0';
334 }
335 else
336 {
337 /* In this case we can't handle arguments that contain spaces,
338 tabs, or newlines -- see breakup_args(). */
339 int i;
340 int length = 0;
341
342 for (i = 0; i < argc; ++i)
343 {
344 char *cp = strchr (argv[i], ' ');
345 if (cp == NULL)
346 cp = strchr (argv[i], '\t');
347 if (cp == NULL)
348 cp = strchr (argv[i], '\n');
349 if (cp != NULL)
350 error (_("can't handle command-line argument containing whitespace"));
351 length += strlen (argv[i]) + 1;
352 }
353
354 result = (char *) xmalloc (length);
355 result[0] = '\0';
356 for (i = 0; i < argc; ++i)
357 {
358 if (i > 0)
359 strcat (result, " ");
360 strcat (result, argv[i]);
361 }
362 }
363
364 return result;
365}
366\f
367
368/* This function detects whether or not a '&' character (indicating
369 background execution) has been added as *the last* of the arguments ARGS
370 of a command. If it has, it removes it and returns 1. Otherwise it
371 does nothing and returns 0. */
372static int
373strip_bg_char (char **args)
374{
375 char *p = NULL;
376
377 p = strchr (*args, '&');
378
379 if (p)
380 {
381 if (p == (*args + strlen (*args) - 1))
382 {
383 if (strlen (*args) > 1)
384 {
385 do
386 p--;
387 while (*p == ' ' || *p == '\t');
388 *(p + 1) = '\0';
389 }
390 else
391 *args = 0;
392 return 1;
393 }
394 }
395 return 0;
396}
397
398void
399tty_command (char *file, int from_tty)
400{
401 if (file == 0)
402 error_no_arg (_("terminal name for running target process"));
403
404 set_inferior_io_terminal (file);
405}
406
407/* Common actions to take after creating any sort of inferior, by any
408 means (running, attaching, connecting, et cetera). The target
409 should be stopped. */
410
411void
412post_create_inferior (struct target_ops *target, int from_tty)
413{
414 /* Be sure we own the terminal in case write operations are performed. */
415 target_terminal_ours ();
416
417 /* If the target hasn't taken care of this already, do it now.
418 Targets which need to access registers during to_open,
419 to_create_inferior, or to_attach should do it earlier; but many
420 don't need to. */
421 target_find_description ();
422
423 if (exec_bfd)
424 {
425 /* Sometimes the platform-specific hook loads initial shared
426 libraries, and sometimes it doesn't. Try to do so first, so
427 that we can add them with the correct value for FROM_TTY.
428 If we made all the inferior hook methods consistent,
429 this call could be removed. */
430#ifdef SOLIB_ADD
431 SOLIB_ADD (NULL, from_tty, target, auto_solib_add);
432#else
433 solib_add (NULL, from_tty, target, auto_solib_add);
434#endif
435
436 /* Create the hooks to handle shared library load and unload
437 events. */
438#ifdef SOLIB_CREATE_INFERIOR_HOOK
439 SOLIB_CREATE_INFERIOR_HOOK (PIDGET (inferior_ptid));
440#else
441 solib_create_inferior_hook ();
442#endif
443 }
444
445 observer_notify_inferior_created (target, from_tty);
446}
447
448/* Kill the inferior if already running. This function is designed
449 to be called when we are about to start the execution of the program
450 from the beginning. Ask the user to confirm that he wants to restart
451 the program being debugged when FROM_TTY is non-null. */
452
453static void
454kill_if_already_running (int from_tty)
455{
456 if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
457 {
458 /* Bail out before killing the program if we will not be able to
459 restart it. */
460 target_require_runnable ();
461
462 if (from_tty
463 && !query ("The program being debugged has been started already.\n\
464Start it from the beginning? "))
465 error (_("Program not restarted."));
466 target_kill ();
467 no_shared_libraries (NULL, from_tty);
468 init_wait_for_inferior ();
469 }
470}
471
472/* Implement the "run" command. If TBREAK_AT_MAIN is set, then insert
473 a temporary breakpoint at the begining of the main program before
474 running the program. */
475
476static void
477run_command_1 (char *args, int from_tty, int tbreak_at_main)
478{
479 char *exec_file;
480
481 dont_repeat ();
482
483 kill_if_already_running (from_tty);
484 clear_breakpoint_hit_counts ();
485
486 /* Clean up any leftovers from other runs. Some other things from
487 this function should probably be moved into target_pre_inferior. */
488 target_pre_inferior (from_tty);
489
490 /* The comment here used to read, "The exec file is re-read every
491 time we do a generic_mourn_inferior, so we just have to worry
492 about the symbol file." The `generic_mourn_inferior' function
493 gets called whenever the program exits. However, suppose the
494 program exits, and *then* the executable file changes? We need
495 to check again here. Since reopen_exec_file doesn't do anything
496 if the timestamp hasn't changed, I don't see the harm. */
497 reopen_exec_file ();
498 reread_symbols ();
499
500 /* Insert the temporary breakpoint if a location was specified. */
501 if (tbreak_at_main)
502 tbreak_command (main_name (), 0);
503
504 exec_file = (char *) get_exec_file (0);
505
506 /* We keep symbols from add-symbol-file, on the grounds that the
507 user might want to add some symbols before running the program
508 (right?). But sometimes (dynamic loading where the user manually
509 introduces the new symbols with add-symbol-file), the code which
510 the symbols describe does not persist between runs. Currently
511 the user has to manually nuke all symbols between runs if they
512 want them to go away (PR 2207). This is probably reasonable. */
513
514 if (!args)
515 {
516 if (target_can_async_p ())
517 async_disable_stdin ();
518 }
519 else
520 {
521 int async_exec = strip_bg_char (&args);
522
523 /* If we get a request for running in the bg but the target
524 doesn't support it, error out. */
525 if (async_exec && !target_can_async_p ())
526 error (_("Asynchronous execution not supported on this target."));
527
528 /* If we don't get a request of running in the bg, then we need
529 to simulate synchronous (fg) execution. */
530 if (!async_exec && target_can_async_p ())
531 {
532 /* Simulate synchronous execution */
533 async_disable_stdin ();
534 }
535
536 /* If there were other args, beside '&', process them. */
537 if (args)
538 {
539 char *old_args = set_inferior_args (xstrdup (args));
540 xfree (old_args);
541 }
542 }
543
544 if (from_tty)
545 {
546 ui_out_field_string (uiout, NULL, "Starting program");
547 ui_out_text (uiout, ": ");
548 if (exec_file)
549 ui_out_field_string (uiout, "execfile", exec_file);
550 ui_out_spaces (uiout, 1);
551 /* We call get_inferior_args() because we might need to compute
552 the value now. */
553 ui_out_field_string (uiout, "infargs", get_inferior_args ());
554 ui_out_text (uiout, "\n");
555 ui_out_flush (uiout);
556 }
557
558 /* We call get_inferior_args() because we might need to compute
559 the value now. */
560 target_create_inferior (exec_file, get_inferior_args (),
561 environ_vector (inferior_environ), from_tty);
562
563 /* Pass zero for FROM_TTY, because at this point the "run" command
564 has done its thing; now we are setting up the running program. */
565 post_create_inferior (&current_target, 0);
566
567 /* Start the target running. */
568 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_0, 0);
569}
570
571
572static void
573run_command (char *args, int from_tty)
574{
575 run_command_1 (args, from_tty, 0);
576}
577
578static void
579run_no_args_command (char *args, int from_tty)
580{
581 char *old_args = set_inferior_args (xstrdup (""));
582 xfree (old_args);
583}
584\f
585
586/* Start the execution of the program up until the beginning of the main
587 program. */
588
589static void
590start_command (char *args, int from_tty)
591{
592 /* Some languages such as Ada need to search inside the program
593 minimal symbols for the location where to put the temporary
594 breakpoint before starting. */
595 if (!have_minimal_symbols ())
596 error (_("No symbol table loaded. Use the \"file\" command."));
597
598 /* Run the program until reaching the main procedure... */
599 run_command_1 (args, from_tty, 1);
600}
601
602static int
603proceed_thread_callback (struct thread_info *thread, void *arg)
604{
605 if (!is_stopped (thread->ptid))
606 return 0;
607
608 context_switch_to (thread->ptid);
609 clear_proceed_status ();
610 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
611 return 0;
612}
613
614void
615continue_1 (int all_threads)
616{
617 ERROR_NO_INFERIOR;
618
619 if (non_stop && all_threads)
620 {
621 /* Don't error out if the current thread is running, because
622 there may be other stopped threads. */
623 struct cleanup *old_chain;
624
625 /* Backup current thread and selected frame. */
626 old_chain = make_cleanup_restore_current_thread ();
627
628 iterate_over_threads (proceed_thread_callback, NULL);
629
630 /* Restore selected ptid. */
631 do_cleanups (old_chain);
632 }
633 else
634 {
635 ensure_not_running ();
636 clear_proceed_status ();
637 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
638 }
639}
640
641/* continue [-a] [proceed-count] [&] */
642void
643continue_command (char *args, int from_tty)
644{
645 int async_exec = 0;
646 int all_threads = 0;
647 ERROR_NO_INFERIOR;
648
649 /* Find out whether we must run in the background. */
650 if (args != NULL)
651 async_exec = strip_bg_char (&args);
652
653 /* If we must run in the background, but the target can't do it,
654 error out. */
655 if (async_exec && !target_can_async_p ())
656 error (_("Asynchronous execution not supported on this target."));
657
658 /* If we are not asked to run in the bg, then prepare to run in the
659 foreground, synchronously. */
660 if (!async_exec && target_can_async_p ())
661 {
662 /* Simulate synchronous execution */
663 async_disable_stdin ();
664 }
665
666 if (args != NULL)
667 {
668 if (strncmp (args, "-a", sizeof ("-a") - 1) == 0)
669 {
670 all_threads = 1;
671 args += sizeof ("-a") - 1;
672 if (*args == '\0')
673 args = NULL;
674 }
675 }
676
677 if (!non_stop && all_threads)
678 error (_("`-a' is meaningless in all-stop mode."));
679
680 if (args != NULL && all_threads)
681 error (_("\
682Can't resume all threads and specify proceed count simultaneously."));
683
684 /* If we have an argument left, set proceed count of breakpoint we
685 stopped at. */
686 if (args != NULL)
687 {
688 bpstat bs = stop_bpstat;
689 int num, stat;
690 int stopped = 0;
691
692 while ((stat = bpstat_num (&bs, &num)) != 0)
693 if (stat > 0)
694 {
695 set_ignore_count (num,
696 parse_and_eval_long (args) - 1,
697 from_tty);
698 /* set_ignore_count prints a message ending with a period.
699 So print two spaces before "Continuing.". */
700 if (from_tty)
701 printf_filtered (" ");
702 stopped = 1;
703 }
704
705 if (!stopped && from_tty)
706 {
707 printf_filtered
708 ("Not stopped at any breakpoint; argument ignored.\n");
709 }
710 }
711
712 if (from_tty)
713 printf_filtered (_("Continuing.\n"));
714
715 continue_1 (all_threads);
716}
717\f
718/* Step until outside of current statement. */
719
720static void
721step_command (char *count_string, int from_tty)
722{
723 step_1 (0, 0, count_string);
724}
725
726/* Likewise, but skip over subroutine calls as if single instructions. */
727
728static void
729next_command (char *count_string, int from_tty)
730{
731 step_1 (1, 0, count_string);
732}
733
734/* Likewise, but step only one instruction. */
735
736void
737stepi_command (char *count_string, int from_tty)
738{
739 step_1 (0, 1, count_string);
740}
741
742void
743nexti_command (char *count_string, int from_tty)
744{
745 step_1 (1, 1, count_string);
746}
747
748static void
749delete_longjmp_breakpoint_cleanup (void *arg)
750{
751 int thread = * (int *) arg;
752 delete_longjmp_breakpoint (thread);
753}
754
755static void
756step_1 (int skip_subroutines, int single_inst, char *count_string)
757{
758 int count = 1;
759 struct frame_info *frame;
760 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL);
761 int async_exec = 0;
762 int thread = -1;
763
764 ERROR_NO_INFERIOR;
765 ensure_not_running ();
766
767 if (count_string)
768 async_exec = strip_bg_char (&count_string);
769
770 /* If we get a request for running in the bg but the target
771 doesn't support it, error out. */
772 if (async_exec && !target_can_async_p ())
773 error (_("Asynchronous execution not supported on this target."));
774
775 /* If we don't get a request of running in the bg, then we need
776 to simulate synchronous (fg) execution. */
777 if (!async_exec && target_can_async_p ())
778 {
779 /* Simulate synchronous execution */
780 async_disable_stdin ();
781 }
782
783 count = count_string ? parse_and_eval_long (count_string) : 1;
784
785 if (!single_inst || skip_subroutines) /* leave si command alone */
786 {
787 if (in_thread_list (inferior_ptid))
788 thread = pid_to_thread_id (inferior_ptid);
789
790 set_longjmp_breakpoint ();
791
792 make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
793 }
794
795 /* In synchronous case, all is well, just use the regular for loop. */
796 if (!target_can_async_p ())
797 {
798 for (; count > 0; count--)
799 {
800 clear_proceed_status ();
801
802 frame = get_current_frame ();
803 if (!frame) /* Avoid coredump here. Why tho? */
804 error (_("No current frame"));
805 step_frame_id = get_frame_id (frame);
806
807 if (!single_inst)
808 {
809 find_pc_line_pc_range (stop_pc, &step_range_start, &step_range_end);
810 if (step_range_end == 0)
811 {
812 char *name;
813 if (find_pc_partial_function (stop_pc, &name, &step_range_start,
814 &step_range_end) == 0)
815 error (_("Cannot find bounds of current function"));
816
817 target_terminal_ours ();
818 printf_filtered (_("\
819Single stepping until exit from function %s, \n\
820which has no line number information.\n"), name);
821 }
822 }
823 else
824 {
825 /* Say we are stepping, but stop after one insn whatever it does. */
826 step_range_start = step_range_end = 1;
827 if (!skip_subroutines)
828 /* It is stepi.
829 Don't step over function calls, not even to functions lacking
830 line numbers. */
831 step_over_calls = STEP_OVER_NONE;
832 }
833
834 if (skip_subroutines)
835 step_over_calls = STEP_OVER_ALL;
836
837 step_multi = (count > 1);
838 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
839
840 if (!stop_step)
841 break;
842 }
843
844 do_cleanups (cleanups);
845 return;
846 }
847 /* In case of asynchronous target things get complicated, do only
848 one step for now, before returning control to the event loop. Let
849 the continuation figure out how many other steps we need to do,
850 and handle them one at the time, through step_once(). */
851 else
852 {
853 step_once (skip_subroutines, single_inst, count, thread);
854 /* We are running, and the continuation is installed. It will
855 disable the longjmp breakpoint as appropriate. */
856 discard_cleanups (cleanups);
857 }
858}
859
860struct step_1_continuation_args
861{
862 int count;
863 int skip_subroutines;
864 int single_inst;
865 int thread;
866};
867
868/* Called after we are done with one step operation, to check whether
869 we need to step again, before we print the prompt and return control
870 to the user. If count is > 1, we will need to do one more call to
871 proceed(), via step_once(). Basically it is like step_once and
872 step_1_continuation are co-recursive. */
873static void
874step_1_continuation (void *args)
875{
876 struct step_1_continuation_args *a = args;
877
878 if (!step_multi || !stop_step)
879 {
880 /* If we stopped for some reason that is not stepping there are
881 no further steps to make. Cleanup. */
882 if (!a->single_inst || a->skip_subroutines)
883 delete_longjmp_breakpoint (a->thread);
884 step_multi = 0;
885 }
886 else
887 step_once (a->skip_subroutines, a->single_inst, a->count - 1, a->thread);
888}
889
890/* Do just one step operation. If count >1 we will have to set up a
891 continuation to be done after the target stops (after this one
892 step). This is useful to implement the 'step n' kind of commands, in
893 case of asynchronous targets. We had to split step_1 into two parts,
894 one to be done before proceed() and one afterwards. This function is
895 called in case of step n with n>1, after the first step operation has
896 been completed.*/
897static void
898step_once (int skip_subroutines, int single_inst, int count, int thread)
899{
900 struct frame_info *frame;
901 struct step_1_continuation_args *args;
902
903 if (count > 0)
904 {
905 clear_proceed_status ();
906
907 frame = get_current_frame ();
908 if (!frame) /* Avoid coredump here. Why tho? */
909 error (_("No current frame"));
910 step_frame_id = get_frame_id (frame);
911
912 if (!single_inst)
913 {
914 find_pc_line_pc_range (stop_pc, &step_range_start, &step_range_end);
915
916 /* If we have no line info, switch to stepi mode. */
917 if (step_range_end == 0 && step_stop_if_no_debug)
918 {
919 step_range_start = step_range_end = 1;
920 }
921 else if (step_range_end == 0)
922 {
923 char *name;
924 if (find_pc_partial_function (stop_pc, &name, &step_range_start,
925 &step_range_end) == 0)
926 error (_("Cannot find bounds of current function"));
927
928 target_terminal_ours ();
929 printf_filtered (_("\
930Single stepping until exit from function %s, \n\
931which has no line number information.\n"), name);
932 }
933 }
934 else
935 {
936 /* Say we are stepping, but stop after one insn whatever it does. */
937 step_range_start = step_range_end = 1;
938 if (!skip_subroutines)
939 /* It is stepi.
940 Don't step over function calls, not even to functions lacking
941 line numbers. */
942 step_over_calls = STEP_OVER_NONE;
943 }
944
945 if (skip_subroutines)
946 step_over_calls = STEP_OVER_ALL;
947
948 step_multi = (count > 1);
949 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
950
951 args = xmalloc (sizeof (*args));
952 args->skip_subroutines = skip_subroutines;
953 args->single_inst = single_inst;
954 args->count = count;
955 args->thread = thread;
956 add_intermediate_continuation (step_1_continuation, args, xfree);
957 }
958}
959
960\f
961/* Continue program at specified address. */
962
963static void
964jump_command (char *arg, int from_tty)
965{
966 CORE_ADDR addr;
967 struct symtabs_and_lines sals;
968 struct symtab_and_line sal;
969 struct symbol *fn;
970 struct symbol *sfn;
971 int async_exec = 0;
972
973 ERROR_NO_INFERIOR;
974 ensure_not_running ();
975
976 /* Find out whether we must run in the background. */
977 if (arg != NULL)
978 async_exec = strip_bg_char (&arg);
979
980 /* If we must run in the background, but the target can't do it,
981 error out. */
982 if (async_exec && !target_can_async_p ())
983 error (_("Asynchronous execution not supported on this target."));
984
985 if (!arg)
986 error_no_arg (_("starting address"));
987
988 sals = decode_line_spec_1 (arg, 1);
989 if (sals.nelts != 1)
990 {
991 error (_("Unreasonable jump request"));
992 }
993
994 sal = sals.sals[0];
995 xfree (sals.sals);
996
997 if (sal.symtab == 0 && sal.pc == 0)
998 error (_("No source file has been specified."));
999
1000 resolve_sal_pc (&sal); /* May error out */
1001
1002 /* See if we are trying to jump to another function. */
1003 fn = get_frame_function (get_current_frame ());
1004 sfn = find_pc_function (sal.pc);
1005 if (fn != NULL && sfn != fn)
1006 {
1007 if (!query ("Line %d is not in `%s'. Jump anyway? ", sal.line,
1008 SYMBOL_PRINT_NAME (fn)))
1009 {
1010 error (_("Not confirmed."));
1011 /* NOTREACHED */
1012 }
1013 }
1014
1015 if (sfn != NULL)
1016 {
1017 fixup_symbol_section (sfn, 0);
1018 if (section_is_overlay (SYMBOL_BFD_SECTION (sfn)) &&
1019 !section_is_mapped (SYMBOL_BFD_SECTION (sfn)))
1020 {
1021 if (!query ("WARNING!!! Destination is in unmapped overlay! Jump anyway? "))
1022 {
1023 error (_("Not confirmed."));
1024 /* NOTREACHED */
1025 }
1026 }
1027 }
1028
1029 addr = sal.pc;
1030
1031 if (from_tty)
1032 {
1033 printf_filtered (_("Continuing at "));
1034 fputs_filtered (paddress (addr), gdb_stdout);
1035 printf_filtered (".\n");
1036 }
1037
1038 /* If we are not asked to run in the bg, then prepare to run in the
1039 foreground, synchronously. */
1040 if (!async_exec && target_can_async_p ())
1041 {
1042 /* Simulate synchronous execution */
1043 async_disable_stdin ();
1044 }
1045
1046 clear_proceed_status ();
1047 proceed (addr, TARGET_SIGNAL_0, 0);
1048}
1049\f
1050
1051/* Go to line or address in current procedure */
1052static void
1053go_command (char *line_no, int from_tty)
1054{
1055 if (line_no == (char *) NULL || !*line_no)
1056 printf_filtered (GO_USAGE);
1057 else
1058 {
1059 tbreak_command (line_no, from_tty);
1060 jump_command (line_no, from_tty);
1061 }
1062}
1063\f
1064
1065/* Continue program giving it specified signal. */
1066
1067static void
1068signal_command (char *signum_exp, int from_tty)
1069{
1070 enum target_signal oursig;
1071 int async_exec = 0;
1072
1073 dont_repeat (); /* Too dangerous. */
1074 ERROR_NO_INFERIOR;
1075 ensure_not_running ();
1076
1077 /* Find out whether we must run in the background. */
1078 if (signum_exp != NULL)
1079 async_exec = strip_bg_char (&signum_exp);
1080
1081 /* If we must run in the background, but the target can't do it,
1082 error out. */
1083 if (async_exec && !target_can_async_p ())
1084 error (_("Asynchronous execution not supported on this target."));
1085
1086 /* If we are not asked to run in the bg, then prepare to run in the
1087 foreground, synchronously. */
1088 if (!async_exec && target_can_async_p ())
1089 {
1090 /* Simulate synchronous execution. */
1091 async_disable_stdin ();
1092 }
1093
1094 if (!signum_exp)
1095 error_no_arg (_("signal number"));
1096
1097 /* It would be even slicker to make signal names be valid expressions,
1098 (the type could be "enum $signal" or some such), then the user could
1099 assign them to convenience variables. */
1100 oursig = target_signal_from_name (signum_exp);
1101
1102 if (oursig == TARGET_SIGNAL_UNKNOWN)
1103 {
1104 /* No, try numeric. */
1105 int num = parse_and_eval_long (signum_exp);
1106
1107 if (num == 0)
1108 oursig = TARGET_SIGNAL_0;
1109 else
1110 oursig = target_signal_from_command (num);
1111 }
1112
1113 if (from_tty)
1114 {
1115 if (oursig == TARGET_SIGNAL_0)
1116 printf_filtered (_("Continuing with no signal.\n"));
1117 else
1118 printf_filtered (_("Continuing with signal %s.\n"),
1119 target_signal_to_name (oursig));
1120 }
1121
1122 clear_proceed_status ();
1123 /* "signal 0" should not get stuck if we are stopped at a breakpoint.
1124 FIXME: Neither should "signal foo" but when I tried passing
1125 (CORE_ADDR)-1 unconditionally I got a testsuite failure which I haven't
1126 tried to track down yet. */
1127 proceed (oursig == TARGET_SIGNAL_0 ? (CORE_ADDR) -1 : stop_pc, oursig, 0);
1128}
1129
1130/* Proceed until we reach a different source line with pc greater than
1131 our current one or exit the function. We skip calls in both cases.
1132
1133 Note that eventually this command should probably be changed so
1134 that only source lines are printed out when we hit the breakpoint
1135 we set. This may involve changes to wait_for_inferior and the
1136 proceed status code. */
1137
1138static void
1139until_next_command (int from_tty)
1140{
1141 struct frame_info *frame;
1142 CORE_ADDR pc;
1143 struct symbol *func;
1144 struct symtab_and_line sal;
1145
1146 clear_proceed_status ();
1147
1148 frame = get_current_frame ();
1149
1150 /* Step until either exited from this function or greater
1151 than the current line (if in symbolic section) or pc (if
1152 not). */
1153
1154 pc = read_pc ();
1155 func = find_pc_function (pc);
1156
1157 if (!func)
1158 {
1159 struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (pc);
1160
1161 if (msymbol == NULL)
1162 error (_("Execution is not within a known function."));
1163
1164 step_range_start = SYMBOL_VALUE_ADDRESS (msymbol);
1165 step_range_end = pc;
1166 }
1167 else
1168 {
1169 sal = find_pc_line (pc, 0);
1170
1171 step_range_start = BLOCK_START (SYMBOL_BLOCK_VALUE (func));
1172 step_range_end = sal.end;
1173 }
1174
1175 step_over_calls = STEP_OVER_ALL;
1176 step_frame_id = get_frame_id (frame);
1177
1178 step_multi = 0; /* Only one call to proceed */
1179
1180 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
1181}
1182
1183static void
1184until_command (char *arg, int from_tty)
1185{
1186 int async_exec = 0;
1187
1188 if (!target_has_execution)
1189 error (_("The program is not running."));
1190
1191 /* Find out whether we must run in the background. */
1192 if (arg != NULL)
1193 async_exec = strip_bg_char (&arg);
1194
1195 /* If we must run in the background, but the target can't do it,
1196 error out. */
1197 if (async_exec && !target_can_async_p ())
1198 error (_("Asynchronous execution not supported on this target."));
1199
1200 /* If we are not asked to run in the bg, then prepare to run in the
1201 foreground, synchronously. */
1202 if (!async_exec && target_can_async_p ())
1203 {
1204 /* Simulate synchronous execution */
1205 async_disable_stdin ();
1206 }
1207
1208 if (arg)
1209 until_break_command (arg, from_tty, 0);
1210 else
1211 until_next_command (from_tty);
1212}
1213
1214static void
1215advance_command (char *arg, int from_tty)
1216{
1217 int async_exec = 0;
1218
1219 if (!target_has_execution)
1220 error (_("The program is not running."));
1221
1222 if (arg == NULL)
1223 error_no_arg (_("a location"));
1224
1225 /* Find out whether we must run in the background. */
1226 if (arg != NULL)
1227 async_exec = strip_bg_char (&arg);
1228
1229 /* If we must run in the background, but the target can't do it,
1230 error out. */
1231 if (async_exec && !target_can_async_p ())
1232 error (_("Asynchronous execution not supported on this target."));
1233
1234 /* If we are not asked to run in the bg, then prepare to run in the
1235 foreground, synchronously. */
1236 if (!async_exec && target_can_async_p ())
1237 {
1238 /* Simulate synchronous execution. */
1239 async_disable_stdin ();
1240 }
1241
1242 until_break_command (arg, from_tty, 1);
1243}
1244\f
1245/* Print the result of a function at the end of a 'finish' command. */
1246
1247static void
1248print_return_value (struct type *func_type, struct type *value_type)
1249{
1250 struct gdbarch *gdbarch = current_gdbarch;
1251 struct cleanup *old_chain;
1252 struct ui_stream *stb;
1253 struct value *value;
1254
1255 CHECK_TYPEDEF (value_type);
1256 gdb_assert (TYPE_CODE (value_type) != TYPE_CODE_VOID);
1257
1258 /* FIXME: 2003-09-27: When returning from a nested inferior function
1259 call, it's possible (with no help from the architecture vector)
1260 to locate and return/print a "struct return" value. This is just
1261 a more complicated case of what is already being done in in the
1262 inferior function call code. In fact, when inferior function
1263 calls are made async, this will likely be made the norm. */
1264
1265 switch (gdbarch_return_value (gdbarch, func_type, value_type,
1266 NULL, NULL, NULL))
1267 {
1268 case RETURN_VALUE_REGISTER_CONVENTION:
1269 case RETURN_VALUE_ABI_RETURNS_ADDRESS:
1270 case RETURN_VALUE_ABI_PRESERVES_ADDRESS:
1271 value = allocate_value (value_type);
1272 gdbarch_return_value (gdbarch, func_type, value_type, stop_registers,
1273 value_contents_raw (value), NULL);
1274 break;
1275 case RETURN_VALUE_STRUCT_CONVENTION:
1276 value = NULL;
1277 break;
1278 default:
1279 internal_error (__FILE__, __LINE__, _("bad switch"));
1280 }
1281
1282 if (value)
1283 {
1284 /* Print it. */
1285 stb = ui_out_stream_new (uiout);
1286 old_chain = make_cleanup_ui_out_stream_delete (stb);
1287 ui_out_text (uiout, "Value returned is ");
1288 ui_out_field_fmt (uiout, "gdb-result-var", "$%d",
1289 record_latest_value (value));
1290 ui_out_text (uiout, " = ");
1291 value_print (value, stb->stream, 0, Val_no_prettyprint);
1292 ui_out_field_stream (uiout, "return-value", stb);
1293 ui_out_text (uiout, "\n");
1294 do_cleanups (old_chain);
1295 }
1296 else
1297 {
1298 ui_out_text (uiout, "Value returned has type: ");
1299 ui_out_field_string (uiout, "return-type", TYPE_NAME (value_type));
1300 ui_out_text (uiout, ".");
1301 ui_out_text (uiout, " Cannot determine contents\n");
1302 }
1303}
1304
1305/* Stuff that needs to be done by the finish command after the target
1306 has stopped. In asynchronous mode, we wait for the target to stop
1307 in the call to poll or select in the event loop, so it is
1308 impossible to do all the stuff as part of the finish_command
1309 function itself. The only chance we have to complete this command
1310 is in fetch_inferior_event, which is called by the event loop as
1311 soon as it detects that the target has stopped. This function is
1312 called via the cmd_continuation pointer. */
1313
1314struct finish_command_continuation_args
1315{
1316 struct breakpoint *breakpoint;
1317 struct symbol *function;
1318};
1319
1320static void
1321finish_command_continuation (void *arg)
1322{
1323 struct finish_command_continuation_args *a = arg;
1324
1325 if (bpstat_find_breakpoint (stop_bpstat, a->breakpoint) != NULL
1326 && a->function != NULL)
1327 {
1328 struct type *value_type;
1329
1330 value_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (a->function));
1331 if (!value_type)
1332 internal_error (__FILE__, __LINE__,
1333 _("finish_command: function has no target type"));
1334
1335 if (TYPE_CODE (value_type) != TYPE_CODE_VOID)
1336 print_return_value (SYMBOL_TYPE (a->function), value_type);
1337 }
1338
1339 /* We suppress normal call of normal_stop observer and do it here so
1340 that that *stopped notification includes the return value. */
1341 /* NOTE: This is broken in non-stop mode. There is no guarantee the
1342 next stop will be in the same thread that we started doing a
1343 finish on. This suppressing (or some other replacement means)
1344 should be a thread property. */
1345 observer_notify_normal_stop (stop_bpstat);
1346 suppress_stop_observer = 0;
1347 delete_breakpoint (a->breakpoint);
1348}
1349
1350static void
1351finish_command_continuation_free_arg (void *arg)
1352{
1353 /* NOTE: See finish_command_continuation. This would go away, if
1354 this suppressing is made a thread property. */
1355 suppress_stop_observer = 0;
1356 xfree (arg);
1357}
1358
1359/* "finish": Set a temporary breakpoint at the place the selected
1360 frame will return to, then continue. */
1361
1362static void
1363finish_command (char *arg, int from_tty)
1364{
1365 struct symtab_and_line sal;
1366 struct frame_info *frame;
1367 struct symbol *function;
1368 struct breakpoint *breakpoint;
1369 struct cleanup *old_chain;
1370 struct finish_command_continuation_args *cargs;
1371
1372 int async_exec = 0;
1373
1374 /* Find out whether we must run in the background. */
1375 if (arg != NULL)
1376 async_exec = strip_bg_char (&arg);
1377
1378 /* If we must run in the background, but the target can't do it,
1379 error out. */
1380 if (async_exec && !target_can_async_p ())
1381 error (_("Asynchronous execution not supported on this target."));
1382
1383 /* If we are not asked to run in the bg, then prepare to run in the
1384 foreground, synchronously. */
1385 if (!async_exec && target_can_async_p ())
1386 {
1387 /* Simulate synchronous execution. */
1388 async_disable_stdin ();
1389 }
1390
1391 if (arg)
1392 error (_("The \"finish\" command does not take any arguments."));
1393 if (!target_has_execution)
1394 error (_("The program is not running."));
1395
1396 frame = get_prev_frame (get_selected_frame (_("No selected frame.")));
1397 if (frame == 0)
1398 error (_("\"finish\" not meaningful in the outermost frame."));
1399
1400 clear_proceed_status ();
1401
1402 sal = find_pc_line (get_frame_pc (frame), 0);
1403 sal.pc = get_frame_pc (frame);
1404
1405 breakpoint = set_momentary_breakpoint (sal, get_frame_id (frame), bp_finish);
1406
1407 old_chain = make_cleanup_delete_breakpoint (breakpoint);
1408
1409 /* Find the function we will return from. */
1410
1411 function = find_pc_function (get_frame_pc (get_selected_frame (NULL)));
1412
1413 /* Print info on the selected frame, including level number but not
1414 source. */
1415 if (from_tty)
1416 {
1417 printf_filtered (_("Run till exit from "));
1418 print_stack_frame (get_selected_frame (NULL), 1, LOCATION);
1419 }
1420
1421 proceed_to_finish = 1; /* We want stop_registers, please... */
1422 make_cleanup_restore_integer (&suppress_stop_observer);
1423 suppress_stop_observer = 1;
1424 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
1425
1426 cargs = xmalloc (sizeof (*cargs));
1427
1428 cargs->breakpoint = breakpoint;
1429 cargs->function = function;
1430 add_continuation (finish_command_continuation, cargs,
1431 finish_command_continuation_free_arg);
1432
1433 discard_cleanups (old_chain);
1434 if (!target_can_async_p ())
1435 do_all_continuations ();
1436}
1437\f
1438
1439static void
1440program_info (char *args, int from_tty)
1441{
1442 bpstat bs = stop_bpstat;
1443 int num;
1444 int stat = bpstat_num (&bs, &num);
1445
1446 if (!target_has_execution)
1447 {
1448 printf_filtered (_("The program being debugged is not being run.\n"));
1449 return;
1450 }
1451
1452 target_files_info ();
1453 printf_filtered (_("Program stopped at %s.\n"),
1454 hex_string ((unsigned long) stop_pc));
1455 if (stop_step)
1456 printf_filtered (_("It stopped after being stepped.\n"));
1457 else if (stat != 0)
1458 {
1459 /* There may be several breakpoints in the same place, so this
1460 isn't as strange as it seems. */
1461 while (stat != 0)
1462 {
1463 if (stat < 0)
1464 {
1465 printf_filtered (_("\
1466It stopped at a breakpoint that has since been deleted.\n"));
1467 }
1468 else
1469 printf_filtered (_("It stopped at breakpoint %d.\n"), num);
1470 stat = bpstat_num (&bs, &num);
1471 }
1472 }
1473 else if (stop_signal != TARGET_SIGNAL_0)
1474 {
1475 printf_filtered (_("It stopped with signal %s, %s.\n"),
1476 target_signal_to_name (stop_signal),
1477 target_signal_to_string (stop_signal));
1478 }
1479
1480 if (!from_tty)
1481 {
1482 printf_filtered (_("\
1483Type \"info stack\" or \"info registers\" for more information.\n"));
1484 }
1485}
1486\f
1487static void
1488environment_info (char *var, int from_tty)
1489{
1490 if (var)
1491 {
1492 char *val = get_in_environ (inferior_environ, var);
1493 if (val)
1494 {
1495 puts_filtered (var);
1496 puts_filtered (" = ");
1497 puts_filtered (val);
1498 puts_filtered ("\n");
1499 }
1500 else
1501 {
1502 puts_filtered ("Environment variable \"");
1503 puts_filtered (var);
1504 puts_filtered ("\" not defined.\n");
1505 }
1506 }
1507 else
1508 {
1509 char **vector = environ_vector (inferior_environ);
1510 while (*vector)
1511 {
1512 puts_filtered (*vector++);
1513 puts_filtered ("\n");
1514 }
1515 }
1516}
1517
1518static void
1519set_environment_command (char *arg, int from_tty)
1520{
1521 char *p, *val, *var;
1522 int nullset = 0;
1523
1524 if (arg == 0)
1525 error_no_arg (_("environment variable and value"));
1526
1527 /* Find seperation between variable name and value */
1528 p = (char *) strchr (arg, '=');
1529 val = (char *) strchr (arg, ' ');
1530
1531 if (p != 0 && val != 0)
1532 {
1533 /* We have both a space and an equals. If the space is before the
1534 equals, walk forward over the spaces til we see a nonspace
1535 (possibly the equals). */
1536 if (p > val)
1537 while (*val == ' ')
1538 val++;
1539
1540 /* Now if the = is after the char following the spaces,
1541 take the char following the spaces. */
1542 if (p > val)
1543 p = val - 1;
1544 }
1545 else if (val != 0 && p == 0)
1546 p = val;
1547
1548 if (p == arg)
1549 error_no_arg (_("environment variable to set"));
1550
1551 if (p == 0 || p[1] == 0)
1552 {
1553 nullset = 1;
1554 if (p == 0)
1555 p = arg + strlen (arg); /* So that savestring below will work */
1556 }
1557 else
1558 {
1559 /* Not setting variable value to null */
1560 val = p + 1;
1561 while (*val == ' ' || *val == '\t')
1562 val++;
1563 }
1564
1565 while (p != arg && (p[-1] == ' ' || p[-1] == '\t'))
1566 p--;
1567
1568 var = savestring (arg, p - arg);
1569 if (nullset)
1570 {
1571 printf_filtered (_("\
1572Setting environment variable \"%s\" to null value.\n"),
1573 var);
1574 set_in_environ (inferior_environ, var, "");
1575 }
1576 else
1577 set_in_environ (inferior_environ, var, val);
1578 xfree (var);
1579}
1580
1581static void
1582unset_environment_command (char *var, int from_tty)
1583{
1584 if (var == 0)
1585 {
1586 /* If there is no argument, delete all environment variables.
1587 Ask for confirmation if reading from the terminal. */
1588 if (!from_tty || query (_("Delete all environment variables? ")))
1589 {
1590 free_environ (inferior_environ);
1591 inferior_environ = make_environ ();
1592 }
1593 }
1594 else
1595 unset_in_environ (inferior_environ, var);
1596}
1597
1598/* Handle the execution path (PATH variable) */
1599
1600static const char path_var_name[] = "PATH";
1601
1602static void
1603path_info (char *args, int from_tty)
1604{
1605 puts_filtered ("Executable and object file path: ");
1606 puts_filtered (get_in_environ (inferior_environ, path_var_name));
1607 puts_filtered ("\n");
1608}
1609
1610/* Add zero or more directories to the front of the execution path. */
1611
1612static void
1613path_command (char *dirname, int from_tty)
1614{
1615 char *exec_path;
1616 char *env;
1617 dont_repeat ();
1618 env = get_in_environ (inferior_environ, path_var_name);
1619 /* Can be null if path is not set */
1620 if (!env)
1621 env = "";
1622 exec_path = xstrdup (env);
1623 mod_path (dirname, &exec_path);
1624 set_in_environ (inferior_environ, path_var_name, exec_path);
1625 xfree (exec_path);
1626 if (from_tty)
1627 path_info ((char *) NULL, from_tty);
1628}
1629\f
1630
1631/* Print out the machine register regnum. If regnum is -1, print all
1632 registers (print_all == 1) or all non-float and non-vector
1633 registers (print_all == 0).
1634
1635 For most machines, having all_registers_info() print the
1636 register(s) one per line is good enough. If a different format is
1637 required, (eg, for MIPS or Pyramid 90x, which both have lots of
1638 regs), or there is an existing convention for showing all the
1639 registers, define the architecture method PRINT_REGISTERS_INFO to
1640 provide that format. */
1641
1642void
1643default_print_registers_info (struct gdbarch *gdbarch,
1644 struct ui_file *file,
1645 struct frame_info *frame,
1646 int regnum, int print_all)
1647{
1648 int i;
1649 const int numregs = gdbarch_num_regs (gdbarch)
1650 + gdbarch_num_pseudo_regs (gdbarch);
1651 gdb_byte buffer[MAX_REGISTER_SIZE];
1652
1653 for (i = 0; i < numregs; i++)
1654 {
1655 /* Decide between printing all regs, non-float / vector regs, or
1656 specific reg. */
1657 if (regnum == -1)
1658 {
1659 if (print_all)
1660 {
1661 if (!gdbarch_register_reggroup_p (gdbarch, i, all_reggroup))
1662 continue;
1663 }
1664 else
1665 {
1666 if (!gdbarch_register_reggroup_p (gdbarch, i, general_reggroup))
1667 continue;
1668 }
1669 }
1670 else
1671 {
1672 if (i != regnum)
1673 continue;
1674 }
1675
1676 /* If the register name is empty, it is undefined for this
1677 processor, so don't display anything. */
1678 if (gdbarch_register_name (gdbarch, i) == NULL
1679 || *(gdbarch_register_name (gdbarch, i)) == '\0')
1680 continue;
1681
1682 fputs_filtered (gdbarch_register_name (gdbarch, i), file);
1683 print_spaces_filtered (15 - strlen (gdbarch_register_name
1684 (gdbarch, i)), file);
1685
1686 /* Get the data in raw format. */
1687 if (! frame_register_read (frame, i, buffer))
1688 {
1689 fprintf_filtered (file, "*value not available*\n");
1690 continue;
1691 }
1692
1693 /* If virtual format is floating, print it that way, and in raw
1694 hex. */
1695 if (TYPE_CODE (register_type (gdbarch, i)) == TYPE_CODE_FLT
1696 || TYPE_CODE (register_type (gdbarch, i)) == TYPE_CODE_DECFLOAT)
1697 {
1698 int j;
1699
1700 val_print (register_type (gdbarch, i), buffer, 0, 0,
1701 file, 0, 1, 0, Val_pretty_default, current_language);
1702
1703 fprintf_filtered (file, "\t(raw 0x");
1704 for (j = 0; j < register_size (gdbarch, i); j++)
1705 {
1706 int idx;
1707 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
1708 idx = j;
1709 else
1710 idx = register_size (gdbarch, i) - 1 - j;
1711 fprintf_filtered (file, "%02x", (unsigned char) buffer[idx]);
1712 }
1713 fprintf_filtered (file, ")");
1714 }
1715 else
1716 {
1717 /* Print the register in hex. */
1718 val_print (register_type (gdbarch, i), buffer, 0, 0,
1719 file, 'x', 1, 0, Val_pretty_default, current_language);
1720 /* If not a vector register, print it also according to its
1721 natural format. */
1722 if (TYPE_VECTOR (register_type (gdbarch, i)) == 0)
1723 {
1724 fprintf_filtered (file, "\t");
1725 val_print (register_type (gdbarch, i), buffer, 0, 0,
1726 file, 0, 1, 0, Val_pretty_default, current_language);
1727 }
1728 }
1729
1730 fprintf_filtered (file, "\n");
1731 }
1732}
1733
1734void
1735registers_info (char *addr_exp, int fpregs)
1736{
1737 struct frame_info *frame;
1738 struct gdbarch *gdbarch;
1739 int regnum, numregs;
1740 char *end;
1741
1742 if (!target_has_registers)
1743 error (_("The program has no registers now."));
1744 frame = get_selected_frame (NULL);
1745 gdbarch = get_frame_arch (frame);
1746
1747 if (!addr_exp)
1748 {
1749 gdbarch_print_registers_info (gdbarch, gdb_stdout,
1750 frame, -1, fpregs);
1751 return;
1752 }
1753
1754 while (*addr_exp != '\0')
1755 {
1756 char *start;
1757 const char *end;
1758
1759 /* Keep skipping leading white space. */
1760 if (isspace ((*addr_exp)))
1761 {
1762 addr_exp++;
1763 continue;
1764 }
1765
1766 /* Discard any leading ``$''. Check that there is something
1767 resembling a register following it. */
1768 if (addr_exp[0] == '$')
1769 addr_exp++;
1770 if (isspace ((*addr_exp)) || (*addr_exp) == '\0')
1771 error (_("Missing register name"));
1772
1773 /* Find the start/end of this register name/num/group. */
1774 start = addr_exp;
1775 while ((*addr_exp) != '\0' && !isspace ((*addr_exp)))
1776 addr_exp++;
1777 end = addr_exp;
1778
1779 /* Figure out what we've found and display it. */
1780
1781 /* A register name? */
1782 {
1783 int regnum = frame_map_name_to_regnum (frame, start, end - start);
1784 if (regnum >= 0)
1785 {
1786 /* User registers lie completely outside of the range of
1787 normal registers. Catch them early so that the target
1788 never sees them. */
1789 if (regnum >= gdbarch_num_regs (gdbarch)
1790 + gdbarch_num_pseudo_regs (gdbarch))
1791 {
1792 struct value *val = value_of_user_reg (regnum, frame);
1793
1794 printf_filtered ("%s: ", start);
1795 print_scalar_formatted (value_contents (val),
1796 check_typedef (value_type (val)),
1797 'x', 0, gdb_stdout);
1798 printf_filtered ("\n");
1799 }
1800 else
1801 gdbarch_print_registers_info (gdbarch, gdb_stdout,
1802 frame, regnum, fpregs);
1803 continue;
1804 }
1805 }
1806
1807 /* A register number? (how portable is this one?). */
1808 {
1809 char *endptr;
1810 int regnum = strtol (start, &endptr, 0);
1811 if (endptr == end
1812 && regnum >= 0
1813 && regnum < gdbarch_num_regs (gdbarch)
1814 + gdbarch_num_pseudo_regs (gdbarch))
1815 {
1816 gdbarch_print_registers_info (gdbarch, gdb_stdout,
1817 frame, regnum, fpregs);
1818 continue;
1819 }
1820 }
1821
1822 /* A register group? */
1823 {
1824 struct reggroup *group;
1825 for (group = reggroup_next (gdbarch, NULL);
1826 group != NULL;
1827 group = reggroup_next (gdbarch, group))
1828 {
1829 /* Don't bother with a length check. Should the user
1830 enter a short register group name, go with the first
1831 group that matches. */
1832 if (strncmp (start, reggroup_name (group), end - start) == 0)
1833 break;
1834 }
1835 if (group != NULL)
1836 {
1837 int regnum;
1838 for (regnum = 0;
1839 regnum < gdbarch_num_regs (gdbarch)
1840 + gdbarch_num_pseudo_regs (gdbarch);
1841 regnum++)
1842 {
1843 if (gdbarch_register_reggroup_p (gdbarch, regnum, group))
1844 gdbarch_print_registers_info (gdbarch,
1845 gdb_stdout, frame,
1846 regnum, fpregs);
1847 }
1848 continue;
1849 }
1850 }
1851
1852 /* Nothing matched. */
1853 error (_("Invalid register `%.*s'"), (int) (end - start), start);
1854 }
1855}
1856
1857void
1858all_registers_info (char *addr_exp, int from_tty)
1859{
1860 registers_info (addr_exp, 1);
1861}
1862
1863static void
1864nofp_registers_info (char *addr_exp, int from_tty)
1865{
1866 registers_info (addr_exp, 0);
1867}
1868
1869static void
1870print_vector_info (struct gdbarch *gdbarch, struct ui_file *file,
1871 struct frame_info *frame, const char *args)
1872{
1873 if (gdbarch_print_vector_info_p (gdbarch))
1874 gdbarch_print_vector_info (gdbarch, file, frame, args);
1875 else
1876 {
1877 int regnum;
1878 int printed_something = 0;
1879
1880 for (regnum = 0;
1881 regnum < gdbarch_num_regs (gdbarch)
1882 + gdbarch_num_pseudo_regs (gdbarch);
1883 regnum++)
1884 {
1885 if (gdbarch_register_reggroup_p (gdbarch, regnum, vector_reggroup))
1886 {
1887 printed_something = 1;
1888 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
1889 }
1890 }
1891 if (!printed_something)
1892 fprintf_filtered (file, "No vector information\n");
1893 }
1894}
1895
1896static void
1897vector_info (char *args, int from_tty)
1898{
1899 if (!target_has_registers)
1900 error (_("The program has no registers now."));
1901
1902 print_vector_info (current_gdbarch, gdb_stdout,
1903 get_selected_frame (NULL), args);
1904}
1905\f
1906
1907/*
1908 * TODO:
1909 * Should save/restore the tty state since it might be that the
1910 * program to be debugged was started on this tty and it wants
1911 * the tty in some state other than what we want. If it's running
1912 * on another terminal or without a terminal, then saving and
1913 * restoring the tty state is a harmless no-op.
1914 * This only needs to be done if we are attaching to a process.
1915 */
1916
1917/*
1918 attach_command --
1919 takes a program started up outside of gdb and ``attaches'' to it.
1920 This stops it cold in its tracks and allows us to start debugging it.
1921 and wait for the trace-trap that results from attaching. */
1922
1923static void
1924attach_command_post_wait (char *args, int from_tty, int async_exec)
1925{
1926 char *exec_file;
1927 char *full_exec_path = NULL;
1928
1929 stop_soon = NO_STOP_QUIETLY;
1930
1931 /* If no exec file is yet known, try to determine it from the
1932 process itself. */
1933 exec_file = (char *) get_exec_file (0);
1934 if (!exec_file)
1935 {
1936 exec_file = target_pid_to_exec_file (PIDGET (inferior_ptid));
1937 if (exec_file)
1938 {
1939 /* It's possible we don't have a full path, but rather just a
1940 filename. Some targets, such as HP-UX, don't provide the
1941 full path, sigh.
1942
1943 Attempt to qualify the filename against the source path.
1944 (If that fails, we'll just fall back on the original
1945 filename. Not much more we can do...)
1946 */
1947 if (!source_full_path_of (exec_file, &full_exec_path))
1948 full_exec_path = savestring (exec_file, strlen (exec_file));
1949
1950 exec_file_attach (full_exec_path, from_tty);
1951 symbol_file_add_main (full_exec_path, from_tty);
1952 }
1953 }
1954 else
1955 {
1956 reopen_exec_file ();
1957 reread_symbols ();
1958 }
1959
1960 /* Take any necessary post-attaching actions for this platform. */
1961 target_post_attach (PIDGET (inferior_ptid));
1962
1963 post_create_inferior (&current_target, from_tty);
1964
1965 /* Install inferior's terminal modes. */
1966 target_terminal_inferior ();
1967
1968 if (async_exec)
1969 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_0, 0);
1970 else
1971 {
1972 if (target_can_async_p ())
1973 async_enable_stdin ();
1974 normal_stop ();
1975 if (deprecated_attach_hook)
1976 deprecated_attach_hook ();
1977 }
1978}
1979
1980struct attach_command_continuation_args
1981{
1982 char *args;
1983 int from_tty;
1984 int async_exec;
1985};
1986
1987static void
1988attach_command_continuation (void *args)
1989{
1990 struct attach_command_continuation_args *a = args;
1991 attach_command_post_wait (a->args, a->from_tty, a->async_exec);
1992}
1993
1994static void
1995attach_command_continuation_free_args (void *args)
1996{
1997 struct attach_command_continuation_args *a = args;
1998 xfree (a->args);
1999 xfree (a);
2000}
2001
2002void
2003attach_command (char *args, int from_tty)
2004{
2005 char *exec_file;
2006 char *full_exec_path = NULL;
2007 int async_exec = 0;
2008
2009 dont_repeat (); /* Not for the faint of heart */
2010
2011 if (target_has_execution)
2012 {
2013 if (query ("A program is being debugged already. Kill it? "))
2014 target_kill ();
2015 else
2016 error (_("Not killed."));
2017 }
2018
2019 /* Clean up any leftovers from other runs. Some other things from
2020 this function should probably be moved into target_pre_inferior. */
2021 target_pre_inferior (from_tty);
2022
2023 if (args)
2024 {
2025 async_exec = strip_bg_char (&args);
2026
2027 /* If we get a request for running in the bg but the target
2028 doesn't support it, error out. */
2029 if (async_exec && !target_can_async_p ())
2030 error (_("Asynchronous execution not supported on this target."));
2031 }
2032
2033 /* If we don't get a request of running in the bg, then we need
2034 to simulate synchronous (fg) execution. */
2035 if (!async_exec && target_can_async_p ())
2036 {
2037 /* Simulate synchronous execution */
2038 async_disable_stdin ();
2039 }
2040
2041 target_attach (args, from_tty);
2042
2043 /* Set up the "saved terminal modes" of the inferior
2044 based on what modes we are starting it with. */
2045 target_terminal_init ();
2046
2047 /* Set up execution context to know that we should return from
2048 wait_for_inferior as soon as the target reports a stop. */
2049 init_wait_for_inferior ();
2050 clear_proceed_status ();
2051
2052 /* Some system don't generate traps when attaching to inferior.
2053 E.g. Mach 3 or GNU hurd. */
2054 if (!target_attach_no_wait)
2055 {
2056 /* Careful here. See comments in inferior.h. Basically some
2057 OSes don't ignore SIGSTOPs on continue requests anymore. We
2058 need a way for handle_inferior_event to reset the stop_signal
2059 variable after an attach, and this is what
2060 STOP_QUIETLY_NO_SIGSTOP is for. */
2061 stop_soon = STOP_QUIETLY_NO_SIGSTOP;
2062
2063 if (target_can_async_p ())
2064 {
2065 /* sync_execution mode. Wait for stop. */
2066 struct attach_command_continuation_args *a;
2067
2068 a = xmalloc (sizeof (*a));
2069 a->args = xstrdup (args);
2070 a->from_tty = from_tty;
2071 a->async_exec = async_exec;
2072 add_continuation (attach_command_continuation, a,
2073 attach_command_continuation_free_args);
2074 return;
2075 }
2076
2077 wait_for_inferior (0);
2078 }
2079
2080 attach_command_post_wait (args, from_tty, async_exec);
2081}
2082
2083/*
2084 * detach_command --
2085 * takes a program previously attached to and detaches it.
2086 * The program resumes execution and will no longer stop
2087 * on signals, etc. We better not have left any breakpoints
2088 * in the program or it'll die when it hits one. For this
2089 * to work, it may be necessary for the process to have been
2090 * previously attached. It *might* work if the program was
2091 * started via the normal ptrace (PTRACE_TRACEME).
2092 */
2093
2094static void
2095detach_command (char *args, int from_tty)
2096{
2097 dont_repeat (); /* Not for the faint of heart. */
2098 target_detach (args, from_tty);
2099 no_shared_libraries (NULL, from_tty);
2100 init_thread_list ();
2101 if (deprecated_detach_hook)
2102 deprecated_detach_hook ();
2103}
2104
2105/* Disconnect from the current target without resuming it (leaving it
2106 waiting for a debugger).
2107
2108 We'd better not have left any breakpoints in the program or the
2109 next debugger will get confused. Currently only supported for some
2110 remote targets, since the normal attach mechanisms don't work on
2111 stopped processes on some native platforms (e.g. GNU/Linux). */
2112
2113static void
2114disconnect_command (char *args, int from_tty)
2115{
2116 dont_repeat (); /* Not for the faint of heart */
2117 target_disconnect (args, from_tty);
2118 no_shared_libraries (NULL, from_tty);
2119 init_thread_list ();
2120 if (deprecated_detach_hook)
2121 deprecated_detach_hook ();
2122}
2123
2124void
2125interrupt_target_1 (int all_threads)
2126{
2127 ptid_t ptid;
2128 if (all_threads)
2129 ptid = minus_one_ptid;
2130 else
2131 ptid = inferior_ptid;
2132 target_stop (ptid);
2133}
2134
2135/* Stop the execution of the target while running in async mode, in
2136 the backgound. In all-stop, stop the whole process. In non-stop
2137 mode, stop the current thread only by default, or stop all threads
2138 if the `-a' switch is used. */
2139
2140/* interrupt [-a] */
2141void
2142interrupt_target_command (char *args, int from_tty)
2143{
2144 if (target_can_async_p ())
2145 {
2146 int all_threads = 0;
2147
2148 dont_repeat (); /* Not for the faint of heart */
2149
2150 if (args != NULL
2151 && strncmp (args, "-a", sizeof ("-a") - 1) == 0)
2152 all_threads = 1;
2153
2154 if (!non_stop && all_threads)
2155 error (_("-a is meaningless in all-stop mode."));
2156
2157 interrupt_target_1 (all_threads);
2158 }
2159}
2160
2161static void
2162print_float_info (struct gdbarch *gdbarch, struct ui_file *file,
2163 struct frame_info *frame, const char *args)
2164{
2165 if (gdbarch_print_float_info_p (gdbarch))
2166 gdbarch_print_float_info (gdbarch, file, frame, args);
2167 else
2168 {
2169 int regnum;
2170 int printed_something = 0;
2171
2172 for (regnum = 0;
2173 regnum < gdbarch_num_regs (gdbarch)
2174 + gdbarch_num_pseudo_regs (gdbarch);
2175 regnum++)
2176 {
2177 if (gdbarch_register_reggroup_p (gdbarch, regnum, float_reggroup))
2178 {
2179 printed_something = 1;
2180 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
2181 }
2182 }
2183 if (!printed_something)
2184 fprintf_filtered (file, "\
2185No floating-point info available for this processor.\n");
2186 }
2187}
2188
2189static void
2190float_info (char *args, int from_tty)
2191{
2192 if (!target_has_registers)
2193 error (_("The program has no registers now."));
2194
2195 print_float_info (current_gdbarch, gdb_stdout,
2196 get_selected_frame (NULL), args);
2197}
2198\f
2199static void
2200unset_command (char *args, int from_tty)
2201{
2202 printf_filtered (_("\
2203\"unset\" must be followed by the name of an unset subcommand.\n"));
2204 help_list (unsetlist, "unset ", -1, gdb_stdout);
2205}
2206
2207void
2208_initialize_infcmd (void)
2209{
2210 struct cmd_list_element *c = NULL;
2211
2212 /* add the filename of the terminal connected to inferior I/O */
2213 add_setshow_filename_cmd ("inferior-tty", class_run,
2214 &inferior_io_terminal, _("\
2215Set terminal for future runs of program being debugged."), _("\
2216Show terminal for future runs of program being debugged."), _("\
2217Usage: set inferior-tty /dev/pts/1"), NULL, NULL, &setlist, &showlist);
2218 add_com_alias ("tty", "set inferior-tty", class_alias, 0);
2219
2220 add_setshow_optional_filename_cmd ("args", class_run,
2221 &inferior_args, _("\
2222Set argument list to give program being debugged when it is started."), _("\
2223Show argument list to give program being debugged when it is started."), _("\
2224Follow this command with any number of args, to be passed to the program."),
2225 notice_args_set,
2226 notice_args_read,
2227 &setlist, &showlist);
2228
2229 c = add_cmd ("environment", no_class, environment_info, _("\
2230The environment to give the program, or one variable's value.\n\
2231With an argument VAR, prints the value of environment variable VAR to\n\
2232give the program being debugged. With no arguments, prints the entire\n\
2233environment to be given to the program."), &showlist);
2234 set_cmd_completer (c, noop_completer);
2235
2236 add_prefix_cmd ("unset", no_class, unset_command,
2237 _("Complement to certain \"set\" commands."),
2238 &unsetlist, "unset ", 0, &cmdlist);
2239
2240 c = add_cmd ("environment", class_run, unset_environment_command, _("\
2241Cancel environment variable VAR for the program.\n\
2242This does not affect the program until the next \"run\" command."),
2243 &unsetlist);
2244 set_cmd_completer (c, noop_completer);
2245
2246 c = add_cmd ("environment", class_run, set_environment_command, _("\
2247Set environment variable value to give the program.\n\
2248Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\
2249VALUES of environment variables are uninterpreted strings.\n\
2250This does not affect the program until the next \"run\" command."),
2251 &setlist);
2252 set_cmd_completer (c, noop_completer);
2253
2254 c = add_com ("path", class_files, path_command, _("\
2255Add directory DIR(s) to beginning of search path for object files.\n\
2256$cwd in the path means the current working directory.\n\
2257This path is equivalent to the $PATH shell variable. It is a list of\n\
2258directories, separated by colons. These directories are searched to find\n\
2259fully linked executable files and separately compiled object files as needed."));
2260 set_cmd_completer (c, filename_completer);
2261
2262 c = add_cmd ("paths", no_class, path_info, _("\
2263Current search path for finding object files.\n\
2264$cwd in the path means the current working directory.\n\
2265This path is equivalent to the $PATH shell variable. It is a list of\n\
2266directories, separated by colons. These directories are searched to find\n\
2267fully linked executable files and separately compiled object files as needed."),
2268 &showlist);
2269 set_cmd_completer (c, noop_completer);
2270
2271 add_com ("attach", class_run, attach_command, _("\
2272Attach to a process or file outside of GDB.\n\
2273This command attaches to another target, of the same type as your last\n\
2274\"target\" command (\"info files\" will show your target stack).\n\
2275The command may take as argument a process id or a device file.\n\
2276For a process id, you must have permission to send the process a signal,\n\
2277and it must have the same effective uid as the debugger.\n\
2278When using \"attach\" with a process id, the debugger finds the\n\
2279program running in the process, looking first in the current working\n\
2280directory, or (if not found there) using the source file search path\n\
2281(see the \"directory\" command). You can also use the \"file\" command\n\
2282to specify the program, and to load its symbol table."));
2283
2284 add_prefix_cmd ("detach", class_run, detach_command, _("\
2285Detach a process or file previously attached.\n\
2286If a process, it is no longer traced, and it continues its execution. If\n\
2287you were debugging a file, the file is closed and gdb no longer accesses it."),
2288 &detachlist, "detach ", 0, &cmdlist);
2289
2290 add_com ("disconnect", class_run, disconnect_command, _("\
2291Disconnect from a target.\n\
2292The target will wait for another debugger to connect. Not available for\n\
2293all targets."));
2294
2295 add_com ("signal", class_run, signal_command, _("\
2296Continue program giving it signal specified by the argument.\n\
2297An argument of \"0\" means continue program without giving it a signal."));
2298
2299 add_com ("stepi", class_run, stepi_command, _("\
2300Step one instruction exactly.\n\
2301Argument N means do this N times (or till program stops for another reason)."));
2302 add_com_alias ("si", "stepi", class_alias, 0);
2303
2304 add_com ("nexti", class_run, nexti_command, _("\
2305Step one instruction, but proceed through subroutine calls.\n\
2306Argument N means do this N times (or till program stops for another reason)."));
2307 add_com_alias ("ni", "nexti", class_alias, 0);
2308
2309 add_com ("finish", class_run, finish_command, _("\
2310Execute until selected stack frame returns.\n\
2311Upon return, the value returned is printed and put in the value history."));
2312 add_com_alias ("fin", "finish", class_run, 1);
2313
2314 add_com ("next", class_run, next_command, _("\
2315Step program, proceeding through subroutine calls.\n\
2316Like the \"step\" command as long as subroutine calls do not happen;\n\
2317when they do, the call is treated as one instruction.\n\
2318Argument N means do this N times (or till program stops for another reason)."));
2319 add_com_alias ("n", "next", class_run, 1);
2320 if (xdb_commands)
2321 add_com_alias ("S", "next", class_run, 1);
2322
2323 add_com ("step", class_run, step_command, _("\
2324Step program until it reaches a different source line.\n\
2325Argument N means do this N times (or till program stops for another reason)."));
2326 add_com_alias ("s", "step", class_run, 1);
2327
2328 c = add_com ("until", class_run, until_command, _("\
2329Execute until the program reaches a source line greater than the current\n\
2330or a specified location (same args as break command) within the current frame."));
2331 set_cmd_completer (c, location_completer);
2332 add_com_alias ("u", "until", class_run, 1);
2333
2334 c = add_com ("advance", class_run, advance_command, _("\
2335Continue the program up to the given location (same form as args for break command).\n\
2336Execution will also stop upon exit from the current stack frame."));
2337 set_cmd_completer (c, location_completer);
2338
2339 c = add_com ("jump", class_run, jump_command, _("\
2340Continue program being debugged at specified line or address.\n\
2341Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\
2342for an address to start at."));
2343 set_cmd_completer (c, location_completer);
2344
2345 if (xdb_commands)
2346 {
2347 c = add_com ("go", class_run, go_command, _("\
2348Usage: go <location>\n\
2349Continue program being debugged, stopping at specified line or \n\
2350address.\n\
2351Give as argument either LINENUM or *ADDR, where ADDR is an \n\
2352expression for an address to start at.\n\
2353This command is a combination of tbreak and jump."));
2354 set_cmd_completer (c, location_completer);
2355 }
2356
2357 if (xdb_commands)
2358 add_com_alias ("g", "go", class_run, 1);
2359
2360 c = add_com ("continue", class_run, continue_command, _("\
2361Continue program being debugged, after signal or breakpoint.\n\
2362If proceeding from breakpoint, a number N may be used as an argument,\n\
2363which means to set the ignore count of that breakpoint to N - 1 (so that\n\
2364the breakpoint won't break until the Nth time it is reached).\n\
2365\n\
2366If non-stop mode is enabled, continue only the current thread,\n\
2367otherwise all the threads in the program are continued. To \n\
2368continue all stopped threads in non-stop mode, use the -a option.\n\
2369Specifying -a and an ignore count simultaneously is an error."));
2370 add_com_alias ("c", "cont", class_run, 1);
2371 add_com_alias ("fg", "cont", class_run, 1);
2372
2373 c = add_com ("run", class_run, run_command, _("\
2374Start debugged program. You may specify arguments to give it.\n\
2375Args may include \"*\", or \"[...]\"; they are expanded using \"sh\".\n\
2376Input and output redirection with \">\", \"<\", or \">>\" are also allowed.\n\n\
2377With no arguments, uses arguments last specified (with \"run\" or \"set args\").\n\
2378To cancel previous arguments and run with no arguments,\n\
2379use \"set args\" without arguments."));
2380 set_cmd_completer (c, filename_completer);
2381 add_com_alias ("r", "run", class_run, 1);
2382 if (xdb_commands)
2383 add_com ("R", class_run, run_no_args_command,
2384 _("Start debugged program with no arguments."));
2385
2386 c = add_com ("start", class_run, start_command, _("\
2387Run the debugged program until the beginning of the main procedure.\n\
2388You may specify arguments to give to your program, just as with the\n\
2389\"run\" command."));
2390 set_cmd_completer (c, filename_completer);
2391
2392 c = add_com ("interrupt", class_run, interrupt_target_command,
2393 _("Interrupt the execution of the debugged program.\n\
2394If non-stop mode is enabled, interrupt only the current thread,\n\
2395otherwise all the threads in the program are stopped. To \n\
2396interrupt all running threads in non-stop mode, use the -a option."));
2397
2398 add_info ("registers", nofp_registers_info, _("\
2399List of integer registers and their contents, for selected stack frame.\n\
2400Register name as argument means describe only that register."));
2401 add_info_alias ("r", "registers", 1);
2402
2403 if (xdb_commands)
2404 add_com ("lr", class_info, nofp_registers_info, _("\
2405List of integer registers and their contents, for selected stack frame.\n\
2406Register name as argument means describe only that register."));
2407 add_info ("all-registers", all_registers_info, _("\
2408List of all registers and their contents, for selected stack frame.\n\
2409Register name as argument means describe only that register."));
2410
2411 add_info ("program", program_info,
2412 _("Execution status of the program."));
2413
2414 add_info ("float", float_info,
2415 _("Print the status of the floating point unit\n"));
2416
2417 add_info ("vector", vector_info,
2418 _("Print the status of the vector unit\n"));
2419
2420 inferior_environ = make_environ ();
2421 init_environ (inferior_environ);
2422}
This page took 0.03214 seconds and 4 git commands to generate.