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