* objfiles.h, infcmd.c, symfile.c: Add comments about how various
[platform/upstream/binutils.git] / gdb / infcmd.c
1 /* Memory-access and commands for "inferior" (child) process, for GDB.
2    Copyright 1986, 1987, 1988, 1989, 1991, 1992 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
19
20 #include "defs.h"
21 #include <signal.h>
22 #include <sys/param.h>
23 #include <string.h>
24 #include "symtab.h"
25 #include "gdbtypes.h"
26 #include "frame.h"
27 #include "inferior.h"
28 #include "environ.h"
29 #include "value.h"
30 #include "gdbcmd.h"
31 #include "gdbcore.h"
32 #include "target.h"
33 #include "language.h"
34
35 static void
36 continue_command PARAMS ((char *, int));
37
38 static void
39 until_next_command PARAMS ((int));
40
41 static void 
42 until_command PARAMS ((char *, int));
43
44 static void
45 path_info PARAMS ((char *, int));
46
47 static void
48 path_command PARAMS ((char *, int));
49
50 static void
51 unset_command PARAMS ((char *, int));
52
53 static void
54 float_info PARAMS ((char *, int));
55
56 static void
57 detach_command PARAMS ((char *, int));
58
59 static void
60 nofp_registers_info PARAMS ((char *, int));
61
62 static void
63 all_registers_info PARAMS ((char *, int));
64
65 static void
66 registers_info PARAMS ((char *, int));
67
68 static void
69 do_registers_info PARAMS ((int, int));
70
71 static void
72 unset_environment_command PARAMS ((char *, int));
73
74 static void
75 set_environment_command PARAMS ((char *, int));
76
77 static void
78 environment_info PARAMS ((char *, int));
79
80 static void
81 program_info PARAMS ((char *, int));
82
83 static void
84 finish_command PARAMS ((char *, int));
85
86 static void
87 signal_command PARAMS ((char *, int));
88
89 static void
90 jump_command PARAMS ((char *, int));
91
92 static void
93 step_1 PARAMS ((int, int, char *));
94
95 static void
96 nexti_command PARAMS ((char *, int));
97
98 static void
99 stepi_command PARAMS ((char *, int));
100
101 static void
102 next_command PARAMS ((char *, int));
103
104 static void
105 step_command PARAMS ((char *, int));
106
107 static void
108 run_command PARAMS ((char *, int));
109
110 #define ERROR_NO_INFERIOR \
111    if (!target_has_execution) error ("The program is not being run.");
112
113 /* String containing arguments to give to the program, separated by spaces.
114    Empty string (pointer to '\0') means no args.  */
115
116 static char *inferior_args;
117
118 /* File name for default use for standard in/out in the inferior.  */
119
120 char *inferior_io_terminal;
121
122 /* Pid of our debugged inferior, or 0 if no inferior now.
123    Since various parts of infrun.c test this to see whether there is a program
124    being debugged it should be nonzero (currently 3 is used) for remote
125    debugging.  */
126
127 int inferior_pid;
128
129 /* Last signal that the inferior received (why it stopped).  */
130
131 int stop_signal;
132
133 /* Address at which inferior stopped.  */
134
135 CORE_ADDR stop_pc;
136
137 /* Stack frame when program stopped.  */
138
139 FRAME_ADDR stop_frame_address;
140
141 /* Chain containing status of breakpoint(s) that we have stopped at.  */
142
143 bpstat stop_bpstat;
144
145 /* Flag indicating that a command has proceeded the inferior past the
146    current breakpoint.  */
147
148 int breakpoint_proceeded;
149
150 /* Nonzero if stopped due to a step command.  */
151
152 int stop_step;
153
154 /* Nonzero if stopped due to completion of a stack dummy routine.  */
155
156 int stop_stack_dummy;
157
158 /* Nonzero if stopped due to a random (unexpected) signal in inferior
159    process.  */
160
161 int stopped_by_random_signal;
162
163 /* Range to single step within.
164    If this is nonzero, respond to a single-step signal
165    by continuing to step if the pc is in this range.  */
166
167 CORE_ADDR step_range_start; /* Inclusive */
168 CORE_ADDR step_range_end; /* Exclusive */
169
170 /* Stack frame address as of when stepping command was issued.
171    This is how we know when we step into a subroutine call,
172    and how to set the frame for the breakpoint used to step out.  */
173
174 FRAME_ADDR step_frame_address;
175
176 /* 1 means step over all subroutine calls.
177    0 means don't step over calls (used by stepi).
178    -1 means step over calls to undebuggable functions.  */
179
180 int step_over_calls;
181
182 /* If stepping, nonzero means step count is > 1
183    so don't print frame next time inferior stops
184    if it stops due to stepping.  */
185
186 int step_multi;
187
188 /* Environment to use for running inferior,
189    in format described in environ.h.  */
190
191 struct environ *inferior_environ;
192
193 \f
194 /* ARGSUSED */
195 void
196 tty_command (file, from_tty)
197      char *file;
198      int from_tty;
199 {
200   if (file == 0)
201     error_no_arg ("terminal name for running target process");
202
203   inferior_io_terminal = savestring (file, strlen (file));
204 }
205
206 static void
207 run_command (args, from_tty)
208      char *args;
209      int from_tty;
210 {
211   char *exec_file;
212
213   dont_repeat ();
214
215   /* Shouldn't this be target_has_execution?  FIXME.  */
216   if (inferior_pid)
217     {
218       if (
219           !query ("The program being debugged has been started already.\n\
220 Start it from the beginning? "))
221         error ("Program not restarted.");
222       target_kill ();
223     }
224
225   exec_file = (char *) get_exec_file (0);
226
227   /* The exec file is re-read every time we do a generic_mourn_inferior, so
228      we just have to worry about the symbol file.  */
229   reread_symbols ();
230
231   /* We keep symbols from add-symbol-file, on the grounds that the
232      user might want to add some symbols before running the program
233      (right?).  But sometimes (dynamic loading where the user manually
234      introduces the new symbols with add-symbol-file), the code which
235      the symbols describe does not persist between runs.  Currently
236      the user has to manually nuke all symbols between runs if they
237      want them to go away (PR 2207).  This is probably reasonable.  */
238
239   if (args)
240     {
241       char *cmd;
242       cmd = concat ("set args ", args, NULL);
243       make_cleanup (free, cmd);
244       execute_command (cmd, from_tty);
245     }
246
247   if (from_tty)
248     {
249       puts_filtered("Starting program: ");
250       if (exec_file)
251         puts_filtered(exec_file);
252       puts_filtered(" ");
253       puts_filtered(inferior_args);
254       puts_filtered("\n");
255       fflush (stdout);
256     }
257
258   target_create_inferior (exec_file, inferior_args,
259                           environ_vector (inferior_environ));
260 }
261 \f
262 static void
263 continue_command (proc_count_exp, from_tty)
264      char *proc_count_exp;
265      int from_tty;
266 {
267   ERROR_NO_INFERIOR;
268
269   /* If have argument, set proceed count of breakpoint we stopped at.  */
270
271   if (proc_count_exp != NULL)
272     {
273       bpstat bs = stop_bpstat;
274       int num = bpstat_num (&bs);
275       if (num == 0 && from_tty)
276         {
277           printf_filtered
278             ("Not stopped at any breakpoint; argument ignored.\n");
279         }
280       while (num != 0)
281         {
282           set_ignore_count (num,
283                             parse_and_eval_address (proc_count_exp) - 1,
284                             from_tty);
285           /* set_ignore_count prints a message ending with a period.
286              So print two spaces before "Continuing.".  */
287           if (from_tty)
288             printf_filtered ("  ");
289           num = bpstat_num (&bs);
290         }
291     }
292
293   if (from_tty)
294     printf_filtered ("Continuing.\n");
295
296   clear_proceed_status ();
297
298   proceed ((CORE_ADDR) -1, -1, 0);
299 }
300 \f
301 /* Step until outside of current statement.  */
302
303 /* ARGSUSED */
304 static void
305 step_command (count_string, from_tty)
306      char *count_string;
307      int from_tty;
308 {
309   step_1 (0, 0, count_string);
310 }
311
312 /* Likewise, but skip over subroutine calls as if single instructions.  */
313
314 /* ARGSUSED */
315 static void
316 next_command (count_string, from_tty)
317      char *count_string;
318      int from_tty;
319 {
320   step_1 (1, 0, count_string);
321 }
322
323 /* Likewise, but step only one instruction.  */
324
325 /* ARGSUSED */
326 static void
327 stepi_command (count_string, from_tty)
328      char *count_string;
329      int from_tty;
330 {
331   step_1 (0, 1, count_string);
332 }
333
334 /* ARGSUSED */
335 static void
336 nexti_command (count_string, from_tty)
337      char *count_string;
338      int from_tty;
339 {
340   step_1 (1, 1, count_string);
341 }
342
343 static void
344 step_1 (skip_subroutines, single_inst, count_string)
345      int skip_subroutines;
346      int single_inst;
347      char *count_string;
348 {
349   register int count = 1;
350   FRAME fr;
351   struct cleanup *cleanups = 0;
352
353   ERROR_NO_INFERIOR;
354   count = count_string ? parse_and_eval_address (count_string) : 1;
355
356   if (!single_inst || skip_subroutines) /* leave si command alone */
357     {
358       enable_longjmp_breakpoint();
359       cleanups = make_cleanup(disable_longjmp_breakpoint, 0);
360     }
361
362   for (; count > 0; count--)
363     {
364       clear_proceed_status ();
365
366       fr = get_current_frame ();
367       if (!fr)                          /* Avoid coredump here.  Why tho? */
368         error ("No current frame");
369       step_frame_address = FRAME_FP (fr);
370
371       if (! single_inst)
372         {
373           find_pc_line_pc_range (stop_pc, &step_range_start, &step_range_end);
374           if (step_range_end == 0)
375             {
376               char *name;
377               if (find_pc_partial_function (stop_pc, &name, &step_range_start,
378                                             &step_range_end) == 0)
379                 error ("Cannot find bounds of current function");
380
381               target_terminal_ours ();
382               printf_filtered ("\
383 Single stepping until exit from function %s, \n\
384 which has no line number information.\n", name);
385               fflush (stdout);
386             }
387         }
388       else
389         {
390           /* Say we are stepping, but stop after one insn whatever it does.  */
391           step_range_start = step_range_end = 1;
392           if (!skip_subroutines)
393             /* It is stepi.
394                Don't step over function calls, not even to functions lacking
395                line numbers.  */
396             step_over_calls = 0;
397         }
398
399       if (skip_subroutines)
400         step_over_calls = 1;
401
402       step_multi = (count > 1);
403       proceed ((CORE_ADDR) -1, -1, 1);
404       if (! stop_step)
405         break;
406
407       /* FIXME: On nexti, this may have already been done (when we hit the
408          step resume break, I think).  Probably this should be moved to
409          wait_for_inferior (near the top).  */
410 #if defined (SHIFT_INST_REGS)
411       SHIFT_INST_REGS();
412 #endif
413     }
414
415   if (!single_inst || skip_subroutines)
416     do_cleanups(cleanups);
417 }
418 \f
419 /* Continue program at specified address.  */
420
421 static void
422 jump_command (arg, from_tty)
423      char *arg;
424      int from_tty;
425 {
426   register CORE_ADDR addr;
427   struct symtabs_and_lines sals;
428   struct symtab_and_line sal;
429   struct symbol *fn;
430   struct symbol *sfn;
431
432   ERROR_NO_INFERIOR;
433
434   if (!arg)
435     error_no_arg ("starting address");
436
437   sals = decode_line_spec_1 (arg, 1);
438   if (sals.nelts != 1)
439     {
440       error ("Unreasonable jump request");
441     }
442
443   sal = sals.sals[0];
444   free ((PTR)sals.sals);
445
446   if (sal.symtab == 0 && sal.pc == 0)
447     error ("No source file has been specified.");
448
449   resolve_sal_pc (&sal);                        /* May error out */
450
451   /* See if we are trying to jump to another function. */
452   fn = get_frame_function (get_current_frame ());
453   sfn = find_pc_function (sal.pc);
454   if (fn != NULL && sfn != fn)
455     {
456       if (!query ("Line %d is not in `%s'.  Jump anyway? ", sal.line,
457                   SYMBOL_SOURCE_NAME (fn)))
458         {
459           error ("Not confirmed.");
460           /* NOTREACHED */
461         }
462     }
463
464   addr = sal.pc;
465
466   if (from_tty)
467     printf_filtered ("Continuing at %s.\n",
468                      local_hex_string((unsigned long) addr));
469
470   clear_proceed_status ();
471   proceed (addr, 0, 0);
472 }
473
474 /* Continue program giving it specified signal.  */
475
476 static void
477 signal_command (signum_exp, from_tty)
478      char *signum_exp;
479      int from_tty;
480 {
481   register int signum;
482
483   dont_repeat ();               /* Too dangerous.  */
484   ERROR_NO_INFERIOR;
485
486   if (!signum_exp)
487     error_no_arg ("signal number");
488
489   /* It would be even slicker to make signal names be valid expressions,
490      (the type could be "enum $signal" or some such), then the user could
491      assign them to convenience variables.  */
492   signum = strtosigno (signum_exp);
493
494   if (signum == 0)
495     /* Not found as a name, try it as an expression.  */
496     signum = parse_and_eval_address (signum_exp);
497
498   if (from_tty)
499     {
500       char *signame = strsigno (signum);
501       printf_filtered ("Continuing with signal ");
502       if (signame == NULL || signum == 0)
503         printf_filtered ("%d.\n", signum);
504       else
505         /* Do we need to print the number as well as the name?  */
506         printf_filtered ("%s (%d).\n", signame, signum);
507     }
508
509   clear_proceed_status ();
510   proceed (stop_pc, signum, 0);
511 }
512
513 /* Call breakpoint_auto_delete on the current contents of the bpstat
514    pointed to by arg (which is really a bpstat *).  */
515 void
516 breakpoint_auto_delete_contents (arg)
517      PTR arg;
518 {
519   breakpoint_auto_delete (*(bpstat *)arg);
520 }
521
522 /* Execute a "stack dummy", a piece of code stored in the stack
523    by the debugger to be executed in the inferior.
524
525    To call: first, do PUSH_DUMMY_FRAME.
526    Then push the contents of the dummy.  It should end with a breakpoint insn.
527    Then call here, passing address at which to start the dummy.
528
529    The contents of all registers are saved before the dummy frame is popped
530    and copied into the buffer BUFFER.
531
532    The dummy's frame is automatically popped whenever that break is hit.
533    If that is the first time the program stops, run_stack_dummy
534    returns to its caller with that frame already gone and returns 0.
535    Otherwise, run_stack-dummy returns 1 (the frame will eventually be popped
536    when we do hit that breakpoint).  */
537
538 /* DEBUG HOOK:  4 => return instead of letting the stack dummy run.  */
539
540 static int stack_dummy_testing = 0;
541
542 int
543 run_stack_dummy (addr, buffer)
544      CORE_ADDR addr;
545      char buffer[REGISTER_BYTES];
546 {
547   struct cleanup *old_cleanups = make_cleanup (null_cleanup, 0);
548
549   /* Now proceed, having reached the desired place.  */
550   clear_proceed_status ();
551   if (stack_dummy_testing & 4)
552     {
553       POP_FRAME;
554       return(0);
555     }
556 #ifdef CALL_DUMMY_BREAKPOINT_OFFSET
557   {
558     struct breakpoint *bpt;
559     struct symtab_and_line sal;
560
561 #if CALL_DUMMY_LOCATION != AT_ENTRY_POINT
562     sal.pc = addr - CALL_DUMMY_START_OFFSET + CALL_DUMMY_BREAKPOINT_OFFSET;
563 #else
564     sal.pc = entry_point_address ();
565 #endif
566     sal.symtab = NULL;
567     sal.line = 0;
568
569     /* Set up a FRAME for the dummy frame so we can pass it to
570        set_momentary_breakpoint.  We need to give the breakpoint a
571        frame in case there is only one copy of the dummy (e.g.
572        CALL_DUMMY_LOCATION == AFTER_TEXT_END).  */
573     flush_cached_frames ();
574     set_current_frame (create_new_frame (read_fp (), sal.pc));
575
576     /* If defined, CALL_DUMMY_BREAKPOINT_OFFSET is where we need to put
577        a breakpoint instruction.  If not, the call dummy already has the
578        breakpoint instruction in it.
579
580        addr is the address of the call dummy plus the CALL_DUMMY_START_OFFSET,
581        so we need to subtract the CALL_DUMMY_START_OFFSET.  */
582     bpt = set_momentary_breakpoint (sal,
583                                     get_current_frame (),
584                                     bp_call_dummy);
585     bpt->disposition = delete;
586
587     /* If all error()s out of proceed ended up calling normal_stop (and
588        perhaps they should; it already does in the special case of error
589        out of resume()), then we wouldn't need this.  */
590     make_cleanup (breakpoint_auto_delete_contents, &stop_bpstat);
591   }
592 #endif /* CALL_DUMMY_BREAKPOINT_OFFSET.  */
593
594   proceed_to_finish = 1;        /* We want stop_registers, please... */
595   proceed (addr, 0, 0);
596
597   discard_cleanups (old_cleanups);
598
599   if (!stop_stack_dummy)
600     return 1;
601
602   /* On return, the stack dummy has been popped already.  */
603
604   memcpy (buffer, stop_registers, sizeof stop_registers);
605   return 0;
606 }
607 \f
608 /* Proceed until we reach a different source line with pc greater than
609    our current one or exit the function.  We skip calls in both cases.
610
611    Note that eventually this command should probably be changed so
612    that only source lines are printed out when we hit the breakpoint
613    we set.  I'm going to postpone this until after a hopeful rewrite
614    of wait_for_inferior and the proceed status code. -- randy */
615
616 /* ARGSUSED */
617 static void
618 until_next_command (from_tty)
619      int from_tty;
620 {
621   FRAME frame;
622   CORE_ADDR pc;
623   struct symbol *func;
624   struct symtab_and_line sal;
625  
626   clear_proceed_status ();
627
628   frame = get_current_frame ();
629
630   /* Step until either exited from this function or greater
631      than the current line (if in symbolic section) or pc (if
632      not). */
633
634   pc = read_pc ();
635   func = find_pc_function (pc);
636   
637   if (!func)
638     {
639       struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (pc);
640       
641       if (msymbol == NULL)
642         error ("Execution is not within a known function.");
643       
644       step_range_start = SYMBOL_VALUE_ADDRESS (msymbol);
645       step_range_end = pc;
646     }
647   else
648     {
649       sal = find_pc_line (pc, 0);
650       
651       step_range_start = BLOCK_START (SYMBOL_BLOCK_VALUE (func));
652       step_range_end = sal.end;
653     }
654   
655   step_over_calls = 1;
656   step_frame_address = FRAME_FP (frame);
657   
658   step_multi = 0;               /* Only one call to proceed */
659   
660   proceed ((CORE_ADDR) -1, -1, 1);
661 }
662
663 static void 
664 until_command (arg, from_tty)
665      char *arg;
666      int from_tty;
667 {
668   if (!target_has_execution)
669     error ("The program is not running.");
670   if (arg)
671     until_break_command (arg, from_tty);
672   else
673     until_next_command (from_tty);
674 }
675 \f
676 /* "finish": Set a temporary breakpoint at the place
677    the selected frame will return to, then continue.  */
678
679 static void
680 finish_command (arg, from_tty)
681      char *arg;
682      int from_tty;
683 {
684   struct symtab_and_line sal;
685   register FRAME frame;
686   struct frame_info *fi;
687   register struct symbol *function;
688   struct breakpoint *breakpoint;
689   struct cleanup *old_chain;
690
691   if (arg)
692     error ("The \"finish\" command does not take any arguments.");
693   if (!target_has_execution)
694     error ("The program is not running.");
695   if (selected_frame == NULL)
696     error ("No selected frame.");
697
698   frame = get_prev_frame (selected_frame);
699   if (frame == 0)
700     error ("\"finish\" not meaningful in the outermost frame.");
701
702   clear_proceed_status ();
703
704   fi = get_frame_info (frame);
705   sal = find_pc_line (fi->pc, 0);
706   sal.pc = fi->pc;
707
708   breakpoint = set_momentary_breakpoint (sal, frame, bp_finish);
709
710   old_chain = make_cleanup(delete_breakpoint, breakpoint);
711
712   /* Find the function we will return from.  */
713
714   fi = get_frame_info (selected_frame);
715   function = find_pc_function (fi->pc);
716
717   /* Print info on the selected frame, including level number
718      but not source.  */
719   if (from_tty)
720     {
721       printf_filtered ("Run till exit from ");
722       print_stack_frame (selected_frame, selected_frame_level, 0);
723     }
724
725   proceed_to_finish = 1;                /* We want stop_registers, please... */
726   proceed ((CORE_ADDR) -1, -1, 0);
727
728   /* Did we stop at our breakpoint? */
729   if (bpstat_find_breakpoint(stop_bpstat, breakpoint) != NULL
730       && function != 0)
731     {
732       struct type *value_type;
733       register value val;
734       CORE_ADDR funcaddr;
735
736       value_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (function));
737       if (!value_type)
738         fatal ("internal: finish_command: function has no target type");
739       
740       if (TYPE_CODE (value_type) == TYPE_CODE_VOID)
741         return;
742
743       funcaddr = BLOCK_START (SYMBOL_BLOCK_VALUE (function));
744
745       val = value_being_returned (value_type, stop_registers,
746               using_struct_return (value_of_variable (function, NULL),
747                                    funcaddr,
748                                    value_type,
749                 BLOCK_GCC_COMPILED (SYMBOL_BLOCK_VALUE (function))));
750
751       printf_filtered ("Value returned is $%d = ", record_latest_value (val));
752       value_print (val, stdout, 0, Val_no_prettyprint);
753       printf_filtered ("\n");
754     }
755   do_cleanups(old_chain);
756 }
757 \f
758 /* ARGSUSED */
759 static void
760 program_info (args, from_tty)
761     char *args;
762     int from_tty;
763 {
764   bpstat bs = stop_bpstat;
765   int num = bpstat_num (&bs);
766   
767   if (!target_has_execution)
768     {
769       printf_filtered ("The program being debugged is not being run.\n");
770       return;
771     }
772
773   target_files_info ();
774   printf_filtered ("Program stopped at %s.\n",
775                    local_hex_string((unsigned long) stop_pc));
776   if (stop_step)
777     printf_filtered ("It stopped after being stepped.\n");
778   else if (num != 0)
779     {
780       /* There may be several breakpoints in the same place, so this
781          isn't as strange as it seems.  */
782       while (num != 0)
783         {
784           if (num < 0)
785             printf_filtered ("It stopped at a breakpoint that has since been deleted.\n");
786           else
787             printf_filtered ("It stopped at breakpoint %d.\n", num);
788           num = bpstat_num (&bs);
789         }
790     }
791   else if (stop_signal)
792     {
793 #ifdef PRINT_RANDOM_SIGNAL
794       PRINT_RANDOM_SIGNAL (stop_signal);
795 #else
796       char *signame = strsigno (stop_signal);
797       printf_filtered ("It stopped with signal ");
798       if (signame == NULL)
799         printf_filtered ("%d", stop_signal);
800       else
801         /* Do we need to print the number as well as the name?  */
802         printf_filtered ("%s (%d)", signame, stop_signal);
803       printf_filtered (", %s.\n", safe_strsignal (stop_signal));
804 #endif
805   }
806
807   if (!from_tty)
808     printf_filtered ("Type \"info stack\" or \"info registers\" for more information.\n");
809 }
810 \f
811 static void
812 environment_info (var, from_tty)
813      char *var;
814      int from_tty;
815 {
816   if (var)
817     {
818       register char *val = get_in_environ (inferior_environ, var);
819       if (val)
820         {
821           puts_filtered (var);
822           puts_filtered (" = ");
823           puts_filtered (val);
824           puts_filtered ("\n");
825         }
826       else
827         {
828           puts_filtered ("Environment variable \"");
829           puts_filtered (var);
830           puts_filtered ("\" not defined.\n");
831         }
832     }
833   else
834     {
835       register char **vector = environ_vector (inferior_environ);
836       while (*vector)
837         {
838           puts_filtered (*vector++);
839           puts_filtered ("\n");
840         }
841     }
842 }
843
844 static void
845 set_environment_command (arg, from_tty)
846      char *arg;
847      int from_tty;
848 {
849   register char *p, *val, *var;
850   int nullset = 0;
851
852   if (arg == 0)
853     error_no_arg ("environment variable and value");
854
855   /* Find seperation between variable name and value */
856   p = (char *) strchr (arg, '=');
857   val = (char *) strchr (arg, ' ');
858
859   if (p != 0 && val != 0)
860     {
861       /* We have both a space and an equals.  If the space is before the
862          equals, walk forward over the spaces til we see a nonspace 
863          (possibly the equals). */
864       if (p > val)
865         while (*val == ' ')
866           val++;
867
868       /* Now if the = is after the char following the spaces,
869          take the char following the spaces.  */
870       if (p > val)
871         p = val - 1;
872     }
873   else if (val != 0 && p == 0)
874     p = val;
875
876   if (p == arg)
877     error_no_arg ("environment variable to set");
878
879   if (p == 0 || p[1] == 0)
880     {
881       nullset = 1;
882       if (p == 0)
883         p = arg + strlen (arg); /* So that savestring below will work */
884     }
885   else
886     {
887       /* Not setting variable value to null */
888       val = p + 1;
889       while (*val == ' ' || *val == '\t')
890         val++;
891     }
892
893   while (p != arg && (p[-1] == ' ' || p[-1] == '\t')) p--;
894
895   var = savestring (arg, p - arg);
896   if (nullset)
897     {
898       printf_filtered ("Setting environment variable \"%s\" to null value.\n", var);
899       set_in_environ (inferior_environ, var, "");
900     }
901   else
902     set_in_environ (inferior_environ, var, val);
903   free (var);
904 }
905
906 static void
907 unset_environment_command (var, from_tty)
908      char *var;
909      int from_tty;
910 {
911   if (var == 0)
912     {
913       /* If there is no argument, delete all environment variables.
914          Ask for confirmation if reading from the terminal.  */
915       if (!from_tty || query ("Delete all environment variables? "))
916         {
917           free_environ (inferior_environ);
918           inferior_environ = make_environ ();
919         }
920     }
921   else
922     unset_in_environ (inferior_environ, var);
923 }
924
925 /* Handle the execution path (PATH variable) */
926
927 static const char path_var_name[] = "PATH";
928
929 /* ARGSUSED */
930 static void
931 path_info (args, from_tty)
932      char *args;
933      int from_tty;
934 {
935   puts_filtered ("Executable and object file path: ");
936   puts_filtered (get_in_environ (inferior_environ, path_var_name));
937   puts_filtered ("\n");
938 }
939
940 /* Add zero or more directories to the front of the execution path.  */
941
942 static void
943 path_command (dirname, from_tty)
944      char *dirname;
945      int from_tty;
946 {
947   char *exec_path;
948
949   dont_repeat ();
950   exec_path = strsave (get_in_environ (inferior_environ, path_var_name));
951   mod_path (dirname, &exec_path);
952   set_in_environ (inferior_environ, path_var_name, exec_path);
953   free (exec_path);
954   if (from_tty)
955     path_info ((char *)NULL, from_tty);
956 }
957 \f
958 /* This routine is getting awfully cluttered with #if's.  It's probably
959    time to turn this into READ_PC and define it in the tm.h file.
960    Ditto for write_pc.  */
961
962 CORE_ADDR
963 read_pc ()
964 {
965 #ifdef TARGET_READ_PC
966   return TARGET_READ_PC ();
967 #else
968   return ADDR_BITS_REMOVE ((CORE_ADDR) read_register (PC_REGNUM));
969 #endif
970 }
971
972 void
973 write_pc (val)
974      CORE_ADDR val;
975 {
976 #ifdef TARGET_WRITE_PC
977   TARGET_WRITE_PC (val);
978 #else
979   write_register (PC_REGNUM, (long) val);
980 #ifdef NPC_REGNUM
981   write_register (NPC_REGNUM, (long) val + 4);
982 #ifdef NNPC_REGNUM
983   write_register (NNPC_REGNUM, (long) val + 8);
984 #endif
985 #endif
986 #endif
987 }
988
989 /* Cope with strage ways of getting to the stack and frame pointers */
990
991 CORE_ADDR
992 read_sp ()
993 {
994 #ifdef TARGET_READ_SP
995   return TARGET_READ_SP ();
996 #else
997   return read_register (SP_REGNUM);
998 #endif
999 }
1000
1001 void
1002 write_sp (val)
1003      CORE_ADDR val;
1004 {
1005 #ifdef TARGET_WRITE_SP
1006   TARGET_WRITE_SP (val);
1007 #else
1008   write_register (SP_REGNUM, val);
1009 #endif
1010 }
1011
1012
1013 CORE_ADDR
1014 read_fp ()
1015 {
1016 #ifdef TARGET_READ_FP
1017   return TARGET_READ_FP ();
1018 #else
1019   return read_register (FP_REGNUM);
1020 #endif
1021 }
1022
1023 void
1024 write_fp (val)
1025      CORE_ADDR val;
1026 {
1027 #ifdef TARGET_WRITE_FP
1028   TARGET_WRITE_FP (val);
1029 #else
1030   write_register (FP_REGNUM, val);
1031 #endif
1032 }
1033
1034 const char * const reg_names[] = REGISTER_NAMES;
1035
1036 /* Print out the machine register regnum. If regnum is -1,
1037    print all registers (fpregs == 1) or all non-float registers
1038    (fpregs == 0).
1039
1040    For most machines, having all_registers_info() print the
1041    register(s) one per line is good enough. If a different format
1042    is required, (eg, for MIPS or Pyramid 90x, which both have
1043    lots of regs), or there is an existing convention for showing
1044    all the registers, define the macro DO_REGISTERS_INFO(regnum, fp)
1045    to provide that format.  */  
1046
1047 #if !defined (DO_REGISTERS_INFO)
1048 #define DO_REGISTERS_INFO(regnum, fp) do_registers_info(regnum, fp)
1049 static void
1050 do_registers_info (regnum, fpregs)
1051      int regnum;
1052      int fpregs;
1053 {
1054   register int i;
1055
1056   for (i = 0; i < NUM_REGS; i++)
1057     {
1058       char raw_buffer[MAX_REGISTER_RAW_SIZE];
1059       char virtual_buffer[MAX_REGISTER_VIRTUAL_SIZE];
1060
1061       /* Decide between printing all regs, nonfloat regs, or specific reg.  */
1062       if (regnum == -1) {
1063         if (TYPE_CODE (REGISTER_VIRTUAL_TYPE (i)) == TYPE_CODE_FLT && !fpregs)
1064           continue;
1065       } else {
1066         if (i != regnum)
1067           continue;
1068       }
1069
1070       fputs_filtered (reg_names[i], stdout);
1071       print_spaces_filtered (15 - strlen (reg_names[i]), stdout);
1072
1073       /* Get the data in raw format, then convert also to virtual format.  */
1074       if (read_relative_register_raw_bytes (i, raw_buffer))
1075         {
1076           printf_filtered ("Invalid register contents\n");
1077           continue;
1078         }
1079       
1080       REGISTER_CONVERT_TO_VIRTUAL (i, raw_buffer, virtual_buffer);
1081
1082       /* If virtual format is floating, print it that way, and in raw hex.  */
1083       if (TYPE_CODE (REGISTER_VIRTUAL_TYPE (i)) == TYPE_CODE_FLT
1084           && ! INVALID_FLOAT (virtual_buffer, REGISTER_VIRTUAL_SIZE (i)))
1085         {
1086           register int j;
1087
1088           val_print (REGISTER_VIRTUAL_TYPE (i), virtual_buffer, 0,
1089                      stdout, 0, 1, 0, Val_pretty_default);
1090
1091           printf_filtered ("\t(raw 0x");
1092           for (j = 0; j < REGISTER_RAW_SIZE (i); j++)
1093             printf_filtered ("%02x", (unsigned char)raw_buffer[j]);
1094           printf_filtered (")");
1095         }
1096
1097 /* FIXME!  val_print probably can handle all of these cases now...  */
1098
1099       /* Else if virtual format is too long for printf,
1100          print in hex a byte at a time.  */
1101       else if (REGISTER_VIRTUAL_SIZE (i) > sizeof (long))
1102         {
1103           register int j;
1104           printf_filtered ("0x");
1105           for (j = 0; j < REGISTER_VIRTUAL_SIZE (i); j++)
1106             printf_filtered ("%02x", (unsigned char)virtual_buffer[j]);
1107         }
1108       /* Else print as integer in hex and in decimal.  */
1109       else
1110         {
1111           val_print (REGISTER_VIRTUAL_TYPE (i), raw_buffer, 0,
1112                      stdout, 'x', 1, 0, Val_pretty_default);
1113           printf_filtered ("\t");
1114           val_print (REGISTER_VIRTUAL_TYPE (i), raw_buffer, 0,
1115                      stdout,   0, 1, 0, Val_pretty_default);
1116         }
1117
1118       /* The SPARC wants to print even-numbered float regs as doubles
1119          in addition to printing them as floats.  */
1120 #ifdef PRINT_REGISTER_HOOK
1121       PRINT_REGISTER_HOOK (i);
1122 #endif
1123
1124       printf_filtered ("\n");
1125     }
1126 }
1127 #endif /* no DO_REGISTERS_INFO.  */
1128
1129 static void
1130 registers_info (addr_exp, fpregs)
1131      char *addr_exp;
1132      int fpregs;
1133 {
1134   int regnum;
1135   register char *end;
1136
1137   if (!target_has_registers)
1138     error ("The program has no registers now.");
1139
1140   if (!addr_exp)
1141     {
1142       DO_REGISTERS_INFO(-1, fpregs);
1143       return;
1144     }
1145
1146   do
1147     {      
1148       if (addr_exp[0] == '$')
1149         addr_exp++;
1150       end = addr_exp;
1151       while (*end != '\0' && *end != ' ' && *end != '\t')
1152         ++end;
1153       for (regnum = 0; regnum < NUM_REGS; regnum++)
1154         if (!strncmp (addr_exp, reg_names[regnum], end - addr_exp)
1155             && strlen (reg_names[regnum]) == end - addr_exp)
1156           goto found;
1157       if (*addr_exp >= '0' && *addr_exp <= '9')
1158         regnum = atoi (addr_exp);               /* Take a number */
1159       if (regnum >= NUM_REGS)           /* Bad name, or bad number */
1160         error ("%.*s: invalid register", end - addr_exp, addr_exp);
1161
1162 found:
1163       DO_REGISTERS_INFO(regnum, fpregs);
1164
1165       addr_exp = end;
1166       while (*addr_exp == ' ' || *addr_exp == '\t')
1167         ++addr_exp;
1168     } while (*addr_exp != '\0');
1169 }
1170
1171 static void
1172 all_registers_info (addr_exp, from_tty)
1173      char *addr_exp;
1174      int from_tty;
1175 {
1176   registers_info (addr_exp, 1);
1177 }
1178
1179 static void
1180 nofp_registers_info (addr_exp, from_tty)
1181      char *addr_exp;
1182      int from_tty;
1183 {
1184   registers_info (addr_exp, 0);
1185 }
1186 \f
1187 /*
1188  * TODO:
1189  * Should save/restore the tty state since it might be that the
1190  * program to be debugged was started on this tty and it wants
1191  * the tty in some state other than what we want.  If it's running
1192  * on another terminal or without a terminal, then saving and
1193  * restoring the tty state is a harmless no-op.
1194  * This only needs to be done if we are attaching to a process.
1195  */
1196
1197 /*
1198    attach_command --
1199    takes a program started up outside of gdb and ``attaches'' to it.
1200    This stops it cold in its tracks and allows us to start debugging it.
1201    and wait for the trace-trap that results from attaching.  */
1202
1203 void
1204 attach_command (args, from_tty)
1205      char *args;
1206      int from_tty;
1207 {
1208   dont_repeat ();                       /* Not for the faint of heart */
1209
1210   if (target_has_execution)
1211     {
1212       if (query ("A program is being debugged already.  Kill it? "))
1213         target_kill ();
1214       else
1215         error ("Not killed.");
1216     }
1217
1218   target_attach (args, from_tty);
1219
1220   /* Set up the "saved terminal modes" of the inferior
1221      based on what modes we are starting it with.  */
1222   target_terminal_init ();
1223
1224   /* Install inferior's terminal modes.  */
1225   target_terminal_inferior ();
1226
1227   /* Set up execution context to know that we should return from
1228      wait_for_inferior as soon as the target reports a stop.  */
1229   init_wait_for_inferior ();
1230   clear_proceed_status ();
1231   stop_soon_quietly = 1;
1232
1233   wait_for_inferior ();
1234
1235 #ifdef SOLIB_ADD
1236   /* Add shared library symbols from the newly attached process, if any.  */
1237   SOLIB_ADD ((char *)0, from_tty, (struct target_ops *)0);
1238 #endif
1239
1240   normal_stop ();
1241 }
1242
1243 /*
1244  * detach_command --
1245  * takes a program previously attached to and detaches it.
1246  * The program resumes execution and will no longer stop
1247  * on signals, etc.  We better not have left any breakpoints
1248  * in the program or it'll die when it hits one.  For this
1249  * to work, it may be necessary for the process to have been
1250  * previously attached.  It *might* work if the program was
1251  * started via the normal ptrace (PTRACE_TRACEME).
1252  */
1253
1254 static void
1255 detach_command (args, from_tty)
1256      char *args;
1257      int from_tty;
1258 {
1259   dont_repeat ();                       /* Not for the faint of heart */
1260   target_detach (args, from_tty);
1261 }
1262
1263 /* ARGSUSED */
1264 static void
1265 float_info (addr_exp, from_tty)
1266      char *addr_exp;
1267      int from_tty;
1268 {
1269 #ifdef FLOAT_INFO
1270         FLOAT_INFO;
1271 #else
1272         printf_filtered ("No floating point info available for this processor.\n");
1273 #endif
1274 }
1275 \f
1276 /* ARGSUSED */
1277 static void
1278 unset_command (args, from_tty)
1279      char *args;
1280      int from_tty;
1281 {
1282   printf_filtered ("\"unset\" must be followed by the name of an unset subcommand.\n");
1283   help_list (unsetlist, "unset ", -1, stdout);
1284 }
1285
1286 void
1287 _initialize_infcmd ()
1288 {
1289   struct cmd_list_element *c;
1290   
1291   add_com ("tty", class_run, tty_command,
1292            "Set terminal for future runs of program being debugged.");
1293
1294   add_show_from_set
1295     (add_set_cmd ("args", class_run, var_string_noescape, (char *)&inferior_args,
1296                   
1297 "Set arguments to give program being debugged when it is started.\n\
1298 Follow this command with any number of args, to be passed to the program.",
1299                   &setlist),
1300      &showlist);
1301
1302   c = add_cmd
1303     ("environment", no_class, environment_info,
1304      "The environment to give the program, or one variable's value.\n\
1305 With an argument VAR, prints the value of environment variable VAR to\n\
1306 give the program being debugged.  With no arguments, prints the entire\n\
1307 environment to be given to the program.", &showlist);
1308   c->completer = noop_completer;
1309
1310   add_prefix_cmd ("unset", no_class, unset_command,
1311                   "Complement to certain \"set\" commands",
1312                   &unsetlist, "unset ", 0, &cmdlist);
1313   
1314   c = add_cmd ("environment", class_run, unset_environment_command,
1315               "Cancel environment variable VAR for the program.\n\
1316 This does not affect the program until the next \"run\" command.",
1317            &unsetlist);
1318   c->completer = noop_completer;
1319
1320   c = add_cmd ("environment", class_run, set_environment_command,
1321                "Set environment variable value to give the program.\n\
1322 Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\
1323 VALUES of environment variables are uninterpreted strings.\n\
1324 This does not affect the program until the next \"run\" command.",
1325            &setlist);
1326   c->completer = noop_completer;
1327  
1328   add_com ("path", class_files, path_command,
1329        "Add directory DIR(s) to beginning of search path for object files.\n\
1330 $cwd in the path means the current working directory.\n\
1331 This path is equivalent to the $PATH shell variable.  It is a list of\n\
1332 directories, separated by colons.  These directories are searched to find\n\
1333 fully linked executable files and separately compiled object files as needed.");
1334
1335   c = add_cmd ("paths", no_class, path_info,
1336             "Current search path for finding object files.\n\
1337 $cwd in the path means the current working directory.\n\
1338 This path is equivalent to the $PATH shell variable.  It is a list of\n\
1339 directories, separated by colons.  These directories are searched to find\n\
1340 fully linked executable files and separately compiled object files as needed.", &showlist);
1341   c->completer = noop_completer;
1342
1343  add_com ("attach", class_run, attach_command,
1344            "Attach to a process or file outside of GDB.\n\
1345 This command attaches to another target, of the same type as your last\n\
1346 `target' command (`info files' will show your target stack).\n\
1347 The command may take as argument a process id or a device file.\n\
1348 For a process id, you must have permission to send the process a signal,\n\
1349 and it must have the same effective uid as the debugger.\n\
1350 When using \"attach\", you should use the \"file\" command to specify\n\
1351 the program running in the process, and to load its symbol table.");
1352
1353   add_com ("detach", class_run, detach_command,
1354            "Detach a process or file previously attached.\n\
1355 If a process, it is no longer traced, and it continues its execution.  If you\n\
1356 were debugging a file, the file is closed and gdb no longer accesses it.");
1357
1358   add_com ("signal", class_run, signal_command,
1359            "Continue program giving it signal number SIGNUMBER.");
1360
1361   add_com ("stepi", class_run, stepi_command,
1362            "Step one instruction exactly.\n\
1363 Argument N means do this N times (or till program stops for another reason).");
1364   add_com_alias ("si", "stepi", class_alias, 0);
1365
1366   add_com ("nexti", class_run, nexti_command,
1367            "Step one instruction, but proceed through subroutine calls.\n\
1368 Argument N means do this N times (or till program stops for another reason).");
1369   add_com_alias ("ni", "nexti", class_alias, 0);
1370
1371   add_com ("finish", class_run, finish_command,
1372            "Execute until selected stack frame returns.\n\
1373 Upon return, the value returned is printed and put in the value history.");
1374
1375   add_com ("next", class_run, next_command,
1376            "Step program, proceeding through subroutine calls.\n\
1377 Like the \"step\" command as long as subroutine calls do not happen;\n\
1378 when they do, the call is treated as one instruction.\n\
1379 Argument N means do this N times (or till program stops for another reason).");
1380   add_com_alias ("n", "next", class_run, 1);
1381
1382   add_com ("step", class_run, step_command,
1383            "Step program until it reaches a different source line.\n\
1384 Argument N means do this N times (or till program stops for another reason).");
1385   add_com_alias ("s", "step", class_run, 1);
1386
1387   add_com ("until", class_run, until_command,
1388            "Execute until the program reaches a source line greater than the current\n\
1389 or a specified line or address or function (same args as break command).\n\
1390 Execution will also stop upon exit from the current stack frame.");
1391   add_com_alias ("u", "until", class_run, 1);
1392   
1393   add_com ("jump", class_run, jump_command,
1394            "Continue program being debugged at specified line or address.\n\
1395 Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\
1396 for an address to start at.");
1397
1398   add_com ("continue", class_run, continue_command,
1399            "Continue program being debugged, after signal or breakpoint.\n\
1400 If proceeding from breakpoint, a number N may be used as an argument,\n\
1401 which means to set the ignore count of that breakpoint to N - 1 (so that\n\
1402 the breakpoint won't break until the Nth time it is reached).");
1403   add_com_alias ("c", "cont", class_run, 1);
1404   add_com_alias ("fg", "cont", class_run, 1);
1405
1406   add_com ("run", class_run, run_command,
1407            "Start debugged program.  You may specify arguments to give it.\n\
1408 Args may include \"*\", or \"[...]\"; they are expanded using \"sh\".\n\
1409 Input and output redirection with \">\", \"<\", or \">>\" are also allowed.\n\n\
1410 With no arguments, uses arguments last specified (with \"run\" or \"set args\").\n\
1411 To cancel previous arguments and run with no arguments,\n\
1412 use \"set args\" without arguments.");
1413   add_com_alias ("r", "run", class_run, 1);
1414
1415   add_info ("registers", nofp_registers_info,
1416     "List of integer registers and their contents, for selected stack frame.\n\
1417 Register name as argument means describe only that register.");
1418
1419   add_info ("all-registers", all_registers_info,
1420 "List of all registers and their contents, for selected stack frame.\n\
1421 Register name as argument means describe only that register.");
1422
1423   add_info ("program", program_info,
1424             "Execution status of the program.");
1425
1426   add_info ("float", float_info,
1427             "Print the status of the floating point unit\n");
1428
1429   inferior_args = savestring ("", 1);   /* Initially no args */
1430   inferior_environ = make_environ ();
1431   init_environ (inferior_environ);
1432 }