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