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