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