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