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