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