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