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