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