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