* gdb.arch/i386-unwind.exp: Use gdb_run_cmd and gdb_expect instead
[deliverable/binutils-gdb.git] / gdb / infcmd.c
1 /* Memory-access and commands for "inferior" process, for GDB.
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
3 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
4 Free Software Foundation, Inc.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
22
23 #include "defs.h"
24 #include <signal.h>
25 #include "gdb_string.h"
26 #include "symtab.h"
27 #include "gdbtypes.h"
28 #include "frame.h"
29 #include "inferior.h"
30 #include "environ.h"
31 #include "value.h"
32 #include "gdbcmd.h"
33 #include "symfile.h"
34 #include "gdbcore.h"
35 #include "target.h"
36 #include "language.h"
37 #include "symfile.h"
38 #include "objfiles.h"
39 #include "completer.h"
40 #include "ui-out.h"
41 #include "event-top.h"
42 #include "parser-defs.h"
43 #include "regcache.h"
44 #include "reggroups.h"
45 #include "block.h"
46 #include <ctype.h>
47 #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 /* FIXME: On nexti, this may have already been done (when we hit the
666 step resume break, I think). Probably this should be moved to
667 wait_for_inferior (near the top). */
668 #if defined (SHIFT_INST_REGS)
669 SHIFT_INST_REGS ();
670 #endif
671 }
672
673 if (!single_inst || skip_subroutines)
674 do_cleanups (cleanups);
675 return;
676 }
677 /* In case of asynchronous target things get complicated, do only
678 one step for now, before returning control to the event loop. Let
679 the continuation figure out how many other steps we need to do,
680 and handle them one at the time, through step_once(). */
681 else
682 {
683 if (event_loop_p && target_can_async_p ())
684 step_once (skip_subroutines, single_inst, count);
685 }
686 }
687
688 /* Called after we are done with one step operation, to check whether
689 we need to step again, before we print the prompt and return control
690 to the user. If count is > 1, we will need to do one more call to
691 proceed(), via step_once(). Basically it is like step_once and
692 step_1_continuation are co-recursive. */
693 static void
694 step_1_continuation (struct continuation_arg *arg)
695 {
696 int count;
697 int skip_subroutines;
698 int single_inst;
699
700 skip_subroutines = arg->data.integer;
701 single_inst = arg->next->data.integer;
702 count = arg->next->next->data.integer;
703
704 if (stop_step)
705 {
706 /* FIXME: On nexti, this may have already been done (when we hit the
707 step resume break, I think). Probably this should be moved to
708 wait_for_inferior (near the top). */
709 #if defined (SHIFT_INST_REGS)
710 SHIFT_INST_REGS ();
711 #endif
712 step_once (skip_subroutines, single_inst, count - 1);
713 }
714 else
715 if (!single_inst || skip_subroutines)
716 do_exec_cleanups (ALL_CLEANUPS);
717 }
718
719 /* Do just one step operation. If count >1 we will have to set up a
720 continuation to be done after the target stops (after this one
721 step). This is useful to implement the 'step n' kind of commands, in
722 case of asynchronous targets. We had to split step_1 into two parts,
723 one to be done before proceed() and one afterwards. This function is
724 called in case of step n with n>1, after the first step operation has
725 been completed.*/
726 static void
727 step_once (int skip_subroutines, int single_inst, int count)
728 {
729 struct continuation_arg *arg1;
730 struct continuation_arg *arg2;
731 struct continuation_arg *arg3;
732 struct frame_info *frame;
733
734 if (count > 0)
735 {
736 clear_proceed_status ();
737
738 frame = get_current_frame ();
739 if (!frame) /* Avoid coredump here. Why tho? */
740 error ("No current frame");
741 step_frame_id = get_frame_id (frame);
742 step_sp = read_sp ();
743
744 if (!single_inst)
745 {
746 find_pc_line_pc_range (stop_pc, &step_range_start, &step_range_end);
747
748 /* If we have no line info, switch to stepi mode. */
749 if (step_range_end == 0 && step_stop_if_no_debug)
750 {
751 step_range_start = step_range_end = 1;
752 }
753 else if (step_range_end == 0)
754 {
755 char *name;
756 if (find_pc_partial_function (stop_pc, &name, &step_range_start,
757 &step_range_end) == 0)
758 error ("Cannot find bounds of current function");
759
760 target_terminal_ours ();
761 printf_filtered ("\
762 Single stepping until exit from function %s, \n\
763 which has no line number information.\n", name);
764 }
765 }
766 else
767 {
768 /* Say we are stepping, but stop after one insn whatever it does. */
769 step_range_start = step_range_end = 1;
770 if (!skip_subroutines)
771 /* It is stepi.
772 Don't step over function calls, not even to functions lacking
773 line numbers. */
774 step_over_calls = STEP_OVER_NONE;
775 }
776
777 if (skip_subroutines)
778 step_over_calls = STEP_OVER_ALL;
779
780 step_multi = (count > 1);
781 arg1 =
782 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
783 arg2 =
784 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
785 arg3 =
786 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
787 arg1->next = arg2;
788 arg1->data.integer = skip_subroutines;
789 arg2->next = arg3;
790 arg2->data.integer = single_inst;
791 arg3->next = NULL;
792 arg3->data.integer = count;
793 add_intermediate_continuation (step_1_continuation, arg1);
794 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
795 }
796 }
797
798 \f
799 /* Continue program at specified address. */
800
801 static void
802 jump_command (char *arg, int from_tty)
803 {
804 CORE_ADDR addr;
805 struct symtabs_and_lines sals;
806 struct symtab_and_line sal;
807 struct symbol *fn;
808 struct symbol *sfn;
809 int async_exec = 0;
810
811 ERROR_NO_INFERIOR;
812
813 /* Find out whether we must run in the background. */
814 if (arg != NULL)
815 async_exec = strip_bg_char (&arg);
816
817 /* If we must run in the background, but the target can't do it,
818 error out. */
819 if (event_loop_p && async_exec && !target_can_async_p ())
820 error ("Asynchronous execution not supported on this target.");
821
822 /* If we are not asked to run in the bg, then prepare to run in the
823 foreground, synchronously. */
824 if (event_loop_p && !async_exec && target_can_async_p ())
825 {
826 /* Simulate synchronous execution */
827 async_disable_stdin ();
828 }
829
830 if (!arg)
831 error_no_arg ("starting address");
832
833 sals = decode_line_spec_1 (arg, 1);
834 if (sals.nelts != 1)
835 {
836 error ("Unreasonable jump request");
837 }
838
839 sal = sals.sals[0];
840 xfree (sals.sals);
841
842 if (sal.symtab == 0 && sal.pc == 0)
843 error ("No source file has been specified.");
844
845 resolve_sal_pc (&sal); /* May error out */
846
847 /* See if we are trying to jump to another function. */
848 fn = get_frame_function (get_current_frame ());
849 sfn = find_pc_function (sal.pc);
850 if (fn != NULL && sfn != fn)
851 {
852 if (!query ("Line %d is not in `%s'. Jump anyway? ", sal.line,
853 SYMBOL_PRINT_NAME (fn)))
854 {
855 error ("Not confirmed.");
856 /* NOTREACHED */
857 }
858 }
859
860 if (sfn != NULL)
861 {
862 fixup_symbol_section (sfn, 0);
863 if (section_is_overlay (SYMBOL_BFD_SECTION (sfn)) &&
864 !section_is_mapped (SYMBOL_BFD_SECTION (sfn)))
865 {
866 if (!query ("WARNING!!! Destination is in unmapped overlay! Jump anyway? "))
867 {
868 error ("Not confirmed.");
869 /* NOTREACHED */
870 }
871 }
872 }
873
874 addr = sal.pc;
875
876 if (from_tty)
877 {
878 printf_filtered ("Continuing at ");
879 print_address_numeric (addr, 1, gdb_stdout);
880 printf_filtered (".\n");
881 }
882
883 clear_proceed_status ();
884 proceed (addr, TARGET_SIGNAL_0, 0);
885 }
886 \f
887
888 /* Go to line or address in current procedure */
889 static void
890 go_command (char *line_no, int from_tty)
891 {
892 if (line_no == (char *) NULL || !*line_no)
893 printf_filtered (GO_USAGE);
894 else
895 {
896 tbreak_command (line_no, from_tty);
897 jump_command (line_no, from_tty);
898 }
899 }
900 \f
901
902 /* Continue program giving it specified signal. */
903
904 static void
905 signal_command (char *signum_exp, int from_tty)
906 {
907 enum target_signal oursig;
908
909 dont_repeat (); /* Too dangerous. */
910 ERROR_NO_INFERIOR;
911
912 if (!signum_exp)
913 error_no_arg ("signal number");
914
915 /* It would be even slicker to make signal names be valid expressions,
916 (the type could be "enum $signal" or some such), then the user could
917 assign them to convenience variables. */
918 oursig = target_signal_from_name (signum_exp);
919
920 if (oursig == TARGET_SIGNAL_UNKNOWN)
921 {
922 /* No, try numeric. */
923 int num = parse_and_eval_long (signum_exp);
924
925 if (num == 0)
926 oursig = TARGET_SIGNAL_0;
927 else
928 oursig = target_signal_from_command (num);
929 }
930
931 if (from_tty)
932 {
933 if (oursig == TARGET_SIGNAL_0)
934 printf_filtered ("Continuing with no signal.\n");
935 else
936 printf_filtered ("Continuing with signal %s.\n",
937 target_signal_to_name (oursig));
938 }
939
940 clear_proceed_status ();
941 /* "signal 0" should not get stuck if we are stopped at a breakpoint.
942 FIXME: Neither should "signal foo" but when I tried passing
943 (CORE_ADDR)-1 unconditionally I got a testsuite failure which I haven't
944 tried to track down yet. */
945 proceed (oursig == TARGET_SIGNAL_0 ? (CORE_ADDR) -1 : stop_pc, oursig, 0);
946 }
947
948 /* Proceed until we reach a different source line with pc greater than
949 our current one or exit the function. We skip calls in both cases.
950
951 Note that eventually this command should probably be changed so
952 that only source lines are printed out when we hit the breakpoint
953 we set. This may involve changes to wait_for_inferior and the
954 proceed status code. */
955
956 static void
957 until_next_command (int from_tty)
958 {
959 struct frame_info *frame;
960 CORE_ADDR pc;
961 struct symbol *func;
962 struct symtab_and_line sal;
963
964 clear_proceed_status ();
965
966 frame = get_current_frame ();
967
968 /* Step until either exited from this function or greater
969 than the current line (if in symbolic section) or pc (if
970 not). */
971
972 pc = read_pc ();
973 func = find_pc_function (pc);
974
975 if (!func)
976 {
977 struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (pc);
978
979 if (msymbol == NULL)
980 error ("Execution is not within a known function.");
981
982 step_range_start = SYMBOL_VALUE_ADDRESS (msymbol);
983 step_range_end = pc;
984 }
985 else
986 {
987 sal = find_pc_line (pc, 0);
988
989 step_range_start = BLOCK_START (SYMBOL_BLOCK_VALUE (func));
990 step_range_end = sal.end;
991 }
992
993 step_over_calls = STEP_OVER_ALL;
994 step_frame_id = get_frame_id (frame);
995 step_sp = read_sp ();
996
997 step_multi = 0; /* Only one call to proceed */
998
999 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
1000 }
1001
1002 static void
1003 until_command (char *arg, int from_tty)
1004 {
1005 int async_exec = 0;
1006
1007 if (!target_has_execution)
1008 error ("The program is not running.");
1009
1010 /* Find out whether we must run in the background. */
1011 if (arg != NULL)
1012 async_exec = strip_bg_char (&arg);
1013
1014 /* If we must run in the background, but the target can't do it,
1015 error out. */
1016 if (event_loop_p && async_exec && !target_can_async_p ())
1017 error ("Asynchronous execution not supported on this target.");
1018
1019 /* If we are not asked to run in the bg, then prepare to run in the
1020 foreground, synchronously. */
1021 if (event_loop_p && !async_exec && target_can_async_p ())
1022 {
1023 /* Simulate synchronous execution */
1024 async_disable_stdin ();
1025 }
1026
1027 if (arg)
1028 until_break_command (arg, from_tty, 0);
1029 else
1030 until_next_command (from_tty);
1031 }
1032
1033 static void
1034 advance_command (char *arg, int from_tty)
1035 {
1036 int async_exec = 0;
1037
1038 if (!target_has_execution)
1039 error ("The program is not running.");
1040
1041 if (arg == NULL)
1042 error_no_arg ("a location");
1043
1044 /* Find out whether we must run in the background. */
1045 if (arg != NULL)
1046 async_exec = strip_bg_char (&arg);
1047
1048 /* If we must run in the background, but the target can't do it,
1049 error out. */
1050 if (event_loop_p && async_exec && !target_can_async_p ())
1051 error ("Asynchronous execution not supported on this target.");
1052
1053 /* If we are not asked to run in the bg, then prepare to run in the
1054 foreground, synchronously. */
1055 if (event_loop_p && !async_exec && target_can_async_p ())
1056 {
1057 /* Simulate synchronous execution. */
1058 async_disable_stdin ();
1059 }
1060
1061 until_break_command (arg, from_tty, 1);
1062 }
1063 \f
1064
1065 /* Print the result of a function at the end of a 'finish' command. */
1066 static void
1067 print_return_value (int structure_return, struct type *value_type)
1068 {
1069 struct value *value;
1070 static struct ui_stream *stb = NULL;
1071
1072 if (!structure_return)
1073 {
1074 value = register_value_being_returned (value_type, stop_registers);
1075 stb = ui_out_stream_new (uiout);
1076 ui_out_text (uiout, "Value returned is ");
1077 ui_out_field_fmt (uiout, "gdb-result-var", "$%d", record_latest_value (value));
1078 ui_out_text (uiout, " = ");
1079 value_print (value, stb->stream, 0, Val_no_prettyprint);
1080 ui_out_field_stream (uiout, "return-value", stb);
1081 ui_out_text (uiout, "\n");
1082 }
1083 /* FIXME: 2003-09-27: When returning from a nested inferior function
1084 call, it's possible (with no help from the architecture vector)
1085 to locate and return/print a "struct return" value. This is just
1086 a more complicated case of what is already being done in in the
1087 inferior function call code. In fact, when inferior function
1088 calls are made async, this will likely be made the norm. */
1089 else if (gdbarch_return_value_p (current_gdbarch))
1090 /* We cannot determine the contents of the structure because it is
1091 on the stack, and we don't know where, since we did not
1092 initiate the call, as opposed to the call_function_by_hand
1093 case. */
1094 {
1095 gdb_assert (gdbarch_return_value (current_gdbarch, value_type, NULL, NULL, NULL)
1096 == RETURN_VALUE_STRUCT_CONVENTION);
1097 ui_out_text (uiout, "Value returned has type: ");
1098 ui_out_field_string (uiout, "return-type", TYPE_NAME (value_type));
1099 ui_out_text (uiout, ".");
1100 ui_out_text (uiout, " Cannot determine contents\n");
1101 return;
1102 }
1103 else
1104 {
1105 if (EXTRACT_STRUCT_VALUE_ADDRESS_P ())
1106 {
1107 CORE_ADDR addr = EXTRACT_STRUCT_VALUE_ADDRESS (stop_registers);
1108 if (!addr)
1109 error ("Function return value unknown.");
1110 value = value_at (value_type, addr, NULL);
1111 }
1112 else if (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS_P ())
1113 {
1114 char *buf = deprecated_grub_regcache_for_registers (stop_registers);
1115 CORE_ADDR addr = DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS (buf);
1116 if (!addr)
1117 error ("Function return value unknown.");
1118 value = value_at (value_type, addr, NULL);
1119 }
1120 else
1121 {
1122 /* It is "struct return" yet the value is being extracted,
1123 presumably from registers, using EXTRACT_RETURN_VALUE.
1124 This doesn't make sense. Unfortunately, the legacy
1125 interfaces allowed this behavior. Sigh! */
1126 value = allocate_value (value_type);
1127 CHECK_TYPEDEF (value_type);
1128 /* If the function returns void, don't bother fetching the
1129 return value. */
1130 EXTRACT_RETURN_VALUE (value_type, stop_registers,
1131 VALUE_CONTENTS_RAW (value));
1132 }
1133 stb = ui_out_stream_new (uiout);
1134 ui_out_text (uiout, "Value returned is ");
1135 ui_out_field_fmt (uiout, "gdb-result-var", "$%d", record_latest_value (value));
1136 ui_out_text (uiout, " = ");
1137 value_print (value, stb->stream, 0, Val_no_prettyprint);
1138 ui_out_field_stream (uiout, "return-value", stb);
1139 ui_out_text (uiout, "\n");
1140 }
1141 }
1142
1143 /* Stuff that needs to be done by the finish command after the target
1144 has stopped. In asynchronous mode, we wait for the target to stop in
1145 the call to poll or select in the event loop, so it is impossible to
1146 do all the stuff as part of the finish_command function itself. The
1147 only chance we have to complete this command is in
1148 fetch_inferior_event, which is called by the event loop as soon as it
1149 detects that the target has stopped. This function is called via the
1150 cmd_continuation pointer. */
1151 void
1152 finish_command_continuation (struct continuation_arg *arg)
1153 {
1154 struct symbol *function;
1155 struct breakpoint *breakpoint;
1156 struct cleanup *cleanups;
1157
1158 breakpoint = (struct breakpoint *) arg->data.pointer;
1159 function = (struct symbol *) arg->next->data.pointer;
1160 cleanups = (struct cleanup *) arg->next->next->data.pointer;
1161
1162 if (bpstat_find_breakpoint (stop_bpstat, breakpoint) != NULL
1163 && function != 0)
1164 {
1165 struct type *value_type;
1166 CORE_ADDR funcaddr;
1167 int struct_return;
1168
1169 value_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (function));
1170 if (!value_type)
1171 internal_error (__FILE__, __LINE__,
1172 "finish_command: function has no target type");
1173
1174 if (TYPE_CODE (value_type) == TYPE_CODE_VOID)
1175 {
1176 do_exec_cleanups (cleanups);
1177 return;
1178 }
1179
1180 funcaddr = BLOCK_START (SYMBOL_BLOCK_VALUE (function));
1181
1182 struct_return = using_struct_return (check_typedef (value_type),
1183 BLOCK_GCC_COMPILED (SYMBOL_BLOCK_VALUE (function)));
1184
1185 print_return_value (struct_return, value_type);
1186 }
1187 do_exec_cleanups (cleanups);
1188 }
1189
1190 /* "finish": Set a temporary breakpoint at the place
1191 the selected frame will return to, then continue. */
1192
1193 static void
1194 finish_command (char *arg, int from_tty)
1195 {
1196 struct symtab_and_line sal;
1197 struct frame_info *frame;
1198 struct symbol *function;
1199 struct breakpoint *breakpoint;
1200 struct cleanup *old_chain;
1201 struct continuation_arg *arg1, *arg2, *arg3;
1202
1203 int async_exec = 0;
1204
1205 /* Find out whether we must run in the background. */
1206 if (arg != NULL)
1207 async_exec = strip_bg_char (&arg);
1208
1209 /* If we must run in the background, but the target can't do it,
1210 error out. */
1211 if (event_loop_p && async_exec && !target_can_async_p ())
1212 error ("Asynchronous execution not supported on this target.");
1213
1214 /* If we are not asked to run in the bg, then prepare to run in the
1215 foreground, synchronously. */
1216 if (event_loop_p && !async_exec && target_can_async_p ())
1217 {
1218 /* Simulate synchronous execution */
1219 async_disable_stdin ();
1220 }
1221
1222 if (arg)
1223 error ("The \"finish\" command does not take any arguments.");
1224 if (!target_has_execution)
1225 error ("The program is not running.");
1226 if (deprecated_selected_frame == NULL)
1227 error ("No selected frame.");
1228
1229 frame = get_prev_frame (deprecated_selected_frame);
1230 if (frame == 0)
1231 error ("\"finish\" not meaningful in the outermost frame.");
1232
1233 clear_proceed_status ();
1234
1235 sal = find_pc_line (get_frame_pc (frame), 0);
1236 sal.pc = get_frame_pc (frame);
1237
1238 breakpoint = set_momentary_breakpoint (sal, get_frame_id (frame), bp_finish);
1239
1240 if (!event_loop_p || !target_can_async_p ())
1241 old_chain = make_cleanup_delete_breakpoint (breakpoint);
1242 else
1243 old_chain = make_exec_cleanup_delete_breakpoint (breakpoint);
1244
1245 /* Find the function we will return from. */
1246
1247 function = find_pc_function (get_frame_pc (deprecated_selected_frame));
1248
1249 /* Print info on the selected frame, including level number
1250 but not source. */
1251 if (from_tty)
1252 {
1253 printf_filtered ("Run till exit from ");
1254 print_stack_frame (deprecated_selected_frame,
1255 frame_relative_level (deprecated_selected_frame), 0);
1256 }
1257
1258 /* If running asynchronously and the target support asynchronous
1259 execution, set things up for the rest of the finish command to be
1260 completed later on, when gdb has detected that the target has
1261 stopped, in fetch_inferior_event. */
1262 if (event_loop_p && target_can_async_p ())
1263 {
1264 arg1 =
1265 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
1266 arg2 =
1267 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
1268 arg3 =
1269 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
1270 arg1->next = arg2;
1271 arg2->next = arg3;
1272 arg3->next = NULL;
1273 arg1->data.pointer = breakpoint;
1274 arg2->data.pointer = function;
1275 arg3->data.pointer = old_chain;
1276 add_continuation (finish_command_continuation, arg1);
1277 }
1278
1279 proceed_to_finish = 1; /* We want stop_registers, please... */
1280 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
1281
1282 /* Do this only if not running asynchronously or if the target
1283 cannot do async execution. Otherwise, complete this command when
1284 the target actually stops, in fetch_inferior_event. */
1285 if (!event_loop_p || !target_can_async_p ())
1286 {
1287
1288 /* Did we stop at our breakpoint? */
1289 if (bpstat_find_breakpoint (stop_bpstat, breakpoint) != NULL
1290 && function != 0)
1291 {
1292 struct type *value_type;
1293 CORE_ADDR funcaddr;
1294 int struct_return;
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 funcaddr = BLOCK_START (SYMBOL_BLOCK_VALUE (function));
1306
1307 struct_return =
1308 using_struct_return (check_typedef (value_type),
1309 BLOCK_GCC_COMPILED (SYMBOL_BLOCK_VALUE (function)));
1310
1311 print_return_value (struct_return, value_type);
1312 }
1313 do_cleanups (old_chain);
1314 }
1315 }
1316 \f
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 (i))
1578 {
1579 DEPRECATED_REGISTER_CONVERT_TO_VIRTUAL (i, register_type (current_gdbarch, i),
1580 raw_buffer, virtual_buffer);
1581 }
1582 else
1583 {
1584 memcpy (virtual_buffer, raw_buffer,
1585 DEPRECATED_REGISTER_VIRTUAL_SIZE (i));
1586 }
1587
1588 /* If virtual format is floating, print it that way, and in raw
1589 hex. */
1590 if (TYPE_CODE (register_type (current_gdbarch, i)) == TYPE_CODE_FLT)
1591 {
1592 int j;
1593
1594 val_print (register_type (current_gdbarch, i), virtual_buffer, 0, 0,
1595 file, 0, 1, 0, Val_pretty_default);
1596
1597 fprintf_filtered (file, "\t(raw 0x");
1598 for (j = 0; j < DEPRECATED_REGISTER_RAW_SIZE (i); j++)
1599 {
1600 int idx;
1601 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
1602 idx = j;
1603 else
1604 idx = DEPRECATED_REGISTER_RAW_SIZE (i) - 1 - j;
1605 fprintf_filtered (file, "%02x", (unsigned char) raw_buffer[idx]);
1606 }
1607 fprintf_filtered (file, ")");
1608 }
1609 else
1610 {
1611 /* Print the register in hex. */
1612 val_print (register_type (current_gdbarch, i), virtual_buffer, 0, 0,
1613 file, 'x', 1, 0, Val_pretty_default);
1614 /* If not a vector register, print it also according to its
1615 natural format. */
1616 if (TYPE_VECTOR (register_type (current_gdbarch, i)) == 0)
1617 {
1618 fprintf_filtered (file, "\t");
1619 val_print (register_type (current_gdbarch, i), virtual_buffer, 0, 0,
1620 file, 0, 1, 0, Val_pretty_default);
1621 }
1622 }
1623
1624 fprintf_filtered (file, "\n");
1625 }
1626 }
1627
1628 void
1629 registers_info (char *addr_exp, int fpregs)
1630 {
1631 int regnum, numregs;
1632 char *end;
1633
1634 if (!target_has_registers)
1635 error ("The program has no registers now.");
1636 if (deprecated_selected_frame == NULL)
1637 error ("No selected frame.");
1638
1639 if (!addr_exp)
1640 {
1641 gdbarch_print_registers_info (current_gdbarch, gdb_stdout,
1642 deprecated_selected_frame, -1, fpregs);
1643 return;
1644 }
1645
1646 while (*addr_exp != '\0')
1647 {
1648 char *start;
1649 const char *end;
1650
1651 /* Keep skipping leading white space. */
1652 if (isspace ((*addr_exp)))
1653 {
1654 addr_exp++;
1655 continue;
1656 }
1657
1658 /* Discard any leading ``$''. Check that there is something
1659 resembling a register following it. */
1660 if (addr_exp[0] == '$')
1661 addr_exp++;
1662 if (isspace ((*addr_exp)) || (*addr_exp) == '\0')
1663 error ("Missing register name");
1664
1665 /* Find the start/end of this register name/num/group. */
1666 start = addr_exp;
1667 while ((*addr_exp) != '\0' && !isspace ((*addr_exp)))
1668 addr_exp++;
1669 end = addr_exp;
1670
1671 /* Figure out what we've found and display it. */
1672
1673 /* A register name? */
1674 {
1675 int regnum = frame_map_name_to_regnum (deprecated_selected_frame,
1676 start, end - start);
1677 if (regnum >= 0)
1678 {
1679 gdbarch_print_registers_info (current_gdbarch, gdb_stdout,
1680 deprecated_selected_frame, regnum, fpregs);
1681 continue;
1682 }
1683 }
1684
1685 /* A register number? (how portable is this one?). */
1686 {
1687 char *endptr;
1688 int regnum = strtol (start, &endptr, 0);
1689 if (endptr == end
1690 && regnum >= 0
1691 && regnum < NUM_REGS + NUM_PSEUDO_REGS)
1692 {
1693 gdbarch_print_registers_info (current_gdbarch, gdb_stdout,
1694 deprecated_selected_frame, regnum, fpregs);
1695 continue;
1696 }
1697 }
1698
1699 /* A register group? */
1700 {
1701 struct reggroup *group;
1702 for (group = reggroup_next (current_gdbarch, NULL);
1703 group != NULL;
1704 group = reggroup_next (current_gdbarch, group))
1705 {
1706 /* Don't bother with a length check. Should the user
1707 enter a short register group name, go with the first
1708 group that matches. */
1709 if (strncmp (start, reggroup_name (group), end - start) == 0)
1710 break;
1711 }
1712 if (group != NULL)
1713 {
1714 int regnum;
1715 for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
1716 {
1717 if (gdbarch_register_reggroup_p (current_gdbarch, regnum,
1718 group))
1719 gdbarch_print_registers_info (current_gdbarch,
1720 gdb_stdout, deprecated_selected_frame,
1721 regnum, fpregs);
1722 }
1723 continue;
1724 }
1725 }
1726
1727 /* Nothing matched. */
1728 error ("Invalid register `%.*s'", (int) (end - start), start);
1729 }
1730 }
1731
1732 void
1733 all_registers_info (char *addr_exp, int from_tty)
1734 {
1735 registers_info (addr_exp, 1);
1736 }
1737
1738 static void
1739 nofp_registers_info (char *addr_exp, int from_tty)
1740 {
1741 registers_info (addr_exp, 0);
1742 }
1743
1744 static void
1745 print_vector_info (struct gdbarch *gdbarch, struct ui_file *file,
1746 struct frame_info *frame, const char *args)
1747 {
1748 if (!target_has_registers)
1749 error ("The program has no registers now.");
1750 if (deprecated_selected_frame == NULL)
1751 error ("No selected frame.");
1752
1753 if (gdbarch_print_vector_info_p (gdbarch))
1754 gdbarch_print_vector_info (gdbarch, file, frame, args);
1755 else
1756 {
1757 int regnum;
1758 int printed_something = 0;
1759
1760 for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
1761 {
1762 if (gdbarch_register_reggroup_p (gdbarch, regnum, vector_reggroup))
1763 {
1764 printed_something = 1;
1765 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
1766 }
1767 }
1768 if (!printed_something)
1769 fprintf_filtered (file, "No vector information\n");
1770 }
1771 }
1772
1773 static void
1774 vector_info (char *args, int from_tty)
1775 {
1776 print_vector_info (current_gdbarch, gdb_stdout, deprecated_selected_frame, args);
1777 }
1778 \f
1779
1780 /*
1781 * TODO:
1782 * Should save/restore the tty state since it might be that the
1783 * program to be debugged was started on this tty and it wants
1784 * the tty in some state other than what we want. If it's running
1785 * on another terminal or without a terminal, then saving and
1786 * restoring the tty state is a harmless no-op.
1787 * This only needs to be done if we are attaching to a process.
1788 */
1789
1790 /*
1791 attach_command --
1792 takes a program started up outside of gdb and ``attaches'' to it.
1793 This stops it cold in its tracks and allows us to start debugging it.
1794 and wait for the trace-trap that results from attaching. */
1795
1796 void
1797 attach_command (char *args, int from_tty)
1798 {
1799 char *exec_file;
1800 char *full_exec_path = NULL;
1801
1802 dont_repeat (); /* Not for the faint of heart */
1803
1804 if (target_has_execution)
1805 {
1806 if (query ("A program is being debugged already. Kill it? "))
1807 target_kill ();
1808 else
1809 error ("Not killed.");
1810 }
1811
1812 target_attach (args, from_tty);
1813
1814 /* Set up the "saved terminal modes" of the inferior
1815 based on what modes we are starting it with. */
1816 target_terminal_init ();
1817
1818 /* Install inferior's terminal modes. */
1819 target_terminal_inferior ();
1820
1821 /* Set up execution context to know that we should return from
1822 wait_for_inferior as soon as the target reports a stop. */
1823 init_wait_for_inferior ();
1824 clear_proceed_status ();
1825
1826 /* No traps are generated when attaching to inferior under Mach 3
1827 or GNU hurd. */
1828 #ifndef ATTACH_NO_WAIT
1829 /* Careful here. See comments in inferior.h. Basically some OSes
1830 don't ignore SIGSTOPs on continue requests anymore. We need a
1831 way for handle_inferior_event to reset the stop_signal variable
1832 after an attach, and this is what STOP_QUIETLY_NO_SIGSTOP is for. */
1833 stop_soon = STOP_QUIETLY_NO_SIGSTOP;
1834 wait_for_inferior ();
1835 stop_soon = NO_STOP_QUIETLY;
1836 #endif
1837
1838 /*
1839 * If no exec file is yet known, try to determine it from the
1840 * process itself.
1841 */
1842 exec_file = (char *) get_exec_file (0);
1843 if (!exec_file)
1844 {
1845 exec_file = target_pid_to_exec_file (PIDGET (inferior_ptid));
1846 if (exec_file)
1847 {
1848 /* It's possible we don't have a full path, but rather just a
1849 filename. Some targets, such as HP-UX, don't provide the
1850 full path, sigh.
1851
1852 Attempt to qualify the filename against the source path.
1853 (If that fails, we'll just fall back on the original
1854 filename. Not much more we can do...)
1855 */
1856 if (!source_full_path_of (exec_file, &full_exec_path))
1857 full_exec_path = savestring (exec_file, strlen (exec_file));
1858
1859 exec_file_attach (full_exec_path, from_tty);
1860 symbol_file_add_main (full_exec_path, from_tty);
1861 }
1862 }
1863
1864 #ifdef SOLIB_ADD
1865 /* Add shared library symbols from the newly attached process, if any. */
1866 SOLIB_ADD ((char *) 0, from_tty, &current_target, auto_solib_add);
1867 re_enable_breakpoints_in_shlibs ();
1868 #endif
1869
1870 /* Take any necessary post-attaching actions for this platform.
1871 */
1872 target_post_attach (PIDGET (inferior_ptid));
1873
1874 normal_stop ();
1875
1876 if (attach_hook)
1877 attach_hook ();
1878 }
1879
1880 /*
1881 * detach_command --
1882 * takes a program previously attached to and detaches it.
1883 * The program resumes execution and will no longer stop
1884 * on signals, etc. We better not have left any breakpoints
1885 * in the program or it'll die when it hits one. For this
1886 * to work, it may be necessary for the process to have been
1887 * previously attached. It *might* work if the program was
1888 * started via the normal ptrace (PTRACE_TRACEME).
1889 */
1890
1891 static void
1892 detach_command (char *args, int from_tty)
1893 {
1894 dont_repeat (); /* Not for the faint of heart */
1895 target_detach (args, from_tty);
1896 #if defined(SOLIB_RESTART)
1897 SOLIB_RESTART ();
1898 #endif
1899 if (detach_hook)
1900 detach_hook ();
1901 }
1902
1903 /* Disconnect from the current target without resuming it (leaving it
1904 waiting for a debugger).
1905
1906 We'd better not have left any breakpoints in the program or the
1907 next debugger will get confused. Currently only supported for some
1908 remote targets, since the normal attach mechanisms don't work on
1909 stopped processes on some native platforms (e.g. GNU/Linux). */
1910
1911 static void
1912 disconnect_command (char *args, int from_tty)
1913 {
1914 dont_repeat (); /* Not for the faint of heart */
1915 target_disconnect (args, from_tty);
1916 #if defined(SOLIB_RESTART)
1917 SOLIB_RESTART ();
1918 #endif
1919 if (detach_hook)
1920 detach_hook ();
1921 }
1922
1923 /* Stop the execution of the target while running in async mode, in
1924 the backgound. */
1925 void
1926 interrupt_target_command (char *args, int from_tty)
1927 {
1928 if (event_loop_p && target_can_async_p ())
1929 {
1930 dont_repeat (); /* Not for the faint of heart */
1931 target_stop ();
1932 }
1933 }
1934
1935 static void
1936 print_float_info (struct gdbarch *gdbarch, struct ui_file *file,
1937 struct frame_info *frame, const char *args)
1938 {
1939 if (!target_has_registers)
1940 error ("The program has no registers now.");
1941 if (deprecated_selected_frame == NULL)
1942 error ("No selected frame.");
1943
1944 if (gdbarch_print_float_info_p (gdbarch))
1945 gdbarch_print_float_info (gdbarch, file, frame, args);
1946 else
1947 {
1948 int regnum;
1949 int printed_something = 0;
1950
1951 for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
1952 {
1953 if (gdbarch_register_reggroup_p (gdbarch, regnum, float_reggroup))
1954 {
1955 printed_something = 1;
1956 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
1957 }
1958 }
1959 if (!printed_something)
1960 fprintf_filtered (file, "\
1961 No floating-point info available for this processor.\n");
1962 }
1963 }
1964
1965 static void
1966 float_info (char *args, int from_tty)
1967 {
1968 print_float_info (current_gdbarch, gdb_stdout, deprecated_selected_frame, args);
1969 }
1970 \f
1971 static void
1972 unset_command (char *args, int from_tty)
1973 {
1974 printf_filtered ("\"unset\" must be followed by the name of ");
1975 printf_filtered ("an unset subcommand.\n");
1976 help_list (unsetlist, "unset ", -1, gdb_stdout);
1977 }
1978
1979 void
1980 _initialize_infcmd (void)
1981 {
1982 struct cmd_list_element *c;
1983
1984 c = add_com ("tty", class_run, tty_command,
1985 "Set terminal for future runs of program being debugged.");
1986 set_cmd_completer (c, filename_completer);
1987
1988 c = add_set_cmd ("args", class_run, var_string_noescape,
1989 (char *) &inferior_args,
1990 "Set argument list to give program being debugged when it is started.\n\
1991 Follow this command with any number of args, to be passed to the program.",
1992 &setlist);
1993 set_cmd_completer (c, filename_completer);
1994 set_cmd_sfunc (c, notice_args_set);
1995 c = add_show_from_set (c, &showlist);
1996 set_cmd_sfunc (c, notice_args_read);
1997
1998 c = add_cmd
1999 ("environment", no_class, environment_info,
2000 "The environment to give the program, or one variable's value.\n\
2001 With an argument VAR, prints the value of environment variable VAR to\n\
2002 give the program being debugged. With no arguments, prints the entire\n\
2003 environment to be given to the program.", &showlist);
2004 set_cmd_completer (c, noop_completer);
2005
2006 add_prefix_cmd ("unset", no_class, unset_command,
2007 "Complement to certain \"set\" commands.",
2008 &unsetlist, "unset ", 0, &cmdlist);
2009
2010 c = add_cmd ("environment", class_run, unset_environment_command,
2011 "Cancel environment variable VAR for the program.\n\
2012 This does not affect the program until the next \"run\" command.",
2013 &unsetlist);
2014 set_cmd_completer (c, noop_completer);
2015
2016 c = add_cmd ("environment", class_run, set_environment_command,
2017 "Set environment variable value to give the program.\n\
2018 Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\
2019 VALUES of environment variables are uninterpreted strings.\n\
2020 This does not affect the program until the next \"run\" command.",
2021 &setlist);
2022 set_cmd_completer (c, noop_completer);
2023
2024 c = add_com ("path", class_files, path_command,
2025 "Add directory DIR(s) to beginning of search path for object files.\n\
2026 $cwd in the path means the current working directory.\n\
2027 This path is equivalent to the $PATH shell variable. It is a list of\n\
2028 directories, separated by colons. These directories are searched to find\n\
2029 fully linked executable files and separately compiled object files as needed.");
2030 set_cmd_completer (c, filename_completer);
2031
2032 c = add_cmd ("paths", no_class, path_info,
2033 "Current search path for finding object files.\n\
2034 $cwd in the path means the current working directory.\n\
2035 This path is equivalent to the $PATH shell variable. It is a list of\n\
2036 directories, separated by colons. These directories are searched to find\n\
2037 fully linked executable files and separately compiled object files as needed.",
2038 &showlist);
2039 set_cmd_completer (c, noop_completer);
2040
2041 add_com ("attach", class_run, attach_command,
2042 "Attach to a process or file outside of GDB.\n\
2043 This command attaches to another target, of the same type as your last\n\
2044 \"target\" command (\"info files\" will show your target stack).\n\
2045 The command may take as argument a process id or a device file.\n\
2046 For a process id, you must have permission to send the process a signal,\n\
2047 and it must have the same effective uid as the debugger.\n\
2048 When using \"attach\" with a process id, the debugger finds the\n\
2049 program running in the process, looking first in the current working\n\
2050 directory, or (if not found there) using the source file search path\n\
2051 (see the \"directory\" command). You can also use the \"file\" command\n\
2052 to specify the program, and to load its symbol table.");
2053
2054 add_com ("detach", class_run, detach_command,
2055 "Detach a process or file previously attached.\n\
2056 If a process, it is no longer traced, and it continues its execution. If\n\
2057 you were debugging a file, the file is closed and gdb no longer accesses it.");
2058
2059 add_com ("disconnect", class_run, disconnect_command,
2060 "Disconnect from a target.\n\
2061 The target will wait for another debugger to connect. Not available for\n\
2062 all targets.");
2063
2064 add_com ("signal", class_run, signal_command,
2065 "Continue program giving it signal specified by the argument.\n\
2066 An argument of \"0\" means continue program without giving it a signal.");
2067
2068 add_com ("stepi", class_run, stepi_command,
2069 "Step one instruction exactly.\n\
2070 Argument N means do this N times (or till program stops for another reason).");
2071 add_com_alias ("si", "stepi", class_alias, 0);
2072
2073 add_com ("nexti", class_run, nexti_command,
2074 "Step one instruction, but proceed through subroutine calls.\n\
2075 Argument N means do this N times (or till program stops for another reason).");
2076 add_com_alias ("ni", "nexti", class_alias, 0);
2077
2078 add_com ("finish", class_run, finish_command,
2079 "Execute until selected stack frame returns.\n\
2080 Upon return, the value returned is printed and put in the value history.");
2081
2082 add_com ("next", class_run, next_command,
2083 "Step program, proceeding through subroutine calls.\n\
2084 Like the \"step\" command as long as subroutine calls do not happen;\n\
2085 when they do, the call is treated as one instruction.\n\
2086 Argument N means do this N times (or till program stops for another reason).");
2087 add_com_alias ("n", "next", class_run, 1);
2088 if (xdb_commands)
2089 add_com_alias ("S", "next", class_run, 1);
2090
2091 add_com ("step", class_run, step_command,
2092 "Step program until it reaches a different source line.\n\
2093 Argument N means do this N times (or till program stops for another reason).");
2094 add_com_alias ("s", "step", class_run, 1);
2095
2096 c = add_com ("until", class_run, until_command,
2097 "Execute until the program reaches a source line greater than the current\n\
2098 or a specified location (same args as break command) within the current frame.");
2099 set_cmd_completer (c, location_completer);
2100 add_com_alias ("u", "until", class_run, 1);
2101
2102 c = add_com ("advance", class_run, advance_command,
2103 "Continue the program up to the given location (same form as args for break command).\n\
2104 Execution will also stop upon exit from the current stack frame.");
2105 set_cmd_completer (c, location_completer);
2106
2107 c = add_com ("jump", class_run, jump_command,
2108 "Continue program being debugged at specified line or address.\n\
2109 Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\
2110 for an address to start at.");
2111 set_cmd_completer (c, location_completer);
2112
2113 if (xdb_commands)
2114 {
2115 c = add_com ("go", class_run, go_command,
2116 "Usage: go <location>\n\
2117 Continue program being debugged, stopping at specified line or \n\
2118 address.\n\
2119 Give as argument either LINENUM or *ADDR, where ADDR is an \n\
2120 expression for an address to start at.\n\
2121 This command is a combination of tbreak and jump.");
2122 set_cmd_completer (c, location_completer);
2123 }
2124
2125 if (xdb_commands)
2126 add_com_alias ("g", "go", class_run, 1);
2127
2128 add_com ("continue", class_run, continue_command,
2129 "Continue program being debugged, after signal or breakpoint.\n\
2130 If proceeding from breakpoint, a number N may be used as an argument,\n\
2131 which means to set the ignore count of that breakpoint to N - 1 (so that\n\
2132 the breakpoint won't break until the Nth time it is reached).");
2133 add_com_alias ("c", "cont", class_run, 1);
2134 add_com_alias ("fg", "cont", class_run, 1);
2135
2136 c = add_com ("run", class_run, run_command,
2137 "Start debugged program. You may specify arguments to give it.\n\
2138 Args may include \"*\", or \"[...]\"; they are expanded using \"sh\".\n\
2139 Input and output redirection with \">\", \"<\", or \">>\" are also allowed.\n\n\
2140 With no arguments, uses arguments last specified (with \"run\" or \"set args\").\n\
2141 To cancel previous arguments and run with no arguments,\n\
2142 use \"set args\" without arguments.");
2143 set_cmd_completer (c, filename_completer);
2144 add_com_alias ("r", "run", class_run, 1);
2145 if (xdb_commands)
2146 add_com ("R", class_run, run_no_args_command,
2147 "Start debugged program with no arguments.");
2148
2149 add_com ("interrupt", class_run, interrupt_target_command,
2150 "Interrupt the execution of the debugged program.");
2151
2152 add_info ("registers", nofp_registers_info,
2153 "List of integer registers and their contents, for selected stack frame.\n\
2154 Register name as argument means describe only that register.");
2155 add_info_alias ("r", "registers", 1);
2156
2157 if (xdb_commands)
2158 add_com ("lr", class_info, 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 ("all-registers", all_registers_info,
2162 "List of all registers and their contents, for selected stack frame.\n\
2163 Register name as argument means describe only that register.");
2164
2165 add_info ("program", program_info,
2166 "Execution status of the program.");
2167
2168 add_info ("float", float_info,
2169 "Print the status of the floating point unit\n");
2170
2171 add_info ("vector", vector_info,
2172 "Print the status of the vector unit\n");
2173
2174 inferior_environ = make_environ ();
2175 init_environ (inferior_environ);
2176 }
This page took 0.076789 seconds and 4 git commands to generate.