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