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