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