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