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