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