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