* infcall.c (run_inferior_call): Remove references to
[deliverable/binutils-gdb.git] / gdb / infcmd.c
1 /* Memory-access and commands for "inferior" process, for GDB.
2
3 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
4 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
5 2008, 2009 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 3 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, see <http://www.gnu.org/licenses/>. */
21
22 #include "defs.h"
23 #include <signal.h>
24 #include "gdb_string.h"
25 #include "symtab.h"
26 #include "gdbtypes.h"
27 #include "frame.h"
28 #include "inferior.h"
29 #include "environ.h"
30 #include "value.h"
31 #include "gdbcmd.h"
32 #include "symfile.h"
33 #include "gdbcore.h"
34 #include "target.h"
35 #include "language.h"
36 #include "symfile.h"
37 #include "objfiles.h"
38 #include "completer.h"
39 #include "ui-out.h"
40 #include "event-top.h"
41 #include "parser-defs.h"
42 #include "regcache.h"
43 #include "reggroups.h"
44 #include "block.h"
45 #include "solib.h"
46 #include <ctype.h>
47 #include "gdb_assert.h"
48 #include "observer.h"
49 #include "target-descriptions.h"
50 #include "user-regs.h"
51 #include "exceptions.h"
52 #include "cli/cli-decode.h"
53 #include "gdbthread.h"
54 #include "valprint.h"
55
56 /* Functions exported for general use, in inferior.h: */
57
58 void all_registers_info (char *, int);
59
60 void registers_info (char *, int);
61
62 void nexti_command (char *, int);
63
64 void stepi_command (char *, int);
65
66 void continue_command (char *, int);
67
68 void interrupt_target_command (char *args, int from_tty);
69
70 /* Local functions: */
71
72 static void nofp_registers_info (char *, int);
73
74 static void print_return_value (struct type *func_type,
75 struct type *value_type);
76
77 static void until_next_command (int);
78
79 static void until_command (char *, int);
80
81 static void path_info (char *, int);
82
83 static void path_command (char *, int);
84
85 static void unset_command (char *, int);
86
87 static void float_info (char *, int);
88
89 static void disconnect_command (char *, int);
90
91 static void unset_environment_command (char *, int);
92
93 static void set_environment_command (char *, int);
94
95 static void environment_info (char *, int);
96
97 static void program_info (char *, int);
98
99 static void finish_command (char *, int);
100
101 static void signal_command (char *, int);
102
103 static void jump_command (char *, int);
104
105 static void step_1 (int, int, char *);
106 static void step_once (int skip_subroutines, int single_inst, int count, int thread);
107
108 static void next_command (char *, int);
109
110 static void step_command (char *, int);
111
112 static void run_command (char *, int);
113
114 static void run_no_args_command (char *args, int from_tty);
115
116 static void go_command (char *line_no, int from_tty);
117
118 static int strip_bg_char (char **);
119
120 void _initialize_infcmd (void);
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 static 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 /* Address at which inferior stopped. */
148
149 CORE_ADDR stop_pc;
150
151 /* Flag indicating that a command has proceeded the inferior past the
152 current breakpoint. */
153
154 int breakpoint_proceeded;
155
156 /* Nonzero if stopped due to completion of a stack dummy routine. */
157
158 int stop_stack_dummy;
159
160 /* Nonzero if stopped due to a random (unexpected) signal in inferior
161 process. */
162
163 int stopped_by_random_signal;
164
165 /* Environment to use for running inferior,
166 in format described in environ.h. */
167
168 struct gdb_environ *inferior_environ;
169
170 /* When set, no calls to target_resumed observer will be made. */
171 int suppress_resume_observer = 0;
172 \f
173 /* Accessor routines. */
174
175 void
176 set_inferior_io_terminal (const char *terminal_name)
177 {
178 if (inferior_io_terminal)
179 xfree (inferior_io_terminal);
180
181 if (!terminal_name)
182 inferior_io_terminal = NULL;
183 else
184 inferior_io_terminal = savestring (terminal_name, strlen (terminal_name));
185 }
186
187 const char *
188 get_inferior_io_terminal (void)
189 {
190 return inferior_io_terminal;
191 }
192
193 char *
194 get_inferior_args (void)
195 {
196 if (inferior_argc != 0)
197 {
198 char *n, *old;
199
200 n = gdbarch_construct_inferior_arguments (current_gdbarch,
201 inferior_argc, inferior_argv);
202 old = set_inferior_args (n);
203 xfree (old);
204 }
205
206 if (inferior_args == NULL)
207 inferior_args = xstrdup ("");
208
209 return inferior_args;
210 }
211
212 char *
213 set_inferior_args (char *newargs)
214 {
215 char *saved_args = inferior_args;
216
217 inferior_args = newargs;
218 inferior_argc = 0;
219 inferior_argv = 0;
220
221 return saved_args;
222 }
223
224 void
225 set_inferior_args_vector (int argc, char **argv)
226 {
227 inferior_argc = argc;
228 inferior_argv = argv;
229 }
230
231 /* Notice when `set args' is run. */
232 static void
233 notice_args_set (char *args, int from_tty, struct cmd_list_element *c)
234 {
235 inferior_argc = 0;
236 inferior_argv = 0;
237 }
238
239 /* Notice when `show args' is run. */
240 static void
241 notice_args_read (struct ui_file *file, int from_tty,
242 struct cmd_list_element *c, const char *value)
243 {
244 /* Note that we ignore the passed-in value in favor of computing it
245 directly. */
246 deprecated_show_value_hack (file, from_tty, c, get_inferior_args ());
247 }
248
249 \f
250 /* Compute command-line string given argument vector. This does the
251 same shell processing as fork_inferior. */
252 char *
253 construct_inferior_arguments (struct gdbarch *gdbarch, int argc, char **argv)
254 {
255 char *result;
256
257 if (STARTUP_WITH_SHELL)
258 {
259 /* This holds all the characters considered special to the
260 typical Unix shells. We include `^' because the SunOS
261 /bin/sh treats it as a synonym for `|'. */
262 char *special = "\"!#$&*()\\|[]{}<>?'\"`~^; \t\n";
263 int i;
264 int length = 0;
265 char *out, *cp;
266
267 /* We over-compute the size. It shouldn't matter. */
268 for (i = 0; i < argc; ++i)
269 length += 3 * strlen (argv[i]) + 1 + 2 * (argv[i][0] == '\0');
270
271 result = (char *) xmalloc (length);
272 out = result;
273
274 for (i = 0; i < argc; ++i)
275 {
276 if (i > 0)
277 *out++ = ' ';
278
279 /* Need to handle empty arguments specially. */
280 if (argv[i][0] == '\0')
281 {
282 *out++ = '\'';
283 *out++ = '\'';
284 }
285 else
286 {
287 for (cp = argv[i]; *cp; ++cp)
288 {
289 if (*cp == '\n')
290 {
291 /* A newline cannot be quoted with a backslash (it
292 just disappears), only by putting it inside
293 quotes. */
294 *out++ = '\'';
295 *out++ = '\n';
296 *out++ = '\'';
297 }
298 else
299 {
300 if (strchr (special, *cp) != NULL)
301 *out++ = '\\';
302 *out++ = *cp;
303 }
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 set_inferior_io_terminal (file);
379 }
380
381 /* Common actions to take after creating any sort of inferior, by any
382 means (running, attaching, connecting, et cetera). The target
383 should be stopped. */
384
385 void
386 post_create_inferior (struct target_ops *target, int from_tty)
387 {
388 /* Be sure we own the terminal in case write operations are performed. */
389 target_terminal_ours ();
390
391 /* If the target hasn't taken care of this already, do it now.
392 Targets which need to access registers during to_open,
393 to_create_inferior, or to_attach should do it earlier; but many
394 don't need to. */
395 target_find_description ();
396
397 /* If the solist is global across processes, there's no need to
398 refetch it here. */
399 if (exec_bfd && !gdbarch_has_global_solist (target_gdbarch))
400 {
401 /* Sometimes the platform-specific hook loads initial shared
402 libraries, and sometimes it doesn't. Try to do so first, so
403 that we can add them with the correct value for FROM_TTY.
404 If we made all the inferior hook methods consistent,
405 this call could be removed. */
406 #ifdef SOLIB_ADD
407 SOLIB_ADD (NULL, from_tty, target, auto_solib_add);
408 #else
409 solib_add (NULL, from_tty, target, auto_solib_add);
410 #endif
411 }
412
413 if (exec_bfd)
414 {
415 /* Create the hooks to handle shared library load and unload
416 events. */
417 #ifdef SOLIB_CREATE_INFERIOR_HOOK
418 SOLIB_CREATE_INFERIOR_HOOK (PIDGET (inferior_ptid));
419 #else
420 solib_create_inferior_hook ();
421 #endif
422 }
423
424 observer_notify_inferior_created (target, from_tty);
425 }
426
427 /* Kill the inferior if already running. This function is designed
428 to be called when we are about to start the execution of the program
429 from the beginning. Ask the user to confirm that he wants to restart
430 the program being debugged when FROM_TTY is non-null. */
431
432 static void
433 kill_if_already_running (int from_tty)
434 {
435 if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
436 {
437 /* Bail out before killing the program if we will not be able to
438 restart it. */
439 target_require_runnable ();
440
441 if (from_tty
442 && !query (_("The program being debugged has been started already.\n\
443 Start it from the beginning? ")))
444 error (_("Program not restarted."));
445 target_kill ();
446 }
447 }
448
449 /* Implement the "run" command. If TBREAK_AT_MAIN is set, then insert
450 a temporary breakpoint at the begining of the main program before
451 running the program. */
452
453 static void
454 run_command_1 (char *args, int from_tty, int tbreak_at_main)
455 {
456 char *exec_file;
457 struct cleanup *old_chain;
458 ptid_t ptid;
459
460 dont_repeat ();
461
462 kill_if_already_running (from_tty);
463
464 init_wait_for_inferior ();
465 clear_breakpoint_hit_counts ();
466
467 /* Clean up any leftovers from other runs. Some other things from
468 this function should probably be moved into target_pre_inferior. */
469 target_pre_inferior (from_tty);
470
471 /* The comment here used to read, "The exec file is re-read every
472 time we do a generic_mourn_inferior, so we just have to worry
473 about the symbol file." The `generic_mourn_inferior' function
474 gets called whenever the program exits. However, suppose the
475 program exits, and *then* the executable file changes? We need
476 to check again here. Since reopen_exec_file doesn't do anything
477 if the timestamp hasn't changed, I don't see the harm. */
478 reopen_exec_file ();
479 reread_symbols ();
480
481 /* Insert the temporary breakpoint if a location was specified. */
482 if (tbreak_at_main)
483 tbreak_command (main_name (), 0);
484
485 exec_file = (char *) get_exec_file (0);
486
487 if (non_stop && !target_supports_non_stop ())
488 error (_("The target does not support running in non-stop mode."));
489
490 /* We keep symbols from add-symbol-file, on the grounds that the
491 user might want to add some symbols before running the program
492 (right?). But sometimes (dynamic loading where the user manually
493 introduces the new symbols with add-symbol-file), the code which
494 the symbols describe does not persist between runs. Currently
495 the user has to manually nuke all symbols between runs if they
496 want them to go away (PR 2207). This is probably reasonable. */
497
498 if (!args)
499 {
500 if (target_can_async_p ())
501 async_disable_stdin ();
502 }
503 else
504 {
505 int async_exec = strip_bg_char (&args);
506
507 /* If we get a request for running in the bg but the target
508 doesn't support it, error out. */
509 if (async_exec && !target_can_async_p ())
510 error (_("Asynchronous execution not supported on this target."));
511
512 /* If we don't get a request of running in the bg, then we need
513 to simulate synchronous (fg) execution. */
514 if (!async_exec && target_can_async_p ())
515 {
516 /* Simulate synchronous execution */
517 async_disable_stdin ();
518 }
519
520 /* If there were other args, beside '&', process them. */
521 if (args)
522 {
523 char *old_args = set_inferior_args (xstrdup (args));
524 xfree (old_args);
525 }
526 }
527
528 if (from_tty)
529 {
530 ui_out_field_string (uiout, NULL, "Starting program");
531 ui_out_text (uiout, ": ");
532 if (exec_file)
533 ui_out_field_string (uiout, "execfile", exec_file);
534 ui_out_spaces (uiout, 1);
535 /* We call get_inferior_args() because we might need to compute
536 the value now. */
537 ui_out_field_string (uiout, "infargs", get_inferior_args ());
538 ui_out_text (uiout, "\n");
539 ui_out_flush (uiout);
540 }
541
542 /* We call get_inferior_args() because we might need to compute
543 the value now. */
544 target_create_inferior (exec_file, get_inferior_args (),
545 environ_vector (inferior_environ), from_tty);
546
547 /* We're starting off a new process. When we get out of here, in
548 non-stop mode, finish the state of all threads of that process,
549 but leave other threads alone, as they may be stopped in internal
550 events --- the frontend shouldn't see them as stopped. In
551 all-stop, always finish the state of all threads, as we may be
552 resuming more than just the new process. */
553 if (non_stop)
554 ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
555 else
556 ptid = minus_one_ptid;
557 old_chain = make_cleanup (finish_thread_state_cleanup, &ptid);
558
559 /* Pass zero for FROM_TTY, because at this point the "run" command
560 has done its thing; now we are setting up the running program. */
561 post_create_inferior (&current_target, 0);
562
563 /* Start the target running. */
564 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_0, 0);
565
566 /* Since there was no error, there's no need to finish the thread
567 states here. */
568 discard_cleanups (old_chain);
569 }
570
571 static void
572 run_command (char *args, int from_tty)
573 {
574 run_command_1 (args, from_tty, 0);
575 }
576
577 static void
578 run_no_args_command (char *args, int from_tty)
579 {
580 char *old_args = set_inferior_args (xstrdup (""));
581 xfree (old_args);
582 }
583 \f
584
585 /* Start the execution of the program up until the beginning of the main
586 program. */
587
588 static void
589 start_command (char *args, int from_tty)
590 {
591 /* Some languages such as Ada need to search inside the program
592 minimal symbols for the location where to put the temporary
593 breakpoint before starting. */
594 if (!have_minimal_symbols ())
595 error (_("No symbol table loaded. Use the \"file\" command."));
596
597 /* Run the program until reaching the main procedure... */
598 run_command_1 (args, from_tty, 1);
599 }
600
601 static int
602 proceed_thread_callback (struct thread_info *thread, void *arg)
603 {
604 /* We go through all threads individually instead of compressing
605 into a single target `resume_all' request, because some threads
606 may be stopped in internal breakpoints/events, or stopped waiting
607 for its turn in the displaced stepping queue (that is, they are
608 running && !executing). The target side has no idea about why
609 the thread is stopped, so a `resume_all' command would resume too
610 much. If/when GDB gains a way to tell the target `hold this
611 thread stopped until I say otherwise', then we can optimize
612 this. */
613 if (!is_stopped (thread->ptid))
614 return 0;
615
616 switch_to_thread (thread->ptid);
617 clear_proceed_status ();
618 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
619 return 0;
620 }
621
622 void
623 continue_1 (int all_threads)
624 {
625 ERROR_NO_INFERIOR;
626
627 if (non_stop && all_threads)
628 {
629 /* Don't error out if the current thread is running, because
630 there may be other stopped threads. */
631 struct cleanup *old_chain;
632
633 /* Backup current thread and selected frame. */
634 old_chain = make_cleanup_restore_current_thread ();
635
636 iterate_over_threads (proceed_thread_callback, NULL);
637
638 /* Restore selected ptid. */
639 do_cleanups (old_chain);
640 }
641 else
642 {
643 ensure_not_running ();
644 clear_proceed_status ();
645 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
646 }
647 }
648
649 /* continue [-a] [proceed-count] [&] */
650 void
651 continue_command (char *args, int from_tty)
652 {
653 int async_exec = 0;
654 int all_threads = 0;
655 ERROR_NO_INFERIOR;
656
657 /* Find out whether we must run in the background. */
658 if (args != NULL)
659 async_exec = strip_bg_char (&args);
660
661 /* If we must run in the background, but the target can't do it,
662 error out. */
663 if (async_exec && !target_can_async_p ())
664 error (_("Asynchronous execution not supported on this target."));
665
666 /* If we are not asked to run in the bg, then prepare to run in the
667 foreground, synchronously. */
668 if (!async_exec && target_can_async_p ())
669 {
670 /* Simulate synchronous execution */
671 async_disable_stdin ();
672 }
673
674 if (args != NULL)
675 {
676 if (strncmp (args, "-a", sizeof ("-a") - 1) == 0)
677 {
678 all_threads = 1;
679 args += sizeof ("-a") - 1;
680 if (*args == '\0')
681 args = NULL;
682 }
683 }
684
685 if (!non_stop && all_threads)
686 error (_("`-a' is meaningless in all-stop mode."));
687
688 if (args != NULL && all_threads)
689 error (_("\
690 Can't resume all threads and specify proceed count simultaneously."));
691
692 /* If we have an argument left, set proceed count of breakpoint we
693 stopped at. */
694 if (args != NULL)
695 {
696 bpstat bs = NULL;
697 int num, stat;
698 int stopped = 0;
699 struct thread_info *tp;
700
701 if (non_stop)
702 tp = find_thread_pid (inferior_ptid);
703 else
704 {
705 ptid_t last_ptid;
706 struct target_waitstatus ws;
707
708 get_last_target_status (&last_ptid, &ws);
709 tp = find_thread_pid (last_ptid);
710 }
711 if (tp != NULL)
712 bs = tp->stop_bpstat;
713
714 while ((stat = bpstat_num (&bs, &num)) != 0)
715 if (stat > 0)
716 {
717 set_ignore_count (num,
718 parse_and_eval_long (args) - 1,
719 from_tty);
720 /* set_ignore_count prints a message ending with a period.
721 So print two spaces before "Continuing.". */
722 if (from_tty)
723 printf_filtered (" ");
724 stopped = 1;
725 }
726
727 if (!stopped && from_tty)
728 {
729 printf_filtered
730 ("Not stopped at any breakpoint; argument ignored.\n");
731 }
732 }
733
734 if (from_tty)
735 printf_filtered (_("Continuing.\n"));
736
737 continue_1 (all_threads);
738 }
739 \f
740 /* Step until outside of current statement. */
741
742 static void
743 step_command (char *count_string, int from_tty)
744 {
745 step_1 (0, 0, count_string);
746 }
747
748 /* Likewise, but skip over subroutine calls as if single instructions. */
749
750 static void
751 next_command (char *count_string, int from_tty)
752 {
753 step_1 (1, 0, count_string);
754 }
755
756 /* Likewise, but step only one instruction. */
757
758 void
759 stepi_command (char *count_string, int from_tty)
760 {
761 step_1 (0, 1, count_string);
762 }
763
764 void
765 nexti_command (char *count_string, int from_tty)
766 {
767 step_1 (1, 1, count_string);
768 }
769
770 static void
771 delete_longjmp_breakpoint_cleanup (void *arg)
772 {
773 int thread = * (int *) arg;
774 delete_longjmp_breakpoint (thread);
775 }
776
777 static void
778 step_1 (int skip_subroutines, int single_inst, char *count_string)
779 {
780 int count = 1;
781 struct frame_info *frame;
782 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL);
783 int async_exec = 0;
784 int thread = -1;
785
786 ERROR_NO_INFERIOR;
787 ensure_not_running ();
788
789 if (count_string)
790 async_exec = strip_bg_char (&count_string);
791
792 /* If we get a request for running in the bg but the target
793 doesn't support it, error out. */
794 if (async_exec && !target_can_async_p ())
795 error (_("Asynchronous execution not supported on this target."));
796
797 /* If we don't get a request of running in the bg, then we need
798 to simulate synchronous (fg) execution. */
799 if (!async_exec && target_can_async_p ())
800 {
801 /* Simulate synchronous execution */
802 async_disable_stdin ();
803 }
804
805 count = count_string ? parse_and_eval_long (count_string) : 1;
806
807 if (!single_inst || skip_subroutines) /* leave si command alone */
808 {
809 if (in_thread_list (inferior_ptid))
810 thread = pid_to_thread_id (inferior_ptid);
811
812 set_longjmp_breakpoint ();
813
814 make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
815 }
816
817 /* In synchronous case, all is well; each step_once call will step once. */
818 if (!target_can_async_p ())
819 {
820 for (; count > 0; count--)
821 {
822 struct thread_info *tp;
823 step_once (skip_subroutines, single_inst, count, thread);
824
825 if (target_has_execution
826 && !ptid_equal (inferior_ptid, null_ptid))
827 tp = inferior_thread ();
828 else
829 tp = NULL;
830
831 if (!tp || !tp->stop_step || !tp->step_multi)
832 {
833 /* If we stopped for some reason that is not stepping
834 there are no further steps to make. */
835 if (tp)
836 tp->step_multi = 0;
837 break;
838 }
839 }
840
841 do_cleanups (cleanups);
842 }
843 else
844 {
845 /* In the case of an asynchronous target things get complicated;
846 do only one step for now, before returning control to the
847 event loop. Let the continuation figure out how many other
848 steps we need to do, and handle them one at the time, through
849 step_once. */
850 step_once (skip_subroutines, single_inst, count, thread);
851
852 /* We are running, and the continuation is installed. It will
853 disable the longjmp breakpoint as appropriate. */
854 discard_cleanups (cleanups);
855 }
856 }
857
858 struct step_1_continuation_args
859 {
860 int count;
861 int skip_subroutines;
862 int single_inst;
863 int thread;
864 };
865
866 /* Called after we are done with one step operation, to check whether
867 we need to step again, before we print the prompt and return control
868 to the user. If count is > 1, we will need to do one more call to
869 proceed(), via step_once(). Basically it is like step_once and
870 step_1_continuation are co-recursive. */
871 static void
872 step_1_continuation (void *args)
873 {
874 struct step_1_continuation_args *a = args;
875
876 if (target_has_execution)
877 {
878 struct thread_info *tp;
879
880 tp = inferior_thread ();
881 if (tp->step_multi && tp->stop_step)
882 {
883 /* There are more steps to make, and we did stop due to
884 ending a stepping range. Do another step. */
885 step_once (a->skip_subroutines, a->single_inst,
886 a->count - 1, a->thread);
887 return;
888 }
889 tp->step_multi = 0;
890 }
891
892 /* We either stopped for some reason that is not stepping, or there
893 are no further steps to make. Cleanup. */
894 if (!a->single_inst || a->skip_subroutines)
895 delete_longjmp_breakpoint (a->thread);
896 }
897
898 /* Do just one step operation. This is useful to implement the 'step
899 n' kind of commands. In case of asynchronous targets, we will have
900 to set up a continuation to be done after the target stops (after
901 this one step). For synch targets, the caller handles further
902 stepping. */
903
904 static void
905 step_once (int skip_subroutines, int single_inst, int count, int thread)
906 {
907 struct frame_info *frame;
908
909 if (count > 0)
910 {
911 /* Don't assume THREAD is a valid thread id. It is set to -1 if
912 the longjmp breakpoint was not required. Use the
913 INFERIOR_PTID thread instead, which is the same thread when
914 THREAD is set. */
915 struct thread_info *tp = inferior_thread ();
916 clear_proceed_status ();
917
918 frame = get_current_frame ();
919 tp->step_frame_id = get_frame_id (frame);
920
921 if (!single_inst)
922 {
923 CORE_ADDR pc;
924
925 pc = get_frame_pc (frame);
926 find_pc_line_pc_range (pc,
927 &tp->step_range_start, &tp->step_range_end);
928
929 /* If we have no line info, switch to stepi mode. */
930 if (tp->step_range_end == 0 && step_stop_if_no_debug)
931 {
932 tp->step_range_start = tp->step_range_end = 1;
933 }
934 else if (tp->step_range_end == 0)
935 {
936 char *name;
937 if (find_pc_partial_function (pc, &name,
938 &tp->step_range_start,
939 &tp->step_range_end) == 0)
940 error (_("Cannot find bounds of current function"));
941
942 target_terminal_ours ();
943 printf_filtered (_("\
944 Single stepping until exit from function %s, \n\
945 which has no line number information.\n"), name);
946 }
947 }
948 else
949 {
950 /* Say we are stepping, but stop after one insn whatever it does. */
951 tp->step_range_start = tp->step_range_end = 1;
952 if (!skip_subroutines)
953 /* It is stepi.
954 Don't step over function calls, not even to functions lacking
955 line numbers. */
956 tp->step_over_calls = STEP_OVER_NONE;
957 }
958
959 if (skip_subroutines)
960 tp->step_over_calls = STEP_OVER_ALL;
961
962 tp->step_multi = (count > 1);
963 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
964
965 /* For async targets, register a continuation to do any
966 additional steps. For sync targets, the caller will handle
967 further stepping. */
968 if (target_can_async_p ())
969 {
970 struct step_1_continuation_args *args;
971
972 args = xmalloc (sizeof (*args));
973 args->skip_subroutines = skip_subroutines;
974 args->single_inst = single_inst;
975 args->count = count;
976 args->thread = thread;
977
978 add_intermediate_continuation (tp, step_1_continuation, args, xfree);
979 }
980 }
981 }
982
983 \f
984 /* Continue program at specified address. */
985
986 static void
987 jump_command (char *arg, int from_tty)
988 {
989 CORE_ADDR addr;
990 struct symtabs_and_lines sals;
991 struct symtab_and_line sal;
992 struct symbol *fn;
993 struct symbol *sfn;
994 int async_exec = 0;
995
996 ERROR_NO_INFERIOR;
997 ensure_not_running ();
998
999 /* Find out whether we must run in the background. */
1000 if (arg != NULL)
1001 async_exec = strip_bg_char (&arg);
1002
1003 /* If we must run in the background, but the target can't do it,
1004 error out. */
1005 if (async_exec && !target_can_async_p ())
1006 error (_("Asynchronous execution not supported on this target."));
1007
1008 if (!arg)
1009 error_no_arg (_("starting address"));
1010
1011 sals = decode_line_spec_1 (arg, 1);
1012 if (sals.nelts != 1)
1013 {
1014 error (_("Unreasonable jump request"));
1015 }
1016
1017 sal = sals.sals[0];
1018 xfree (sals.sals);
1019
1020 if (sal.symtab == 0 && sal.pc == 0)
1021 error (_("No source file has been specified."));
1022
1023 resolve_sal_pc (&sal); /* May error out */
1024
1025 /* See if we are trying to jump to another function. */
1026 fn = get_frame_function (get_current_frame ());
1027 sfn = find_pc_function (sal.pc);
1028 if (fn != NULL && sfn != fn)
1029 {
1030 if (!query (_("Line %d is not in `%s'. Jump anyway? "), sal.line,
1031 SYMBOL_PRINT_NAME (fn)))
1032 {
1033 error (_("Not confirmed."));
1034 /* NOTREACHED */
1035 }
1036 }
1037
1038 if (sfn != NULL)
1039 {
1040 fixup_symbol_section (sfn, 0);
1041 if (section_is_overlay (SYMBOL_OBJ_SECTION (sfn)) &&
1042 !section_is_mapped (SYMBOL_OBJ_SECTION (sfn)))
1043 {
1044 if (!query (_("WARNING!!! Destination is in unmapped overlay! Jump anyway? ")))
1045 {
1046 error (_("Not confirmed."));
1047 /* NOTREACHED */
1048 }
1049 }
1050 }
1051
1052 addr = sal.pc;
1053
1054 if (from_tty)
1055 {
1056 printf_filtered (_("Continuing at "));
1057 fputs_filtered (paddress (addr), gdb_stdout);
1058 printf_filtered (".\n");
1059 }
1060
1061 /* If we are not asked to run in the bg, then prepare to run in the
1062 foreground, synchronously. */
1063 if (!async_exec && target_can_async_p ())
1064 {
1065 /* Simulate synchronous execution */
1066 async_disable_stdin ();
1067 }
1068
1069 clear_proceed_status ();
1070 proceed (addr, TARGET_SIGNAL_0, 0);
1071 }
1072 \f
1073
1074 /* Go to line or address in current procedure */
1075 static void
1076 go_command (char *line_no, int from_tty)
1077 {
1078 if (line_no == (char *) NULL || !*line_no)
1079 printf_filtered (_("Usage: go <location>\n"));
1080 else
1081 {
1082 tbreak_command (line_no, from_tty);
1083 jump_command (line_no, from_tty);
1084 }
1085 }
1086 \f
1087
1088 /* Continue program giving it specified signal. */
1089
1090 static void
1091 signal_command (char *signum_exp, int from_tty)
1092 {
1093 enum target_signal oursig;
1094 int async_exec = 0;
1095
1096 dont_repeat (); /* Too dangerous. */
1097 ERROR_NO_INFERIOR;
1098 ensure_not_running ();
1099
1100 /* Find out whether we must run in the background. */
1101 if (signum_exp != NULL)
1102 async_exec = strip_bg_char (&signum_exp);
1103
1104 /* If we must run in the background, but the target can't do it,
1105 error out. */
1106 if (async_exec && !target_can_async_p ())
1107 error (_("Asynchronous execution not supported on this target."));
1108
1109 /* If we are not asked to run in the bg, then prepare to run in the
1110 foreground, synchronously. */
1111 if (!async_exec && target_can_async_p ())
1112 {
1113 /* Simulate synchronous execution. */
1114 async_disable_stdin ();
1115 }
1116
1117 if (!signum_exp)
1118 error_no_arg (_("signal number"));
1119
1120 /* It would be even slicker to make signal names be valid expressions,
1121 (the type could be "enum $signal" or some such), then the user could
1122 assign them to convenience variables. */
1123 oursig = target_signal_from_name (signum_exp);
1124
1125 if (oursig == TARGET_SIGNAL_UNKNOWN)
1126 {
1127 /* No, try numeric. */
1128 int num = parse_and_eval_long (signum_exp);
1129
1130 if (num == 0)
1131 oursig = TARGET_SIGNAL_0;
1132 else
1133 oursig = target_signal_from_command (num);
1134 }
1135
1136 if (from_tty)
1137 {
1138 if (oursig == TARGET_SIGNAL_0)
1139 printf_filtered (_("Continuing with no signal.\n"));
1140 else
1141 printf_filtered (_("Continuing with signal %s.\n"),
1142 target_signal_to_name (oursig));
1143 }
1144
1145 clear_proceed_status ();
1146 proceed ((CORE_ADDR) -1, oursig, 0);
1147 }
1148
1149 /* Proceed until we reach a different source line with pc greater than
1150 our current one or exit the function. We skip calls in both cases.
1151
1152 Note that eventually this command should probably be changed so
1153 that only source lines are printed out when we hit the breakpoint
1154 we set. This may involve changes to wait_for_inferior and the
1155 proceed status code. */
1156
1157 static void
1158 until_next_command (int from_tty)
1159 {
1160 struct frame_info *frame;
1161 CORE_ADDR pc;
1162 struct symbol *func;
1163 struct symtab_and_line sal;
1164 struct thread_info *tp = inferior_thread ();
1165
1166 clear_proceed_status ();
1167
1168 frame = get_current_frame ();
1169
1170 /* Step until either exited from this function or greater
1171 than the current line (if in symbolic section) or pc (if
1172 not). */
1173
1174 pc = get_frame_pc (frame);
1175 func = find_pc_function (pc);
1176
1177 if (!func)
1178 {
1179 struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (pc);
1180
1181 if (msymbol == NULL)
1182 error (_("Execution is not within a known function."));
1183
1184 tp->step_range_start = SYMBOL_VALUE_ADDRESS (msymbol);
1185 tp->step_range_end = pc;
1186 }
1187 else
1188 {
1189 sal = find_pc_line (pc, 0);
1190
1191 tp->step_range_start = BLOCK_START (SYMBOL_BLOCK_VALUE (func));
1192 tp->step_range_end = sal.end;
1193 }
1194
1195 tp->step_over_calls = STEP_OVER_ALL;
1196 tp->step_frame_id = get_frame_id (frame);
1197
1198 tp->step_multi = 0; /* Only one call to proceed */
1199
1200 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
1201 }
1202
1203 static void
1204 until_command (char *arg, int from_tty)
1205 {
1206 int async_exec = 0;
1207
1208 if (!target_has_execution)
1209 error (_("The program is not running."));
1210
1211 /* Find out whether we must run in the background. */
1212 if (arg != NULL)
1213 async_exec = strip_bg_char (&arg);
1214
1215 /* If we must run in the background, but the target can't do it,
1216 error out. */
1217 if (async_exec && !target_can_async_p ())
1218 error (_("Asynchronous execution not supported on this target."));
1219
1220 /* If we are not asked to run in the bg, then prepare to run in the
1221 foreground, synchronously. */
1222 if (!async_exec && target_can_async_p ())
1223 {
1224 /* Simulate synchronous execution */
1225 async_disable_stdin ();
1226 }
1227
1228 if (arg)
1229 until_break_command (arg, from_tty, 0);
1230 else
1231 until_next_command (from_tty);
1232 }
1233
1234 static void
1235 advance_command (char *arg, int from_tty)
1236 {
1237 int async_exec = 0;
1238
1239 if (!target_has_execution)
1240 error (_("The program is not running."));
1241
1242 if (arg == NULL)
1243 error_no_arg (_("a location"));
1244
1245 /* Find out whether we must run in the background. */
1246 if (arg != NULL)
1247 async_exec = strip_bg_char (&arg);
1248
1249 /* If we must run in the background, but the target can't do it,
1250 error out. */
1251 if (async_exec && !target_can_async_p ())
1252 error (_("Asynchronous execution not supported on this target."));
1253
1254 /* If we are not asked to run in the bg, then prepare to run in the
1255 foreground, synchronously. */
1256 if (!async_exec && target_can_async_p ())
1257 {
1258 /* Simulate synchronous execution. */
1259 async_disable_stdin ();
1260 }
1261
1262 until_break_command (arg, from_tty, 1);
1263 }
1264 \f
1265 /* Print the result of a function at the end of a 'finish' command. */
1266
1267 static void
1268 print_return_value (struct type *func_type, struct type *value_type)
1269 {
1270 struct gdbarch *gdbarch = current_gdbarch;
1271 struct cleanup *old_chain;
1272 struct ui_stream *stb;
1273 struct value *value;
1274
1275 CHECK_TYPEDEF (value_type);
1276 gdb_assert (TYPE_CODE (value_type) != TYPE_CODE_VOID);
1277
1278 /* FIXME: 2003-09-27: When returning from a nested inferior function
1279 call, it's possible (with no help from the architecture vector)
1280 to locate and return/print a "struct return" value. This is just
1281 a more complicated case of what is already being done in in the
1282 inferior function call code. In fact, when inferior function
1283 calls are made async, this will likely be made the norm. */
1284
1285 switch (gdbarch_return_value (gdbarch, func_type, value_type,
1286 NULL, NULL, NULL))
1287 {
1288 case RETURN_VALUE_REGISTER_CONVENTION:
1289 case RETURN_VALUE_ABI_RETURNS_ADDRESS:
1290 case RETURN_VALUE_ABI_PRESERVES_ADDRESS:
1291 value = allocate_value (value_type);
1292 gdbarch_return_value (gdbarch, func_type, value_type, stop_registers,
1293 value_contents_raw (value), NULL);
1294 break;
1295 case RETURN_VALUE_STRUCT_CONVENTION:
1296 value = NULL;
1297 break;
1298 default:
1299 internal_error (__FILE__, __LINE__, _("bad switch"));
1300 }
1301
1302 if (value)
1303 {
1304 struct value_print_options opts;
1305
1306 /* Print it. */
1307 stb = ui_out_stream_new (uiout);
1308 old_chain = make_cleanup_ui_out_stream_delete (stb);
1309 ui_out_text (uiout, "Value returned is ");
1310 ui_out_field_fmt (uiout, "gdb-result-var", "$%d",
1311 record_latest_value (value));
1312 ui_out_text (uiout, " = ");
1313 get_raw_print_options (&opts);
1314 value_print (value, stb->stream, &opts);
1315 ui_out_field_stream (uiout, "return-value", stb);
1316 ui_out_text (uiout, "\n");
1317 do_cleanups (old_chain);
1318 }
1319 else
1320 {
1321 ui_out_text (uiout, "Value returned has type: ");
1322 ui_out_field_string (uiout, "return-type", TYPE_NAME (value_type));
1323 ui_out_text (uiout, ".");
1324 ui_out_text (uiout, " Cannot determine contents\n");
1325 }
1326 }
1327
1328 /* Stuff that needs to be done by the finish command after the target
1329 has stopped. In asynchronous mode, we wait for the target to stop
1330 in the call to poll or select in the event loop, so it is
1331 impossible to do all the stuff as part of the finish_command
1332 function itself. The only chance we have to complete this command
1333 is in fetch_inferior_event, which is called by the event loop as
1334 soon as it detects that the target has stopped. This function is
1335 called via the cmd_continuation pointer. */
1336
1337 struct finish_command_continuation_args
1338 {
1339 struct breakpoint *breakpoint;
1340 struct symbol *function;
1341 };
1342
1343 static void
1344 finish_command_continuation (void *arg)
1345 {
1346 struct finish_command_continuation_args *a = arg;
1347 struct thread_info *tp = NULL;
1348 bpstat bs = NULL;
1349
1350 if (!ptid_equal (inferior_ptid, null_ptid)
1351 && target_has_execution
1352 && is_stopped (inferior_ptid))
1353 {
1354 tp = inferior_thread ();
1355 bs = tp->stop_bpstat;
1356 }
1357
1358 if (bpstat_find_breakpoint (bs, a->breakpoint) != NULL
1359 && a->function != NULL)
1360 {
1361 struct type *value_type;
1362
1363 value_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (a->function));
1364 if (!value_type)
1365 internal_error (__FILE__, __LINE__,
1366 _("finish_command: function has no target type"));
1367
1368 if (TYPE_CODE (value_type) != TYPE_CODE_VOID)
1369 print_return_value (SYMBOL_TYPE (a->function), value_type);
1370 }
1371
1372 /* We suppress normal call of normal_stop observer and do it here so
1373 that the *stopped notification includes the return value. */
1374 if (bs != NULL && tp->proceed_to_finish)
1375 observer_notify_normal_stop (bs, 1 /* print frame */);
1376 delete_breakpoint (a->breakpoint);
1377 }
1378
1379 static void
1380 finish_command_continuation_free_arg (void *arg)
1381 {
1382 xfree (arg);
1383 }
1384
1385 /* finish_backward -- helper function for finish_command. */
1386
1387 static void
1388 finish_backward (struct symbol *function)
1389 {
1390 struct symtab_and_line sal;
1391 struct thread_info *tp = inferior_thread ();
1392 struct breakpoint *breakpoint;
1393 struct cleanup *old_chain;
1394 CORE_ADDR pc;
1395 CORE_ADDR func_addr;
1396 int back_up;
1397
1398 pc = get_frame_pc (get_current_frame ());
1399
1400 if (find_pc_partial_function (pc, NULL, &func_addr, NULL) == 0)
1401 internal_error (__FILE__, __LINE__,
1402 _("Finish: couldn't find function."));
1403
1404 sal = find_pc_line (func_addr, 0);
1405
1406 /* We don't need a return value. */
1407 tp->proceed_to_finish = 0;
1408 /* Special case: if we're sitting at the function entry point,
1409 then all we need to do is take a reverse singlestep. We
1410 don't need to set a breakpoint, and indeed it would do us
1411 no good to do so.
1412
1413 Note that this can only happen at frame #0, since there's
1414 no way that a function up the stack can have a return address
1415 that's equal to its entry point. */
1416
1417 if (sal.pc != pc)
1418 {
1419 /* Set breakpoint and continue. */
1420 breakpoint =
1421 set_momentary_breakpoint (sal,
1422 get_frame_id (get_selected_frame (NULL)),
1423 bp_breakpoint);
1424 /* Tell the breakpoint to keep quiet. We won't be done
1425 until we've done another reverse single-step. */
1426 make_breakpoint_silent (breakpoint);
1427 old_chain = make_cleanup_delete_breakpoint (breakpoint);
1428 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
1429 /* We will be stopped when proceed returns. */
1430 back_up = bpstat_find_breakpoint (tp->stop_bpstat, breakpoint) != NULL;
1431 do_cleanups (old_chain);
1432 }
1433 else
1434 back_up = 1;
1435 if (back_up)
1436 {
1437 /* If in fact we hit the step-resume breakpoint (and not
1438 some other breakpoint), then we're almost there --
1439 we just need to back up by one more single-step. */
1440 tp->step_range_start = tp->step_range_end = 1;
1441 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
1442 }
1443 return;
1444 }
1445
1446 /* finish_forward -- helper function for finish_command. */
1447
1448 static void
1449 finish_forward (struct symbol *function, struct frame_info *frame)
1450 {
1451 struct symtab_and_line sal;
1452 struct thread_info *tp = inferior_thread ();
1453 struct breakpoint *breakpoint;
1454 struct cleanup *old_chain;
1455 struct finish_command_continuation_args *cargs;
1456
1457 sal = find_pc_line (get_frame_pc (frame), 0);
1458 sal.pc = get_frame_pc (frame);
1459
1460 breakpoint = set_momentary_breakpoint (sal, get_frame_id (frame),
1461 bp_finish);
1462
1463 old_chain = make_cleanup_delete_breakpoint (breakpoint);
1464
1465 tp->proceed_to_finish = 1; /* We want stop_registers, please... */
1466 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
1467
1468 cargs = xmalloc (sizeof (*cargs));
1469
1470 cargs->breakpoint = breakpoint;
1471 cargs->function = function;
1472 add_continuation (tp, finish_command_continuation, cargs,
1473 finish_command_continuation_free_arg);
1474
1475 discard_cleanups (old_chain);
1476 if (!target_can_async_p ())
1477 do_all_continuations ();
1478 }
1479
1480 /* "finish": Set a temporary breakpoint at the place the selected
1481 frame will return to, then continue. */
1482
1483 static void
1484 finish_command (char *arg, int from_tty)
1485 {
1486 struct frame_info *frame;
1487 struct symbol *function;
1488
1489 int async_exec = 0;
1490
1491 /* Find out whether we must run in the background. */
1492 if (arg != NULL)
1493 async_exec = strip_bg_char (&arg);
1494
1495 /* If we must run in the background, but the target can't do it,
1496 error out. */
1497 if (async_exec && !target_can_async_p ())
1498 error (_("Asynchronous execution not supported on this target."));
1499
1500 /* Don't try to async in reverse. */
1501 if (async_exec && execution_direction == EXEC_REVERSE)
1502 error (_("Asynchronous 'finish' not supported in reverse."));
1503
1504 /* If we are not asked to run in the bg, then prepare to run in the
1505 foreground, synchronously. */
1506 if (!async_exec && target_can_async_p ())
1507 {
1508 /* Simulate synchronous execution. */
1509 async_disable_stdin ();
1510 }
1511
1512 if (arg)
1513 error (_("The \"finish\" command does not take any arguments."));
1514 if (!target_has_execution)
1515 error (_("The program is not running."));
1516
1517 frame = get_prev_frame (get_selected_frame (_("No selected frame.")));
1518 if (frame == 0)
1519 error (_("\"finish\" not meaningful in the outermost frame."));
1520
1521 clear_proceed_status ();
1522
1523 /* Find the function we will return from. */
1524
1525 function = find_pc_function (get_frame_pc (get_selected_frame (NULL)));
1526
1527 /* Print info on the selected frame, including level number but not
1528 source. */
1529 if (from_tty)
1530 {
1531 if (execution_direction == EXEC_REVERSE)
1532 printf_filtered (_("Run back to call of "));
1533 else
1534 printf_filtered (_("Run till exit from "));
1535
1536 print_stack_frame (get_selected_frame (NULL), 1, LOCATION);
1537 }
1538
1539 if (execution_direction == EXEC_REVERSE)
1540 finish_backward (function);
1541 else
1542 finish_forward (function, frame);
1543 }
1544 \f
1545
1546 static void
1547 program_info (char *args, int from_tty)
1548 {
1549 bpstat bs;
1550 int num, stat;
1551 struct thread_info *tp;
1552 ptid_t ptid;
1553
1554 if (!target_has_execution)
1555 {
1556 printf_filtered (_("The program being debugged is not being run.\n"));
1557 return;
1558 }
1559
1560 if (non_stop)
1561 ptid = inferior_ptid;
1562 else
1563 {
1564 struct target_waitstatus ws;
1565 get_last_target_status (&ptid, &ws);
1566 }
1567
1568 if (ptid_equal (ptid, null_ptid) || is_exited (ptid))
1569 error (_("Invalid selected thread."));
1570 else if (is_running (ptid))
1571 error (_("Selected thread is running."));
1572
1573 tp = find_thread_pid (ptid);
1574 bs = tp->stop_bpstat;
1575 stat = bpstat_num (&bs, &num);
1576
1577 target_files_info ();
1578 printf_filtered (_("Program stopped at %s.\n"), paddress (stop_pc));
1579 if (tp->stop_step)
1580 printf_filtered (_("It stopped after being stepped.\n"));
1581 else if (stat != 0)
1582 {
1583 /* There may be several breakpoints in the same place, so this
1584 isn't as strange as it seems. */
1585 while (stat != 0)
1586 {
1587 if (stat < 0)
1588 {
1589 printf_filtered (_("\
1590 It stopped at a breakpoint that has since been deleted.\n"));
1591 }
1592 else
1593 printf_filtered (_("It stopped at breakpoint %d.\n"), num);
1594 stat = bpstat_num (&bs, &num);
1595 }
1596 }
1597 else if (tp->stop_signal != TARGET_SIGNAL_0)
1598 {
1599 printf_filtered (_("It stopped with signal %s, %s.\n"),
1600 target_signal_to_name (tp->stop_signal),
1601 target_signal_to_string (tp->stop_signal));
1602 }
1603
1604 if (!from_tty)
1605 {
1606 printf_filtered (_("\
1607 Type \"info stack\" or \"info registers\" for more information.\n"));
1608 }
1609 }
1610 \f
1611 static void
1612 environment_info (char *var, int from_tty)
1613 {
1614 if (var)
1615 {
1616 char *val = get_in_environ (inferior_environ, var);
1617 if (val)
1618 {
1619 puts_filtered (var);
1620 puts_filtered (" = ");
1621 puts_filtered (val);
1622 puts_filtered ("\n");
1623 }
1624 else
1625 {
1626 puts_filtered ("Environment variable \"");
1627 puts_filtered (var);
1628 puts_filtered ("\" not defined.\n");
1629 }
1630 }
1631 else
1632 {
1633 char **vector = environ_vector (inferior_environ);
1634 while (*vector)
1635 {
1636 puts_filtered (*vector++);
1637 puts_filtered ("\n");
1638 }
1639 }
1640 }
1641
1642 static void
1643 set_environment_command (char *arg, int from_tty)
1644 {
1645 char *p, *val, *var;
1646 int nullset = 0;
1647
1648 if (arg == 0)
1649 error_no_arg (_("environment variable and value"));
1650
1651 /* Find seperation between variable name and value */
1652 p = (char *) strchr (arg, '=');
1653 val = (char *) strchr (arg, ' ');
1654
1655 if (p != 0 && val != 0)
1656 {
1657 /* We have both a space and an equals. If the space is before the
1658 equals, walk forward over the spaces til we see a nonspace
1659 (possibly the equals). */
1660 if (p > val)
1661 while (*val == ' ')
1662 val++;
1663
1664 /* Now if the = is after the char following the spaces,
1665 take the char following the spaces. */
1666 if (p > val)
1667 p = val - 1;
1668 }
1669 else if (val != 0 && p == 0)
1670 p = val;
1671
1672 if (p == arg)
1673 error_no_arg (_("environment variable to set"));
1674
1675 if (p == 0 || p[1] == 0)
1676 {
1677 nullset = 1;
1678 if (p == 0)
1679 p = arg + strlen (arg); /* So that savestring below will work */
1680 }
1681 else
1682 {
1683 /* Not setting variable value to null */
1684 val = p + 1;
1685 while (*val == ' ' || *val == '\t')
1686 val++;
1687 }
1688
1689 while (p != arg && (p[-1] == ' ' || p[-1] == '\t'))
1690 p--;
1691
1692 var = savestring (arg, p - arg);
1693 if (nullset)
1694 {
1695 printf_filtered (_("\
1696 Setting environment variable \"%s\" to null value.\n"),
1697 var);
1698 set_in_environ (inferior_environ, var, "");
1699 }
1700 else
1701 set_in_environ (inferior_environ, var, val);
1702 xfree (var);
1703 }
1704
1705 static void
1706 unset_environment_command (char *var, int from_tty)
1707 {
1708 if (var == 0)
1709 {
1710 /* If there is no argument, delete all environment variables.
1711 Ask for confirmation if reading from the terminal. */
1712 if (!from_tty || query (_("Delete all environment variables? ")))
1713 {
1714 free_environ (inferior_environ);
1715 inferior_environ = make_environ ();
1716 }
1717 }
1718 else
1719 unset_in_environ (inferior_environ, var);
1720 }
1721
1722 /* Handle the execution path (PATH variable) */
1723
1724 static const char path_var_name[] = "PATH";
1725
1726 static void
1727 path_info (char *args, int from_tty)
1728 {
1729 puts_filtered ("Executable and object file path: ");
1730 puts_filtered (get_in_environ (inferior_environ, path_var_name));
1731 puts_filtered ("\n");
1732 }
1733
1734 /* Add zero or more directories to the front of the execution path. */
1735
1736 static void
1737 path_command (char *dirname, int from_tty)
1738 {
1739 char *exec_path;
1740 char *env;
1741 dont_repeat ();
1742 env = get_in_environ (inferior_environ, path_var_name);
1743 /* Can be null if path is not set */
1744 if (!env)
1745 env = "";
1746 exec_path = xstrdup (env);
1747 mod_path (dirname, &exec_path);
1748 set_in_environ (inferior_environ, path_var_name, exec_path);
1749 xfree (exec_path);
1750 if (from_tty)
1751 path_info ((char *) NULL, from_tty);
1752 }
1753 \f
1754
1755 /* Print out the machine register regnum. If regnum is -1, print all
1756 registers (print_all == 1) or all non-float and non-vector
1757 registers (print_all == 0).
1758
1759 For most machines, having all_registers_info() print the
1760 register(s) one per line is good enough. If a different format is
1761 required, (eg, for MIPS or Pyramid 90x, which both have lots of
1762 regs), or there is an existing convention for showing all the
1763 registers, define the architecture method PRINT_REGISTERS_INFO to
1764 provide that format. */
1765
1766 void
1767 default_print_registers_info (struct gdbarch *gdbarch,
1768 struct ui_file *file,
1769 struct frame_info *frame,
1770 int regnum, int print_all)
1771 {
1772 int i;
1773 const int numregs = gdbarch_num_regs (gdbarch)
1774 + gdbarch_num_pseudo_regs (gdbarch);
1775 gdb_byte buffer[MAX_REGISTER_SIZE];
1776
1777 for (i = 0; i < numregs; i++)
1778 {
1779 /* Decide between printing all regs, non-float / vector regs, or
1780 specific reg. */
1781 if (regnum == -1)
1782 {
1783 if (print_all)
1784 {
1785 if (!gdbarch_register_reggroup_p (gdbarch, i, all_reggroup))
1786 continue;
1787 }
1788 else
1789 {
1790 if (!gdbarch_register_reggroup_p (gdbarch, i, general_reggroup))
1791 continue;
1792 }
1793 }
1794 else
1795 {
1796 if (i != regnum)
1797 continue;
1798 }
1799
1800 /* If the register name is empty, it is undefined for this
1801 processor, so don't display anything. */
1802 if (gdbarch_register_name (gdbarch, i) == NULL
1803 || *(gdbarch_register_name (gdbarch, i)) == '\0')
1804 continue;
1805
1806 fputs_filtered (gdbarch_register_name (gdbarch, i), file);
1807 print_spaces_filtered (15 - strlen (gdbarch_register_name
1808 (gdbarch, i)), file);
1809
1810 /* Get the data in raw format. */
1811 if (! frame_register_read (frame, i, buffer))
1812 {
1813 fprintf_filtered (file, "*value not available*\n");
1814 continue;
1815 }
1816
1817 /* If virtual format is floating, print it that way, and in raw
1818 hex. */
1819 if (TYPE_CODE (register_type (gdbarch, i)) == TYPE_CODE_FLT
1820 || TYPE_CODE (register_type (gdbarch, i)) == TYPE_CODE_DECFLOAT)
1821 {
1822 int j;
1823 struct value_print_options opts;
1824
1825 get_user_print_options (&opts);
1826 opts.deref_ref = 1;
1827 val_print (register_type (gdbarch, i), buffer, 0, 0,
1828 file, 0, &opts, current_language);
1829
1830 fprintf_filtered (file, "\t(raw 0x");
1831 for (j = 0; j < register_size (gdbarch, i); j++)
1832 {
1833 int idx;
1834 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
1835 idx = j;
1836 else
1837 idx = register_size (gdbarch, i) - 1 - j;
1838 fprintf_filtered (file, "%02x", (unsigned char) buffer[idx]);
1839 }
1840 fprintf_filtered (file, ")");
1841 }
1842 else
1843 {
1844 struct value_print_options opts;
1845
1846 /* Print the register in hex. */
1847 get_formatted_print_options (&opts, 'x');
1848 opts.deref_ref = 1;
1849 val_print (register_type (gdbarch, i), buffer, 0, 0,
1850 file, 0, &opts,
1851 current_language);
1852 /* If not a vector register, print it also according to its
1853 natural format. */
1854 if (TYPE_VECTOR (register_type (gdbarch, i)) == 0)
1855 {
1856 get_user_print_options (&opts);
1857 opts.deref_ref = 1;
1858 fprintf_filtered (file, "\t");
1859 val_print (register_type (gdbarch, i), buffer, 0, 0,
1860 file, 0, &opts, current_language);
1861 }
1862 }
1863
1864 fprintf_filtered (file, "\n");
1865 }
1866 }
1867
1868 void
1869 registers_info (char *addr_exp, int fpregs)
1870 {
1871 struct frame_info *frame;
1872 struct gdbarch *gdbarch;
1873 int regnum, numregs;
1874 char *end;
1875
1876 if (!target_has_registers)
1877 error (_("The program has no registers now."));
1878 frame = get_selected_frame (NULL);
1879 gdbarch = get_frame_arch (frame);
1880
1881 if (!addr_exp)
1882 {
1883 gdbarch_print_registers_info (gdbarch, gdb_stdout,
1884 frame, -1, fpregs);
1885 return;
1886 }
1887
1888 while (*addr_exp != '\0')
1889 {
1890 char *start;
1891 const char *end;
1892
1893 /* Keep skipping leading white space. */
1894 if (isspace ((*addr_exp)))
1895 {
1896 addr_exp++;
1897 continue;
1898 }
1899
1900 /* Discard any leading ``$''. Check that there is something
1901 resembling a register following it. */
1902 if (addr_exp[0] == '$')
1903 addr_exp++;
1904 if (isspace ((*addr_exp)) || (*addr_exp) == '\0')
1905 error (_("Missing register name"));
1906
1907 /* Find the start/end of this register name/num/group. */
1908 start = addr_exp;
1909 while ((*addr_exp) != '\0' && !isspace ((*addr_exp)))
1910 addr_exp++;
1911 end = addr_exp;
1912
1913 /* Figure out what we've found and display it. */
1914
1915 /* A register name? */
1916 {
1917 int regnum = user_reg_map_name_to_regnum (gdbarch, start, end - start);
1918 if (regnum >= 0)
1919 {
1920 /* User registers lie completely outside of the range of
1921 normal registers. Catch them early so that the target
1922 never sees them. */
1923 if (regnum >= gdbarch_num_regs (gdbarch)
1924 + gdbarch_num_pseudo_regs (gdbarch))
1925 {
1926 struct value_print_options opts;
1927 struct value *val = value_of_user_reg (regnum, frame);
1928
1929 printf_filtered ("%s: ", start);
1930 get_formatted_print_options (&opts, 'x');
1931 print_scalar_formatted (value_contents (val),
1932 check_typedef (value_type (val)),
1933 &opts, 0, gdb_stdout);
1934 printf_filtered ("\n");
1935 }
1936 else
1937 gdbarch_print_registers_info (gdbarch, gdb_stdout,
1938 frame, regnum, fpregs);
1939 continue;
1940 }
1941 }
1942
1943 /* A register group? */
1944 {
1945 struct reggroup *group;
1946 for (group = reggroup_next (gdbarch, NULL);
1947 group != NULL;
1948 group = reggroup_next (gdbarch, group))
1949 {
1950 /* Don't bother with a length check. Should the user
1951 enter a short register group name, go with the first
1952 group that matches. */
1953 if (strncmp (start, reggroup_name (group), end - start) == 0)
1954 break;
1955 }
1956 if (group != NULL)
1957 {
1958 int regnum;
1959 for (regnum = 0;
1960 regnum < gdbarch_num_regs (gdbarch)
1961 + gdbarch_num_pseudo_regs (gdbarch);
1962 regnum++)
1963 {
1964 if (gdbarch_register_reggroup_p (gdbarch, regnum, group))
1965 gdbarch_print_registers_info (gdbarch,
1966 gdb_stdout, frame,
1967 regnum, fpregs);
1968 }
1969 continue;
1970 }
1971 }
1972
1973 /* Nothing matched. */
1974 error (_("Invalid register `%.*s'"), (int) (end - start), start);
1975 }
1976 }
1977
1978 void
1979 all_registers_info (char *addr_exp, int from_tty)
1980 {
1981 registers_info (addr_exp, 1);
1982 }
1983
1984 static void
1985 nofp_registers_info (char *addr_exp, int from_tty)
1986 {
1987 registers_info (addr_exp, 0);
1988 }
1989
1990 static void
1991 print_vector_info (struct gdbarch *gdbarch, struct ui_file *file,
1992 struct frame_info *frame, const char *args)
1993 {
1994 if (gdbarch_print_vector_info_p (gdbarch))
1995 gdbarch_print_vector_info (gdbarch, file, frame, args);
1996 else
1997 {
1998 int regnum;
1999 int printed_something = 0;
2000
2001 for (regnum = 0;
2002 regnum < gdbarch_num_regs (gdbarch)
2003 + gdbarch_num_pseudo_regs (gdbarch);
2004 regnum++)
2005 {
2006 if (gdbarch_register_reggroup_p (gdbarch, regnum, vector_reggroup))
2007 {
2008 printed_something = 1;
2009 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
2010 }
2011 }
2012 if (!printed_something)
2013 fprintf_filtered (file, "No vector information\n");
2014 }
2015 }
2016
2017 static void
2018 vector_info (char *args, int from_tty)
2019 {
2020 if (!target_has_registers)
2021 error (_("The program has no registers now."));
2022
2023 print_vector_info (current_gdbarch, gdb_stdout,
2024 get_selected_frame (NULL), args);
2025 }
2026 \f
2027
2028 /* Used in `attach&' command. ARG is a point to an integer
2029 representing a process id. Proceed threads of this process iff
2030 they stopped due to debugger request, and when they did, they
2031 reported a clean stop (TARGET_SIGNAL_0). Do not proceed threads
2032 that have been explicitly been told to stop. */
2033
2034 static int
2035 proceed_after_attach_callback (struct thread_info *thread,
2036 void *arg)
2037 {
2038 int pid = * (int *) arg;
2039
2040 if (ptid_get_pid (thread->ptid) == pid
2041 && !is_exited (thread->ptid)
2042 && !is_executing (thread->ptid)
2043 && !thread->stop_requested
2044 && thread->stop_signal == TARGET_SIGNAL_0)
2045 {
2046 switch_to_thread (thread->ptid);
2047 clear_proceed_status ();
2048 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
2049 }
2050
2051 return 0;
2052 }
2053
2054 static void
2055 proceed_after_attach (int pid)
2056 {
2057 /* Don't error out if the current thread is running, because
2058 there may be other stopped threads. */
2059 struct cleanup *old_chain;
2060
2061 /* Backup current thread and selected frame. */
2062 old_chain = make_cleanup_restore_current_thread ();
2063
2064 iterate_over_threads (proceed_after_attach_callback, &pid);
2065
2066 /* Restore selected ptid. */
2067 do_cleanups (old_chain);
2068 }
2069
2070 /*
2071 * TODO:
2072 * Should save/restore the tty state since it might be that the
2073 * program to be debugged was started on this tty and it wants
2074 * the tty in some state other than what we want. If it's running
2075 * on another terminal or without a terminal, then saving and
2076 * restoring the tty state is a harmless no-op.
2077 * This only needs to be done if we are attaching to a process.
2078 */
2079
2080 /*
2081 attach_command --
2082 takes a program started up outside of gdb and ``attaches'' to it.
2083 This stops it cold in its tracks and allows us to start debugging it.
2084 and wait for the trace-trap that results from attaching. */
2085
2086 static void
2087 attach_command_post_wait (char *args, int from_tty, int async_exec)
2088 {
2089 char *exec_file;
2090 char *full_exec_path = NULL;
2091 struct inferior *inferior;
2092
2093 inferior = current_inferior ();
2094 inferior->stop_soon = NO_STOP_QUIETLY;
2095
2096 /* If no exec file is yet known, try to determine it from the
2097 process itself. */
2098 exec_file = (char *) get_exec_file (0);
2099 if (!exec_file)
2100 {
2101 exec_file = target_pid_to_exec_file (PIDGET (inferior_ptid));
2102 if (exec_file)
2103 {
2104 /* It's possible we don't have a full path, but rather just a
2105 filename. Some targets, such as HP-UX, don't provide the
2106 full path, sigh.
2107
2108 Attempt to qualify the filename against the source path.
2109 (If that fails, we'll just fall back on the original
2110 filename. Not much more we can do...)
2111 */
2112 if (!source_full_path_of (exec_file, &full_exec_path))
2113 full_exec_path = savestring (exec_file, strlen (exec_file));
2114
2115 exec_file_attach (full_exec_path, from_tty);
2116 symbol_file_add_main (full_exec_path, from_tty);
2117 }
2118 }
2119 else
2120 {
2121 reopen_exec_file ();
2122 reread_symbols ();
2123 }
2124
2125 /* Take any necessary post-attaching actions for this platform. */
2126 target_post_attach (PIDGET (inferior_ptid));
2127
2128 post_create_inferior (&current_target, from_tty);
2129
2130 /* Install inferior's terminal modes. */
2131 target_terminal_inferior ();
2132
2133 if (async_exec)
2134 {
2135 /* The user requested an `attach&', so be sure to leave threads
2136 that didn't get a signal running. */
2137
2138 /* Immediatelly resume all suspended threads of this inferior,
2139 and this inferior only. This should have no effect on
2140 already running threads. If a thread has been stopped with a
2141 signal, leave it be. */
2142 if (non_stop)
2143 proceed_after_attach (inferior->pid);
2144 else
2145 {
2146 if (inferior_thread ()->stop_signal == TARGET_SIGNAL_0)
2147 {
2148 clear_proceed_status ();
2149 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
2150 }
2151 }
2152 }
2153 else
2154 {
2155 /* The user requested a plain `attach', so be sure to leave
2156 the inferior stopped. */
2157
2158 if (target_can_async_p ())
2159 async_enable_stdin ();
2160
2161 /* At least the current thread is already stopped. */
2162
2163 /* In all-stop, by definition, all threads have to be already
2164 stopped at this point. In non-stop, however, although the
2165 selected thread is stopped, others may still be executing.
2166 Be sure to explicitly stop all threads of the process. This
2167 should have no effect on already stopped threads. */
2168 if (non_stop)
2169 target_stop (pid_to_ptid (inferior->pid));
2170
2171 /* Tell the user/frontend where we're stopped. */
2172 normal_stop ();
2173 if (deprecated_attach_hook)
2174 deprecated_attach_hook ();
2175 }
2176 }
2177
2178 struct attach_command_continuation_args
2179 {
2180 char *args;
2181 int from_tty;
2182 int async_exec;
2183 };
2184
2185 static void
2186 attach_command_continuation (void *args)
2187 {
2188 struct attach_command_continuation_args *a = args;
2189 attach_command_post_wait (a->args, a->from_tty, a->async_exec);
2190 }
2191
2192 static void
2193 attach_command_continuation_free_args (void *args)
2194 {
2195 struct attach_command_continuation_args *a = args;
2196 xfree (a->args);
2197 xfree (a);
2198 }
2199
2200 void
2201 attach_command (char *args, int from_tty)
2202 {
2203 char *exec_file;
2204 char *full_exec_path = NULL;
2205 int async_exec = 0;
2206 struct cleanup *back_to = make_cleanup (null_cleanup, NULL);
2207
2208 dont_repeat (); /* Not for the faint of heart */
2209
2210 if (target_supports_multi_process ())
2211 /* Don't complain if we can be attached to multiple processes. */
2212 ;
2213 else if (target_has_execution)
2214 {
2215 if (query (_("A program is being debugged already. Kill it? ")))
2216 target_kill ();
2217 else
2218 error (_("Not killed."));
2219 }
2220
2221 /* Clean up any leftovers from other runs. Some other things from
2222 this function should probably be moved into target_pre_inferior. */
2223 target_pre_inferior (from_tty);
2224
2225 if (non_stop && !target_supports_non_stop ())
2226 error (_("Cannot attach to this target in non-stop mode"));
2227
2228 if (args)
2229 {
2230 async_exec = strip_bg_char (&args);
2231
2232 /* If we get a request for running in the bg but the target
2233 doesn't support it, error out. */
2234 if (async_exec && !target_can_async_p ())
2235 error (_("Asynchronous execution not supported on this target."));
2236 }
2237
2238 /* If we don't get a request of running in the bg, then we need
2239 to simulate synchronous (fg) execution. */
2240 if (!async_exec && target_can_async_p ())
2241 {
2242 /* Simulate synchronous execution */
2243 async_disable_stdin ();
2244 make_cleanup ((make_cleanup_ftype *)async_enable_stdin, NULL);
2245 }
2246
2247 target_attach (args, from_tty);
2248
2249 /* Set up the "saved terminal modes" of the inferior
2250 based on what modes we are starting it with. */
2251 target_terminal_init ();
2252
2253 /* Set up execution context to know that we should return from
2254 wait_for_inferior as soon as the target reports a stop. */
2255 init_wait_for_inferior ();
2256 clear_proceed_status ();
2257
2258 if (non_stop)
2259 {
2260 /* If we find that the current thread isn't stopped, explicitly
2261 do so now, because we're going to install breakpoints and
2262 poke at memory. */
2263
2264 if (async_exec)
2265 /* The user requested an `attach&'; stop just one thread. */
2266 target_stop (inferior_ptid);
2267 else
2268 /* The user requested an `attach', so stop all threads of this
2269 inferior. */
2270 target_stop (pid_to_ptid (ptid_get_pid (inferior_ptid)));
2271 }
2272
2273 /* Some system don't generate traps when attaching to inferior.
2274 E.g. Mach 3 or GNU hurd. */
2275 if (!target_attach_no_wait)
2276 {
2277 struct inferior *inferior = current_inferior ();
2278
2279 /* Careful here. See comments in inferior.h. Basically some
2280 OSes don't ignore SIGSTOPs on continue requests anymore. We
2281 need a way for handle_inferior_event to reset the stop_signal
2282 variable after an attach, and this is what
2283 STOP_QUIETLY_NO_SIGSTOP is for. */
2284 inferior->stop_soon = STOP_QUIETLY_NO_SIGSTOP;
2285
2286 if (target_can_async_p ())
2287 {
2288 /* sync_execution mode. Wait for stop. */
2289 struct attach_command_continuation_args *a;
2290
2291 a = xmalloc (sizeof (*a));
2292 a->args = xstrdup (args);
2293 a->from_tty = from_tty;
2294 a->async_exec = async_exec;
2295 add_inferior_continuation (attach_command_continuation, a,
2296 attach_command_continuation_free_args);
2297 discard_cleanups (back_to);
2298 return;
2299 }
2300
2301 wait_for_inferior (0);
2302 }
2303
2304 attach_command_post_wait (args, from_tty, async_exec);
2305 discard_cleanups (back_to);
2306 }
2307
2308 /* We had just found out that the target was already attached to an
2309 inferior. PTID points at a thread of this new inferior, that is
2310 the most likely to be stopped right now, but not necessarily so.
2311 The new inferior is assumed to be already added to the inferior
2312 list at this point. If LEAVE_RUNNING, then leave the threads of
2313 this inferior running, except those we've explicitly seen reported
2314 as stopped. */
2315
2316 void
2317 notice_new_inferior (ptid_t ptid, int leave_running, int from_tty)
2318 {
2319 struct cleanup* old_chain;
2320 int async_exec;
2321
2322 old_chain = make_cleanup (null_cleanup, NULL);
2323
2324 /* If in non-stop, leave threads as running as they were. If
2325 they're stopped for some reason other than us telling it to, the
2326 target reports a signal != TARGET_SIGNAL_0. We don't try to
2327 resume threads with such a stop signal. */
2328 async_exec = non_stop;
2329
2330 if (!ptid_equal (inferior_ptid, null_ptid))
2331 make_cleanup_restore_current_thread ();
2332
2333 switch_to_thread (ptid);
2334
2335 /* When we "notice" a new inferior we need to do all the things we
2336 would normally do if we had just attached to it. */
2337
2338 if (is_executing (inferior_ptid))
2339 {
2340 struct inferior *inferior = current_inferior ();
2341
2342 /* We're going to install breakpoints, and poke at memory,
2343 ensure that the inferior is stopped for a moment while we do
2344 that. */
2345 target_stop (inferior_ptid);
2346
2347 inferior->stop_soon = STOP_QUIETLY_REMOTE;
2348
2349 /* Wait for stop before proceeding. */
2350 if (target_can_async_p ())
2351 {
2352 struct attach_command_continuation_args *a;
2353
2354 a = xmalloc (sizeof (*a));
2355 a->args = xstrdup ("");
2356 a->from_tty = from_tty;
2357 a->async_exec = async_exec;
2358 add_inferior_continuation (attach_command_continuation, a,
2359 attach_command_continuation_free_args);
2360
2361 do_cleanups (old_chain);
2362 return;
2363 }
2364 else
2365 wait_for_inferior (0);
2366 }
2367
2368 async_exec = leave_running;
2369 attach_command_post_wait ("" /* args */, from_tty, async_exec);
2370
2371 do_cleanups (old_chain);
2372 }
2373
2374 /*
2375 * detach_command --
2376 * takes a program previously attached to and detaches it.
2377 * The program resumes execution and will no longer stop
2378 * on signals, etc. We better not have left any breakpoints
2379 * in the program or it'll die when it hits one. For this
2380 * to work, it may be necessary for the process to have been
2381 * previously attached. It *might* work if the program was
2382 * started via the normal ptrace (PTRACE_TRACEME).
2383 */
2384
2385 void
2386 detach_command (char *args, int from_tty)
2387 {
2388 dont_repeat (); /* Not for the faint of heart. */
2389 target_detach (args, from_tty);
2390
2391 /* If the solist is global across inferiors, don't clear it when we
2392 detach from a single inferior. */
2393 if (!gdbarch_has_global_solist (target_gdbarch))
2394 no_shared_libraries (NULL, from_tty);
2395
2396 /* If the current target interface claims there's still execution,
2397 then don't mess with threads of other processes. */
2398 if (!target_has_execution)
2399 init_thread_list ();
2400
2401 if (deprecated_detach_hook)
2402 deprecated_detach_hook ();
2403 }
2404
2405 /* Disconnect from the current target without resuming it (leaving it
2406 waiting for a debugger).
2407
2408 We'd better not have left any breakpoints in the program or the
2409 next debugger will get confused. Currently only supported for some
2410 remote targets, since the normal attach mechanisms don't work on
2411 stopped processes on some native platforms (e.g. GNU/Linux). */
2412
2413 static void
2414 disconnect_command (char *args, int from_tty)
2415 {
2416 dont_repeat (); /* Not for the faint of heart */
2417 target_disconnect (args, from_tty);
2418 no_shared_libraries (NULL, from_tty);
2419 init_thread_list ();
2420 if (deprecated_detach_hook)
2421 deprecated_detach_hook ();
2422 }
2423
2424 void
2425 interrupt_target_1 (int all_threads)
2426 {
2427 ptid_t ptid;
2428 if (all_threads)
2429 ptid = minus_one_ptid;
2430 else
2431 ptid = inferior_ptid;
2432 target_stop (ptid);
2433
2434 /* Tag the thread as having been explicitly requested to stop, so
2435 other parts of gdb know not to resume this thread automatically,
2436 if it was stopped due to an internal event. Limit this to
2437 non-stop mode, as when debugging a multi-threaded application in
2438 all-stop mode, we will only get one stop event --- it's undefined
2439 which thread will report the event. */
2440 if (non_stop)
2441 set_stop_requested (ptid, 1);
2442 }
2443
2444 /* Stop the execution of the target while running in async mode, in
2445 the backgound. In all-stop, stop the whole process. In non-stop
2446 mode, stop the current thread only by default, or stop all threads
2447 if the `-a' switch is used. */
2448
2449 /* interrupt [-a] */
2450 void
2451 interrupt_target_command (char *args, int from_tty)
2452 {
2453 if (target_can_async_p ())
2454 {
2455 int all_threads = 0;
2456
2457 dont_repeat (); /* Not for the faint of heart */
2458
2459 if (args != NULL
2460 && strncmp (args, "-a", sizeof ("-a") - 1) == 0)
2461 all_threads = 1;
2462
2463 if (!non_stop && all_threads)
2464 error (_("-a is meaningless in all-stop mode."));
2465
2466 interrupt_target_1 (all_threads);
2467 }
2468 }
2469
2470 static void
2471 print_float_info (struct gdbarch *gdbarch, struct ui_file *file,
2472 struct frame_info *frame, const char *args)
2473 {
2474 if (gdbarch_print_float_info_p (gdbarch))
2475 gdbarch_print_float_info (gdbarch, file, frame, args);
2476 else
2477 {
2478 int regnum;
2479 int printed_something = 0;
2480
2481 for (regnum = 0;
2482 regnum < gdbarch_num_regs (gdbarch)
2483 + gdbarch_num_pseudo_regs (gdbarch);
2484 regnum++)
2485 {
2486 if (gdbarch_register_reggroup_p (gdbarch, regnum, float_reggroup))
2487 {
2488 printed_something = 1;
2489 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
2490 }
2491 }
2492 if (!printed_something)
2493 fprintf_filtered (file, "\
2494 No floating-point info available for this processor.\n");
2495 }
2496 }
2497
2498 static void
2499 float_info (char *args, int from_tty)
2500 {
2501 if (!target_has_registers)
2502 error (_("The program has no registers now."));
2503
2504 print_float_info (current_gdbarch, gdb_stdout,
2505 get_selected_frame (NULL), args);
2506 }
2507 \f
2508 static void
2509 unset_command (char *args, int from_tty)
2510 {
2511 printf_filtered (_("\
2512 \"unset\" must be followed by the name of an unset subcommand.\n"));
2513 help_list (unsetlist, "unset ", -1, gdb_stdout);
2514 }
2515
2516 void
2517 _initialize_infcmd (void)
2518 {
2519 struct cmd_list_element *c = NULL;
2520
2521 /* add the filename of the terminal connected to inferior I/O */
2522 add_setshow_filename_cmd ("inferior-tty", class_run,
2523 &inferior_io_terminal, _("\
2524 Set terminal for future runs of program being debugged."), _("\
2525 Show terminal for future runs of program being debugged."), _("\
2526 Usage: set inferior-tty /dev/pts/1"), NULL, NULL, &setlist, &showlist);
2527 add_com_alias ("tty", "set inferior-tty", class_alias, 0);
2528
2529 add_setshow_optional_filename_cmd ("args", class_run,
2530 &inferior_args, _("\
2531 Set argument list to give program being debugged when it is started."), _("\
2532 Show argument list to give program being debugged when it is started."), _("\
2533 Follow this command with any number of args, to be passed to the program."),
2534 notice_args_set,
2535 notice_args_read,
2536 &setlist, &showlist);
2537
2538 c = add_cmd ("environment", no_class, environment_info, _("\
2539 The environment to give the program, or one variable's value.\n\
2540 With an argument VAR, prints the value of environment variable VAR to\n\
2541 give the program being debugged. With no arguments, prints the entire\n\
2542 environment to be given to the program."), &showlist);
2543 set_cmd_completer (c, noop_completer);
2544
2545 add_prefix_cmd ("unset", no_class, unset_command,
2546 _("Complement to certain \"set\" commands."),
2547 &unsetlist, "unset ", 0, &cmdlist);
2548
2549 c = add_cmd ("environment", class_run, unset_environment_command, _("\
2550 Cancel environment variable VAR for the program.\n\
2551 This does not affect the program until the next \"run\" command."),
2552 &unsetlist);
2553 set_cmd_completer (c, noop_completer);
2554
2555 c = add_cmd ("environment", class_run, set_environment_command, _("\
2556 Set environment variable value to give the program.\n\
2557 Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\
2558 VALUES of environment variables are uninterpreted strings.\n\
2559 This does not affect the program until the next \"run\" command."),
2560 &setlist);
2561 set_cmd_completer (c, noop_completer);
2562
2563 c = add_com ("path", class_files, path_command, _("\
2564 Add directory DIR(s) to beginning of search path for object files.\n\
2565 $cwd in the path means the current working directory.\n\
2566 This path is equivalent to the $PATH shell variable. It is a list of\n\
2567 directories, separated by colons. These directories are searched to find\n\
2568 fully linked executable files and separately compiled object files as needed."));
2569 set_cmd_completer (c, filename_completer);
2570
2571 c = add_cmd ("paths", no_class, path_info, _("\
2572 Current search path for finding object files.\n\
2573 $cwd in the path means the current working directory.\n\
2574 This path is equivalent to the $PATH shell variable. It is a list of\n\
2575 directories, separated by colons. These directories are searched to find\n\
2576 fully linked executable files and separately compiled object files as needed."),
2577 &showlist);
2578 set_cmd_completer (c, noop_completer);
2579
2580 add_com ("attach", class_run, attach_command, _("\
2581 Attach to a process or file outside of GDB.\n\
2582 This command attaches to another target, of the same type as your last\n\
2583 \"target\" command (\"info files\" will show your target stack).\n\
2584 The command may take as argument a process id or a device file.\n\
2585 For a process id, you must have permission to send the process a signal,\n\
2586 and it must have the same effective uid as the debugger.\n\
2587 When using \"attach\" with a process id, the debugger finds the\n\
2588 program running in the process, looking first in the current working\n\
2589 directory, or (if not found there) using the source file search path\n\
2590 (see the \"directory\" command). You can also use the \"file\" command\n\
2591 to specify the program, and to load its symbol table."));
2592
2593 add_prefix_cmd ("detach", class_run, detach_command, _("\
2594 Detach a process or file previously attached.\n\
2595 If a process, it is no longer traced, and it continues its execution. If\n\
2596 you were debugging a file, the file is closed and gdb no longer accesses it."),
2597 &detachlist, "detach ", 0, &cmdlist);
2598
2599 add_com ("disconnect", class_run, disconnect_command, _("\
2600 Disconnect from a target.\n\
2601 The target will wait for another debugger to connect. Not available for\n\
2602 all targets."));
2603
2604 add_com ("signal", class_run, signal_command, _("\
2605 Continue program giving it signal specified by the argument.\n\
2606 An argument of \"0\" means continue program without giving it a signal."));
2607
2608 add_com ("stepi", class_run, stepi_command, _("\
2609 Step one instruction exactly.\n\
2610 Argument N means do this N times (or till program stops for another reason)."));
2611 add_com_alias ("si", "stepi", class_alias, 0);
2612
2613 add_com ("nexti", class_run, nexti_command, _("\
2614 Step one instruction, but proceed through subroutine calls.\n\
2615 Argument N means do this N times (or till program stops for another reason)."));
2616 add_com_alias ("ni", "nexti", class_alias, 0);
2617
2618 add_com ("finish", class_run, finish_command, _("\
2619 Execute until selected stack frame returns.\n\
2620 Upon return, the value returned is printed and put in the value history."));
2621 add_com_alias ("fin", "finish", class_run, 1);
2622
2623 add_com ("next", class_run, next_command, _("\
2624 Step program, proceeding through subroutine calls.\n\
2625 Like the \"step\" command as long as subroutine calls do not happen;\n\
2626 when they do, the call is treated as one instruction.\n\
2627 Argument N means do this N times (or till program stops for another reason)."));
2628 add_com_alias ("n", "next", class_run, 1);
2629 if (xdb_commands)
2630 add_com_alias ("S", "next", class_run, 1);
2631
2632 add_com ("step", class_run, step_command, _("\
2633 Step program until it reaches a different source line.\n\
2634 Argument N means do this N times (or till program stops for another reason)."));
2635 add_com_alias ("s", "step", class_run, 1);
2636
2637 c = add_com ("until", class_run, until_command, _("\
2638 Execute until the program reaches a source line greater than the current\n\
2639 or a specified location (same args as break command) within the current frame."));
2640 set_cmd_completer (c, location_completer);
2641 add_com_alias ("u", "until", class_run, 1);
2642
2643 c = add_com ("advance", class_run, advance_command, _("\
2644 Continue the program up to the given location (same form as args for break command).\n\
2645 Execution will also stop upon exit from the current stack frame."));
2646 set_cmd_completer (c, location_completer);
2647
2648 c = add_com ("jump", class_run, jump_command, _("\
2649 Continue program being debugged at specified line or address.\n\
2650 Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\
2651 for an address to start at."));
2652 set_cmd_completer (c, location_completer);
2653
2654 if (xdb_commands)
2655 {
2656 c = add_com ("go", class_run, go_command, _("\
2657 Usage: go <location>\n\
2658 Continue program being debugged, stopping at specified line or \n\
2659 address.\n\
2660 Give as argument either LINENUM or *ADDR, where ADDR is an \n\
2661 expression for an address to start at.\n\
2662 This command is a combination of tbreak and jump."));
2663 set_cmd_completer (c, location_completer);
2664 }
2665
2666 if (xdb_commands)
2667 add_com_alias ("g", "go", class_run, 1);
2668
2669 c = add_com ("continue", class_run, continue_command, _("\
2670 Continue program being debugged, after signal or breakpoint.\n\
2671 If proceeding from breakpoint, a number N may be used as an argument,\n\
2672 which means to set the ignore count of that breakpoint to N - 1 (so that\n\
2673 the breakpoint won't break until the Nth time it is reached).\n\
2674 \n\
2675 If non-stop mode is enabled, continue only the current thread,\n\
2676 otherwise all the threads in the program are continued. To \n\
2677 continue all stopped threads in non-stop mode, use the -a option.\n\
2678 Specifying -a and an ignore count simultaneously is an error."));
2679 add_com_alias ("c", "cont", class_run, 1);
2680 add_com_alias ("fg", "cont", class_run, 1);
2681
2682 c = add_com ("run", class_run, run_command, _("\
2683 Start debugged program. You may specify arguments to give it.\n\
2684 Args may include \"*\", or \"[...]\"; they are expanded using \"sh\".\n\
2685 Input and output redirection with \">\", \"<\", or \">>\" are also allowed.\n\n\
2686 With no arguments, uses arguments last specified (with \"run\" or \"set args\").\n\
2687 To cancel previous arguments and run with no arguments,\n\
2688 use \"set args\" without arguments."));
2689 set_cmd_completer (c, filename_completer);
2690 add_com_alias ("r", "run", class_run, 1);
2691 if (xdb_commands)
2692 add_com ("R", class_run, run_no_args_command,
2693 _("Start debugged program with no arguments."));
2694
2695 c = add_com ("start", class_run, start_command, _("\
2696 Run the debugged program until the beginning of the main procedure.\n\
2697 You may specify arguments to give to your program, just as with the\n\
2698 \"run\" command."));
2699 set_cmd_completer (c, filename_completer);
2700
2701 c = add_com ("interrupt", class_run, interrupt_target_command,
2702 _("Interrupt the execution of the debugged program.\n\
2703 If non-stop mode is enabled, interrupt only the current thread,\n\
2704 otherwise all the threads in the program are stopped. To \n\
2705 interrupt all running threads in non-stop mode, use the -a option."));
2706
2707 add_info ("registers", nofp_registers_info, _("\
2708 List of integer registers and their contents, for selected stack frame.\n\
2709 Register name as argument means describe only that register."));
2710 add_info_alias ("r", "registers", 1);
2711
2712 if (xdb_commands)
2713 add_com ("lr", class_info, nofp_registers_info, _("\
2714 List of integer registers and their contents, for selected stack frame.\n\
2715 Register name as argument means describe only that register."));
2716 add_info ("all-registers", all_registers_info, _("\
2717 List of all registers and their contents, for selected stack frame.\n\
2718 Register name as argument means describe only that register."));
2719
2720 add_info ("program", program_info,
2721 _("Execution status of the program."));
2722
2723 add_info ("float", float_info,
2724 _("Print the status of the floating point unit\n"));
2725
2726 add_info ("vector", vector_info,
2727 _("Print the status of the vector unit\n"));
2728
2729 inferior_environ = make_environ ();
2730 init_environ (inferior_environ);
2731 }
This page took 0.082674 seconds and 5 git commands to generate.