Fix PR 17206
[deliverable/binutils-gdb.git] / gdb / infcmd.c
1 /* Memory-access and commands for "inferior" process, for GDB.
2
3 Copyright (C) 1986-2014 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20 #include "defs.h"
21 #include "arch-utils.h"
22 #include <signal.h>
23 #include <string.h>
24 #include "symtab.h"
25 #include "gdbtypes.h"
26 #include "frame.h"
27 #include "inferior.h"
28 #include "infrun.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 "objfiles.h"
37 #include "completer.h"
38 #include "ui-out.h"
39 #include "event-top.h"
40 #include "parser-defs.h"
41 #include "regcache.h"
42 #include "reggroups.h"
43 #include "block.h"
44 #include "solib.h"
45 #include <ctype.h>
46 #include "gdb_assert.h"
47 #include "observer.h"
48 #include "target-descriptions.h"
49 #include "user-regs.h"
50 #include "exceptions.h"
51 #include "cli/cli-decode.h"
52 #include "gdbthread.h"
53 #include "valprint.h"
54 #include "inline-frame.h"
55 #include "tracepoint.h"
56 #include "inf-loop.h"
57 #include "continuations.h"
58 #include "linespec.h"
59 #include "cli/cli-utils.h"
60
61 /* Local functions: */
62
63 static void nofp_registers_info (char *, int);
64
65 static void print_return_value (struct value *function,
66 struct type *value_type);
67
68 static void until_next_command (int);
69
70 static void until_command (char *, int);
71
72 static void path_info (char *, int);
73
74 static void path_command (char *, int);
75
76 static void unset_command (char *, int);
77
78 static void float_info (char *, int);
79
80 static void disconnect_command (char *, int);
81
82 static void unset_environment_command (char *, int);
83
84 static void set_environment_command (char *, int);
85
86 static void environment_info (char *, int);
87
88 static void program_info (char *, int);
89
90 static void finish_command (char *, int);
91
92 static void signal_command (char *, int);
93
94 static void jump_command (char *, int);
95
96 static void step_1 (int, int, char *);
97 static void step_once (int skip_subroutines, int single_inst,
98 int count, int thread);
99
100 static void next_command (char *, int);
101
102 static void step_command (char *, int);
103
104 static void run_command (char *, int);
105
106 static void run_no_args_command (char *args, int from_tty);
107
108 static void go_command (char *line_no, int from_tty);
109
110 static int strip_bg_char (char **);
111
112 void _initialize_infcmd (void);
113
114 #define ERROR_NO_INFERIOR \
115 if (!target_has_execution) error (_("The program is not being run."));
116
117 /* Scratch area where string containing arguments to give to the
118 program will be stored by 'set args'. As soon as anything is
119 stored, notice_args_set will move it into per-inferior storage.
120 Arguments are separated by spaces. Empty string (pointer to '\0')
121 means no args. */
122
123 static char *inferior_args_scratch;
124
125 /* Scratch area where 'set inferior-tty' will store user-provided value.
126 We'll immediate copy it into per-inferior storage. */
127
128 static char *inferior_io_terminal_scratch;
129
130 /* Pid of our debugged inferior, or 0 if no inferior now.
131 Since various parts of infrun.c test this to see whether there is a program
132 being debugged it should be nonzero (currently 3 is used) for remote
133 debugging. */
134
135 ptid_t inferior_ptid;
136
137 /* Address at which inferior stopped. */
138
139 CORE_ADDR stop_pc;
140
141 /* Nonzero if stopped due to completion of a stack dummy routine. */
142
143 enum stop_stack_kind stop_stack_dummy;
144
145 /* Nonzero if stopped due to a random (unexpected) signal in inferior
146 process. */
147
148 int stopped_by_random_signal;
149
150 /* See inferior.h. */
151
152 int startup_with_shell = 1;
153
154 \f
155 /* Accessor routines. */
156
157 /* Set the io terminal for the current inferior. Ownership of
158 TERMINAL_NAME is not transferred. */
159
160 void
161 set_inferior_io_terminal (const char *terminal_name)
162 {
163 xfree (current_inferior ()->terminal);
164 current_inferior ()->terminal = terminal_name ? xstrdup (terminal_name) : 0;
165 }
166
167 const char *
168 get_inferior_io_terminal (void)
169 {
170 return current_inferior ()->terminal;
171 }
172
173 static void
174 set_inferior_tty_command (char *args, int from_tty,
175 struct cmd_list_element *c)
176 {
177 /* CLI has assigned the user-provided value to inferior_io_terminal_scratch.
178 Now route it to current inferior. */
179 set_inferior_io_terminal (inferior_io_terminal_scratch);
180 }
181
182 static void
183 show_inferior_tty_command (struct ui_file *file, int from_tty,
184 struct cmd_list_element *c, const char *value)
185 {
186 /* Note that we ignore the passed-in value in favor of computing it
187 directly. */
188 const char *inferior_io_terminal = get_inferior_io_terminal ();
189
190 if (inferior_io_terminal == NULL)
191 inferior_io_terminal = "";
192 fprintf_filtered (gdb_stdout,
193 _("Terminal for future runs of program being debugged "
194 "is \"%s\".\n"), inferior_io_terminal);
195 }
196
197 char *
198 get_inferior_args (void)
199 {
200 if (current_inferior ()->argc != 0)
201 {
202 char *n;
203
204 n = construct_inferior_arguments (current_inferior ()->argc,
205 current_inferior ()->argv);
206 set_inferior_args (n);
207 xfree (n);
208 }
209
210 if (current_inferior ()->args == NULL)
211 current_inferior ()->args = xstrdup ("");
212
213 return current_inferior ()->args;
214 }
215
216 /* Set the arguments for the current inferior. Ownership of
217 NEWARGS is not transferred. */
218
219 void
220 set_inferior_args (char *newargs)
221 {
222 xfree (current_inferior ()->args);
223 current_inferior ()->args = newargs ? xstrdup (newargs) : NULL;
224 current_inferior ()->argc = 0;
225 current_inferior ()->argv = 0;
226 }
227
228 void
229 set_inferior_args_vector (int argc, char **argv)
230 {
231 current_inferior ()->argc = argc;
232 current_inferior ()->argv = argv;
233 }
234
235 /* Notice when `set args' is run. */
236
237 static void
238 set_args_command (char *args, int from_tty, struct cmd_list_element *c)
239 {
240 /* CLI has assigned the user-provided value to inferior_args_scratch.
241 Now route it to current inferior. */
242 set_inferior_args (inferior_args_scratch);
243 }
244
245 /* Notice when `show args' is run. */
246
247 static void
248 show_args_command (struct ui_file *file, int from_tty,
249 struct cmd_list_element *c, const char *value)
250 {
251 /* Note that we ignore the passed-in value in favor of computing it
252 directly. */
253 deprecated_show_value_hack (file, from_tty, c, get_inferior_args ());
254 }
255
256 \f
257 /* Compute command-line string given argument vector. This does the
258 same shell processing as fork_inferior. */
259
260 char *
261 construct_inferior_arguments (int argc, char **argv)
262 {
263 char *result;
264
265 if (startup_with_shell)
266 {
267 #ifdef __MINGW32__
268 /* This holds all the characters considered special to the
269 Windows shells. */
270 char *special = "\"!&*|[]{}<>?`~^=;, \t\n";
271 const char quote = '"';
272 #else
273 /* This holds all the characters considered special to the
274 typical Unix shells. We include `^' because the SunOS
275 /bin/sh treats it as a synonym for `|'. */
276 char *special = "\"!#$&*()\\|[]{}<>?'`~^; \t\n";
277 const char quote = '\'';
278 #endif
279 int i;
280 int length = 0;
281 char *out, *cp;
282
283 /* We over-compute the size. It shouldn't matter. */
284 for (i = 0; i < argc; ++i)
285 length += 3 * strlen (argv[i]) + 1 + 2 * (argv[i][0] == '\0');
286
287 result = (char *) xmalloc (length);
288 out = result;
289
290 for (i = 0; i < argc; ++i)
291 {
292 if (i > 0)
293 *out++ = ' ';
294
295 /* Need to handle empty arguments specially. */
296 if (argv[i][0] == '\0')
297 {
298 *out++ = quote;
299 *out++ = quote;
300 }
301 else
302 {
303 #ifdef __MINGW32__
304 int quoted = 0;
305
306 if (strpbrk (argv[i], special))
307 {
308 quoted = 1;
309 *out++ = quote;
310 }
311 #endif
312 for (cp = argv[i]; *cp; ++cp)
313 {
314 if (*cp == '\n')
315 {
316 /* A newline cannot be quoted with a backslash (it
317 just disappears), only by putting it inside
318 quotes. */
319 *out++ = quote;
320 *out++ = '\n';
321 *out++ = quote;
322 }
323 else
324 {
325 #ifdef __MINGW32__
326 if (*cp == quote)
327 #else
328 if (strchr (special, *cp) != NULL)
329 #endif
330 *out++ = '\\';
331 *out++ = *cp;
332 }
333 }
334 #ifdef __MINGW32__
335 if (quoted)
336 *out++ = quote;
337 #endif
338 }
339 }
340 *out = '\0';
341 }
342 else
343 {
344 /* In this case we can't handle arguments that contain spaces,
345 tabs, or newlines -- see breakup_args(). */
346 int i;
347 int length = 0;
348
349 for (i = 0; i < argc; ++i)
350 {
351 char *cp = strchr (argv[i], ' ');
352 if (cp == NULL)
353 cp = strchr (argv[i], '\t');
354 if (cp == NULL)
355 cp = strchr (argv[i], '\n');
356 if (cp != NULL)
357 error (_("can't handle command-line "
358 "argument containing whitespace"));
359 length += strlen (argv[i]) + 1;
360 }
361
362 result = (char *) xmalloc (length);
363 result[0] = '\0';
364 for (i = 0; i < argc; ++i)
365 {
366 if (i > 0)
367 strcat (result, " ");
368 strcat (result, argv[i]);
369 }
370 }
371
372 return result;
373 }
374 \f
375
376 /* This function detects whether or not a '&' character (indicating
377 background execution) has been added as *the last* of the arguments ARGS
378 of a command. If it has, it removes it and returns 1. Otherwise it
379 does nothing and returns 0. */
380
381 static int
382 strip_bg_char (char **args)
383 {
384 char *p = NULL;
385
386 p = strchr (*args, '&');
387
388 if (p)
389 {
390 if (p == (*args + strlen (*args) - 1))
391 {
392 if (strlen (*args) > 1)
393 {
394 do
395 p--;
396 while (*p == ' ' || *p == '\t');
397 *(p + 1) = '\0';
398 }
399 else
400 *args = 0;
401 return 1;
402 }
403 }
404 return 0;
405 }
406
407 /* Common actions to take after creating any sort of inferior, by any
408 means (running, attaching, connecting, et cetera). The target
409 should be stopped. */
410
411 void
412 post_create_inferior (struct target_ops *target, int from_tty)
413 {
414 volatile struct gdb_exception ex;
415
416 /* Be sure we own the terminal in case write operations are performed. */
417 target_terminal_ours ();
418
419 /* If the target hasn't taken care of this already, do it now.
420 Targets which need to access registers during to_open,
421 to_create_inferior, or to_attach should do it earlier; but many
422 don't need to. */
423 target_find_description ();
424
425 /* Now that we know the register layout, retrieve current PC. But
426 if the PC is unavailable (e.g., we're opening a core file with
427 missing registers info), ignore it. */
428 stop_pc = 0;
429 TRY_CATCH (ex, RETURN_MASK_ERROR)
430 {
431 stop_pc = regcache_read_pc (get_current_regcache ());
432 }
433 if (ex.reason < 0 && ex.error != NOT_AVAILABLE_ERROR)
434 throw_exception (ex);
435
436 if (exec_bfd)
437 {
438 const unsigned solib_add_generation
439 = current_program_space->solib_add_generation;
440
441 /* Create the hooks to handle shared library load and unload
442 events. */
443 solib_create_inferior_hook (from_tty);
444
445 if (current_program_space->solib_add_generation == solib_add_generation)
446 {
447 /* The platform-specific hook should load initial shared libraries,
448 but didn't. FROM_TTY will be incorrectly 0 but such solib
449 targets should be fixed anyway. Call it only after the solib
450 target has been initialized by solib_create_inferior_hook. */
451
452 if (info_verbose)
453 warning (_("platform-specific solib_create_inferior_hook did "
454 "not load initial shared libraries."));
455
456 /* If the solist is global across processes, there's no need to
457 refetch it here. */
458 if (!gdbarch_has_global_solist (target_gdbarch ()))
459 solib_add (NULL, 0, target, auto_solib_add);
460 }
461 }
462
463 /* If the user sets watchpoints before execution having started,
464 then she gets software watchpoints, because GDB can't know which
465 target will end up being pushed, or if it supports hardware
466 watchpoints or not. breakpoint_re_set takes care of promoting
467 watchpoints to hardware watchpoints if possible, however, if this
468 new inferior doesn't load shared libraries or we don't pull in
469 symbols from any other source on this target/arch,
470 breakpoint_re_set is never called. Call it now so that software
471 watchpoints get a chance to be promoted to hardware watchpoints
472 if the now pushed target supports hardware watchpoints. */
473 breakpoint_re_set ();
474
475 observer_notify_inferior_created (target, from_tty);
476 }
477
478 /* Kill the inferior if already running. This function is designed
479 to be called when we are about to start the execution of the program
480 from the beginning. Ask the user to confirm that he wants to restart
481 the program being debugged when FROM_TTY is non-null. */
482
483 static void
484 kill_if_already_running (int from_tty)
485 {
486 if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
487 {
488 /* Bail out before killing the program if we will not be able to
489 restart it. */
490 target_require_runnable ();
491
492 if (from_tty
493 && !query (_("The program being debugged has been started already.\n\
494 Start it from the beginning? ")))
495 error (_("Program not restarted."));
496 target_kill ();
497 }
498 }
499
500 /* See inferior.h. */
501
502 void
503 prepare_execution_command (struct target_ops *target, int background)
504 {
505 /* If we get a request for running in the bg but the target
506 doesn't support it, error out. */
507 if (background && !target->to_can_async_p (target))
508 error (_("Asynchronous execution not supported on this target."));
509
510 /* If we don't get a request of running in the bg, then we need
511 to simulate synchronous (fg) execution. */
512 if (!background && target->to_can_async_p (target))
513 {
514 /* Simulate synchronous execution. Note no cleanup is necessary
515 for this. stdin is re-enabled whenever an error reaches the
516 top level. */
517 async_disable_stdin ();
518 }
519 }
520
521 /* Implement the "run" command. If TBREAK_AT_MAIN is set, then insert
522 a temporary breakpoint at the begining of the main program before
523 running the program. */
524
525 static void
526 run_command_1 (char *args, int from_tty, int tbreak_at_main)
527 {
528 char *exec_file;
529 struct cleanup *old_chain;
530 ptid_t ptid;
531 struct ui_out *uiout = current_uiout;
532 struct target_ops *run_target;
533 int async_exec = 0;
534
535 dont_repeat ();
536
537 kill_if_already_running (from_tty);
538
539 init_wait_for_inferior ();
540 clear_breakpoint_hit_counts ();
541
542 /* Clean up any leftovers from other runs. Some other things from
543 this function should probably be moved into target_pre_inferior. */
544 target_pre_inferior (from_tty);
545
546 /* The comment here used to read, "The exec file is re-read every
547 time we do a generic_mourn_inferior, so we just have to worry
548 about the symbol file." The `generic_mourn_inferior' function
549 gets called whenever the program exits. However, suppose the
550 program exits, and *then* the executable file changes? We need
551 to check again here. Since reopen_exec_file doesn't do anything
552 if the timestamp hasn't changed, I don't see the harm. */
553 reopen_exec_file ();
554 reread_symbols ();
555
556 if (args != NULL)
557 async_exec = strip_bg_char (&args);
558
559 /* Do validation and preparation before possibly changing anything
560 in the inferior. */
561
562 run_target = find_run_target ();
563
564 prepare_execution_command (run_target, async_exec);
565
566 if (non_stop && !run_target->to_supports_non_stop (run_target))
567 error (_("The target does not support running in non-stop mode."));
568
569 /* Done. Can now set breakpoints, change inferior args, etc. */
570
571 /* Insert the temporary breakpoint if a location was specified. */
572 if (tbreak_at_main)
573 tbreak_command (main_name (), 0);
574
575 exec_file = (char *) get_exec_file (0);
576
577 /* We keep symbols from add-symbol-file, on the grounds that the
578 user might want to add some symbols before running the program
579 (right?). But sometimes (dynamic loading where the user manually
580 introduces the new symbols with add-symbol-file), the code which
581 the symbols describe does not persist between runs. Currently
582 the user has to manually nuke all symbols between runs if they
583 want them to go away (PR 2207). This is probably reasonable. */
584
585 /* If there were other args, beside '&', process them. */
586 if (args != NULL)
587 set_inferior_args (args);
588
589 if (from_tty)
590 {
591 ui_out_field_string (uiout, NULL, "Starting program");
592 ui_out_text (uiout, ": ");
593 if (exec_file)
594 ui_out_field_string (uiout, "execfile", exec_file);
595 ui_out_spaces (uiout, 1);
596 /* We call get_inferior_args() because we might need to compute
597 the value now. */
598 ui_out_field_string (uiout, "infargs", get_inferior_args ());
599 ui_out_text (uiout, "\n");
600 ui_out_flush (uiout);
601 }
602
603 /* We call get_inferior_args() because we might need to compute
604 the value now. */
605 run_target->to_create_inferior (run_target, exec_file, get_inferior_args (),
606 environ_vector (current_inferior ()->environment),
607 from_tty);
608 /* to_create_inferior should push the target, so after this point we
609 shouldn't refer to run_target again. */
610 run_target = NULL;
611
612 /* We're starting off a new process. When we get out of here, in
613 non-stop mode, finish the state of all threads of that process,
614 but leave other threads alone, as they may be stopped in internal
615 events --- the frontend shouldn't see them as stopped. In
616 all-stop, always finish the state of all threads, as we may be
617 resuming more than just the new process. */
618 if (non_stop)
619 ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
620 else
621 ptid = minus_one_ptid;
622 old_chain = make_cleanup (finish_thread_state_cleanup, &ptid);
623
624 /* Pass zero for FROM_TTY, because at this point the "run" command
625 has done its thing; now we are setting up the running program. */
626 post_create_inferior (&current_target, 0);
627
628 /* Start the target running. Do not use -1 continuation as it would skip
629 breakpoint right at the entry point. */
630 proceed (regcache_read_pc (get_current_regcache ()), GDB_SIGNAL_0, 0);
631
632 /* Since there was no error, there's no need to finish the thread
633 states here. */
634 discard_cleanups (old_chain);
635 }
636
637 static void
638 run_command (char *args, int from_tty)
639 {
640 run_command_1 (args, from_tty, 0);
641 }
642
643 static void
644 run_no_args_command (char *args, int from_tty)
645 {
646 set_inferior_args ("");
647 }
648 \f
649
650 /* Start the execution of the program up until the beginning of the main
651 program. */
652
653 static void
654 start_command (char *args, int from_tty)
655 {
656 /* Some languages such as Ada need to search inside the program
657 minimal symbols for the location where to put the temporary
658 breakpoint before starting. */
659 if (!have_minimal_symbols ())
660 error (_("No symbol table loaded. Use the \"file\" command."));
661
662 /* Run the program until reaching the main procedure... */
663 run_command_1 (args, from_tty, 1);
664 }
665
666 static int
667 proceed_thread_callback (struct thread_info *thread, void *arg)
668 {
669 /* We go through all threads individually instead of compressing
670 into a single target `resume_all' request, because some threads
671 may be stopped in internal breakpoints/events, or stopped waiting
672 for its turn in the displaced stepping queue (that is, they are
673 running && !executing). The target side has no idea about why
674 the thread is stopped, so a `resume_all' command would resume too
675 much. If/when GDB gains a way to tell the target `hold this
676 thread stopped until I say otherwise', then we can optimize
677 this. */
678 if (!is_stopped (thread->ptid))
679 return 0;
680
681 switch_to_thread (thread->ptid);
682 clear_proceed_status (0);
683 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 0);
684 return 0;
685 }
686
687 static void
688 ensure_valid_thread (void)
689 {
690 if (ptid_equal (inferior_ptid, null_ptid)
691 || is_exited (inferior_ptid))
692 error (_("Cannot execute this command without a live selected thread."));
693 }
694
695 /* If the user is looking at trace frames, any resumption of execution
696 is likely to mix up recorded and live target data. So simply
697 disallow those commands. */
698
699 static void
700 ensure_not_tfind_mode (void)
701 {
702 if (get_traceframe_number () >= 0)
703 error (_("Cannot execute this command while looking at trace frames."));
704 }
705
706 /* Throw an error indicating the current thread is running. */
707
708 static void
709 error_is_running (void)
710 {
711 error (_("Cannot execute this command while "
712 "the selected thread is running."));
713 }
714
715 /* Calls error_is_running if the current thread is running. */
716
717 static void
718 ensure_not_running (void)
719 {
720 if (is_running (inferior_ptid))
721 error_is_running ();
722 }
723
724 void
725 continue_1 (int all_threads)
726 {
727 ERROR_NO_INFERIOR;
728 ensure_not_tfind_mode ();
729
730 if (non_stop && all_threads)
731 {
732 /* Don't error out if the current thread is running, because
733 there may be other stopped threads. */
734 struct cleanup *old_chain;
735
736 /* Backup current thread and selected frame. */
737 old_chain = make_cleanup_restore_current_thread ();
738
739 iterate_over_threads (proceed_thread_callback, NULL);
740
741 /* Restore selected ptid. */
742 do_cleanups (old_chain);
743 }
744 else
745 {
746 ensure_valid_thread ();
747 ensure_not_running ();
748 clear_proceed_status (0);
749 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 0);
750 }
751 }
752
753 /* continue [-a] [proceed-count] [&] */
754
755 static void
756 continue_command (char *args, int from_tty)
757 {
758 int async_exec = 0;
759 int all_threads = 0;
760 ERROR_NO_INFERIOR;
761
762 /* Find out whether we must run in the background. */
763 if (args != NULL)
764 async_exec = strip_bg_char (&args);
765
766 prepare_execution_command (&current_target, async_exec);
767
768 if (args != NULL)
769 {
770 if (strncmp (args, "-a", sizeof ("-a") - 1) == 0)
771 {
772 all_threads = 1;
773 args += sizeof ("-a") - 1;
774 if (*args == '\0')
775 args = NULL;
776 }
777 }
778
779 if (!non_stop && all_threads)
780 error (_("`-a' is meaningless in all-stop mode."));
781
782 if (args != NULL && all_threads)
783 error (_("Can't resume all threads and specify "
784 "proceed count simultaneously."));
785
786 /* If we have an argument left, set proceed count of breakpoint we
787 stopped at. */
788 if (args != NULL)
789 {
790 bpstat bs = NULL;
791 int num, stat;
792 int stopped = 0;
793 struct thread_info *tp;
794
795 if (non_stop)
796 tp = find_thread_ptid (inferior_ptid);
797 else
798 {
799 ptid_t last_ptid;
800 struct target_waitstatus ws;
801
802 get_last_target_status (&last_ptid, &ws);
803 tp = find_thread_ptid (last_ptid);
804 }
805 if (tp != NULL)
806 bs = tp->control.stop_bpstat;
807
808 while ((stat = bpstat_num (&bs, &num)) != 0)
809 if (stat > 0)
810 {
811 set_ignore_count (num,
812 parse_and_eval_long (args) - 1,
813 from_tty);
814 /* set_ignore_count prints a message ending with a period.
815 So print two spaces before "Continuing.". */
816 if (from_tty)
817 printf_filtered (" ");
818 stopped = 1;
819 }
820
821 if (!stopped && from_tty)
822 {
823 printf_filtered
824 ("Not stopped at any breakpoint; argument ignored.\n");
825 }
826 }
827
828 if (from_tty)
829 printf_filtered (_("Continuing.\n"));
830
831 continue_1 (all_threads);
832 }
833 \f
834 /* Record the starting point of a "step" or "next" command. */
835
836 static void
837 set_step_frame (void)
838 {
839 struct symtab_and_line sal;
840
841 find_frame_sal (get_current_frame (), &sal);
842 set_step_info (get_current_frame (), sal);
843 }
844
845 /* Step until outside of current statement. */
846
847 static void
848 step_command (char *count_string, int from_tty)
849 {
850 step_1 (0, 0, count_string);
851 }
852
853 /* Likewise, but skip over subroutine calls as if single instructions. */
854
855 static void
856 next_command (char *count_string, int from_tty)
857 {
858 step_1 (1, 0, count_string);
859 }
860
861 /* Likewise, but step only one instruction. */
862
863 static void
864 stepi_command (char *count_string, int from_tty)
865 {
866 step_1 (0, 1, count_string);
867 }
868
869 static void
870 nexti_command (char *count_string, int from_tty)
871 {
872 step_1 (1, 1, count_string);
873 }
874
875 void
876 delete_longjmp_breakpoint_cleanup (void *arg)
877 {
878 int thread = * (int *) arg;
879 delete_longjmp_breakpoint (thread);
880 }
881
882 static void
883 step_1 (int skip_subroutines, int single_inst, char *count_string)
884 {
885 int count = 1;
886 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL);
887 int async_exec = 0;
888 int thread = -1;
889
890 ERROR_NO_INFERIOR;
891 ensure_not_tfind_mode ();
892 ensure_valid_thread ();
893 ensure_not_running ();
894
895 if (count_string)
896 async_exec = strip_bg_char (&count_string);
897
898 prepare_execution_command (&current_target, async_exec);
899
900 count = count_string ? parse_and_eval_long (count_string) : 1;
901
902 if (!single_inst || skip_subroutines) /* Leave si command alone. */
903 {
904 struct thread_info *tp = inferior_thread ();
905
906 if (in_thread_list (inferior_ptid))
907 thread = pid_to_thread_id (inferior_ptid);
908
909 set_longjmp_breakpoint (tp, get_frame_id (get_current_frame ()));
910
911 make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
912 }
913
914 /* In synchronous case, all is well; each step_once call will step once. */
915 if (!target_can_async_p ())
916 {
917 for (; count > 0; count--)
918 {
919 step_once (skip_subroutines, single_inst, count, thread);
920
921 if (!target_has_execution)
922 break;
923 else
924 {
925 struct thread_info *tp = inferior_thread ();
926
927 if (!tp->control.stop_step || !tp->step_multi)
928 {
929 /* If we stopped for some reason that is not stepping
930 there are no further steps to make. */
931 tp->step_multi = 0;
932 break;
933 }
934 }
935 }
936
937 do_cleanups (cleanups);
938 }
939 else
940 {
941 /* In the case of an asynchronous target things get complicated;
942 do only one step for now, before returning control to the
943 event loop. Let the continuation figure out how many other
944 steps we need to do, and handle them one at the time, through
945 step_once. */
946 step_once (skip_subroutines, single_inst, count, thread);
947
948 /* We are running, and the continuation is installed. It will
949 disable the longjmp breakpoint as appropriate. */
950 discard_cleanups (cleanups);
951 }
952 }
953
954 struct step_1_continuation_args
955 {
956 int count;
957 int skip_subroutines;
958 int single_inst;
959 int thread;
960 };
961
962 /* Called after we are done with one step operation, to check whether
963 we need to step again, before we print the prompt and return control
964 to the user. If count is > 1, we will need to do one more call to
965 proceed(), via step_once(). Basically it is like step_once and
966 step_1_continuation are co-recursive. */
967
968 static void
969 step_1_continuation (void *args, int err)
970 {
971 struct step_1_continuation_args *a = args;
972
973 if (target_has_execution)
974 {
975 struct thread_info *tp;
976
977 tp = inferior_thread ();
978 if (!err
979 && tp->step_multi && tp->control.stop_step)
980 {
981 /* There are more steps to make, and we did stop due to
982 ending a stepping range. Do another step. */
983 step_once (a->skip_subroutines, a->single_inst,
984 a->count - 1, a->thread);
985 return;
986 }
987 tp->step_multi = 0;
988 }
989
990 /* We either hit an error, or stopped for some reason that is
991 not stepping, or there are no further steps to make.
992 Cleanup. */
993 if (!a->single_inst || a->skip_subroutines)
994 delete_longjmp_breakpoint (a->thread);
995 }
996
997 /* Do just one step operation. This is useful to implement the 'step
998 n' kind of commands. In case of asynchronous targets, we will have
999 to set up a continuation to be done after the target stops (after
1000 this one step). For synch targets, the caller handles further
1001 stepping. */
1002
1003 static void
1004 step_once (int skip_subroutines, int single_inst, int count, int thread)
1005 {
1006 struct frame_info *frame = get_current_frame ();
1007
1008 if (count > 0)
1009 {
1010 /* Don't assume THREAD is a valid thread id. It is set to -1 if
1011 the longjmp breakpoint was not required. Use the
1012 INFERIOR_PTID thread instead, which is the same thread when
1013 THREAD is set. */
1014 struct thread_info *tp = inferior_thread ();
1015
1016 clear_proceed_status (!skip_subroutines);
1017 set_step_frame ();
1018
1019 if (!single_inst)
1020 {
1021 CORE_ADDR pc;
1022
1023 /* Step at an inlined function behaves like "down". */
1024 if (!skip_subroutines
1025 && inline_skipped_frames (inferior_ptid))
1026 {
1027 ptid_t resume_ptid;
1028
1029 /* Pretend that we've ran. */
1030 resume_ptid = user_visible_resume_ptid (1);
1031 set_running (resume_ptid, 1);
1032
1033 step_into_inline_frame (inferior_ptid);
1034 if (count > 1)
1035 step_once (skip_subroutines, single_inst, count - 1, thread);
1036 else
1037 {
1038 /* Pretend that we've stopped. */
1039 normal_stop ();
1040
1041 if (target_can_async_p ())
1042 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
1043 }
1044 return;
1045 }
1046
1047 pc = get_frame_pc (frame);
1048 find_pc_line_pc_range (pc,
1049 &tp->control.step_range_start,
1050 &tp->control.step_range_end);
1051
1052 tp->control.may_range_step = 1;
1053
1054 /* If we have no line info, switch to stepi mode. */
1055 if (tp->control.step_range_end == 0 && step_stop_if_no_debug)
1056 {
1057 tp->control.step_range_start = tp->control.step_range_end = 1;
1058 tp->control.may_range_step = 0;
1059 }
1060 else if (tp->control.step_range_end == 0)
1061 {
1062 const char *name;
1063
1064 if (find_pc_partial_function (pc, &name,
1065 &tp->control.step_range_start,
1066 &tp->control.step_range_end) == 0)
1067 error (_("Cannot find bounds of current function"));
1068
1069 target_terminal_ours ();
1070 printf_filtered (_("Single stepping until exit from function %s,"
1071 "\nwhich has no line number information.\n"),
1072 name);
1073 }
1074 }
1075 else
1076 {
1077 /* Say we are stepping, but stop after one insn whatever it does. */
1078 tp->control.step_range_start = tp->control.step_range_end = 1;
1079 if (!skip_subroutines)
1080 /* It is stepi.
1081 Don't step over function calls, not even to functions lacking
1082 line numbers. */
1083 tp->control.step_over_calls = STEP_OVER_NONE;
1084 }
1085
1086 if (skip_subroutines)
1087 tp->control.step_over_calls = STEP_OVER_ALL;
1088
1089 tp->step_multi = (count > 1);
1090 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 1);
1091
1092 /* For async targets, register a continuation to do any
1093 additional steps. For sync targets, the caller will handle
1094 further stepping. */
1095 if (target_can_async_p ())
1096 {
1097 struct step_1_continuation_args *args;
1098
1099 args = xmalloc (sizeof (*args));
1100 args->skip_subroutines = skip_subroutines;
1101 args->single_inst = single_inst;
1102 args->count = count;
1103 args->thread = thread;
1104
1105 add_intermediate_continuation (tp, step_1_continuation, args, xfree);
1106 }
1107 }
1108 }
1109
1110 \f
1111 /* Continue program at specified address. */
1112
1113 static void
1114 jump_command (char *arg, int from_tty)
1115 {
1116 struct gdbarch *gdbarch = get_current_arch ();
1117 CORE_ADDR addr;
1118 struct symtabs_and_lines sals;
1119 struct symtab_and_line sal;
1120 struct symbol *fn;
1121 struct symbol *sfn;
1122 int async_exec = 0;
1123
1124 ERROR_NO_INFERIOR;
1125 ensure_not_tfind_mode ();
1126 ensure_valid_thread ();
1127 ensure_not_running ();
1128
1129 /* Find out whether we must run in the background. */
1130 if (arg != NULL)
1131 async_exec = strip_bg_char (&arg);
1132
1133 prepare_execution_command (&current_target, async_exec);
1134
1135 if (!arg)
1136 error_no_arg (_("starting address"));
1137
1138 sals = decode_line_with_last_displayed (arg, DECODE_LINE_FUNFIRSTLINE);
1139 if (sals.nelts != 1)
1140 {
1141 error (_("Unreasonable jump request"));
1142 }
1143
1144 sal = sals.sals[0];
1145 xfree (sals.sals);
1146
1147 if (sal.symtab == 0 && sal.pc == 0)
1148 error (_("No source file has been specified."));
1149
1150 resolve_sal_pc (&sal); /* May error out. */
1151
1152 /* See if we are trying to jump to another function. */
1153 fn = get_frame_function (get_current_frame ());
1154 sfn = find_pc_function (sal.pc);
1155 if (fn != NULL && sfn != fn)
1156 {
1157 if (!query (_("Line %d is not in `%s'. Jump anyway? "), sal.line,
1158 SYMBOL_PRINT_NAME (fn)))
1159 {
1160 error (_("Not confirmed."));
1161 /* NOTREACHED */
1162 }
1163 }
1164
1165 if (sfn != NULL)
1166 {
1167 fixup_symbol_section (sfn, 0);
1168 if (section_is_overlay (SYMBOL_OBJ_SECTION (SYMBOL_OBJFILE (sfn), sfn)) &&
1169 !section_is_mapped (SYMBOL_OBJ_SECTION (SYMBOL_OBJFILE (sfn), sfn)))
1170 {
1171 if (!query (_("WARNING!!! Destination is in "
1172 "unmapped overlay! Jump anyway? ")))
1173 {
1174 error (_("Not confirmed."));
1175 /* NOTREACHED */
1176 }
1177 }
1178 }
1179
1180 addr = sal.pc;
1181
1182 if (from_tty)
1183 {
1184 printf_filtered (_("Continuing at "));
1185 fputs_filtered (paddress (gdbarch, addr), gdb_stdout);
1186 printf_filtered (".\n");
1187 }
1188
1189 clear_proceed_status (0);
1190 proceed (addr, GDB_SIGNAL_0, 0);
1191 }
1192 \f
1193
1194 /* Go to line or address in current procedure. */
1195
1196 static void
1197 go_command (char *line_no, int from_tty)
1198 {
1199 if (line_no == (char *) NULL || !*line_no)
1200 printf_filtered (_("Usage: go <location>\n"));
1201 else
1202 {
1203 tbreak_command (line_no, from_tty);
1204 jump_command (line_no, from_tty);
1205 }
1206 }
1207 \f
1208
1209 /* Continue program giving it specified signal. */
1210
1211 static void
1212 signal_command (char *signum_exp, int from_tty)
1213 {
1214 enum gdb_signal oursig;
1215 int async_exec = 0;
1216
1217 dont_repeat (); /* Too dangerous. */
1218 ERROR_NO_INFERIOR;
1219 ensure_not_tfind_mode ();
1220 ensure_valid_thread ();
1221 ensure_not_running ();
1222
1223 /* Find out whether we must run in the background. */
1224 if (signum_exp != NULL)
1225 async_exec = strip_bg_char (&signum_exp);
1226
1227 prepare_execution_command (&current_target, async_exec);
1228
1229 if (!signum_exp)
1230 error_no_arg (_("signal number"));
1231
1232 /* It would be even slicker to make signal names be valid expressions,
1233 (the type could be "enum $signal" or some such), then the user could
1234 assign them to convenience variables. */
1235 oursig = gdb_signal_from_name (signum_exp);
1236
1237 if (oursig == GDB_SIGNAL_UNKNOWN)
1238 {
1239 /* No, try numeric. */
1240 int num = parse_and_eval_long (signum_exp);
1241
1242 if (num == 0)
1243 oursig = GDB_SIGNAL_0;
1244 else
1245 oursig = gdb_signal_from_command (num);
1246 }
1247
1248 /* Look for threads other than the current that this command ends up
1249 resuming too (due to schedlock off), and warn if they'll get a
1250 signal delivered. "signal 0" is used to suppress a previous
1251 signal, but if the current thread is no longer the one that got
1252 the signal, then the user is potentially suppressing the signal
1253 of the wrong thread. */
1254 if (!non_stop)
1255 {
1256 struct thread_info *tp;
1257 ptid_t resume_ptid;
1258 int must_confirm = 0;
1259
1260 /* This indicates what will be resumed. Either a single thread,
1261 a whole process, or all threads of all processes. */
1262 resume_ptid = user_visible_resume_ptid (0);
1263
1264 ALL_NON_EXITED_THREADS (tp)
1265 {
1266 if (ptid_equal (tp->ptid, inferior_ptid))
1267 continue;
1268 if (!ptid_match (tp->ptid, resume_ptid))
1269 continue;
1270
1271 if (tp->suspend.stop_signal != GDB_SIGNAL_0
1272 && signal_pass_state (tp->suspend.stop_signal))
1273 {
1274 if (!must_confirm)
1275 printf_unfiltered (_("Note:\n"));
1276 printf_unfiltered (_(" Thread %d previously stopped with signal %s, %s.\n"),
1277 tp->num,
1278 gdb_signal_to_name (tp->suspend.stop_signal),
1279 gdb_signal_to_string (tp->suspend.stop_signal));
1280 must_confirm = 1;
1281 }
1282 }
1283
1284 if (must_confirm
1285 && !query (_("Continuing thread %d (the current thread) with specified signal will\n"
1286 "still deliver the signals noted above to their respective threads.\n"
1287 "Continue anyway? "),
1288 inferior_thread ()->num))
1289 error (_("Not confirmed."));
1290 }
1291
1292 if (from_tty)
1293 {
1294 if (oursig == GDB_SIGNAL_0)
1295 printf_filtered (_("Continuing with no signal.\n"));
1296 else
1297 printf_filtered (_("Continuing with signal %s.\n"),
1298 gdb_signal_to_name (oursig));
1299 }
1300
1301 clear_proceed_status (0);
1302 proceed ((CORE_ADDR) -1, oursig, 0);
1303 }
1304
1305 /* Continuation args to be passed to the "until" command
1306 continuation. */
1307 struct until_next_continuation_args
1308 {
1309 /* The thread that was current when the command was executed. */
1310 int thread;
1311 };
1312
1313 /* A continuation callback for until_next_command. */
1314
1315 static void
1316 until_next_continuation (void *arg, int err)
1317 {
1318 struct until_next_continuation_args *a = arg;
1319
1320 delete_longjmp_breakpoint (a->thread);
1321 }
1322
1323 /* Proceed until we reach a different source line with pc greater than
1324 our current one or exit the function. We skip calls in both cases.
1325
1326 Note that eventually this command should probably be changed so
1327 that only source lines are printed out when we hit the breakpoint
1328 we set. This may involve changes to wait_for_inferior and the
1329 proceed status code. */
1330
1331 static void
1332 until_next_command (int from_tty)
1333 {
1334 struct frame_info *frame;
1335 CORE_ADDR pc;
1336 struct symbol *func;
1337 struct symtab_and_line sal;
1338 struct thread_info *tp = inferior_thread ();
1339 int thread = tp->num;
1340 struct cleanup *old_chain;
1341
1342 clear_proceed_status (0);
1343 set_step_frame ();
1344
1345 frame = get_current_frame ();
1346
1347 /* Step until either exited from this function or greater
1348 than the current line (if in symbolic section) or pc (if
1349 not). */
1350
1351 pc = get_frame_pc (frame);
1352 func = find_pc_function (pc);
1353
1354 if (!func)
1355 {
1356 struct bound_minimal_symbol msymbol = lookup_minimal_symbol_by_pc (pc);
1357
1358 if (msymbol.minsym == NULL)
1359 error (_("Execution is not within a known function."));
1360
1361 tp->control.step_range_start = BMSYMBOL_VALUE_ADDRESS (msymbol);
1362 /* The upper-bound of step_range is exclusive. In order to make PC
1363 within the range, set the step_range_end with PC + 1. */
1364 tp->control.step_range_end = pc + 1;
1365 }
1366 else
1367 {
1368 sal = find_pc_line (pc, 0);
1369
1370 tp->control.step_range_start = BLOCK_START (SYMBOL_BLOCK_VALUE (func));
1371 tp->control.step_range_end = sal.end;
1372 }
1373 tp->control.may_range_step = 1;
1374
1375 tp->control.step_over_calls = STEP_OVER_ALL;
1376
1377 tp->step_multi = 0; /* Only one call to proceed */
1378
1379 set_longjmp_breakpoint (tp, get_frame_id (frame));
1380 old_chain = make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
1381
1382 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 1);
1383
1384 if (target_can_async_p () && is_running (inferior_ptid))
1385 {
1386 struct until_next_continuation_args *cont_args;
1387
1388 discard_cleanups (old_chain);
1389 cont_args = XNEW (struct until_next_continuation_args);
1390 cont_args->thread = inferior_thread ()->num;
1391
1392 add_continuation (tp, until_next_continuation, cont_args, xfree);
1393 }
1394 else
1395 do_cleanups (old_chain);
1396 }
1397
1398 static void
1399 until_command (char *arg, int from_tty)
1400 {
1401 int async_exec = 0;
1402
1403 ERROR_NO_INFERIOR;
1404 ensure_not_tfind_mode ();
1405 ensure_valid_thread ();
1406 ensure_not_running ();
1407
1408 /* Find out whether we must run in the background. */
1409 if (arg != NULL)
1410 async_exec = strip_bg_char (&arg);
1411
1412 prepare_execution_command (&current_target, async_exec);
1413
1414 if (arg)
1415 until_break_command (arg, from_tty, 0);
1416 else
1417 until_next_command (from_tty);
1418 }
1419
1420 static void
1421 advance_command (char *arg, int from_tty)
1422 {
1423 int async_exec = 0;
1424
1425 ERROR_NO_INFERIOR;
1426 ensure_not_tfind_mode ();
1427 ensure_valid_thread ();
1428 ensure_not_running ();
1429
1430 if (arg == NULL)
1431 error_no_arg (_("a location"));
1432
1433 /* Find out whether we must run in the background. */
1434 if (arg != NULL)
1435 async_exec = strip_bg_char (&arg);
1436
1437 prepare_execution_command (&current_target, async_exec);
1438
1439 until_break_command (arg, from_tty, 1);
1440 }
1441 \f
1442 /* Return the value of the result of a function at the end of a 'finish'
1443 command/BP. */
1444
1445 struct value *
1446 get_return_value (struct value *function, struct type *value_type)
1447 {
1448 struct regcache *stop_regs = stop_registers;
1449 struct gdbarch *gdbarch;
1450 struct value *value;
1451 struct cleanup *cleanup = make_cleanup (null_cleanup, NULL);
1452
1453 /* If stop_registers were not saved, use the current registers. */
1454 if (!stop_regs)
1455 {
1456 stop_regs = regcache_dup (get_current_regcache ());
1457 make_cleanup_regcache_xfree (stop_regs);
1458 }
1459
1460 gdbarch = get_regcache_arch (stop_regs);
1461
1462 CHECK_TYPEDEF (value_type);
1463 gdb_assert (TYPE_CODE (value_type) != TYPE_CODE_VOID);
1464
1465 /* FIXME: 2003-09-27: When returning from a nested inferior function
1466 call, it's possible (with no help from the architecture vector)
1467 to locate and return/print a "struct return" value. This is just
1468 a more complicated case of what is already being done in the
1469 inferior function call code. In fact, when inferior function
1470 calls are made async, this will likely be made the norm. */
1471
1472 switch (gdbarch_return_value (gdbarch, function, value_type,
1473 NULL, NULL, NULL))
1474 {
1475 case RETURN_VALUE_REGISTER_CONVENTION:
1476 case RETURN_VALUE_ABI_RETURNS_ADDRESS:
1477 case RETURN_VALUE_ABI_PRESERVES_ADDRESS:
1478 value = allocate_value (value_type);
1479 gdbarch_return_value (gdbarch, function, value_type, stop_regs,
1480 value_contents_raw (value), NULL);
1481 break;
1482 case RETURN_VALUE_STRUCT_CONVENTION:
1483 value = NULL;
1484 break;
1485 default:
1486 internal_error (__FILE__, __LINE__, _("bad switch"));
1487 }
1488
1489 do_cleanups (cleanup);
1490
1491 return value;
1492 }
1493
1494 /* Print the result of a function at the end of a 'finish' command. */
1495
1496 static void
1497 print_return_value (struct value *function, struct type *value_type)
1498 {
1499 struct value *value = get_return_value (function, value_type);
1500 struct ui_out *uiout = current_uiout;
1501
1502 if (value)
1503 {
1504 struct value_print_options opts;
1505 struct ui_file *stb;
1506 struct cleanup *old_chain;
1507
1508 /* Print it. */
1509 stb = mem_fileopen ();
1510 old_chain = make_cleanup_ui_file_delete (stb);
1511 ui_out_text (uiout, "Value returned is ");
1512 ui_out_field_fmt (uiout, "gdb-result-var", "$%d",
1513 record_latest_value (value));
1514 ui_out_text (uiout, " = ");
1515 get_no_prettyformat_print_options (&opts);
1516 value_print (value, stb, &opts);
1517 ui_out_field_stream (uiout, "return-value", stb);
1518 ui_out_text (uiout, "\n");
1519 do_cleanups (old_chain);
1520 }
1521 else
1522 {
1523 ui_out_text (uiout, "Value returned has type: ");
1524 ui_out_field_string (uiout, "return-type", TYPE_NAME (value_type));
1525 ui_out_text (uiout, ".");
1526 ui_out_text (uiout, " Cannot determine contents\n");
1527 }
1528 }
1529
1530 /* Stuff that needs to be done by the finish command after the target
1531 has stopped. In asynchronous mode, we wait for the target to stop
1532 in the call to poll or select in the event loop, so it is
1533 impossible to do all the stuff as part of the finish_command
1534 function itself. The only chance we have to complete this command
1535 is in fetch_inferior_event, which is called by the event loop as
1536 soon as it detects that the target has stopped. */
1537
1538 struct finish_command_continuation_args
1539 {
1540 /* The thread that as current when the command was executed. */
1541 int thread;
1542 struct breakpoint *breakpoint;
1543 struct symbol *function;
1544 };
1545
1546 static void
1547 finish_command_continuation (void *arg, int err)
1548 {
1549 struct finish_command_continuation_args *a = arg;
1550
1551 if (!err)
1552 {
1553 struct thread_info *tp = NULL;
1554 bpstat bs = NULL;
1555
1556 if (!ptid_equal (inferior_ptid, null_ptid)
1557 && target_has_execution
1558 && is_stopped (inferior_ptid))
1559 {
1560 tp = inferior_thread ();
1561 bs = tp->control.stop_bpstat;
1562 }
1563
1564 if (bpstat_find_breakpoint (bs, a->breakpoint) != NULL
1565 && a->function != NULL)
1566 {
1567 struct type *value_type;
1568
1569 value_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (a->function));
1570 if (!value_type)
1571 internal_error (__FILE__, __LINE__,
1572 _("finish_command: function has no target type"));
1573
1574 if (TYPE_CODE (value_type) != TYPE_CODE_VOID)
1575 {
1576 volatile struct gdb_exception ex;
1577 struct value *func;
1578
1579 func = read_var_value (a->function, get_current_frame ());
1580 TRY_CATCH (ex, RETURN_MASK_ALL)
1581 {
1582 /* print_return_value can throw an exception in some
1583 circumstances. We need to catch this so that we still
1584 delete the breakpoint. */
1585 print_return_value (func, value_type);
1586 }
1587 if (ex.reason < 0)
1588 exception_print (gdb_stdout, ex);
1589 }
1590 }
1591
1592 /* We suppress normal call of normal_stop observer and do it
1593 here so that the *stopped notification includes the return
1594 value. */
1595 if (bs != NULL && tp->control.proceed_to_finish)
1596 observer_notify_normal_stop (bs, 1 /* print frame */);
1597 }
1598
1599 delete_breakpoint (a->breakpoint);
1600 delete_longjmp_breakpoint (a->thread);
1601 }
1602
1603 static void
1604 finish_command_continuation_free_arg (void *arg)
1605 {
1606 xfree (arg);
1607 }
1608
1609 /* finish_backward -- helper function for finish_command. */
1610
1611 static void
1612 finish_backward (struct symbol *function)
1613 {
1614 struct symtab_and_line sal;
1615 struct thread_info *tp = inferior_thread ();
1616 CORE_ADDR pc;
1617 CORE_ADDR func_addr;
1618
1619 pc = get_frame_pc (get_current_frame ());
1620
1621 if (find_pc_partial_function (pc, NULL, &func_addr, NULL) == 0)
1622 error (_("Cannot find bounds of current function"));
1623
1624 sal = find_pc_line (func_addr, 0);
1625
1626 tp->control.proceed_to_finish = 1;
1627 /* Special case: if we're sitting at the function entry point,
1628 then all we need to do is take a reverse singlestep. We
1629 don't need to set a breakpoint, and indeed it would do us
1630 no good to do so.
1631
1632 Note that this can only happen at frame #0, since there's
1633 no way that a function up the stack can have a return address
1634 that's equal to its entry point. */
1635
1636 if (sal.pc != pc)
1637 {
1638 struct frame_info *frame = get_selected_frame (NULL);
1639 struct gdbarch *gdbarch = get_frame_arch (frame);
1640 struct symtab_and_line sr_sal;
1641
1642 /* Set a step-resume at the function's entry point. Once that's
1643 hit, we'll do one more step backwards. */
1644 init_sal (&sr_sal);
1645 sr_sal.pc = sal.pc;
1646 sr_sal.pspace = get_frame_program_space (frame);
1647 insert_step_resume_breakpoint_at_sal (gdbarch,
1648 sr_sal, null_frame_id);
1649
1650 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 0);
1651 }
1652 else
1653 {
1654 /* We're almost there -- we just need to back up by one more
1655 single-step. */
1656 tp->control.step_range_start = tp->control.step_range_end = 1;
1657 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 1);
1658 }
1659 }
1660
1661 /* finish_forward -- helper function for finish_command. */
1662
1663 static void
1664 finish_forward (struct symbol *function, struct frame_info *frame)
1665 {
1666 struct frame_id frame_id = get_frame_id (frame);
1667 struct gdbarch *gdbarch = get_frame_arch (frame);
1668 struct symtab_and_line sal;
1669 struct thread_info *tp = inferior_thread ();
1670 struct breakpoint *breakpoint;
1671 struct cleanup *old_chain;
1672 struct finish_command_continuation_args *cargs;
1673 int thread = tp->num;
1674
1675 sal = find_pc_line (get_frame_pc (frame), 0);
1676 sal.pc = get_frame_pc (frame);
1677
1678 breakpoint = set_momentary_breakpoint (gdbarch, sal,
1679 get_stack_frame_id (frame),
1680 bp_finish);
1681
1682 /* set_momentary_breakpoint invalidates FRAME. */
1683 frame = NULL;
1684
1685 old_chain = make_cleanup_delete_breakpoint (breakpoint);
1686
1687 set_longjmp_breakpoint (tp, frame_id);
1688 make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
1689
1690 /* We want stop_registers, please... */
1691 tp->control.proceed_to_finish = 1;
1692 cargs = xmalloc (sizeof (*cargs));
1693
1694 cargs->thread = thread;
1695 cargs->breakpoint = breakpoint;
1696 cargs->function = function;
1697 add_continuation (tp, finish_command_continuation, cargs,
1698 finish_command_continuation_free_arg);
1699 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 0);
1700
1701 discard_cleanups (old_chain);
1702 if (!target_can_async_p ())
1703 do_all_continuations (0);
1704 }
1705
1706 /* "finish": Set a temporary breakpoint at the place the selected
1707 frame will return to, then continue. */
1708
1709 static void
1710 finish_command (char *arg, int from_tty)
1711 {
1712 struct frame_info *frame;
1713 struct symbol *function;
1714
1715 int async_exec = 0;
1716
1717 ERROR_NO_INFERIOR;
1718 ensure_not_tfind_mode ();
1719 ensure_valid_thread ();
1720 ensure_not_running ();
1721
1722 /* Find out whether we must run in the background. */
1723 if (arg != NULL)
1724 async_exec = strip_bg_char (&arg);
1725
1726 prepare_execution_command (&current_target, async_exec);
1727
1728 if (arg)
1729 error (_("The \"finish\" command does not take any arguments."));
1730
1731 frame = get_prev_frame (get_selected_frame (_("No selected frame.")));
1732 if (frame == 0)
1733 error (_("\"finish\" not meaningful in the outermost frame."));
1734
1735 clear_proceed_status (0);
1736
1737 /* Finishing from an inline frame is completely different. We don't
1738 try to show the "return value" - no way to locate it. So we do
1739 not need a completion. */
1740 if (get_frame_type (get_selected_frame (_("No selected frame.")))
1741 == INLINE_FRAME)
1742 {
1743 /* Claim we are stepping in the calling frame. An empty step
1744 range means that we will stop once we aren't in a function
1745 called by that frame. We don't use the magic "1" value for
1746 step_range_end, because then infrun will think this is nexti,
1747 and not step over the rest of this inlined function call. */
1748 struct thread_info *tp = inferior_thread ();
1749 struct symtab_and_line empty_sal;
1750
1751 init_sal (&empty_sal);
1752 set_step_info (frame, empty_sal);
1753 tp->control.step_range_start = get_frame_pc (frame);
1754 tp->control.step_range_end = tp->control.step_range_start;
1755 tp->control.step_over_calls = STEP_OVER_ALL;
1756
1757 /* Print info on the selected frame, including level number but not
1758 source. */
1759 if (from_tty)
1760 {
1761 printf_filtered (_("Run till exit from "));
1762 print_stack_frame (get_selected_frame (NULL), 1, LOCATION, 0);
1763 }
1764
1765 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 1);
1766 return;
1767 }
1768
1769 /* Ignore TAILCALL_FRAME type frames, they were executed already before
1770 entering THISFRAME. */
1771 while (get_frame_type (frame) == TAILCALL_FRAME)
1772 frame = get_prev_frame (frame);
1773
1774 /* Find the function we will return from. */
1775
1776 function = find_pc_function (get_frame_pc (get_selected_frame (NULL)));
1777
1778 /* Print info on the selected frame, including level number but not
1779 source. */
1780 if (from_tty)
1781 {
1782 if (execution_direction == EXEC_REVERSE)
1783 printf_filtered (_("Run back to call of "));
1784 else
1785 printf_filtered (_("Run till exit from "));
1786
1787 print_stack_frame (get_selected_frame (NULL), 1, LOCATION, 0);
1788 }
1789
1790 if (execution_direction == EXEC_REVERSE)
1791 finish_backward (function);
1792 else
1793 finish_forward (function, frame);
1794 }
1795 \f
1796
1797 static void
1798 program_info (char *args, int from_tty)
1799 {
1800 bpstat bs;
1801 int num, stat;
1802 struct thread_info *tp;
1803 ptid_t ptid;
1804
1805 if (!target_has_execution)
1806 {
1807 printf_filtered (_("The program being debugged is not being run.\n"));
1808 return;
1809 }
1810
1811 if (non_stop)
1812 ptid = inferior_ptid;
1813 else
1814 {
1815 struct target_waitstatus ws;
1816
1817 get_last_target_status (&ptid, &ws);
1818 }
1819
1820 if (ptid_equal (ptid, null_ptid) || is_exited (ptid))
1821 error (_("Invalid selected thread."));
1822 else if (is_running (ptid))
1823 error (_("Selected thread is running."));
1824
1825 tp = find_thread_ptid (ptid);
1826 bs = tp->control.stop_bpstat;
1827 stat = bpstat_num (&bs, &num);
1828
1829 target_files_info ();
1830 printf_filtered (_("Program stopped at %s.\n"),
1831 paddress (target_gdbarch (), stop_pc));
1832 if (tp->control.stop_step)
1833 printf_filtered (_("It stopped after being stepped.\n"));
1834 else if (stat != 0)
1835 {
1836 /* There may be several breakpoints in the same place, so this
1837 isn't as strange as it seems. */
1838 while (stat != 0)
1839 {
1840 if (stat < 0)
1841 {
1842 printf_filtered (_("It stopped at a breakpoint "
1843 "that has since been deleted.\n"));
1844 }
1845 else
1846 printf_filtered (_("It stopped at breakpoint %d.\n"), num);
1847 stat = bpstat_num (&bs, &num);
1848 }
1849 }
1850 else if (tp->suspend.stop_signal != GDB_SIGNAL_0)
1851 {
1852 printf_filtered (_("It stopped with signal %s, %s.\n"),
1853 gdb_signal_to_name (tp->suspend.stop_signal),
1854 gdb_signal_to_string (tp->suspend.stop_signal));
1855 }
1856
1857 if (!from_tty)
1858 {
1859 printf_filtered (_("Type \"info stack\" or \"info "
1860 "registers\" for more information.\n"));
1861 }
1862 }
1863 \f
1864 static void
1865 environment_info (char *var, int from_tty)
1866 {
1867 if (var)
1868 {
1869 char *val = get_in_environ (current_inferior ()->environment, var);
1870
1871 if (val)
1872 {
1873 puts_filtered (var);
1874 puts_filtered (" = ");
1875 puts_filtered (val);
1876 puts_filtered ("\n");
1877 }
1878 else
1879 {
1880 puts_filtered ("Environment variable \"");
1881 puts_filtered (var);
1882 puts_filtered ("\" not defined.\n");
1883 }
1884 }
1885 else
1886 {
1887 char **vector = environ_vector (current_inferior ()->environment);
1888
1889 while (*vector)
1890 {
1891 puts_filtered (*vector++);
1892 puts_filtered ("\n");
1893 }
1894 }
1895 }
1896
1897 static void
1898 set_environment_command (char *arg, int from_tty)
1899 {
1900 char *p, *val, *var;
1901 int nullset = 0;
1902
1903 if (arg == 0)
1904 error_no_arg (_("environment variable and value"));
1905
1906 /* Find seperation between variable name and value. */
1907 p = (char *) strchr (arg, '=');
1908 val = (char *) strchr (arg, ' ');
1909
1910 if (p != 0 && val != 0)
1911 {
1912 /* We have both a space and an equals. If the space is before the
1913 equals, walk forward over the spaces til we see a nonspace
1914 (possibly the equals). */
1915 if (p > val)
1916 while (*val == ' ')
1917 val++;
1918
1919 /* Now if the = is after the char following the spaces,
1920 take the char following the spaces. */
1921 if (p > val)
1922 p = val - 1;
1923 }
1924 else if (val != 0 && p == 0)
1925 p = val;
1926
1927 if (p == arg)
1928 error_no_arg (_("environment variable to set"));
1929
1930 if (p == 0 || p[1] == 0)
1931 {
1932 nullset = 1;
1933 if (p == 0)
1934 p = arg + strlen (arg); /* So that savestring below will work. */
1935 }
1936 else
1937 {
1938 /* Not setting variable value to null. */
1939 val = p + 1;
1940 while (*val == ' ' || *val == '\t')
1941 val++;
1942 }
1943
1944 while (p != arg && (p[-1] == ' ' || p[-1] == '\t'))
1945 p--;
1946
1947 var = savestring (arg, p - arg);
1948 if (nullset)
1949 {
1950 printf_filtered (_("Setting environment variable "
1951 "\"%s\" to null value.\n"),
1952 var);
1953 set_in_environ (current_inferior ()->environment, var, "");
1954 }
1955 else
1956 set_in_environ (current_inferior ()->environment, var, val);
1957 xfree (var);
1958 }
1959
1960 static void
1961 unset_environment_command (char *var, int from_tty)
1962 {
1963 if (var == 0)
1964 {
1965 /* If there is no argument, delete all environment variables.
1966 Ask for confirmation if reading from the terminal. */
1967 if (!from_tty || query (_("Delete all environment variables? ")))
1968 {
1969 free_environ (current_inferior ()->environment);
1970 current_inferior ()->environment = make_environ ();
1971 }
1972 }
1973 else
1974 unset_in_environ (current_inferior ()->environment, var);
1975 }
1976
1977 /* Handle the execution path (PATH variable). */
1978
1979 static const char path_var_name[] = "PATH";
1980
1981 static void
1982 path_info (char *args, int from_tty)
1983 {
1984 puts_filtered ("Executable and object file path: ");
1985 puts_filtered (get_in_environ (current_inferior ()->environment,
1986 path_var_name));
1987 puts_filtered ("\n");
1988 }
1989
1990 /* Add zero or more directories to the front of the execution path. */
1991
1992 static void
1993 path_command (char *dirname, int from_tty)
1994 {
1995 char *exec_path;
1996 char *env;
1997
1998 dont_repeat ();
1999 env = get_in_environ (current_inferior ()->environment, path_var_name);
2000 /* Can be null if path is not set. */
2001 if (!env)
2002 env = "";
2003 exec_path = xstrdup (env);
2004 mod_path (dirname, &exec_path);
2005 set_in_environ (current_inferior ()->environment, path_var_name, exec_path);
2006 xfree (exec_path);
2007 if (from_tty)
2008 path_info ((char *) NULL, from_tty);
2009 }
2010 \f
2011
2012 /* Print out the register NAME with value VAL, to FILE, in the default
2013 fashion. */
2014
2015 static void
2016 default_print_one_register_info (struct ui_file *file,
2017 const char *name,
2018 struct value *val)
2019 {
2020 struct type *regtype = value_type (val);
2021 int print_raw_format;
2022
2023 fputs_filtered (name, file);
2024 print_spaces_filtered (15 - strlen (name), file);
2025
2026 print_raw_format = (value_entirely_available (val)
2027 && !value_optimized_out (val));
2028
2029 /* If virtual format is floating, print it that way, and in raw
2030 hex. */
2031 if (TYPE_CODE (regtype) == TYPE_CODE_FLT
2032 || TYPE_CODE (regtype) == TYPE_CODE_DECFLOAT)
2033 {
2034 int j;
2035 struct value_print_options opts;
2036 const gdb_byte *valaddr = value_contents_for_printing (val);
2037 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (regtype));
2038
2039 get_user_print_options (&opts);
2040 opts.deref_ref = 1;
2041
2042 val_print (regtype,
2043 value_contents_for_printing (val),
2044 value_embedded_offset (val), 0,
2045 file, 0, val, &opts, current_language);
2046
2047 if (print_raw_format)
2048 {
2049 fprintf_filtered (file, "\t(raw ");
2050 print_hex_chars (file, valaddr, TYPE_LENGTH (regtype), byte_order);
2051 fprintf_filtered (file, ")");
2052 }
2053 }
2054 else
2055 {
2056 struct value_print_options opts;
2057
2058 /* Print the register in hex. */
2059 get_formatted_print_options (&opts, 'x');
2060 opts.deref_ref = 1;
2061 val_print (regtype,
2062 value_contents_for_printing (val),
2063 value_embedded_offset (val), 0,
2064 file, 0, val, &opts, current_language);
2065 /* If not a vector register, print it also according to its
2066 natural format. */
2067 if (print_raw_format && TYPE_VECTOR (regtype) == 0)
2068 {
2069 get_user_print_options (&opts);
2070 opts.deref_ref = 1;
2071 fprintf_filtered (file, "\t");
2072 val_print (regtype,
2073 value_contents_for_printing (val),
2074 value_embedded_offset (val), 0,
2075 file, 0, val, &opts, current_language);
2076 }
2077 }
2078
2079 fprintf_filtered (file, "\n");
2080 }
2081
2082 /* Print out the machine register regnum. If regnum is -1, print all
2083 registers (print_all == 1) or all non-float and non-vector
2084 registers (print_all == 0).
2085
2086 For most machines, having all_registers_info() print the
2087 register(s) one per line is good enough. If a different format is
2088 required, (eg, for MIPS or Pyramid 90x, which both have lots of
2089 regs), or there is an existing convention for showing all the
2090 registers, define the architecture method PRINT_REGISTERS_INFO to
2091 provide that format. */
2092
2093 void
2094 default_print_registers_info (struct gdbarch *gdbarch,
2095 struct ui_file *file,
2096 struct frame_info *frame,
2097 int regnum, int print_all)
2098 {
2099 int i;
2100 const int numregs = gdbarch_num_regs (gdbarch)
2101 + gdbarch_num_pseudo_regs (gdbarch);
2102
2103 for (i = 0; i < numregs; i++)
2104 {
2105 /* Decide between printing all regs, non-float / vector regs, or
2106 specific reg. */
2107 if (regnum == -1)
2108 {
2109 if (print_all)
2110 {
2111 if (!gdbarch_register_reggroup_p (gdbarch, i, all_reggroup))
2112 continue;
2113 }
2114 else
2115 {
2116 if (!gdbarch_register_reggroup_p (gdbarch, i, general_reggroup))
2117 continue;
2118 }
2119 }
2120 else
2121 {
2122 if (i != regnum)
2123 continue;
2124 }
2125
2126 /* If the register name is empty, it is undefined for this
2127 processor, so don't display anything. */
2128 if (gdbarch_register_name (gdbarch, i) == NULL
2129 || *(gdbarch_register_name (gdbarch, i)) == '\0')
2130 continue;
2131
2132 default_print_one_register_info (file,
2133 gdbarch_register_name (gdbarch, i),
2134 value_of_register (i, frame));
2135 }
2136 }
2137
2138 void
2139 registers_info (char *addr_exp, int fpregs)
2140 {
2141 struct frame_info *frame;
2142 struct gdbarch *gdbarch;
2143
2144 if (!target_has_registers)
2145 error (_("The program has no registers now."));
2146 frame = get_selected_frame (NULL);
2147 gdbarch = get_frame_arch (frame);
2148
2149 if (!addr_exp)
2150 {
2151 gdbarch_print_registers_info (gdbarch, gdb_stdout,
2152 frame, -1, fpregs);
2153 return;
2154 }
2155
2156 while (*addr_exp != '\0')
2157 {
2158 char *start;
2159 const char *end;
2160
2161 /* Skip leading white space. */
2162 addr_exp = skip_spaces (addr_exp);
2163
2164 /* Discard any leading ``$''. Check that there is something
2165 resembling a register following it. */
2166 if (addr_exp[0] == '$')
2167 addr_exp++;
2168 if (isspace ((*addr_exp)) || (*addr_exp) == '\0')
2169 error (_("Missing register name"));
2170
2171 /* Find the start/end of this register name/num/group. */
2172 start = addr_exp;
2173 while ((*addr_exp) != '\0' && !isspace ((*addr_exp)))
2174 addr_exp++;
2175 end = addr_exp;
2176
2177 /* Figure out what we've found and display it. */
2178
2179 /* A register name? */
2180 {
2181 int regnum = user_reg_map_name_to_regnum (gdbarch, start, end - start);
2182
2183 if (regnum >= 0)
2184 {
2185 /* User registers lie completely outside of the range of
2186 normal registers. Catch them early so that the target
2187 never sees them. */
2188 if (regnum >= gdbarch_num_regs (gdbarch)
2189 + gdbarch_num_pseudo_regs (gdbarch))
2190 {
2191 struct value *regval = value_of_user_reg (regnum, frame);
2192 const char *regname = user_reg_map_regnum_to_name (gdbarch,
2193 regnum);
2194
2195 /* Print in the same fashion
2196 gdbarch_print_registers_info's default
2197 implementation prints. */
2198 default_print_one_register_info (gdb_stdout,
2199 regname,
2200 regval);
2201 }
2202 else
2203 gdbarch_print_registers_info (gdbarch, gdb_stdout,
2204 frame, regnum, fpregs);
2205 continue;
2206 }
2207 }
2208
2209 /* A register group? */
2210 {
2211 struct reggroup *group;
2212
2213 for (group = reggroup_next (gdbarch, NULL);
2214 group != NULL;
2215 group = reggroup_next (gdbarch, group))
2216 {
2217 /* Don't bother with a length check. Should the user
2218 enter a short register group name, go with the first
2219 group that matches. */
2220 if (strncmp (start, reggroup_name (group), end - start) == 0)
2221 break;
2222 }
2223 if (group != NULL)
2224 {
2225 int regnum;
2226
2227 for (regnum = 0;
2228 regnum < gdbarch_num_regs (gdbarch)
2229 + gdbarch_num_pseudo_regs (gdbarch);
2230 regnum++)
2231 {
2232 if (gdbarch_register_reggroup_p (gdbarch, regnum, group))
2233 gdbarch_print_registers_info (gdbarch,
2234 gdb_stdout, frame,
2235 regnum, fpregs);
2236 }
2237 continue;
2238 }
2239 }
2240
2241 /* Nothing matched. */
2242 error (_("Invalid register `%.*s'"), (int) (end - start), start);
2243 }
2244 }
2245
2246 static void
2247 all_registers_info (char *addr_exp, int from_tty)
2248 {
2249 registers_info (addr_exp, 1);
2250 }
2251
2252 static void
2253 nofp_registers_info (char *addr_exp, int from_tty)
2254 {
2255 registers_info (addr_exp, 0);
2256 }
2257
2258 static void
2259 print_vector_info (struct ui_file *file,
2260 struct frame_info *frame, const char *args)
2261 {
2262 struct gdbarch *gdbarch = get_frame_arch (frame);
2263
2264 if (gdbarch_print_vector_info_p (gdbarch))
2265 gdbarch_print_vector_info (gdbarch, file, frame, args);
2266 else
2267 {
2268 int regnum;
2269 int printed_something = 0;
2270
2271 for (regnum = 0;
2272 regnum < gdbarch_num_regs (gdbarch)
2273 + gdbarch_num_pseudo_regs (gdbarch);
2274 regnum++)
2275 {
2276 if (gdbarch_register_reggroup_p (gdbarch, regnum, vector_reggroup))
2277 {
2278 printed_something = 1;
2279 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
2280 }
2281 }
2282 if (!printed_something)
2283 fprintf_filtered (file, "No vector information\n");
2284 }
2285 }
2286
2287 static void
2288 vector_info (char *args, int from_tty)
2289 {
2290 if (!target_has_registers)
2291 error (_("The program has no registers now."));
2292
2293 print_vector_info (gdb_stdout, get_selected_frame (NULL), args);
2294 }
2295 \f
2296 /* Kill the inferior process. Make us have no inferior. */
2297
2298 static void
2299 kill_command (char *arg, int from_tty)
2300 {
2301 /* FIXME: This should not really be inferior_ptid (or target_has_execution).
2302 It should be a distinct flag that indicates that a target is active, cuz
2303 some targets don't have processes! */
2304
2305 if (ptid_equal (inferior_ptid, null_ptid))
2306 error (_("The program is not being run."));
2307 if (!query (_("Kill the program being debugged? ")))
2308 error (_("Not confirmed."));
2309 target_kill ();
2310
2311 /* If we still have other inferiors to debug, then don't mess with
2312 with their threads. */
2313 if (!have_inferiors ())
2314 {
2315 init_thread_list (); /* Destroy thread info. */
2316
2317 /* Killing off the inferior can leave us with a core file. If
2318 so, print the state we are left in. */
2319 if (target_has_stack)
2320 {
2321 printf_filtered (_("In %s,\n"), target_longname);
2322 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC, 1);
2323 }
2324 }
2325 bfd_cache_close_all ();
2326 }
2327
2328 /* Used in `attach&' command. ARG is a point to an integer
2329 representing a process id. Proceed threads of this process iff
2330 they stopped due to debugger request, and when they did, they
2331 reported a clean stop (GDB_SIGNAL_0). Do not proceed threads
2332 that have been explicitly been told to stop. */
2333
2334 static int
2335 proceed_after_attach_callback (struct thread_info *thread,
2336 void *arg)
2337 {
2338 int pid = * (int *) arg;
2339
2340 if (ptid_get_pid (thread->ptid) == pid
2341 && !is_exited (thread->ptid)
2342 && !is_executing (thread->ptid)
2343 && !thread->stop_requested
2344 && thread->suspend.stop_signal == GDB_SIGNAL_0)
2345 {
2346 switch_to_thread (thread->ptid);
2347 clear_proceed_status (0);
2348 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 0);
2349 }
2350
2351 return 0;
2352 }
2353
2354 static void
2355 proceed_after_attach (int pid)
2356 {
2357 /* Don't error out if the current thread is running, because
2358 there may be other stopped threads. */
2359 struct cleanup *old_chain;
2360
2361 /* Backup current thread and selected frame. */
2362 old_chain = make_cleanup_restore_current_thread ();
2363
2364 iterate_over_threads (proceed_after_attach_callback, &pid);
2365
2366 /* Restore selected ptid. */
2367 do_cleanups (old_chain);
2368 }
2369
2370 /*
2371 * TODO:
2372 * Should save/restore the tty state since it might be that the
2373 * program to be debugged was started on this tty and it wants
2374 * the tty in some state other than what we want. If it's running
2375 * on another terminal or without a terminal, then saving and
2376 * restoring the tty state is a harmless no-op.
2377 * This only needs to be done if we are attaching to a process.
2378 */
2379
2380 /* attach_command --
2381 takes a program started up outside of gdb and ``attaches'' to it.
2382 This stops it cold in its tracks and allows us to start debugging it.
2383 and wait for the trace-trap that results from attaching. */
2384
2385 static void
2386 attach_command_post_wait (char *args, int from_tty, int async_exec)
2387 {
2388 char *exec_file;
2389 char *full_exec_path = NULL;
2390 struct inferior *inferior;
2391
2392 inferior = current_inferior ();
2393 inferior->control.stop_soon = NO_STOP_QUIETLY;
2394
2395 /* If no exec file is yet known, try to determine it from the
2396 process itself. */
2397 exec_file = (char *) get_exec_file (0);
2398 if (!exec_file)
2399 {
2400 exec_file = target_pid_to_exec_file (ptid_get_pid (inferior_ptid));
2401 if (exec_file)
2402 {
2403 /* It's possible we don't have a full path, but rather just a
2404 filename. Some targets, such as HP-UX, don't provide the
2405 full path, sigh.
2406
2407 Attempt to qualify the filename against the source path.
2408 (If that fails, we'll just fall back on the original
2409 filename. Not much more we can do...) */
2410
2411 if (!source_full_path_of (exec_file, &full_exec_path))
2412 full_exec_path = xstrdup (exec_file);
2413
2414 exec_file_attach (full_exec_path, from_tty);
2415 symbol_file_add_main (full_exec_path, from_tty);
2416 }
2417 }
2418 else
2419 {
2420 reopen_exec_file ();
2421 reread_symbols ();
2422 }
2423
2424 /* Take any necessary post-attaching actions for this platform. */
2425 target_post_attach (ptid_get_pid (inferior_ptid));
2426
2427 post_create_inferior (&current_target, from_tty);
2428
2429 if (async_exec)
2430 {
2431 /* The user requested an `attach&', so be sure to leave threads
2432 that didn't get a signal running. */
2433
2434 /* Immediatelly resume all suspended threads of this inferior,
2435 and this inferior only. This should have no effect on
2436 already running threads. If a thread has been stopped with a
2437 signal, leave it be. */
2438 if (non_stop)
2439 proceed_after_attach (inferior->pid);
2440 else
2441 {
2442 if (inferior_thread ()->suspend.stop_signal == GDB_SIGNAL_0)
2443 {
2444 clear_proceed_status (0);
2445 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 0);
2446 }
2447 }
2448 }
2449 else
2450 {
2451 /* The user requested a plain `attach', so be sure to leave
2452 the inferior stopped. */
2453
2454 if (target_can_async_p ())
2455 async_enable_stdin ();
2456
2457 /* At least the current thread is already stopped. */
2458
2459 /* In all-stop, by definition, all threads have to be already
2460 stopped at this point. In non-stop, however, although the
2461 selected thread is stopped, others may still be executing.
2462 Be sure to explicitly stop all threads of the process. This
2463 should have no effect on already stopped threads. */
2464 if (non_stop)
2465 target_stop (pid_to_ptid (inferior->pid));
2466
2467 /* Tell the user/frontend where we're stopped. */
2468 normal_stop ();
2469 if (deprecated_attach_hook)
2470 deprecated_attach_hook ();
2471 }
2472 }
2473
2474 struct attach_command_continuation_args
2475 {
2476 char *args;
2477 int from_tty;
2478 int async_exec;
2479 };
2480
2481 static void
2482 attach_command_continuation (void *args, int err)
2483 {
2484 struct attach_command_continuation_args *a = args;
2485
2486 if (err)
2487 return;
2488
2489 attach_command_post_wait (a->args, a->from_tty, a->async_exec);
2490 }
2491
2492 static void
2493 attach_command_continuation_free_args (void *args)
2494 {
2495 struct attach_command_continuation_args *a = args;
2496
2497 xfree (a->args);
2498 xfree (a);
2499 }
2500
2501 void
2502 attach_command (char *args, int from_tty)
2503 {
2504 int async_exec = 0;
2505 struct target_ops *attach_target;
2506
2507 dont_repeat (); /* Not for the faint of heart */
2508
2509 if (gdbarch_has_global_solist (target_gdbarch ()))
2510 /* Don't complain if all processes share the same symbol
2511 space. */
2512 ;
2513 else if (target_has_execution)
2514 {
2515 if (query (_("A program is being debugged already. Kill it? ")))
2516 target_kill ();
2517 else
2518 error (_("Not killed."));
2519 }
2520
2521 /* Clean up any leftovers from other runs. Some other things from
2522 this function should probably be moved into target_pre_inferior. */
2523 target_pre_inferior (from_tty);
2524
2525 if (args != NULL)
2526 async_exec = strip_bg_char (&args);
2527
2528 attach_target = find_attach_target ();
2529
2530 prepare_execution_command (attach_target, async_exec);
2531
2532 if (non_stop && !attach_target->to_supports_non_stop (attach_target))
2533 error (_("Cannot attach to this target in non-stop mode"));
2534
2535 attach_target->to_attach (attach_target, args, from_tty);
2536 /* to_attach should push the target, so after this point we
2537 shouldn't refer to attach_target again. */
2538 attach_target = NULL;
2539
2540 /* Set up the "saved terminal modes" of the inferior
2541 based on what modes we are starting it with. */
2542 target_terminal_init ();
2543
2544 /* Install inferior's terminal modes. This may look like a no-op,
2545 as we've just saved them above, however, this does more than
2546 restore terminal settings:
2547
2548 - installs a SIGINT handler that forwards SIGINT to the inferior.
2549 Otherwise a Ctrl-C pressed just while waiting for the initial
2550 stop would end up as a spurious Quit.
2551
2552 - removes stdin from the event loop, which we need if attaching
2553 in the foreground, otherwise on targets that report an initial
2554 stop on attach (which are most) we'd process input/commands
2555 while we're in the event loop waiting for that stop. That is,
2556 before the attach continuation runs and the command is really
2557 finished. */
2558 target_terminal_inferior ();
2559
2560 /* Set up execution context to know that we should return from
2561 wait_for_inferior as soon as the target reports a stop. */
2562 init_wait_for_inferior ();
2563 clear_proceed_status (0);
2564
2565 if (non_stop)
2566 {
2567 /* If we find that the current thread isn't stopped, explicitly
2568 do so now, because we're going to install breakpoints and
2569 poke at memory. */
2570
2571 if (async_exec)
2572 /* The user requested an `attach&'; stop just one thread. */
2573 target_stop (inferior_ptid);
2574 else
2575 /* The user requested an `attach', so stop all threads of this
2576 inferior. */
2577 target_stop (pid_to_ptid (ptid_get_pid (inferior_ptid)));
2578 }
2579
2580 /* Some system don't generate traps when attaching to inferior.
2581 E.g. Mach 3 or GNU hurd. */
2582 if (!target_attach_no_wait)
2583 {
2584 struct inferior *inferior = current_inferior ();
2585
2586 /* Careful here. See comments in inferior.h. Basically some
2587 OSes don't ignore SIGSTOPs on continue requests anymore. We
2588 need a way for handle_inferior_event to reset the stop_signal
2589 variable after an attach, and this is what
2590 STOP_QUIETLY_NO_SIGSTOP is for. */
2591 inferior->control.stop_soon = STOP_QUIETLY_NO_SIGSTOP;
2592
2593 if (target_can_async_p ())
2594 {
2595 /* sync_execution mode. Wait for stop. */
2596 struct attach_command_continuation_args *a;
2597
2598 a = xmalloc (sizeof (*a));
2599 a->args = xstrdup (args);
2600 a->from_tty = from_tty;
2601 a->async_exec = async_exec;
2602 add_inferior_continuation (attach_command_continuation, a,
2603 attach_command_continuation_free_args);
2604 return;
2605 }
2606
2607 wait_for_inferior ();
2608 }
2609
2610 attach_command_post_wait (args, from_tty, async_exec);
2611 }
2612
2613 /* We had just found out that the target was already attached to an
2614 inferior. PTID points at a thread of this new inferior, that is
2615 the most likely to be stopped right now, but not necessarily so.
2616 The new inferior is assumed to be already added to the inferior
2617 list at this point. If LEAVE_RUNNING, then leave the threads of
2618 this inferior running, except those we've explicitly seen reported
2619 as stopped. */
2620
2621 void
2622 notice_new_inferior (ptid_t ptid, int leave_running, int from_tty)
2623 {
2624 struct cleanup* old_chain;
2625 int async_exec;
2626
2627 old_chain = make_cleanup (null_cleanup, NULL);
2628
2629 /* If in non-stop, leave threads as running as they were. If
2630 they're stopped for some reason other than us telling it to, the
2631 target reports a signal != GDB_SIGNAL_0. We don't try to
2632 resume threads with such a stop signal. */
2633 async_exec = non_stop;
2634
2635 if (!ptid_equal (inferior_ptid, null_ptid))
2636 make_cleanup_restore_current_thread ();
2637
2638 switch_to_thread (ptid);
2639
2640 /* When we "notice" a new inferior we need to do all the things we
2641 would normally do if we had just attached to it. */
2642
2643 if (is_executing (inferior_ptid))
2644 {
2645 struct inferior *inferior = current_inferior ();
2646
2647 /* We're going to install breakpoints, and poke at memory,
2648 ensure that the inferior is stopped for a moment while we do
2649 that. */
2650 target_stop (inferior_ptid);
2651
2652 inferior->control.stop_soon = STOP_QUIETLY_REMOTE;
2653
2654 /* Wait for stop before proceeding. */
2655 if (target_can_async_p ())
2656 {
2657 struct attach_command_continuation_args *a;
2658
2659 a = xmalloc (sizeof (*a));
2660 a->args = xstrdup ("");
2661 a->from_tty = from_tty;
2662 a->async_exec = async_exec;
2663 add_inferior_continuation (attach_command_continuation, a,
2664 attach_command_continuation_free_args);
2665
2666 do_cleanups (old_chain);
2667 return;
2668 }
2669 else
2670 wait_for_inferior ();
2671 }
2672
2673 async_exec = leave_running;
2674 attach_command_post_wait ("" /* args */, from_tty, async_exec);
2675
2676 do_cleanups (old_chain);
2677 }
2678
2679 /*
2680 * detach_command --
2681 * takes a program previously attached to and detaches it.
2682 * The program resumes execution and will no longer stop
2683 * on signals, etc. We better not have left any breakpoints
2684 * in the program or it'll die when it hits one. For this
2685 * to work, it may be necessary for the process to have been
2686 * previously attached. It *might* work if the program was
2687 * started via the normal ptrace (PTRACE_TRACEME).
2688 */
2689
2690 void
2691 detach_command (char *args, int from_tty)
2692 {
2693 dont_repeat (); /* Not for the faint of heart. */
2694
2695 if (ptid_equal (inferior_ptid, null_ptid))
2696 error (_("The program is not being run."));
2697
2698 query_if_trace_running (from_tty);
2699
2700 disconnect_tracing ();
2701
2702 target_detach (args, from_tty);
2703
2704 /* If the solist is global across inferiors, don't clear it when we
2705 detach from a single inferior. */
2706 if (!gdbarch_has_global_solist (target_gdbarch ()))
2707 no_shared_libraries (NULL, from_tty);
2708
2709 /* If we still have inferiors to debug, then don't mess with their
2710 threads. */
2711 if (!have_inferiors ())
2712 init_thread_list ();
2713
2714 if (deprecated_detach_hook)
2715 deprecated_detach_hook ();
2716 }
2717
2718 /* Disconnect from the current target without resuming it (leaving it
2719 waiting for a debugger).
2720
2721 We'd better not have left any breakpoints in the program or the
2722 next debugger will get confused. Currently only supported for some
2723 remote targets, since the normal attach mechanisms don't work on
2724 stopped processes on some native platforms (e.g. GNU/Linux). */
2725
2726 static void
2727 disconnect_command (char *args, int from_tty)
2728 {
2729 dont_repeat (); /* Not for the faint of heart. */
2730 query_if_trace_running (from_tty);
2731 disconnect_tracing ();
2732 target_disconnect (args, from_tty);
2733 no_shared_libraries (NULL, from_tty);
2734 init_thread_list ();
2735 if (deprecated_detach_hook)
2736 deprecated_detach_hook ();
2737 }
2738
2739 void
2740 interrupt_target_1 (int all_threads)
2741 {
2742 ptid_t ptid;
2743
2744 if (all_threads)
2745 ptid = minus_one_ptid;
2746 else
2747 ptid = inferior_ptid;
2748 target_stop (ptid);
2749
2750 /* Tag the thread as having been explicitly requested to stop, so
2751 other parts of gdb know not to resume this thread automatically,
2752 if it was stopped due to an internal event. Limit this to
2753 non-stop mode, as when debugging a multi-threaded application in
2754 all-stop mode, we will only get one stop event --- it's undefined
2755 which thread will report the event. */
2756 if (non_stop)
2757 set_stop_requested (ptid, 1);
2758 }
2759
2760 /* interrupt [-a]
2761 Stop the execution of the target while running in async mode, in
2762 the backgound. In all-stop, stop the whole process. In non-stop
2763 mode, stop the current thread only by default, or stop all threads
2764 if the `-a' switch is used. */
2765
2766 static void
2767 interrupt_command (char *args, int from_tty)
2768 {
2769 if (target_can_async_p ())
2770 {
2771 int all_threads = 0;
2772
2773 dont_repeat (); /* Not for the faint of heart. */
2774
2775 if (args != NULL
2776 && strncmp (args, "-a", sizeof ("-a") - 1) == 0)
2777 all_threads = 1;
2778
2779 if (!non_stop && all_threads)
2780 error (_("-a is meaningless in all-stop mode."));
2781
2782 interrupt_target_1 (all_threads);
2783 }
2784 }
2785
2786 static void
2787 print_float_info (struct ui_file *file,
2788 struct frame_info *frame, const char *args)
2789 {
2790 struct gdbarch *gdbarch = get_frame_arch (frame);
2791
2792 if (gdbarch_print_float_info_p (gdbarch))
2793 gdbarch_print_float_info (gdbarch, file, frame, args);
2794 else
2795 {
2796 int regnum;
2797 int printed_something = 0;
2798
2799 for (regnum = 0;
2800 regnum < gdbarch_num_regs (gdbarch)
2801 + gdbarch_num_pseudo_regs (gdbarch);
2802 regnum++)
2803 {
2804 if (gdbarch_register_reggroup_p (gdbarch, regnum, float_reggroup))
2805 {
2806 printed_something = 1;
2807 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
2808 }
2809 }
2810 if (!printed_something)
2811 fprintf_filtered (file, "No floating-point info "
2812 "available for this processor.\n");
2813 }
2814 }
2815
2816 static void
2817 float_info (char *args, int from_tty)
2818 {
2819 if (!target_has_registers)
2820 error (_("The program has no registers now."));
2821
2822 print_float_info (gdb_stdout, get_selected_frame (NULL), args);
2823 }
2824 \f
2825 static void
2826 unset_command (char *args, int from_tty)
2827 {
2828 printf_filtered (_("\"unset\" must be followed by the "
2829 "name of an unset subcommand.\n"));
2830 help_list (unsetlist, "unset ", all_commands, gdb_stdout);
2831 }
2832
2833 /* Implement `info proc' family of commands. */
2834
2835 static void
2836 info_proc_cmd_1 (char *args, enum info_proc_what what, int from_tty)
2837 {
2838 struct gdbarch *gdbarch = get_current_arch ();
2839
2840 if (!target_info_proc (args, what))
2841 {
2842 if (gdbarch_info_proc_p (gdbarch))
2843 gdbarch_info_proc (gdbarch, args, what);
2844 else
2845 error (_("Not supported on this target."));
2846 }
2847 }
2848
2849 /* Implement `info proc' when given without any futher parameters. */
2850
2851 static void
2852 info_proc_cmd (char *args, int from_tty)
2853 {
2854 info_proc_cmd_1 (args, IP_MINIMAL, from_tty);
2855 }
2856
2857 /* Implement `info proc mappings'. */
2858
2859 static void
2860 info_proc_cmd_mappings (char *args, int from_tty)
2861 {
2862 info_proc_cmd_1 (args, IP_MAPPINGS, from_tty);
2863 }
2864
2865 /* Implement `info proc stat'. */
2866
2867 static void
2868 info_proc_cmd_stat (char *args, int from_tty)
2869 {
2870 info_proc_cmd_1 (args, IP_STAT, from_tty);
2871 }
2872
2873 /* Implement `info proc status'. */
2874
2875 static void
2876 info_proc_cmd_status (char *args, int from_tty)
2877 {
2878 info_proc_cmd_1 (args, IP_STATUS, from_tty);
2879 }
2880
2881 /* Implement `info proc cwd'. */
2882
2883 static void
2884 info_proc_cmd_cwd (char *args, int from_tty)
2885 {
2886 info_proc_cmd_1 (args, IP_CWD, from_tty);
2887 }
2888
2889 /* Implement `info proc cmdline'. */
2890
2891 static void
2892 info_proc_cmd_cmdline (char *args, int from_tty)
2893 {
2894 info_proc_cmd_1 (args, IP_CMDLINE, from_tty);
2895 }
2896
2897 /* Implement `info proc exe'. */
2898
2899 static void
2900 info_proc_cmd_exe (char *args, int from_tty)
2901 {
2902 info_proc_cmd_1 (args, IP_EXE, from_tty);
2903 }
2904
2905 /* Implement `info proc all'. */
2906
2907 static void
2908 info_proc_cmd_all (char *args, int from_tty)
2909 {
2910 info_proc_cmd_1 (args, IP_ALL, from_tty);
2911 }
2912
2913 void
2914 _initialize_infcmd (void)
2915 {
2916 static struct cmd_list_element *info_proc_cmdlist;
2917 struct cmd_list_element *c = NULL;
2918 const char *cmd_name;
2919
2920 /* Add the filename of the terminal connected to inferior I/O. */
2921 add_setshow_filename_cmd ("inferior-tty", class_run,
2922 &inferior_io_terminal_scratch, _("\
2923 Set terminal for future runs of program being debugged."), _("\
2924 Show terminal for future runs of program being debugged."), _("\
2925 Usage: set inferior-tty /dev/pts/1"),
2926 set_inferior_tty_command,
2927 show_inferior_tty_command,
2928 &setlist, &showlist);
2929 add_com_alias ("tty", "set inferior-tty", class_alias, 0);
2930
2931 cmd_name = "args";
2932 add_setshow_string_noescape_cmd (cmd_name, class_run,
2933 &inferior_args_scratch, _("\
2934 Set argument list to give program being debugged when it is started."), _("\
2935 Show argument list to give program being debugged when it is started."), _("\
2936 Follow this command with any number of args, to be passed to the program."),
2937 set_args_command,
2938 show_args_command,
2939 &setlist, &showlist);
2940 c = lookup_cmd (&cmd_name, setlist, "", -1, 1);
2941 gdb_assert (c != NULL);
2942 set_cmd_completer (c, filename_completer);
2943
2944 c = add_cmd ("environment", no_class, environment_info, _("\
2945 The environment to give the program, or one variable's value.\n\
2946 With an argument VAR, prints the value of environment variable VAR to\n\
2947 give the program being debugged. With no arguments, prints the entire\n\
2948 environment to be given to the program."), &showlist);
2949 set_cmd_completer (c, noop_completer);
2950
2951 add_prefix_cmd ("unset", no_class, unset_command,
2952 _("Complement to certain \"set\" commands."),
2953 &unsetlist, "unset ", 0, &cmdlist);
2954
2955 c = add_cmd ("environment", class_run, unset_environment_command, _("\
2956 Cancel environment variable VAR for the program.\n\
2957 This does not affect the program until the next \"run\" command."),
2958 &unsetlist);
2959 set_cmd_completer (c, noop_completer);
2960
2961 c = add_cmd ("environment", class_run, set_environment_command, _("\
2962 Set environment variable value to give the program.\n\
2963 Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\
2964 VALUES of environment variables are uninterpreted strings.\n\
2965 This does not affect the program until the next \"run\" command."),
2966 &setlist);
2967 set_cmd_completer (c, noop_completer);
2968
2969 c = add_com ("path", class_files, path_command, _("\
2970 Add directory DIR(s) to beginning of search path for object files.\n\
2971 $cwd in the path means the current working directory.\n\
2972 This path is equivalent to the $PATH shell variable. It is a list of\n\
2973 directories, separated by colons. These directories are searched to find\n\
2974 fully linked executable files and separately compiled object files as \
2975 needed."));
2976 set_cmd_completer (c, filename_completer);
2977
2978 c = add_cmd ("paths", no_class, path_info, _("\
2979 Current search path for finding object files.\n\
2980 $cwd in the path means the current working directory.\n\
2981 This path is equivalent to the $PATH shell variable. It is a list of\n\
2982 directories, separated by colons. These directories are searched to find\n\
2983 fully linked executable files and separately compiled object files as \
2984 needed."),
2985 &showlist);
2986 set_cmd_completer (c, noop_completer);
2987
2988 add_prefix_cmd ("kill", class_run, kill_command,
2989 _("Kill execution of program being debugged."),
2990 &killlist, "kill ", 0, &cmdlist);
2991
2992 add_com ("attach", class_run, attach_command, _("\
2993 Attach to a process or file outside of GDB.\n\
2994 This command attaches to another target, of the same type as your last\n\
2995 \"target\" command (\"info files\" will show your target stack).\n\
2996 The command may take as argument a process id or a device file.\n\
2997 For a process id, you must have permission to send the process a signal,\n\
2998 and it must have the same effective uid as the debugger.\n\
2999 When using \"attach\" with a process id, the debugger finds the\n\
3000 program running in the process, looking first in the current working\n\
3001 directory, or (if not found there) using the source file search path\n\
3002 (see the \"directory\" command). You can also use the \"file\" command\n\
3003 to specify the program, and to load its symbol table."));
3004
3005 add_prefix_cmd ("detach", class_run, detach_command, _("\
3006 Detach a process or file previously attached.\n\
3007 If a process, it is no longer traced, and it continues its execution. If\n\
3008 you were debugging a file, the file is closed and gdb no longer accesses it."),
3009 &detachlist, "detach ", 0, &cmdlist);
3010
3011 add_com ("disconnect", class_run, disconnect_command, _("\
3012 Disconnect from a target.\n\
3013 The target will wait for another debugger to connect. Not available for\n\
3014 all targets."));
3015
3016 c = add_com ("signal", class_run, signal_command, _("\
3017 Continue program with the specified signal.\n\
3018 Usage: signal SIGNAL\n\
3019 The SIGNAL argument is processed the same as the handle command.\n\
3020 \n\
3021 An argument of \"0\" means continue the program without sending it a signal.\n\
3022 This is useful in cases where the program stopped because of a signal,\n\
3023 and you want to resume the program while discarding the signal."));
3024 set_cmd_completer (c, signal_completer);
3025
3026 add_com ("stepi", class_run, stepi_command, _("\
3027 Step one instruction exactly.\n\
3028 Usage: stepi [N]\n\
3029 Argument N means step N times (or till program stops for another \
3030 reason)."));
3031 add_com_alias ("si", "stepi", class_alias, 0);
3032
3033 add_com ("nexti", class_run, nexti_command, _("\
3034 Step one instruction, but proceed through subroutine calls.\n\
3035 Usage: nexti [N]\n\
3036 Argument N means step N times (or till program stops for another \
3037 reason)."));
3038 add_com_alias ("ni", "nexti", class_alias, 0);
3039
3040 add_com ("finish", class_run, finish_command, _("\
3041 Execute until selected stack frame returns.\n\
3042 Usage: finish\n\
3043 Upon return, the value returned is printed and put in the value history."));
3044 add_com_alias ("fin", "finish", class_run, 1);
3045
3046 add_com ("next", class_run, next_command, _("\
3047 Step program, proceeding through subroutine calls.\n\
3048 Usage: next [N]\n\
3049 Unlike \"step\", if the current source line calls a subroutine,\n\
3050 this command does not enter the subroutine, but instead steps over\n\
3051 the call, in effect treating it as a single source line."));
3052 add_com_alias ("n", "next", class_run, 1);
3053 if (xdb_commands)
3054 add_com_alias ("S", "next", class_run, 1);
3055
3056 add_com ("step", class_run, step_command, _("\
3057 Step program until it reaches a different source line.\n\
3058 Usage: step [N]\n\
3059 Argument N means step N times (or till program stops for another \
3060 reason)."));
3061 add_com_alias ("s", "step", class_run, 1);
3062
3063 c = add_com ("until", class_run, until_command, _("\
3064 Execute until the program reaches a source line greater than the current\n\
3065 or a specified location (same args as break command) within the current \
3066 frame."));
3067 set_cmd_completer (c, location_completer);
3068 add_com_alias ("u", "until", class_run, 1);
3069
3070 c = add_com ("advance", class_run, advance_command, _("\
3071 Continue the program up to the given location (same form as args for break \
3072 command).\n\
3073 Execution will also stop upon exit from the current stack frame."));
3074 set_cmd_completer (c, location_completer);
3075
3076 c = add_com ("jump", class_run, jump_command, _("\
3077 Continue program being debugged at specified line or address.\n\
3078 Usage: jump <location>\n\
3079 Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\
3080 for an address to start at."));
3081 set_cmd_completer (c, location_completer);
3082 add_com_alias ("j", "jump", class_run, 1);
3083
3084 if (xdb_commands)
3085 {
3086 c = add_com ("go", class_run, go_command, _("\
3087 Usage: go <location>\n\
3088 Continue program being debugged, stopping at specified line or \n\
3089 address.\n\
3090 Give as argument either LINENUM or *ADDR, where ADDR is an \n\
3091 expression for an address to start at.\n\
3092 This command is a combination of tbreak and jump."));
3093 set_cmd_completer (c, location_completer);
3094 }
3095
3096 if (xdb_commands)
3097 add_com_alias ("g", "go", class_run, 1);
3098
3099 add_com ("continue", class_run, continue_command, _("\
3100 Continue program being debugged, after signal or breakpoint.\n\
3101 Usage: continue [N]\n\
3102 If proceeding from breakpoint, a number N may be used as an argument,\n\
3103 which means to set the ignore count of that breakpoint to N - 1 (so that\n\
3104 the breakpoint won't break until the Nth time it is reached).\n\
3105 \n\
3106 If non-stop mode is enabled, continue only the current thread,\n\
3107 otherwise all the threads in the program are continued. To \n\
3108 continue all stopped threads in non-stop mode, use the -a option.\n\
3109 Specifying -a and an ignore count simultaneously is an error."));
3110 add_com_alias ("c", "cont", class_run, 1);
3111 add_com_alias ("fg", "cont", class_run, 1);
3112
3113 c = add_com ("run", class_run, run_command, _("\
3114 Start debugged program. You may specify arguments to give it.\n\
3115 Args may include \"*\", or \"[...]\"; they are expanded using \"sh\".\n\
3116 Input and output redirection with \">\", \"<\", or \">>\" are also \
3117 allowed.\n\n\
3118 With no arguments, uses arguments last specified (with \"run\" \
3119 or \"set args\").\n\
3120 To cancel previous arguments and run with no arguments,\n\
3121 use \"set args\" without arguments."));
3122 set_cmd_completer (c, filename_completer);
3123 add_com_alias ("r", "run", class_run, 1);
3124 if (xdb_commands)
3125 add_com ("R", class_run, run_no_args_command,
3126 _("Start debugged program with no arguments."));
3127
3128 c = add_com ("start", class_run, start_command, _("\
3129 Run the debugged program until the beginning of the main procedure.\n\
3130 You may specify arguments to give to your program, just as with the\n\
3131 \"run\" command."));
3132 set_cmd_completer (c, filename_completer);
3133
3134 add_com ("interrupt", class_run, interrupt_command,
3135 _("Interrupt the execution of the debugged program.\n\
3136 If non-stop mode is enabled, interrupt only the current thread,\n\
3137 otherwise all the threads in the program are stopped. To \n\
3138 interrupt all running threads in non-stop mode, use the -a option."));
3139
3140 add_info ("registers", nofp_registers_info, _("\
3141 List of integer registers and their contents, for selected stack frame.\n\
3142 Register name as argument means describe only that register."));
3143 add_info_alias ("r", "registers", 1);
3144
3145 if (xdb_commands)
3146 add_com ("lr", class_info, nofp_registers_info, _("\
3147 List of integer registers and their contents, for selected stack frame.\n\
3148 Register name as argument means describe only that register."));
3149 add_info ("all-registers", all_registers_info, _("\
3150 List of all registers and their contents, for selected stack frame.\n\
3151 Register name as argument means describe only that register."));
3152
3153 add_info ("program", program_info,
3154 _("Execution status of the program."));
3155
3156 add_info ("float", float_info,
3157 _("Print the status of the floating point unit\n"));
3158
3159 add_info ("vector", vector_info,
3160 _("Print the status of the vector unit\n"));
3161
3162 add_prefix_cmd ("proc", class_info, info_proc_cmd,
3163 _("\
3164 Show /proc process information about any running process.\n\
3165 Specify any process id, or use the program being debugged by default."),
3166 &info_proc_cmdlist, "info proc ",
3167 1/*allow-unknown*/, &infolist);
3168
3169 add_cmd ("mappings", class_info, info_proc_cmd_mappings, _("\
3170 List of mapped memory regions."),
3171 &info_proc_cmdlist);
3172
3173 add_cmd ("stat", class_info, info_proc_cmd_stat, _("\
3174 List process info from /proc/PID/stat."),
3175 &info_proc_cmdlist);
3176
3177 add_cmd ("status", class_info, info_proc_cmd_status, _("\
3178 List process info from /proc/PID/status."),
3179 &info_proc_cmdlist);
3180
3181 add_cmd ("cwd", class_info, info_proc_cmd_cwd, _("\
3182 List current working directory of the process."),
3183 &info_proc_cmdlist);
3184
3185 add_cmd ("cmdline", class_info, info_proc_cmd_cmdline, _("\
3186 List command line arguments of the process."),
3187 &info_proc_cmdlist);
3188
3189 add_cmd ("exe", class_info, info_proc_cmd_exe, _("\
3190 List absolute filename for executable of the process."),
3191 &info_proc_cmdlist);
3192
3193 add_cmd ("all", class_info, info_proc_cmd_all, _("\
3194 List all available /proc info."),
3195 &info_proc_cmdlist);
3196 }
This page took 0.106765 seconds and 5 git commands to generate.