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