OSDN Git Service

704e3215cb232fabbb8736306b8cd6e2023adf48
[pf3gnuchains/pf3gnuchains3x.git] / gdb / infcmd.c
1 /* Memory-access and commands for "inferior" process, for GDB.
2
3    Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
4    1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
5    Free Software Foundation, Inc.
6
7    This file is part of GDB.
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 59 Temple Place - Suite 330,
22    Boston, MA 02111-1307, USA.  */
23
24 #include "defs.h"
25 #include <signal.h>
26 #include "gdb_string.h"
27 #include "symtab.h"
28 #include "gdbtypes.h"
29 #include "frame.h"
30 #include "inferior.h"
31 #include "environ.h"
32 #include "value.h"
33 #include "gdbcmd.h"
34 #include "symfile.h"
35 #include "gdbcore.h"
36 #include "target.h"
37 #include "language.h"
38 #include "symfile.h"
39 #include "objfiles.h"
40 #include "completer.h"
41 #include "ui-out.h"
42 #include "event-top.h"
43 #include "parser-defs.h"
44 #include "regcache.h"
45 #include "reggroups.h"
46 #include "block.h"
47 #include <ctype.h>
48 #include "gdb_assert.h"
49
50 /* Functions exported for general use, in inferior.h: */
51
52 void all_registers_info (char *, int);
53
54 void registers_info (char *, int);
55
56 void nexti_command (char *, int);
57
58 void stepi_command (char *, int);
59
60 void continue_command (char *, int);
61
62 void interrupt_target_command (char *args, int from_tty);
63
64 /* Local functions: */
65
66 static void nofp_registers_info (char *, int);
67
68 static void print_return_value (int struct_return, struct type *value_type);
69
70 static void finish_command_continuation (struct continuation_arg *);
71
72 static void until_next_command (int);
73
74 static void until_command (char *, int);
75
76 static void path_info (char *, int);
77
78 static void path_command (char *, int);
79
80 static void unset_command (char *, int);
81
82 static void float_info (char *, int);
83
84 static void detach_command (char *, int);
85
86 static void disconnect_command (char *, int);
87
88 static void unset_environment_command (char *, int);
89
90 static void set_environment_command (char *, int);
91
92 static void environment_info (char *, int);
93
94 static void program_info (char *, int);
95
96 static void finish_command (char *, int);
97
98 static void signal_command (char *, int);
99
100 static void jump_command (char *, int);
101
102 static void step_1 (int, int, char *);
103 static void step_once (int skip_subroutines, int single_inst, int count);
104 static void step_1_continuation (struct continuation_arg *arg);
105
106 static void next_command (char *, int);
107
108 static void step_command (char *, int);
109
110 static void run_command (char *, int);
111
112 static void run_no_args_command (char *args, int from_tty);
113
114 static void go_command (char *line_no, int from_tty);
115
116 static int strip_bg_char (char **);
117
118 void _initialize_infcmd (void);
119
120 #define GO_USAGE   "Usage: go <location>\n"
121
122 #define ERROR_NO_INFERIOR \
123    if (!target_has_execution) error (_("The program is not being run."));
124
125 /* String containing arguments to give to the program, separated by spaces.
126    Empty string (pointer to '\0') means no args.  */
127
128 static char *inferior_args;
129
130 /* The inferior arguments as a vector.  If INFERIOR_ARGC is nonzero,
131    then we must compute INFERIOR_ARGS from this (via the target).  */
132
133 static int inferior_argc;
134 static char **inferior_argv;
135
136 /* File name for default use for standard in/out in the inferior.  */
137
138 char *inferior_io_terminal;
139
140 /* Pid of our debugged inferior, or 0 if no inferior now.
141    Since various parts of infrun.c test this to see whether there is a program
142    being debugged it should be nonzero (currently 3 is used) for remote
143    debugging.  */
144
145 ptid_t inferior_ptid;
146
147 /* Last signal that the inferior received (why it stopped).  */
148
149 enum target_signal stop_signal;
150
151 /* Address at which inferior stopped.  */
152
153 CORE_ADDR stop_pc;
154
155 /* Chain containing status of breakpoint(s) that we have stopped at.  */
156
157 bpstat stop_bpstat;
158
159 /* Flag indicating that a command has proceeded the inferior past the
160    current breakpoint.  */
161
162 int breakpoint_proceeded;
163
164 /* Nonzero if stopped due to a step command.  */
165
166 int stop_step;
167
168 /* Nonzero if stopped due to completion of a stack dummy routine.  */
169
170 int stop_stack_dummy;
171
172 /* Nonzero if stopped due to a random (unexpected) signal in inferior
173    process.  */
174
175 int stopped_by_random_signal;
176
177 /* Range to single step within.
178    If this is nonzero, respond to a single-step signal
179    by continuing to step if the pc is in this range.  */
180
181 CORE_ADDR step_range_start;     /* Inclusive */
182 CORE_ADDR step_range_end;       /* Exclusive */
183
184 /* Stack frame address as of when stepping command was issued.
185    This is how we know when we step into a subroutine call,
186    and how to set the frame for the breakpoint used to step out.  */
187
188 struct frame_id step_frame_id;
189
190 enum step_over_calls_kind step_over_calls;
191
192 /* If stepping, nonzero means step count is > 1
193    so don't print frame next time inferior stops
194    if it stops due to stepping.  */
195
196 int step_multi;
197
198 /* Environment to use for running inferior,
199    in format described in environ.h.  */
200
201 struct environ *inferior_environ;
202 \f
203 /* Accessor routines. */
204
205 char *
206 get_inferior_args (void)
207 {
208   if (inferior_argc != 0)
209     {
210       char *n, *old;
211
212       n = gdbarch_construct_inferior_arguments (current_gdbarch,
213                                                 inferior_argc, inferior_argv);
214       old = set_inferior_args (n);
215       xfree (old);
216     }
217
218   if (inferior_args == NULL)
219     inferior_args = xstrdup ("");
220
221   return inferior_args;
222 }
223
224 char *
225 set_inferior_args (char *newargs)
226 {
227   char *saved_args = inferior_args;
228
229   inferior_args = newargs;
230   inferior_argc = 0;
231   inferior_argv = 0;
232
233   return saved_args;
234 }
235
236 void
237 set_inferior_args_vector (int argc, char **argv)
238 {
239   inferior_argc = argc;
240   inferior_argv = argv;
241 }
242
243 /* Notice when `set args' is run.  */
244 static void
245 notice_args_set (char *args, int from_tty, struct cmd_list_element *c)
246 {
247   inferior_argc = 0;
248   inferior_argv = 0;
249 }
250
251 /* Notice when `show args' is run.  */
252 static void
253 notice_args_read (char *args, int from_tty, struct cmd_list_element *c)
254 {
255   /* Might compute the value.  */
256   get_inferior_args ();
257 }
258
259 \f
260 /* Compute command-line string given argument vector.  This does the
261    same shell processing as fork_inferior.  */
262 char *
263 construct_inferior_arguments (struct gdbarch *gdbarch, int argc, char **argv)
264 {
265   char *result;
266
267   if (STARTUP_WITH_SHELL)
268     {
269       /* This holds all the characters considered special to the
270          typical Unix shells.  We include `^' because the SunOS
271          /bin/sh treats it as a synonym for `|'.  */
272       char *special = "\"!#$&*()\\|[]{}<>?'\"`~^; \t\n";
273       int i;
274       int length = 0;
275       char *out, *cp;
276
277       /* We over-compute the size.  It shouldn't matter.  */
278       for (i = 0; i < argc; ++i)
279         length += 2 * strlen (argv[i]) + 1 + 2 * (argv[i][0] == '\0');
280
281       result = (char *) xmalloc (length);
282       out = result;
283
284       for (i = 0; i < argc; ++i)
285         {
286           if (i > 0)
287             *out++ = ' ';
288
289           /* Need to handle empty arguments specially.  */
290           if (argv[i][0] == '\0')
291             {
292               *out++ = '\'';
293               *out++ = '\'';
294             }
295           else
296             {
297               for (cp = argv[i]; *cp; ++cp)
298                 {
299                   if (strchr (special, *cp) != NULL)
300                     *out++ = '\\';
301                   *out++ = *cp;
302                 }
303             }
304         }
305       *out = '\0';
306     }
307   else
308     {
309       /* In this case we can't handle arguments that contain spaces,
310          tabs, or newlines -- see breakup_args().  */
311       int i;
312       int length = 0;
313
314       for (i = 0; i < argc; ++i)
315         {
316           char *cp = strchr (argv[i], ' ');
317           if (cp == NULL)
318             cp = strchr (argv[i], '\t');
319           if (cp == NULL)
320             cp = strchr (argv[i], '\n');
321           if (cp != NULL)
322             error (_("can't handle command-line argument containing whitespace"));
323           length += strlen (argv[i]) + 1;
324         }
325
326       result = (char *) xmalloc (length);
327       result[0] = '\0';
328       for (i = 0; i < argc; ++i)
329         {
330           if (i > 0)
331             strcat (result, " ");
332           strcat (result, argv[i]);
333         }
334     }
335
336   return result;
337 }
338 \f
339
340 /* This function detects whether or not a '&' character (indicating
341    background execution) has been added as *the last* of the arguments ARGS
342    of a command. If it has, it removes it and returns 1. Otherwise it
343    does nothing and returns 0. */
344 static int
345 strip_bg_char (char **args)
346 {
347   char *p = NULL;
348
349   p = strchr (*args, '&');
350
351   if (p)
352     {
353       if (p == (*args + strlen (*args) - 1))
354         {
355           if (strlen (*args) > 1)
356             {
357               do
358                 p--;
359               while (*p == ' ' || *p == '\t');
360               *(p + 1) = '\0';
361             }
362           else
363             *args = 0;
364           return 1;
365         }
366     }
367   return 0;
368 }
369
370 void
371 tty_command (char *file, int from_tty)
372 {
373   if (file == 0)
374     error_no_arg (_("terminal name for running target process"));
375
376   inferior_io_terminal = savestring (file, strlen (file));
377 }
378
379 /* Kill the inferior if already running.  This function is designed
380    to be called when we are about to start the execution of the program
381    from the beginning.  Ask the user to confirm that he wants to restart
382    the program being debugged when FROM_TTY is non-null.  */
383
384 void
385 kill_if_already_running (int from_tty)
386 {
387   if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
388     {
389       if (from_tty
390           && !query ("The program being debugged has been started already.\n\
391 Start it from the beginning? "))
392         error (_("Program not restarted."));
393       target_kill ();
394 #if defined(SOLIB_RESTART)
395       SOLIB_RESTART ();
396 #endif
397       init_wait_for_inferior ();
398     }
399 }
400
401 static void
402 run_command (char *args, int from_tty)
403 {
404   char *exec_file;
405
406   dont_repeat ();
407
408   kill_if_already_running (from_tty);
409   clear_breakpoint_hit_counts ();
410
411   /* Purge old solib objfiles. */
412   objfile_purge_solibs ();
413
414   do_run_cleanups (NULL);
415
416   /* The comment here used to read, "The exec file is re-read every
417      time we do a generic_mourn_inferior, so we just have to worry
418      about the symbol file."  The `generic_mourn_inferior' function
419      gets called whenever the program exits.  However, suppose the
420      program exits, and *then* the executable file changes?  We need
421      to check again here.  Since reopen_exec_file doesn't do anything
422      if the timestamp hasn't changed, I don't see the harm.  */
423   reopen_exec_file ();
424   reread_symbols ();
425
426   exec_file = (char *) get_exec_file (0);
427
428   /* We keep symbols from add-symbol-file, on the grounds that the
429      user might want to add some symbols before running the program
430      (right?).  But sometimes (dynamic loading where the user manually
431      introduces the new symbols with add-symbol-file), the code which
432      the symbols describe does not persist between runs.  Currently
433      the user has to manually nuke all symbols between runs if they
434      want them to go away (PR 2207).  This is probably reasonable.  */
435
436   if (!args)
437     {
438       if (target_can_async_p ())
439         async_disable_stdin ();
440     }
441   else
442     {
443       int async_exec = strip_bg_char (&args);
444
445       /* If we get a request for running in the bg but the target
446          doesn't support it, error out. */
447       if (async_exec && !target_can_async_p ())
448         error (_("Asynchronous execution not supported on this target."));
449
450       /* If we don't get a request of running in the bg, then we need
451          to simulate synchronous (fg) execution. */
452       if (!async_exec && target_can_async_p ())
453         {
454           /* Simulate synchronous execution */
455           async_disable_stdin ();
456         }
457
458       /* If there were other args, beside '&', process them. */
459       if (args)
460         {
461           char *old_args = set_inferior_args (xstrdup (args));
462           xfree (old_args);
463         }
464     }
465
466   if (from_tty)
467     {
468       ui_out_field_string (uiout, NULL, "Starting program");
469       ui_out_text (uiout, ": ");
470       if (exec_file)
471         ui_out_field_string (uiout, "execfile", exec_file);
472       ui_out_spaces (uiout, 1);
473       /* We call get_inferior_args() because we might need to compute
474          the value now.  */
475       ui_out_field_string (uiout, "infargs", get_inferior_args ());
476       ui_out_text (uiout, "\n");
477       ui_out_flush (uiout);
478     }
479
480   /* We call get_inferior_args() because we might need to compute
481      the value now.  */
482   target_create_inferior (exec_file, get_inferior_args (),
483                           environ_vector (inferior_environ), from_tty);
484 }
485
486
487 static void
488 run_no_args_command (char *args, int from_tty)
489 {
490   char *old_args = set_inferior_args (xstrdup (""));
491   xfree (old_args);
492 }
493 \f
494
495 /* Start the execution of the program up until the beginning of the main
496    program.  */
497
498 static void
499 start_command (char *args, int from_tty)
500 {
501   /* Some languages such as Ada need to search inside the program
502      minimal symbols for the location where to put the temporary
503      breakpoint before starting.  */
504   if (!have_minimal_symbols ())
505     error (_("No symbol table loaded.  Use the \"file\" command."));
506
507   /* If the inferior is already running, we want to ask the user if we
508      should restart it or not before we insert the temporary breakpoint.
509      This makes sure that this command doesn't have any side effect if
510      the user changes its mind.  */
511   kill_if_already_running (from_tty);
512
513   /* Insert the temporary breakpoint, and run...  */
514   tbreak_command (main_name (), 0);
515   run_command (args, from_tty);
516
517
518 void
519 continue_command (char *proc_count_exp, int from_tty)
520 {
521   int async_exec = 0;
522   ERROR_NO_INFERIOR;
523
524   /* Find out whether we must run in the background. */
525   if (proc_count_exp != NULL)
526     async_exec = strip_bg_char (&proc_count_exp);
527
528   /* If we must run in the background, but the target can't do it,
529      error out. */
530   if (async_exec && !target_can_async_p ())
531     error (_("Asynchronous execution not supported on this target."));
532
533   /* If we are not asked to run in the bg, then prepare to run in the
534      foreground, synchronously. */
535   if (!async_exec && target_can_async_p ())
536     {
537       /* Simulate synchronous execution */
538       async_disable_stdin ();
539     }
540
541   /* If have argument (besides '&'), set proceed count of breakpoint
542      we stopped at.  */
543   if (proc_count_exp != NULL)
544     {
545       bpstat bs = stop_bpstat;
546       int num = bpstat_num (&bs);
547       if (num == 0 && from_tty)
548         {
549           printf_filtered
550             ("Not stopped at any breakpoint; argument ignored.\n");
551         }
552       while (num != 0)
553         {
554           set_ignore_count (num,
555                             parse_and_eval_long (proc_count_exp) - 1,
556                             from_tty);
557           /* set_ignore_count prints a message ending with a period.
558              So print two spaces before "Continuing.".  */
559           if (from_tty)
560             printf_filtered ("  ");
561           num = bpstat_num (&bs);
562         }
563     }
564
565   if (from_tty)
566     printf_filtered ("Continuing.\n");
567
568   clear_proceed_status ();
569
570   proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
571 }
572 \f
573 /* Step until outside of current statement.  */
574
575 static void
576 step_command (char *count_string, int from_tty)
577 {
578   step_1 (0, 0, count_string);
579 }
580
581 /* Likewise, but skip over subroutine calls as if single instructions.  */
582
583 static void
584 next_command (char *count_string, int from_tty)
585 {
586   step_1 (1, 0, count_string);
587 }
588
589 /* Likewise, but step only one instruction.  */
590
591 void
592 stepi_command (char *count_string, int from_tty)
593 {
594   step_1 (0, 1, count_string);
595 }
596
597 void
598 nexti_command (char *count_string, int from_tty)
599 {
600   step_1 (1, 1, count_string);
601 }
602
603 static void
604 disable_longjmp_breakpoint_cleanup (void *ignore)
605 {
606   disable_longjmp_breakpoint ();
607 }
608
609 static void
610 step_1 (int skip_subroutines, int single_inst, char *count_string)
611 {
612   int count = 1;
613   struct frame_info *frame;
614   struct cleanup *cleanups = 0;
615   int async_exec = 0;
616
617   ERROR_NO_INFERIOR;
618
619   if (count_string)
620     async_exec = strip_bg_char (&count_string);
621
622   /* If we get a request for running in the bg but the target
623      doesn't support it, error out. */
624   if (async_exec && !target_can_async_p ())
625     error (_("Asynchronous execution not supported on this target."));
626
627   /* If we don't get a request of running in the bg, then we need
628      to simulate synchronous (fg) execution. */
629   if (!async_exec && target_can_async_p ())
630     {
631       /* Simulate synchronous execution */
632       async_disable_stdin ();
633     }
634
635   count = count_string ? parse_and_eval_long (count_string) : 1;
636
637   if (!single_inst || skip_subroutines)         /* leave si command alone */
638     {
639       enable_longjmp_breakpoint ();
640       if (!target_can_async_p ())
641         cleanups = make_cleanup (disable_longjmp_breakpoint_cleanup, 0 /*ignore*/);
642       else
643         make_exec_cleanup (disable_longjmp_breakpoint_cleanup, 0 /*ignore*/);
644     }
645
646   /* In synchronous case, all is well, just use the regular for loop. */
647   if (!target_can_async_p ())
648     {
649       for (; count > 0; count--)
650         {
651           clear_proceed_status ();
652
653           frame = get_current_frame ();
654           if (!frame)           /* Avoid coredump here.  Why tho? */
655             error (_("No current frame"));
656           step_frame_id = get_frame_id (frame);
657
658           if (!single_inst)
659             {
660               find_pc_line_pc_range (stop_pc, &step_range_start, &step_range_end);
661               if (step_range_end == 0)
662                 {
663                   char *name;
664                   if (find_pc_partial_function (stop_pc, &name, &step_range_start,
665                                                 &step_range_end) == 0)
666                     error (_("Cannot find bounds of current function"));
667
668                   target_terminal_ours ();
669                   printf_filtered ("\
670 Single stepping until exit from function %s, \n\
671 which has no line number information.\n", name);
672                 }
673             }
674           else
675             {
676               /* Say we are stepping, but stop after one insn whatever it does.  */
677               step_range_start = step_range_end = 1;
678               if (!skip_subroutines)
679                 /* It is stepi.
680                    Don't step over function calls, not even to functions lacking
681                    line numbers.  */
682                 step_over_calls = STEP_OVER_NONE;
683             }
684
685           if (skip_subroutines)
686             step_over_calls = STEP_OVER_ALL;
687
688           step_multi = (count > 1);
689           proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
690
691           if (!stop_step)
692             break;
693         }
694
695       if (!single_inst || skip_subroutines)
696         do_cleanups (cleanups);
697       return;
698     }
699   /* In case of asynchronous target things get complicated, do only
700      one step for now, before returning control to the event loop. Let
701      the continuation figure out how many other steps we need to do,
702      and handle them one at the time, through step_once(). */
703   else
704     {
705       if (target_can_async_p ())
706         step_once (skip_subroutines, single_inst, count);
707     }
708 }
709
710 /* Called after we are done with one step operation, to check whether
711    we need to step again, before we print the prompt and return control
712    to the user. If count is > 1, we will need to do one more call to
713    proceed(), via step_once(). Basically it is like step_once and
714    step_1_continuation are co-recursive. */
715 static void
716 step_1_continuation (struct continuation_arg *arg)
717 {
718   int count;
719   int skip_subroutines;
720   int single_inst;
721
722   skip_subroutines = arg->data.integer;
723   single_inst      = arg->next->data.integer;
724   count            = arg->next->next->data.integer;
725
726   if (stop_step)
727     step_once (skip_subroutines, single_inst, count - 1);
728   else
729     if (!single_inst || skip_subroutines)
730       do_exec_cleanups (ALL_CLEANUPS);
731 }
732
733 /* Do just one step operation. If count >1 we will have to set up a
734    continuation to be done after the target stops (after this one
735    step). This is useful to implement the 'step n' kind of commands, in
736    case of asynchronous targets. We had to split step_1 into two parts,
737    one to be done before proceed() and one afterwards. This function is
738    called in case of step n with n>1, after the first step operation has
739    been completed.*/
740 static void 
741 step_once (int skip_subroutines, int single_inst, int count)
742
743   struct continuation_arg *arg1; 
744   struct continuation_arg *arg2;
745   struct continuation_arg *arg3; 
746   struct frame_info *frame;
747
748   if (count > 0)
749     {
750       clear_proceed_status ();
751
752       frame = get_current_frame ();
753       if (!frame)               /* Avoid coredump here.  Why tho? */
754         error (_("No current frame"));
755       step_frame_id = get_frame_id (frame);
756
757       if (!single_inst)
758         {
759           find_pc_line_pc_range (stop_pc, &step_range_start, &step_range_end);
760
761           /* If we have no line info, switch to stepi mode.  */
762           if (step_range_end == 0 && step_stop_if_no_debug)
763             {
764               step_range_start = step_range_end = 1;
765             }
766           else if (step_range_end == 0)
767             {
768               char *name;
769               if (find_pc_partial_function (stop_pc, &name, &step_range_start,
770                                             &step_range_end) == 0)
771                 error (_("Cannot find bounds of current function"));
772
773               target_terminal_ours ();
774               printf_filtered ("\
775 Single stepping until exit from function %s, \n\
776 which has no line number information.\n", name);
777             }
778         }
779       else
780         {
781           /* Say we are stepping, but stop after one insn whatever it does.  */
782           step_range_start = step_range_end = 1;
783           if (!skip_subroutines)
784             /* It is stepi.
785                Don't step over function calls, not even to functions lacking
786                line numbers.  */
787             step_over_calls = STEP_OVER_NONE;
788         }
789
790       if (skip_subroutines)
791         step_over_calls = STEP_OVER_ALL;
792
793       step_multi = (count > 1);
794       arg1 =
795         (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
796       arg2 =
797         (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
798       arg3 =
799         (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
800       arg1->next = arg2;
801       arg1->data.integer = skip_subroutines;
802       arg2->next = arg3;
803       arg2->data.integer = single_inst;
804       arg3->next = NULL;
805       arg3->data.integer = count;
806       add_intermediate_continuation (step_1_continuation, arg1);
807       proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
808     }
809 }
810
811 \f
812 /* Continue program at specified address.  */
813
814 static void
815 jump_command (char *arg, int from_tty)
816 {
817   CORE_ADDR addr;
818   struct symtabs_and_lines sals;
819   struct symtab_and_line sal;
820   struct symbol *fn;
821   struct symbol *sfn;
822   int async_exec = 0;
823
824   ERROR_NO_INFERIOR;
825
826   /* Find out whether we must run in the background. */
827   if (arg != NULL)
828     async_exec = strip_bg_char (&arg);
829
830   /* If we must run in the background, but the target can't do it,
831      error out. */
832   if (async_exec && !target_can_async_p ())
833     error (_("Asynchronous execution not supported on this target."));
834
835   /* If we are not asked to run in the bg, then prepare to run in the
836      foreground, synchronously. */
837   if (!async_exec && target_can_async_p ())
838     {
839       /* Simulate synchronous execution */
840       async_disable_stdin ();
841     }
842
843   if (!arg)
844     error_no_arg (_("starting address"));
845
846   sals = decode_line_spec_1 (arg, 1);
847   if (sals.nelts != 1)
848     {
849       error (_("Unreasonable jump request"));
850     }
851
852   sal = sals.sals[0];
853   xfree (sals.sals);
854
855   if (sal.symtab == 0 && sal.pc == 0)
856     error (_("No source file has been specified."));
857
858   resolve_sal_pc (&sal);        /* May error out */
859
860   /* See if we are trying to jump to another function. */
861   fn = get_frame_function (get_current_frame ());
862   sfn = find_pc_function (sal.pc);
863   if (fn != NULL && sfn != fn)
864     {
865       if (!query ("Line %d is not in `%s'.  Jump anyway? ", sal.line,
866                   SYMBOL_PRINT_NAME (fn)))
867         {
868           error (_("Not confirmed."));
869           /* NOTREACHED */
870         }
871     }
872
873   if (sfn != NULL)
874     {
875       fixup_symbol_section (sfn, 0);
876       if (section_is_overlay (SYMBOL_BFD_SECTION (sfn)) &&
877           !section_is_mapped (SYMBOL_BFD_SECTION (sfn)))
878         {
879           if (!query ("WARNING!!!  Destination is in unmapped overlay!  Jump anyway? "))
880             {
881               error (_("Not confirmed."));
882               /* NOTREACHED */
883             }
884         }
885     }
886
887   addr = sal.pc;
888
889   if (from_tty)
890     {
891       printf_filtered ("Continuing at ");
892       print_address_numeric (addr, 1, gdb_stdout);
893       printf_filtered (".\n");
894     }
895
896   clear_proceed_status ();
897   proceed (addr, TARGET_SIGNAL_0, 0);
898 }
899 \f
900
901 /* Go to line or address in current procedure */
902 static void
903 go_command (char *line_no, int from_tty)
904 {
905   if (line_no == (char *) NULL || !*line_no)
906     printf_filtered (GO_USAGE);
907   else
908     {
909       tbreak_command (line_no, from_tty);
910       jump_command (line_no, from_tty);
911     }
912 }
913 \f
914
915 /* Continue program giving it specified signal.  */
916
917 static void
918 signal_command (char *signum_exp, int from_tty)
919 {
920   enum target_signal oursig;
921
922   dont_repeat ();               /* Too dangerous.  */
923   ERROR_NO_INFERIOR;
924
925   if (!signum_exp)
926     error_no_arg (_("signal number"));
927
928   /* It would be even slicker to make signal names be valid expressions,
929      (the type could be "enum $signal" or some such), then the user could
930      assign them to convenience variables.  */
931   oursig = target_signal_from_name (signum_exp);
932
933   if (oursig == TARGET_SIGNAL_UNKNOWN)
934     {
935       /* No, try numeric.  */
936       int num = parse_and_eval_long (signum_exp);
937
938       if (num == 0)
939         oursig = TARGET_SIGNAL_0;
940       else
941         oursig = target_signal_from_command (num);
942     }
943
944   if (from_tty)
945     {
946       if (oursig == TARGET_SIGNAL_0)
947         printf_filtered ("Continuing with no signal.\n");
948       else
949         printf_filtered ("Continuing with signal %s.\n",
950                          target_signal_to_name (oursig));
951     }
952
953   clear_proceed_status ();
954   /* "signal 0" should not get stuck if we are stopped at a breakpoint.
955      FIXME: Neither should "signal foo" but when I tried passing
956      (CORE_ADDR)-1 unconditionally I got a testsuite failure which I haven't
957      tried to track down yet.  */
958   proceed (oursig == TARGET_SIGNAL_0 ? (CORE_ADDR) -1 : stop_pc, oursig, 0);
959 }
960
961 /* Proceed until we reach a different source line with pc greater than
962    our current one or exit the function.  We skip calls in both cases.
963
964    Note that eventually this command should probably be changed so
965    that only source lines are printed out when we hit the breakpoint
966    we set.  This may involve changes to wait_for_inferior and the
967    proceed status code.  */
968
969 static void
970 until_next_command (int from_tty)
971 {
972   struct frame_info *frame;
973   CORE_ADDR pc;
974   struct symbol *func;
975   struct symtab_and_line sal;
976
977   clear_proceed_status ();
978
979   frame = get_current_frame ();
980
981   /* Step until either exited from this function or greater
982      than the current line (if in symbolic section) or pc (if
983      not). */
984
985   pc = read_pc ();
986   func = find_pc_function (pc);
987
988   if (!func)
989     {
990       struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (pc);
991
992       if (msymbol == NULL)
993         error (_("Execution is not within a known function."));
994
995       step_range_start = SYMBOL_VALUE_ADDRESS (msymbol);
996       step_range_end = pc;
997     }
998   else
999     {
1000       sal = find_pc_line (pc, 0);
1001
1002       step_range_start = BLOCK_START (SYMBOL_BLOCK_VALUE (func));
1003       step_range_end = sal.end;
1004     }
1005
1006   step_over_calls = STEP_OVER_ALL;
1007   step_frame_id = get_frame_id (frame);
1008
1009   step_multi = 0;               /* Only one call to proceed */
1010
1011   proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
1012 }
1013
1014 static void
1015 until_command (char *arg, int from_tty)
1016 {
1017   int async_exec = 0;
1018
1019   if (!target_has_execution)
1020     error (_("The program is not running."));
1021
1022   /* Find out whether we must run in the background. */
1023   if (arg != NULL)
1024     async_exec = strip_bg_char (&arg);
1025
1026   /* If we must run in the background, but the target can't do it,
1027      error out. */
1028   if (async_exec && !target_can_async_p ())
1029     error (_("Asynchronous execution not supported on this target."));
1030
1031   /* If we are not asked to run in the bg, then prepare to run in the
1032      foreground, synchronously. */
1033   if (!async_exec && target_can_async_p ())
1034     {
1035       /* Simulate synchronous execution */
1036       async_disable_stdin ();
1037     }
1038
1039   if (arg)
1040     until_break_command (arg, from_tty, 0);
1041   else
1042     until_next_command (from_tty);
1043 }
1044
1045 static void
1046 advance_command (char *arg, int from_tty)
1047 {
1048   int async_exec = 0;
1049
1050   if (!target_has_execution)
1051     error (_("The program is not running."));
1052
1053   if (arg == NULL)
1054     error_no_arg (_("a location"));
1055
1056   /* Find out whether we must run in the background.  */
1057   if (arg != NULL)
1058     async_exec = strip_bg_char (&arg);
1059
1060   /* If we must run in the background, but the target can't do it,
1061      error out.  */
1062   if (async_exec && !target_can_async_p ())
1063     error (_("Asynchronous execution not supported on this target."));
1064
1065   /* If we are not asked to run in the bg, then prepare to run in the
1066      foreground, synchronously.  */
1067   if (!async_exec && target_can_async_p ())
1068     {
1069       /* Simulate synchronous execution.  */
1070       async_disable_stdin ();
1071     }
1072
1073   until_break_command (arg, from_tty, 1);
1074 }
1075 \f
1076 /* Print the result of a function at the end of a 'finish' command.  */
1077
1078 static void
1079 print_return_value (int struct_return, struct type *value_type)
1080 {
1081   struct gdbarch *gdbarch = current_gdbarch;
1082   struct cleanup *old_chain;
1083   struct ui_stream *stb;
1084   struct value *value;
1085
1086   gdb_assert (TYPE_CODE (value_type) != TYPE_CODE_VOID);
1087
1088   /* FIXME: 2003-09-27: When returning from a nested inferior function
1089      call, it's possible (with no help from the architecture vector)
1090      to locate and return/print a "struct return" value.  This is just
1091      a more complicated case of what is already being done in in the
1092      inferior function call code.  In fact, when inferior function
1093      calls are made async, this will likely be made the norm.  */
1094
1095   switch (gdbarch_return_value (gdbarch, value_type, NULL, NULL, NULL))
1096     {
1097     case RETURN_VALUE_REGISTER_CONVENTION:
1098     case RETURN_VALUE_ABI_RETURNS_ADDRESS:
1099       value = allocate_value (value_type);
1100       CHECK_TYPEDEF (value_type);
1101       gdbarch_return_value (current_gdbarch, value_type, stop_registers,
1102                             value_contents_raw (value), NULL);
1103       break;
1104     case RETURN_VALUE_STRUCT_CONVENTION:
1105       value = NULL;
1106       break;
1107     default:
1108       internal_error (__FILE__, __LINE__, _("bad switch"));
1109     }
1110
1111   if (value)
1112     {
1113       /* Print it.  */
1114       stb = ui_out_stream_new (uiout);
1115       old_chain = make_cleanup_ui_out_stream_delete (stb);
1116       ui_out_text (uiout, "Value returned is ");
1117       ui_out_field_fmt (uiout, "gdb-result-var", "$%d",
1118                         record_latest_value (value));
1119       ui_out_text (uiout, " = ");
1120       value_print (value, stb->stream, 0, Val_no_prettyprint);
1121       ui_out_field_stream (uiout, "return-value", stb);
1122       ui_out_text (uiout, "\n");
1123       do_cleanups (old_chain);
1124     }
1125   else
1126     {
1127       ui_out_text (uiout, "Value returned has type: ");
1128       ui_out_field_string (uiout, "return-type", TYPE_NAME (value_type));
1129       ui_out_text (uiout, ".");
1130       ui_out_text (uiout, " Cannot determine contents\n");
1131     }
1132 }
1133
1134 /* Stuff that needs to be done by the finish command after the target
1135    has stopped.  In asynchronous mode, we wait for the target to stop
1136    in the call to poll or select in the event loop, so it is
1137    impossible to do all the stuff as part of the finish_command
1138    function itself.  The only chance we have to complete this command
1139    is in fetch_inferior_event, which is called by the event loop as
1140    soon as it detects that the target has stopped. This function is
1141    called via the cmd_continuation pointer.  */
1142
1143 static void
1144 finish_command_continuation (struct continuation_arg *arg)
1145 {
1146   struct symbol *function;
1147   struct breakpoint *breakpoint;
1148   struct cleanup *cleanups;
1149
1150   breakpoint = (struct breakpoint *) arg->data.pointer;
1151   function = (struct symbol *) arg->next->data.pointer;
1152   cleanups = (struct cleanup *) arg->next->next->data.pointer;
1153
1154   if (bpstat_find_breakpoint (stop_bpstat, breakpoint) != NULL
1155       && function != NULL)
1156     {
1157       struct type *value_type;
1158       int struct_return;
1159       int gcc_compiled;
1160
1161       value_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (function));
1162       if (!value_type)
1163         internal_error (__FILE__, __LINE__,
1164                         _("finish_command: function has no target type"));
1165
1166       if (TYPE_CODE (value_type) == TYPE_CODE_VOID)
1167         {
1168           do_exec_cleanups (cleanups);
1169           return;
1170         }
1171
1172       CHECK_TYPEDEF (value_type);
1173       gcc_compiled = BLOCK_GCC_COMPILED (SYMBOL_BLOCK_VALUE (function));
1174       struct_return = using_struct_return (value_type, gcc_compiled);
1175
1176       print_return_value (struct_return, value_type); 
1177     }
1178
1179   do_exec_cleanups (cleanups);
1180 }
1181
1182 /* "finish": Set a temporary breakpoint at the place the selected
1183    frame will return to, then continue.  */
1184
1185 static void
1186 finish_command (char *arg, int from_tty)
1187 {
1188   struct symtab_and_line sal;
1189   struct frame_info *frame;
1190   struct symbol *function;
1191   struct breakpoint *breakpoint;
1192   struct cleanup *old_chain;
1193   struct continuation_arg *arg1, *arg2, *arg3;
1194
1195   int async_exec = 0;
1196
1197   /* Find out whether we must run in the background.  */
1198   if (arg != NULL)
1199     async_exec = strip_bg_char (&arg);
1200
1201   /* If we must run in the background, but the target can't do it,
1202      error out.  */
1203   if (async_exec && !target_can_async_p ())
1204     error (_("Asynchronous execution not supported on this target."));
1205
1206   /* If we are not asked to run in the bg, then prepare to run in the
1207      foreground, synchronously.  */
1208   if (!async_exec && target_can_async_p ())
1209     {
1210       /* Simulate synchronous execution.  */
1211       async_disable_stdin ();
1212     }
1213
1214   if (arg)
1215     error (_("The \"finish\" command does not take any arguments."));
1216   if (!target_has_execution)
1217     error (_("The program is not running."));
1218   if (deprecated_selected_frame == NULL)
1219     error (_("No selected frame."));
1220
1221   frame = get_prev_frame (deprecated_selected_frame);
1222   if (frame == 0)
1223     error (_("\"finish\" not meaningful in the outermost frame."));
1224
1225   clear_proceed_status ();
1226
1227   sal = find_pc_line (get_frame_pc (frame), 0);
1228   sal.pc = get_frame_pc (frame);
1229
1230   breakpoint = set_momentary_breakpoint (sal, get_frame_id (frame), bp_finish);
1231
1232   if (!target_can_async_p ())
1233     old_chain = make_cleanup_delete_breakpoint (breakpoint);
1234   else
1235     old_chain = make_exec_cleanup_delete_breakpoint (breakpoint);
1236
1237   /* Find the function we will return from.  */
1238
1239   function = find_pc_function (get_frame_pc (deprecated_selected_frame));
1240
1241   /* Print info on the selected frame, including level number but not
1242      source.  */
1243   if (from_tty)
1244     {
1245       printf_filtered ("Run till exit from ");
1246       print_stack_frame (get_selected_frame (NULL), 1, LOCATION);
1247     }
1248
1249   /* If running asynchronously and the target support asynchronous
1250      execution, set things up for the rest of the finish command to be
1251      completed later on, when gdb has detected that the target has
1252      stopped, in fetch_inferior_event.  */
1253   if (target_can_async_p ())
1254     {
1255       arg1 =
1256         (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
1257       arg2 =
1258         (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
1259       arg3 =
1260         (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
1261       arg1->next = arg2;
1262       arg2->next = arg3;
1263       arg3->next = NULL;
1264       arg1->data.pointer = breakpoint;
1265       arg2->data.pointer = function;
1266       arg3->data.pointer = old_chain;
1267       add_continuation (finish_command_continuation, arg1);
1268     }
1269
1270   proceed_to_finish = 1;        /* We want stop_registers, please...  */
1271   proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
1272
1273   /* Do this only if not running asynchronously or if the target
1274      cannot do async execution.  Otherwise, complete this command when
1275      the target actually stops, in fetch_inferior_event.  */
1276   if (!target_can_async_p ())
1277     {
1278       /* Did we stop at our breakpoint?  */
1279       if (bpstat_find_breakpoint (stop_bpstat, breakpoint) != NULL
1280           && function != NULL)
1281         {
1282           struct type *value_type;
1283           int struct_return;
1284           int gcc_compiled;
1285
1286           value_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (function));
1287           if (!value_type)
1288             internal_error (__FILE__, __LINE__,
1289                             _("finish_command: function has no target type"));
1290
1291           /* FIXME: Shouldn't we do the cleanups before returning?  */
1292           if (TYPE_CODE (value_type) == TYPE_CODE_VOID)
1293             return;
1294
1295           CHECK_TYPEDEF (value_type);
1296           gcc_compiled = BLOCK_GCC_COMPILED (SYMBOL_BLOCK_VALUE (function));
1297           struct_return = using_struct_return (value_type, gcc_compiled);
1298
1299           print_return_value (struct_return, value_type); 
1300         }
1301
1302       do_cleanups (old_chain);
1303     }
1304 }
1305 \f
1306
1307 static void
1308 program_info (char *args, int from_tty)
1309 {
1310   bpstat bs = stop_bpstat;
1311   int num = bpstat_num (&bs);
1312
1313   if (!target_has_execution)
1314     {
1315       printf_filtered ("The program being debugged is not being run.\n");
1316       return;
1317     }
1318
1319   target_files_info ();
1320   printf_filtered ("Program stopped at %s.\n",
1321                    hex_string ((unsigned long) stop_pc));
1322   if (stop_step)
1323     printf_filtered ("It stopped after being stepped.\n");
1324   else if (num != 0)
1325     {
1326       /* There may be several breakpoints in the same place, so this
1327          isn't as strange as it seems.  */
1328       while (num != 0)
1329         {
1330           if (num < 0)
1331             {
1332               printf_filtered ("It stopped at a breakpoint that has ");
1333               printf_filtered ("since been deleted.\n");
1334             }
1335           else
1336             printf_filtered ("It stopped at breakpoint %d.\n", num);
1337           num = bpstat_num (&bs);
1338         }
1339     }
1340   else if (stop_signal != TARGET_SIGNAL_0)
1341     {
1342       printf_filtered ("It stopped with signal %s, %s.\n",
1343                        target_signal_to_name (stop_signal),
1344                        target_signal_to_string (stop_signal));
1345     }
1346
1347   if (!from_tty)
1348     {
1349       printf_filtered ("Type \"info stack\" or \"info registers\" ");
1350       printf_filtered ("for more information.\n");
1351     }
1352 }
1353 \f
1354 static void
1355 environment_info (char *var, int from_tty)
1356 {
1357   if (var)
1358     {
1359       char *val = get_in_environ (inferior_environ, var);
1360       if (val)
1361         {
1362           puts_filtered (var);
1363           puts_filtered (" = ");
1364           puts_filtered (val);
1365           puts_filtered ("\n");
1366         }
1367       else
1368         {
1369           puts_filtered ("Environment variable \"");
1370           puts_filtered (var);
1371           puts_filtered ("\" not defined.\n");
1372         }
1373     }
1374   else
1375     {
1376       char **vector = environ_vector (inferior_environ);
1377       while (*vector)
1378         {
1379           puts_filtered (*vector++);
1380           puts_filtered ("\n");
1381         }
1382     }
1383 }
1384
1385 static void
1386 set_environment_command (char *arg, int from_tty)
1387 {
1388   char *p, *val, *var;
1389   int nullset = 0;
1390
1391   if (arg == 0)
1392     error_no_arg (_("environment variable and value"));
1393
1394   /* Find seperation between variable name and value */
1395   p = (char *) strchr (arg, '=');
1396   val = (char *) strchr (arg, ' ');
1397
1398   if (p != 0 && val != 0)
1399     {
1400       /* We have both a space and an equals.  If the space is before the
1401          equals, walk forward over the spaces til we see a nonspace 
1402          (possibly the equals). */
1403       if (p > val)
1404         while (*val == ' ')
1405           val++;
1406
1407       /* Now if the = is after the char following the spaces,
1408          take the char following the spaces.  */
1409       if (p > val)
1410         p = val - 1;
1411     }
1412   else if (val != 0 && p == 0)
1413     p = val;
1414
1415   if (p == arg)
1416     error_no_arg (_("environment variable to set"));
1417
1418   if (p == 0 || p[1] == 0)
1419     {
1420       nullset = 1;
1421       if (p == 0)
1422         p = arg + strlen (arg); /* So that savestring below will work */
1423     }
1424   else
1425     {
1426       /* Not setting variable value to null */
1427       val = p + 1;
1428       while (*val == ' ' || *val == '\t')
1429         val++;
1430     }
1431
1432   while (p != arg && (p[-1] == ' ' || p[-1] == '\t'))
1433     p--;
1434
1435   var = savestring (arg, p - arg);
1436   if (nullset)
1437     {
1438       printf_filtered ("Setting environment variable ");
1439       printf_filtered ("\"%s\" to null value.\n", var);
1440       set_in_environ (inferior_environ, var, "");
1441     }
1442   else
1443     set_in_environ (inferior_environ, var, val);
1444   xfree (var);
1445 }
1446
1447 static void
1448 unset_environment_command (char *var, int from_tty)
1449 {
1450   if (var == 0)
1451     {
1452       /* If there is no argument, delete all environment variables.
1453          Ask for confirmation if reading from the terminal.  */
1454       if (!from_tty || query (_("Delete all environment variables? ")))
1455         {
1456           free_environ (inferior_environ);
1457           inferior_environ = make_environ ();
1458         }
1459     }
1460   else
1461     unset_in_environ (inferior_environ, var);
1462 }
1463
1464 /* Handle the execution path (PATH variable) */
1465
1466 static const char path_var_name[] = "PATH";
1467
1468 static void
1469 path_info (char *args, int from_tty)
1470 {
1471   puts_filtered ("Executable and object file path: ");
1472   puts_filtered (get_in_environ (inferior_environ, path_var_name));
1473   puts_filtered ("\n");
1474 }
1475
1476 /* Add zero or more directories to the front of the execution path.  */
1477
1478 static void
1479 path_command (char *dirname, int from_tty)
1480 {
1481   char *exec_path;
1482   char *env;
1483   dont_repeat ();
1484   env = get_in_environ (inferior_environ, path_var_name);
1485   /* Can be null if path is not set */
1486   if (!env)
1487     env = "";
1488   exec_path = xstrdup (env);
1489   mod_path (dirname, &exec_path);
1490   set_in_environ (inferior_environ, path_var_name, exec_path);
1491   xfree (exec_path);
1492   if (from_tty)
1493     path_info ((char *) NULL, from_tty);
1494 }
1495 \f
1496
1497 /* Print out the machine register regnum. If regnum is -1, print all
1498    registers (print_all == 1) or all non-float and non-vector
1499    registers (print_all == 0).
1500
1501    For most machines, having all_registers_info() print the
1502    register(s) one per line is good enough.  If a different format is
1503    required, (eg, for MIPS or Pyramid 90x, which both have lots of
1504    regs), or there is an existing convention for showing all the
1505    registers, define the architecture method PRINT_REGISTERS_INFO to
1506    provide that format.  */
1507
1508 void
1509 default_print_registers_info (struct gdbarch *gdbarch,
1510                               struct ui_file *file,
1511                               struct frame_info *frame,
1512                               int regnum, int print_all)
1513 {
1514   int i;
1515   const int numregs = NUM_REGS + NUM_PSEUDO_REGS;
1516   char buffer[MAX_REGISTER_SIZE];
1517
1518   for (i = 0; i < numregs; i++)
1519     {
1520       /* Decide between printing all regs, non-float / vector regs, or
1521          specific reg.  */
1522       if (regnum == -1)
1523         {
1524           if (print_all)
1525             {
1526               if (!gdbarch_register_reggroup_p (gdbarch, i, all_reggroup))
1527                 continue;
1528             }
1529           else
1530             {
1531               if (!gdbarch_register_reggroup_p (gdbarch, i, general_reggroup))
1532                 continue;
1533             }
1534         }
1535       else
1536         {
1537           if (i != regnum)
1538             continue;
1539         }
1540
1541       /* If the register name is empty, it is undefined for this
1542          processor, so don't display anything.  */
1543       if (REGISTER_NAME (i) == NULL || *(REGISTER_NAME (i)) == '\0')
1544         continue;
1545
1546       fputs_filtered (REGISTER_NAME (i), file);
1547       print_spaces_filtered (15 - strlen (REGISTER_NAME (i)), file);
1548
1549       /* Get the data in raw format.  */
1550       if (! frame_register_read (frame, i, buffer))
1551         {
1552           fprintf_filtered (file, "*value not available*\n");
1553           continue;
1554         }
1555
1556       /* If virtual format is floating, print it that way, and in raw
1557          hex.  */
1558       if (TYPE_CODE (register_type (current_gdbarch, i)) == TYPE_CODE_FLT)
1559         {
1560           int j;
1561
1562           val_print (register_type (current_gdbarch, i), buffer, 0, 0,
1563                      file, 0, 1, 0, Val_pretty_default);
1564
1565           fprintf_filtered (file, "\t(raw 0x");
1566           for (j = 0; j < register_size (current_gdbarch, i); j++)
1567             {
1568               int idx;
1569               if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
1570                 idx = j;
1571               else
1572                 idx = register_size (current_gdbarch, i) - 1 - j;
1573               fprintf_filtered (file, "%02x", (unsigned char) buffer[idx]);
1574             }
1575           fprintf_filtered (file, ")");
1576         }
1577       else
1578         {
1579           /* Print the register in hex.  */
1580           val_print (register_type (current_gdbarch, i), buffer, 0, 0,
1581                      file, 'x', 1, 0, Val_pretty_default);
1582           /* If not a vector register, print it also according to its
1583              natural format.  */
1584           if (TYPE_VECTOR (register_type (current_gdbarch, i)) == 0)
1585             {
1586               fprintf_filtered (file, "\t");
1587               val_print (register_type (current_gdbarch, i), buffer, 0, 0,
1588                          file, 0, 1, 0, Val_pretty_default);
1589             }
1590         }
1591
1592       fprintf_filtered (file, "\n");
1593     }
1594 }
1595
1596 void
1597 registers_info (char *addr_exp, int fpregs)
1598 {
1599   int regnum, numregs;
1600   char *end;
1601
1602   if (!target_has_registers)
1603     error (_("The program has no registers now."));
1604   if (deprecated_selected_frame == NULL)
1605     error (_("No selected frame."));
1606
1607   if (!addr_exp)
1608     {
1609       gdbarch_print_registers_info (current_gdbarch, gdb_stdout,
1610                                     deprecated_selected_frame, -1, fpregs);
1611       return;
1612     }
1613
1614   while (*addr_exp != '\0')
1615     {
1616       char *start;
1617       const char *end;
1618
1619       /* Keep skipping leading white space.  */
1620       if (isspace ((*addr_exp)))
1621         {
1622           addr_exp++;
1623           continue;
1624         }
1625
1626       /* Discard any leading ``$''.  Check that there is something
1627          resembling a register following it.  */
1628       if (addr_exp[0] == '$')
1629         addr_exp++;
1630       if (isspace ((*addr_exp)) || (*addr_exp) == '\0')
1631         error (_("Missing register name"));
1632
1633       /* Find the start/end of this register name/num/group.  */
1634       start = addr_exp;
1635       while ((*addr_exp) != '\0' && !isspace ((*addr_exp)))
1636         addr_exp++;
1637       end = addr_exp;
1638       
1639       /* Figure out what we've found and display it.  */
1640
1641       /* A register name?  */
1642       {
1643         int regnum = frame_map_name_to_regnum (deprecated_selected_frame,
1644                                                start, end - start);
1645         if (regnum >= 0)
1646           {
1647             gdbarch_print_registers_info (current_gdbarch, gdb_stdout,
1648                                           deprecated_selected_frame, regnum, fpregs);
1649             continue;
1650           }
1651       }
1652         
1653       /* A register number?  (how portable is this one?).  */
1654       {
1655         char *endptr;
1656         int regnum = strtol (start, &endptr, 0);
1657         if (endptr == end
1658             && regnum >= 0
1659             && regnum < NUM_REGS + NUM_PSEUDO_REGS)
1660           {
1661             gdbarch_print_registers_info (current_gdbarch, gdb_stdout,
1662                                           deprecated_selected_frame, regnum, fpregs);
1663             continue;
1664           }
1665       }
1666
1667       /* A register group?  */
1668       {
1669         struct reggroup *group;
1670         for (group = reggroup_next (current_gdbarch, NULL);
1671              group != NULL;
1672              group = reggroup_next (current_gdbarch, group))
1673           {
1674             /* Don't bother with a length check.  Should the user
1675                enter a short register group name, go with the first
1676                group that matches.  */
1677             if (strncmp (start, reggroup_name (group), end - start) == 0)
1678               break;
1679           }
1680         if (group != NULL)
1681           {
1682             int regnum;
1683             for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
1684               {
1685                 if (gdbarch_register_reggroup_p (current_gdbarch, regnum,
1686                                                  group))
1687                   gdbarch_print_registers_info (current_gdbarch,
1688                                                 gdb_stdout, deprecated_selected_frame,
1689                                                 regnum, fpregs);
1690               }
1691             continue;
1692           }
1693       }
1694
1695       /* Nothing matched.  */
1696       error (_("Invalid register `%.*s'"), (int) (end - start), start);
1697     }
1698 }
1699
1700 void
1701 all_registers_info (char *addr_exp, int from_tty)
1702 {
1703   registers_info (addr_exp, 1);
1704 }
1705
1706 static void
1707 nofp_registers_info (char *addr_exp, int from_tty)
1708 {
1709   registers_info (addr_exp, 0);
1710 }
1711
1712 static void
1713 print_vector_info (struct gdbarch *gdbarch, struct ui_file *file,
1714                    struct frame_info *frame, const char *args)
1715 {
1716   if (!target_has_registers)
1717     error (_("The program has no registers now."));
1718   if (deprecated_selected_frame == NULL)
1719     error (_("No selected frame."));
1720
1721   if (gdbarch_print_vector_info_p (gdbarch))
1722     gdbarch_print_vector_info (gdbarch, file, frame, args);
1723   else
1724     {
1725       int regnum;
1726       int printed_something = 0;
1727
1728       for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
1729         {
1730           if (gdbarch_register_reggroup_p (gdbarch, regnum, vector_reggroup))
1731             {
1732               printed_something = 1;
1733               gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
1734             }
1735         }
1736       if (!printed_something)
1737         fprintf_filtered (file, "No vector information\n");
1738     }
1739 }
1740
1741 static void
1742 vector_info (char *args, int from_tty)
1743 {
1744   print_vector_info (current_gdbarch, gdb_stdout, deprecated_selected_frame, args);
1745 }
1746 \f
1747
1748 /*
1749  * TODO:
1750  * Should save/restore the tty state since it might be that the
1751  * program to be debugged was started on this tty and it wants
1752  * the tty in some state other than what we want.  If it's running
1753  * on another terminal or without a terminal, then saving and
1754  * restoring the tty state is a harmless no-op.
1755  * This only needs to be done if we are attaching to a process.
1756  */
1757
1758 /*
1759    attach_command --
1760    takes a program started up outside of gdb and ``attaches'' to it.
1761    This stops it cold in its tracks and allows us to start debugging it.
1762    and wait for the trace-trap that results from attaching.  */
1763
1764 void
1765 attach_command (char *args, int from_tty)
1766 {
1767   char *exec_file;
1768   char *full_exec_path = NULL;
1769
1770   dont_repeat ();               /* Not for the faint of heart */
1771
1772   if (target_has_execution)
1773     {
1774       if (query ("A program is being debugged already.  Kill it? "))
1775         target_kill ();
1776       else
1777         error (_("Not killed."));
1778     }
1779
1780   /* Clear out solib state. Otherwise the solib state of the previous
1781      inferior might have survived and is entirely wrong for the new
1782      target.  This has been observed on Linux using glibc 2.3. How to
1783      reproduce:
1784
1785      bash$ ./foo&
1786      [1] 4711
1787      bash$ ./foo&
1788      [1] 4712
1789      bash$ gdb ./foo
1790      [...]
1791      (gdb) attach 4711
1792      (gdb) detach
1793      (gdb) attach 4712
1794      Cannot access memory at address 0xdeadbeef
1795   */
1796 #ifdef CLEAR_SOLIB
1797       CLEAR_SOLIB ();
1798 #endif
1799
1800   target_attach (args, from_tty);
1801
1802   /* Set up the "saved terminal modes" of the inferior
1803      based on what modes we are starting it with.  */
1804   target_terminal_init ();
1805
1806   /* Set up execution context to know that we should return from
1807      wait_for_inferior as soon as the target reports a stop.  */
1808   init_wait_for_inferior ();
1809   clear_proceed_status ();
1810
1811   /* No traps are generated when attaching to inferior under Mach 3
1812      or GNU hurd.  */
1813 #ifndef ATTACH_NO_WAIT
1814   /* Careful here. See comments in inferior.h.  Basically some OSes
1815      don't ignore SIGSTOPs on continue requests anymore.  We need a
1816      way for handle_inferior_event to reset the stop_signal variable
1817      after an attach, and this is what STOP_QUIETLY_NO_SIGSTOP is for.  */
1818   stop_soon = STOP_QUIETLY_NO_SIGSTOP;
1819   wait_for_inferior ();
1820   stop_soon = NO_STOP_QUIETLY;
1821 #endif
1822
1823   /*
1824    * If no exec file is yet known, try to determine it from the
1825    * process itself.
1826    */
1827   exec_file = (char *) get_exec_file (0);
1828   if (!exec_file)
1829     {
1830       exec_file = target_pid_to_exec_file (PIDGET (inferior_ptid));
1831       if (exec_file)
1832         {
1833           /* It's possible we don't have a full path, but rather just a
1834              filename.  Some targets, such as HP-UX, don't provide the
1835              full path, sigh.
1836
1837              Attempt to qualify the filename against the source path.
1838              (If that fails, we'll just fall back on the original
1839              filename.  Not much more we can do...)
1840            */
1841           if (!source_full_path_of (exec_file, &full_exec_path))
1842             full_exec_path = savestring (exec_file, strlen (exec_file));
1843
1844           exec_file_attach (full_exec_path, from_tty);
1845           symbol_file_add_main (full_exec_path, from_tty);
1846         }
1847     }
1848   else
1849     {
1850       reopen_exec_file ();
1851       reread_symbols ();
1852     }
1853
1854 #ifdef SOLIB_ADD
1855   /* Add shared library symbols from the newly attached process, if any.  */
1856   SOLIB_ADD ((char *) 0, from_tty, &current_target, auto_solib_add);
1857   re_enable_breakpoints_in_shlibs ();
1858 #endif
1859
1860   /* Take any necessary post-attaching actions for this platform.
1861    */
1862   target_post_attach (PIDGET (inferior_ptid));
1863
1864   /* Install inferior's terminal modes.  */
1865   target_terminal_inferior ();
1866
1867   normal_stop ();
1868
1869   if (deprecated_attach_hook)
1870     deprecated_attach_hook ();
1871 }
1872
1873 /*
1874  * detach_command --
1875  * takes a program previously attached to and detaches it.
1876  * The program resumes execution and will no longer stop
1877  * on signals, etc.  We better not have left any breakpoints
1878  * in the program or it'll die when it hits one.  For this
1879  * to work, it may be necessary for the process to have been
1880  * previously attached.  It *might* work if the program was
1881  * started via the normal ptrace (PTRACE_TRACEME).
1882  */
1883
1884 static void
1885 detach_command (char *args, int from_tty)
1886 {
1887   dont_repeat ();               /* Not for the faint of heart.  */
1888   target_detach (args, from_tty);
1889 #if defined(SOLIB_RESTART)
1890   SOLIB_RESTART ();
1891 #endif
1892   if (deprecated_detach_hook)
1893     deprecated_detach_hook ();
1894 }
1895
1896 /* Disconnect from the current target without resuming it (leaving it
1897    waiting for a debugger).
1898
1899    We'd better not have left any breakpoints in the program or the
1900    next debugger will get confused.  Currently only supported for some
1901    remote targets, since the normal attach mechanisms don't work on
1902    stopped processes on some native platforms (e.g. GNU/Linux).  */
1903
1904 static void
1905 disconnect_command (char *args, int from_tty)
1906 {
1907   dont_repeat ();               /* Not for the faint of heart */
1908   target_disconnect (args, from_tty);
1909 #if defined(SOLIB_RESTART)
1910   SOLIB_RESTART ();
1911 #endif
1912   if (deprecated_detach_hook)
1913     deprecated_detach_hook ();
1914 }
1915
1916 /* Stop the execution of the target while running in async mode, in
1917    the backgound. */
1918 void
1919 interrupt_target_command (char *args, int from_tty)
1920 {
1921   if (target_can_async_p ())
1922     {
1923       dont_repeat ();           /* Not for the faint of heart */
1924       target_stop ();
1925     }
1926 }
1927
1928 static void
1929 print_float_info (struct gdbarch *gdbarch, struct ui_file *file,
1930                   struct frame_info *frame, const char *args)
1931 {
1932   if (!target_has_registers)
1933     error (_("The program has no registers now."));
1934   if (deprecated_selected_frame == NULL)
1935     error (_("No selected frame."));
1936
1937   if (gdbarch_print_float_info_p (gdbarch))
1938     gdbarch_print_float_info (gdbarch, file, frame, args);
1939   else
1940     {
1941       int regnum;
1942       int printed_something = 0;
1943
1944       for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
1945         {
1946           if (gdbarch_register_reggroup_p (gdbarch, regnum, float_reggroup))
1947             {
1948               printed_something = 1;
1949               gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
1950             }
1951         }
1952       if (!printed_something)
1953         fprintf_filtered (file, "\
1954 No floating-point info available for this processor.\n");
1955     }
1956 }
1957
1958 static void
1959 float_info (char *args, int from_tty)
1960 {
1961   print_float_info (current_gdbarch, gdb_stdout, 
1962                     deprecated_selected_frame, args);
1963 }
1964 \f
1965 static void
1966 unset_command (char *args, int from_tty)
1967 {
1968   printf_filtered ("\"unset\" must be followed by the name of ");
1969   printf_filtered ("an unset subcommand.\n");
1970   help_list (unsetlist, "unset ", -1, gdb_stdout);
1971 }
1972
1973 void
1974 _initialize_infcmd (void)
1975 {
1976   struct cmd_list_element *c;
1977
1978   c = add_com ("tty", class_run, tty_command,
1979                "Set terminal for future runs of program being debugged.");
1980   set_cmd_completer (c, filename_completer);
1981
1982   c = add_set_cmd ("args", class_run, var_string_noescape,
1983                    (char *) &inferior_args,
1984                    "Set argument list to give program being debugged when it is started.\n\
1985 Follow this command with any number of args, to be passed to the program.",
1986                    &setlist);
1987   set_cmd_completer (c, filename_completer);
1988   set_cmd_sfunc (c, notice_args_set);
1989   c = deprecated_add_show_from_set (c, &showlist);
1990   set_cmd_sfunc (c, notice_args_read);
1991
1992   c = add_cmd
1993     ("environment", no_class, environment_info,
1994      "The environment to give the program, or one variable's value.\n\
1995 With an argument VAR, prints the value of environment variable VAR to\n\
1996 give the program being debugged.  With no arguments, prints the entire\n\
1997 environment to be given to the program.", &showlist);
1998   set_cmd_completer (c, noop_completer);
1999
2000   add_prefix_cmd ("unset", no_class, unset_command,
2001                   "Complement to certain \"set\" commands.",
2002                   &unsetlist, "unset ", 0, &cmdlist);
2003
2004   c = add_cmd ("environment", class_run, unset_environment_command,
2005                "Cancel environment variable VAR for the program.\n\
2006 This does not affect the program until the next \"run\" command.",
2007                &unsetlist);
2008   set_cmd_completer (c, noop_completer);
2009
2010   c = add_cmd ("environment", class_run, set_environment_command,
2011                "Set environment variable value to give the program.\n\
2012 Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\
2013 VALUES of environment variables are uninterpreted strings.\n\
2014 This does not affect the program until the next \"run\" command.",
2015                &setlist);
2016   set_cmd_completer (c, noop_completer);
2017
2018   c = add_com ("path", class_files, path_command,
2019                "Add directory DIR(s) to beginning of search path for object files.\n\
2020 $cwd in the path means the current working directory.\n\
2021 This path is equivalent to the $PATH shell variable.  It is a list of\n\
2022 directories, separated by colons.  These directories are searched to find\n\
2023 fully linked executable files and separately compiled object files as needed.");
2024   set_cmd_completer (c, filename_completer);
2025
2026   c = add_cmd ("paths", no_class, path_info,
2027                "Current search path for finding object files.\n\
2028 $cwd in the path means the current working directory.\n\
2029 This path is equivalent to the $PATH shell variable.  It is a list of\n\
2030 directories, separated by colons.  These directories are searched to find\n\
2031 fully linked executable files and separately compiled object files as needed.",
2032                &showlist);
2033   set_cmd_completer (c, noop_completer);
2034
2035   add_com ("attach", class_run, attach_command,
2036            "Attach to a process or file outside of GDB.\n\
2037 This command attaches to another target, of the same type as your last\n\
2038 \"target\" command (\"info files\" will show your target stack).\n\
2039 The command may take as argument a process id or a device file.\n\
2040 For a process id, you must have permission to send the process a signal,\n\
2041 and it must have the same effective uid as the debugger.\n\
2042 When using \"attach\" with a process id, the debugger finds the\n\
2043 program running in the process, looking first in the current working\n\
2044 directory, or (if not found there) using the source file search path\n\
2045 (see the \"directory\" command).  You can also use the \"file\" command\n\
2046 to specify the program, and to load its symbol table.");
2047
2048   add_com ("detach", class_run, detach_command,
2049            "Detach a process or file previously attached.\n\
2050 If a process, it is no longer traced, and it continues its execution.  If\n\
2051 you were debugging a file, the file is closed and gdb no longer accesses it.");
2052
2053   add_com ("disconnect", class_run, disconnect_command,
2054            "Disconnect from a target.\n\
2055 The target will wait for another debugger to connect.  Not available for\n\
2056 all targets.");
2057
2058   add_com ("signal", class_run, signal_command,
2059            "Continue program giving it signal specified by the argument.\n\
2060 An argument of \"0\" means continue program without giving it a signal.");
2061
2062   add_com ("stepi", class_run, stepi_command,
2063            "Step one instruction exactly.\n\
2064 Argument N means do this N times (or till program stops for another reason).");
2065   add_com_alias ("si", "stepi", class_alias, 0);
2066
2067   add_com ("nexti", class_run, nexti_command,
2068            "Step one instruction, but proceed through subroutine calls.\n\
2069 Argument N means do this N times (or till program stops for another reason).");
2070   add_com_alias ("ni", "nexti", class_alias, 0);
2071
2072   add_com ("finish", class_run, finish_command,
2073            "Execute until selected stack frame returns.\n\
2074 Upon return, the value returned is printed and put in the value history.");
2075
2076   add_com ("next", class_run, next_command,
2077            "Step program, proceeding through subroutine calls.\n\
2078 Like the \"step\" command as long as subroutine calls do not happen;\n\
2079 when they do, the call is treated as one instruction.\n\
2080 Argument N means do this N times (or till program stops for another reason).");
2081   add_com_alias ("n", "next", class_run, 1);
2082   if (xdb_commands)
2083     add_com_alias ("S", "next", class_run, 1);
2084
2085   add_com ("step", class_run, step_command,
2086            "Step program until it reaches a different source line.\n\
2087 Argument N means do this N times (or till program stops for another reason).");
2088   add_com_alias ("s", "step", class_run, 1);
2089
2090   c = add_com ("until", class_run, until_command,
2091                "Execute until the program reaches a source line greater than the current\n\
2092 or a specified location (same args as break command) within the current frame.");
2093   set_cmd_completer (c, location_completer);
2094   add_com_alias ("u", "until", class_run, 1);
2095
2096   c = add_com ("advance", class_run, advance_command,
2097                "Continue the program up to the given location (same form as args for break command).\n\
2098 Execution will also stop upon exit from the current stack frame.");
2099   set_cmd_completer (c, location_completer);
2100
2101   c = add_com ("jump", class_run, jump_command,
2102                "Continue program being debugged at specified line or address.\n\
2103 Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\
2104 for an address to start at.");
2105   set_cmd_completer (c, location_completer);
2106
2107   if (xdb_commands)
2108     {
2109       c = add_com ("go", class_run, go_command,
2110                    "Usage: go <location>\n\
2111 Continue program being debugged, stopping at specified line or \n\
2112 address.\n\
2113 Give as argument either LINENUM or *ADDR, where ADDR is an \n\
2114 expression for an address to start at.\n\
2115 This command is a combination of tbreak and jump.");
2116       set_cmd_completer (c, location_completer);
2117     }
2118
2119   if (xdb_commands)
2120     add_com_alias ("g", "go", class_run, 1);
2121
2122   add_com ("continue", class_run, continue_command,
2123            "Continue program being debugged, after signal or breakpoint.\n\
2124 If proceeding from breakpoint, a number N may be used as an argument,\n\
2125 which means to set the ignore count of that breakpoint to N - 1 (so that\n\
2126 the breakpoint won't break until the Nth time it is reached).");
2127   add_com_alias ("c", "cont", class_run, 1);
2128   add_com_alias ("fg", "cont", class_run, 1);
2129
2130   c = add_com ("run", class_run, run_command,
2131            "Start debugged program.  You may specify arguments to give it.\n\
2132 Args may include \"*\", or \"[...]\"; they are expanded using \"sh\".\n\
2133 Input and output redirection with \">\", \"<\", or \">>\" are also allowed.\n\n\
2134 With no arguments, uses arguments last specified (with \"run\" or \"set args\").\n\
2135 To cancel previous arguments and run with no arguments,\n\
2136 use \"set args\" without arguments.");
2137   set_cmd_completer (c, filename_completer);
2138   add_com_alias ("r", "run", class_run, 1);
2139   if (xdb_commands)
2140     add_com ("R", class_run, run_no_args_command,
2141              "Start debugged program with no arguments.");
2142
2143   c = add_com ("start", class_run, start_command,
2144                "\
2145 Run the debugged program until the beginning of the main procedure.\n\
2146 You may specify arguments to give to your program, just as with the\n\
2147 \"run\" command.");
2148   set_cmd_completer (c, filename_completer);
2149
2150   add_com ("interrupt", class_run, interrupt_target_command,
2151            "Interrupt the execution of the debugged program.");
2152
2153   add_info ("registers", nofp_registers_info,
2154             "List of integer registers and their contents, for selected stack frame.\n\
2155 Register name as argument means describe only that register.");
2156   add_info_alias ("r", "registers", 1);
2157
2158   if (xdb_commands)
2159     add_com ("lr", class_info, nofp_registers_info,
2160              "List of integer registers and their contents, for selected stack frame.\n\
2161   Register name as argument means describe only that register.");
2162   add_info ("all-registers", all_registers_info,
2163             "List of all registers and their contents, for selected stack frame.\n\
2164 Register name as argument means describe only that register.");
2165
2166   add_info ("program", program_info,
2167             "Execution status of the program.");
2168
2169   add_info ("float", float_info,
2170             "Print the status of the floating point unit\n");
2171
2172   add_info ("vector", vector_info,
2173             "Print the status of the vector unit\n");
2174
2175   inferior_environ = make_environ ();
2176   init_environ (inferior_environ);
2177 }