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