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