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