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