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