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