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