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