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