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