]>
Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Memory-access and commands for "inferior" process, for GDB. |
b6ba6518 | 2 | Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, |
de5ad195 | 3 | 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 |
c906108c SS |
4 | Free Software Foundation, Inc. |
5 | ||
c5aa993b | 6 | This file is part of GDB. |
c906108c | 7 | |
c5aa993b JM |
8 | This program is free software; you can redistribute it and/or modify |
9 | it under the terms of the GNU General Public License as published by | |
10 | the Free Software Foundation; either version 2 of the License, or | |
11 | (at your option) any later version. | |
c906108c | 12 | |
c5aa993b JM |
13 | This program is distributed in the hope that it will be useful, |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | GNU General Public License for more details. | |
c906108c | 17 | |
c5aa993b JM |
18 | You should have received a copy of the GNU General Public License |
19 | along with this program; if not, write to the Free Software | |
20 | Foundation, Inc., 59 Temple Place - Suite 330, | |
21 | Boston, MA 02111-1307, USA. */ | |
c906108c SS |
22 | |
23 | #include "defs.h" | |
24 | #include <signal.h> | |
25 | #include "gdb_string.h" | |
26 | #include "symtab.h" | |
27 | #include "gdbtypes.h" | |
28 | #include "frame.h" | |
29 | #include "inferior.h" | |
30 | #include "environ.h" | |
31 | #include "value.h" | |
32 | #include "gdbcmd.h" | |
1adeb98a | 33 | #include "symfile.h" |
c906108c SS |
34 | #include "gdbcore.h" |
35 | #include "target.h" | |
36 | #include "language.h" | |
37 | #include "symfile.h" | |
38 | #include "objfiles.h" | |
c94fdfd0 | 39 | #include "completer.h" |
8b93c638 | 40 | #include "ui-out.h" |
6426a772 | 41 | #include "event-top.h" |
96baa820 | 42 | #include "parser-defs.h" |
36160dc4 | 43 | #include "regcache.h" |
f9418c0f | 44 | #include "reggroups.h" |
fe898f56 | 45 | #include "block.h" |
f9418c0f | 46 | #include <ctype.h> |
72cec141 | 47 | |
a58dd373 | 48 | /* Functions exported for general use, in inferior.h: */ |
c906108c | 49 | |
a14ed312 | 50 | void all_registers_info (char *, int); |
c906108c | 51 | |
a14ed312 | 52 | void registers_info (char *, int); |
c906108c | 53 | |
a58dd373 EZ |
54 | void nexti_command (char *, int); |
55 | ||
56 | void stepi_command (char *, int); | |
c906108c | 57 | |
a14ed312 | 58 | void continue_command (char *, int); |
c906108c | 59 | |
a58dd373 EZ |
60 | void interrupt_target_command (char *args, int from_tty); |
61 | ||
62 | /* Local functions: */ | |
63 | ||
64 | static void nofp_registers_info (char *, int); | |
65 | ||
11cf8741 JM |
66 | static void print_return_value (int struct_return, struct type *value_type); |
67 | ||
a14ed312 | 68 | static void finish_command_continuation (struct continuation_arg *); |
43ff13b4 | 69 | |
a14ed312 | 70 | static void until_next_command (int); |
c906108c | 71 | |
a14ed312 | 72 | static void until_command (char *, int); |
c906108c | 73 | |
a14ed312 | 74 | static void path_info (char *, int); |
c906108c | 75 | |
a14ed312 | 76 | static void path_command (char *, int); |
c906108c | 77 | |
a14ed312 | 78 | static void unset_command (char *, int); |
c906108c | 79 | |
a14ed312 | 80 | static void float_info (char *, int); |
c906108c | 81 | |
a14ed312 | 82 | static void detach_command (char *, int); |
c906108c | 83 | |
a14ed312 | 84 | static void unset_environment_command (char *, int); |
c906108c | 85 | |
a14ed312 | 86 | static void set_environment_command (char *, int); |
c906108c | 87 | |
a14ed312 | 88 | static void environment_info (char *, int); |
c906108c | 89 | |
a14ed312 | 90 | static void program_info (char *, int); |
c906108c | 91 | |
a14ed312 | 92 | static void finish_command (char *, int); |
c906108c | 93 | |
a14ed312 | 94 | static void signal_command (char *, int); |
c906108c | 95 | |
a14ed312 | 96 | static void jump_command (char *, int); |
c906108c | 97 | |
a14ed312 | 98 | static void step_1 (int, int, char *); |
c2d11a7d JM |
99 | static void step_once (int skip_subroutines, int single_inst, int count); |
100 | static void step_1_continuation (struct continuation_arg *arg); | |
c906108c | 101 | |
a14ed312 | 102 | static void next_command (char *, int); |
c906108c | 103 | |
a14ed312 | 104 | static void step_command (char *, int); |
c906108c | 105 | |
a14ed312 | 106 | static void run_command (char *, int); |
c906108c | 107 | |
a14ed312 | 108 | static void run_no_args_command (char *args, int from_tty); |
392a587b | 109 | |
a14ed312 | 110 | static void go_command (char *line_no, int from_tty); |
392a587b | 111 | |
a14ed312 | 112 | static int strip_bg_char (char **); |
43ff13b4 | 113 | |
a14ed312 | 114 | void _initialize_infcmd (void); |
c906108c SS |
115 | |
116 | #define GO_USAGE "Usage: go <location>\n" | |
117 | ||
c906108c SS |
118 | #define ERROR_NO_INFERIOR \ |
119 | if (!target_has_execution) error ("The program is not being run."); | |
120 | ||
121 | /* String containing arguments to give to the program, separated by spaces. | |
122 | Empty string (pointer to '\0') means no args. */ | |
123 | ||
124 | static char *inferior_args; | |
125 | ||
552c04a7 TT |
126 | /* The inferior arguments as a vector. If INFERIOR_ARGC is nonzero, |
127 | then we must compute INFERIOR_ARGS from this (via the target). */ | |
128 | ||
129 | static int inferior_argc; | |
130 | static char **inferior_argv; | |
131 | ||
c906108c SS |
132 | /* File name for default use for standard in/out in the inferior. */ |
133 | ||
134 | char *inferior_io_terminal; | |
135 | ||
136 | /* Pid of our debugged inferior, or 0 if no inferior now. | |
137 | Since various parts of infrun.c test this to see whether there is a program | |
138 | being debugged it should be nonzero (currently 3 is used) for remote | |
139 | debugging. */ | |
140 | ||
39f77062 | 141 | ptid_t inferior_ptid; |
c906108c SS |
142 | |
143 | /* Last signal that the inferior received (why it stopped). */ | |
144 | ||
145 | enum target_signal stop_signal; | |
146 | ||
147 | /* Address at which inferior stopped. */ | |
148 | ||
149 | CORE_ADDR stop_pc; | |
150 | ||
151 | /* Chain containing status of breakpoint(s) that we have stopped at. */ | |
152 | ||
153 | bpstat stop_bpstat; | |
154 | ||
155 | /* Flag indicating that a command has proceeded the inferior past the | |
156 | current breakpoint. */ | |
157 | ||
158 | int breakpoint_proceeded; | |
159 | ||
160 | /* Nonzero if stopped due to a step command. */ | |
161 | ||
162 | int stop_step; | |
163 | ||
164 | /* Nonzero if stopped due to completion of a stack dummy routine. */ | |
165 | ||
166 | int stop_stack_dummy; | |
167 | ||
168 | /* Nonzero if stopped due to a random (unexpected) signal in inferior | |
169 | process. */ | |
170 | ||
171 | int stopped_by_random_signal; | |
172 | ||
173 | /* Range to single step within. | |
174 | If this is nonzero, respond to a single-step signal | |
175 | by continuing to step if the pc is in this range. */ | |
176 | ||
c5aa993b JM |
177 | CORE_ADDR step_range_start; /* Inclusive */ |
178 | CORE_ADDR step_range_end; /* Exclusive */ | |
c906108c SS |
179 | |
180 | /* Stack frame address as of when stepping command was issued. | |
181 | This is how we know when we step into a subroutine call, | |
182 | and how to set the frame for the breakpoint used to step out. */ | |
183 | ||
aa0cd9c1 | 184 | struct frame_id step_frame_id; |
c906108c SS |
185 | |
186 | /* Our notion of the current stack pointer. */ | |
187 | ||
188 | CORE_ADDR step_sp; | |
189 | ||
5fbbeb29 | 190 | enum step_over_calls_kind step_over_calls; |
c906108c SS |
191 | |
192 | /* If stepping, nonzero means step count is > 1 | |
193 | so don't print frame next time inferior stops | |
194 | if it stops due to stepping. */ | |
195 | ||
196 | int step_multi; | |
197 | ||
198 | /* Environment to use for running inferior, | |
199 | in format described in environ.h. */ | |
200 | ||
201 | struct environ *inferior_environ; | |
c906108c | 202 | \f |
07091751 FN |
203 | /* Accessor routines. */ |
204 | ||
205 | char * | |
206 | get_inferior_args (void) | |
207 | { | |
552c04a7 TT |
208 | if (inferior_argc != 0) |
209 | { | |
210 | char *n, *old; | |
211 | ||
212 | n = gdbarch_construct_inferior_arguments (current_gdbarch, | |
213 | inferior_argc, inferior_argv); | |
214 | old = set_inferior_args (n); | |
215 | xfree (old); | |
216 | } | |
217 | ||
218 | if (inferior_args == NULL) | |
219 | inferior_args = xstrdup (""); | |
220 | ||
07091751 FN |
221 | return inferior_args; |
222 | } | |
223 | ||
224 | char * | |
225 | set_inferior_args (char *newargs) | |
226 | { | |
227 | char *saved_args = inferior_args; | |
228 | ||
229 | inferior_args = newargs; | |
552c04a7 TT |
230 | inferior_argc = 0; |
231 | inferior_argv = 0; | |
07091751 FN |
232 | |
233 | return saved_args; | |
234 | } | |
c5aa993b | 235 | |
552c04a7 TT |
236 | void |
237 | set_inferior_args_vector (int argc, char **argv) | |
238 | { | |
239 | inferior_argc = argc; | |
240 | inferior_argv = argv; | |
241 | } | |
242 | ||
243 | /* Notice when `set args' is run. */ | |
244 | static void | |
245 | notice_args_set (char *args, int from_tty, struct cmd_list_element *c) | |
246 | { | |
247 | inferior_argc = 0; | |
248 | inferior_argv = 0; | |
249 | } | |
250 | ||
251 | /* Notice when `show args' is run. */ | |
252 | static void | |
9f60d481 | 253 | notice_args_read (char *args, int from_tty, struct cmd_list_element *c) |
552c04a7 TT |
254 | { |
255 | /* Might compute the value. */ | |
256 | get_inferior_args (); | |
257 | } | |
258 | ||
c2a727fa TT |
259 | \f |
260 | /* Compute command-line string given argument vector. This does the | |
261 | same shell processing as fork_inferior. */ | |
262 | /* ARGSUSED */ | |
263 | char * | |
264 | construct_inferior_arguments (struct gdbarch *gdbarch, int argc, char **argv) | |
265 | { | |
266 | char *result; | |
267 | ||
268 | if (STARTUP_WITH_SHELL) | |
269 | { | |
270 | /* This holds all the characters considered special to the | |
271 | typical Unix shells. We include `^' because the SunOS | |
272 | /bin/sh treats it as a synonym for `|'. */ | |
273 | char *special = "\"!#$&*()\\|[]{}<>?'\"`~^; \t\n"; | |
274 | int i; | |
275 | int length = 0; | |
276 | char *out, *cp; | |
277 | ||
278 | /* We over-compute the size. It shouldn't matter. */ | |
279 | for (i = 0; i < argc; ++i) | |
03c6228e | 280 | length += 2 * strlen (argv[i]) + 1 + 2 * (argv[i][0] == '\0'); |
c2a727fa TT |
281 | |
282 | result = (char *) xmalloc (length); | |
283 | out = result; | |
284 | ||
285 | for (i = 0; i < argc; ++i) | |
286 | { | |
287 | if (i > 0) | |
288 | *out++ = ' '; | |
289 | ||
03c6228e AS |
290 | /* Need to handle empty arguments specially. */ |
291 | if (argv[i][0] == '\0') | |
c2a727fa | 292 | { |
03c6228e AS |
293 | *out++ = '\''; |
294 | *out++ = '\''; | |
295 | } | |
296 | else | |
297 | { | |
298 | for (cp = argv[i]; *cp; ++cp) | |
299 | { | |
300 | if (strchr (special, *cp) != NULL) | |
301 | *out++ = '\\'; | |
302 | *out++ = *cp; | |
303 | } | |
c2a727fa TT |
304 | } |
305 | } | |
306 | *out = '\0'; | |
307 | } | |
308 | else | |
309 | { | |
310 | /* In this case we can't handle arguments that contain spaces, | |
311 | tabs, or newlines -- see breakup_args(). */ | |
312 | int i; | |
313 | int length = 0; | |
314 | ||
315 | for (i = 0; i < argc; ++i) | |
316 | { | |
317 | char *cp = strchr (argv[i], ' '); | |
318 | if (cp == NULL) | |
319 | cp = strchr (argv[i], '\t'); | |
320 | if (cp == NULL) | |
321 | cp = strchr (argv[i], '\n'); | |
322 | if (cp != NULL) | |
323 | error ("can't handle command-line argument containing whitespace"); | |
324 | length += strlen (argv[i]) + 1; | |
325 | } | |
326 | ||
327 | result = (char *) xmalloc (length); | |
328 | result[0] = '\0'; | |
329 | for (i = 0; i < argc; ++i) | |
330 | { | |
331 | if (i > 0) | |
332 | strcat (result, " "); | |
333 | strcat (result, argv[i]); | |
334 | } | |
335 | } | |
336 | ||
337 | return result; | |
338 | } | |
552c04a7 TT |
339 | \f |
340 | ||
43ff13b4 JM |
341 | /* This function detects whether or not a '&' character (indicating |
342 | background execution) has been added as *the last* of the arguments ARGS | |
343 | of a command. If it has, it removes it and returns 1. Otherwise it | |
344 | does nothing and returns 0. */ | |
c5aa993b | 345 | static int |
fba45db2 | 346 | strip_bg_char (char **args) |
43ff13b4 JM |
347 | { |
348 | char *p = NULL; | |
c5aa993b | 349 | |
9846de1b | 350 | p = strchr (*args, '&'); |
c5aa993b | 351 | |
9846de1b | 352 | if (p) |
43ff13b4 JM |
353 | { |
354 | if (p == (*args + strlen (*args) - 1)) | |
355 | { | |
c5aa993b | 356 | if (strlen (*args) > 1) |
43ff13b4 JM |
357 | { |
358 | do | |
359 | p--; | |
360 | while (*p == ' ' || *p == '\t'); | |
361 | *(p + 1) = '\0'; | |
362 | } | |
363 | else | |
364 | *args = 0; | |
365 | return 1; | |
366 | } | |
367 | } | |
368 | return 0; | |
369 | } | |
370 | ||
c906108c SS |
371 | /* ARGSUSED */ |
372 | void | |
fba45db2 | 373 | tty_command (char *file, int from_tty) |
c906108c SS |
374 | { |
375 | if (file == 0) | |
376 | error_no_arg ("terminal name for running target process"); | |
377 | ||
378 | inferior_io_terminal = savestring (file, strlen (file)); | |
379 | } | |
380 | ||
381 | static void | |
fba45db2 | 382 | run_command (char *args, int from_tty) |
c906108c SS |
383 | { |
384 | char *exec_file; | |
385 | ||
386 | dont_repeat (); | |
387 | ||
39f77062 | 388 | if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution) |
c906108c | 389 | { |
adf40b2e JM |
390 | if (from_tty |
391 | && !query ("The program being debugged has been started already.\n\ | |
c906108c SS |
392 | Start it from the beginning? ")) |
393 | error ("Program not restarted."); | |
394 | target_kill (); | |
395 | #if defined(SOLIB_RESTART) | |
396 | SOLIB_RESTART (); | |
397 | #endif | |
398 | init_wait_for_inferior (); | |
399 | } | |
400 | ||
401 | clear_breakpoint_hit_counts (); | |
402 | ||
c906108c SS |
403 | /* Purge old solib objfiles. */ |
404 | objfile_purge_solibs (); | |
405 | ||
406 | do_run_cleanups (NULL); | |
407 | ||
39ad761d JB |
408 | /* The comment here used to read, "The exec file is re-read every |
409 | time we do a generic_mourn_inferior, so we just have to worry | |
410 | about the symbol file." The `generic_mourn_inferior' function | |
411 | gets called whenever the program exits. However, suppose the | |
412 | program exits, and *then* the executable file changes? We need | |
413 | to check again here. Since reopen_exec_file doesn't do anything | |
414 | if the timestamp hasn't changed, I don't see the harm. */ | |
415 | reopen_exec_file (); | |
c906108c SS |
416 | reread_symbols (); |
417 | ||
39ad761d JB |
418 | exec_file = (char *) get_exec_file (0); |
419 | ||
c906108c SS |
420 | /* We keep symbols from add-symbol-file, on the grounds that the |
421 | user might want to add some symbols before running the program | |
422 | (right?). But sometimes (dynamic loading where the user manually | |
423 | introduces the new symbols with add-symbol-file), the code which | |
424 | the symbols describe does not persist between runs. Currently | |
425 | the user has to manually nuke all symbols between runs if they | |
426 | want them to go away (PR 2207). This is probably reasonable. */ | |
427 | ||
43ff13b4 | 428 | if (!args) |
6426a772 JM |
429 | { |
430 | if (event_loop_p && target_can_async_p ()) | |
431 | async_disable_stdin (); | |
432 | } | |
43ff13b4 | 433 | else |
c906108c | 434 | { |
43ff13b4 JM |
435 | int async_exec = strip_bg_char (&args); |
436 | ||
437 | /* If we get a request for running in the bg but the target | |
438 | doesn't support it, error out. */ | |
6426a772 | 439 | if (event_loop_p && async_exec && !target_can_async_p ()) |
43ff13b4 JM |
440 | error ("Asynchronous execution not supported on this target."); |
441 | ||
442 | /* If we don't get a request of running in the bg, then we need | |
c5aa993b | 443 | to simulate synchronous (fg) execution. */ |
6426a772 | 444 | if (event_loop_p && !async_exec && target_can_async_p ()) |
43ff13b4 JM |
445 | { |
446 | /* Simulate synchronous execution */ | |
6426a772 | 447 | async_disable_stdin (); |
43ff13b4 JM |
448 | } |
449 | ||
450 | /* If there were other args, beside '&', process them. */ | |
451 | if (args) | |
452 | { | |
07091751 FN |
453 | char *old_args = set_inferior_args (xstrdup (args)); |
454 | xfree (old_args); | |
43ff13b4 | 455 | } |
c906108c SS |
456 | } |
457 | ||
458 | if (from_tty) | |
459 | { | |
8b93c638 JM |
460 | ui_out_field_string (uiout, NULL, "Starting program"); |
461 | ui_out_text (uiout, ": "); | |
462 | if (exec_file) | |
463 | ui_out_field_string (uiout, "execfile", exec_file); | |
464 | ui_out_spaces (uiout, 1); | |
552c04a7 TT |
465 | /* We call get_inferior_args() because we might need to compute |
466 | the value now. */ | |
467 | ui_out_field_string (uiout, "infargs", get_inferior_args ()); | |
8b93c638 JM |
468 | ui_out_text (uiout, "\n"); |
469 | ui_out_flush (uiout); | |
c906108c SS |
470 | } |
471 | ||
552c04a7 TT |
472 | /* We call get_inferior_args() because we might need to compute |
473 | the value now. */ | |
474 | target_create_inferior (exec_file, get_inferior_args (), | |
c906108c SS |
475 | environ_vector (inferior_environ)); |
476 | } | |
477 | ||
478 | ||
479 | static void | |
fba45db2 | 480 | run_no_args_command (char *args, int from_tty) |
c906108c | 481 | { |
07091751 FN |
482 | char *old_args = set_inferior_args (xstrdup ("")); |
483 | xfree (old_args); | |
c906108c | 484 | } |
c906108c | 485 | \f |
c5aa993b | 486 | |
c906108c | 487 | void |
fba45db2 | 488 | continue_command (char *proc_count_exp, int from_tty) |
c906108c | 489 | { |
c5aa993b | 490 | int async_exec = 0; |
c906108c SS |
491 | ERROR_NO_INFERIOR; |
492 | ||
43ff13b4 JM |
493 | /* Find out whether we must run in the background. */ |
494 | if (proc_count_exp != NULL) | |
495 | async_exec = strip_bg_char (&proc_count_exp); | |
496 | ||
497 | /* If we must run in the background, but the target can't do it, | |
498 | error out. */ | |
6426a772 | 499 | if (event_loop_p && async_exec && !target_can_async_p ()) |
43ff13b4 JM |
500 | error ("Asynchronous execution not supported on this target."); |
501 | ||
502 | /* If we are not asked to run in the bg, then prepare to run in the | |
503 | foreground, synchronously. */ | |
6426a772 | 504 | if (event_loop_p && !async_exec && target_can_async_p ()) |
c5aa993b | 505 | { |
43ff13b4 | 506 | /* Simulate synchronous execution */ |
6426a772 | 507 | async_disable_stdin (); |
43ff13b4 | 508 | } |
c906108c | 509 | |
43ff13b4 JM |
510 | /* If have argument (besides '&'), set proceed count of breakpoint |
511 | we stopped at. */ | |
c906108c SS |
512 | if (proc_count_exp != NULL) |
513 | { | |
514 | bpstat bs = stop_bpstat; | |
515 | int num = bpstat_num (&bs); | |
516 | if (num == 0 && from_tty) | |
517 | { | |
518 | printf_filtered | |
519 | ("Not stopped at any breakpoint; argument ignored.\n"); | |
520 | } | |
521 | while (num != 0) | |
522 | { | |
523 | set_ignore_count (num, | |
bb518678 | 524 | parse_and_eval_long (proc_count_exp) - 1, |
c906108c SS |
525 | from_tty); |
526 | /* set_ignore_count prints a message ending with a period. | |
527 | So print two spaces before "Continuing.". */ | |
528 | if (from_tty) | |
529 | printf_filtered (" "); | |
530 | num = bpstat_num (&bs); | |
531 | } | |
532 | } | |
533 | ||
534 | if (from_tty) | |
535 | printf_filtered ("Continuing.\n"); | |
536 | ||
537 | clear_proceed_status (); | |
538 | ||
2acceee2 | 539 | proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0); |
c906108c SS |
540 | } |
541 | \f | |
542 | /* Step until outside of current statement. */ | |
543 | ||
544 | /* ARGSUSED */ | |
545 | static void | |
fba45db2 | 546 | step_command (char *count_string, int from_tty) |
c906108c SS |
547 | { |
548 | step_1 (0, 0, count_string); | |
549 | } | |
550 | ||
551 | /* Likewise, but skip over subroutine calls as if single instructions. */ | |
552 | ||
553 | /* ARGSUSED */ | |
554 | static void | |
fba45db2 | 555 | next_command (char *count_string, int from_tty) |
c906108c SS |
556 | { |
557 | step_1 (1, 0, count_string); | |
558 | } | |
559 | ||
560 | /* Likewise, but step only one instruction. */ | |
561 | ||
562 | /* ARGSUSED */ | |
563 | void | |
fba45db2 | 564 | stepi_command (char *count_string, int from_tty) |
c906108c SS |
565 | { |
566 | step_1 (0, 1, count_string); | |
567 | } | |
568 | ||
569 | /* ARGSUSED */ | |
570 | void | |
fba45db2 | 571 | nexti_command (char *count_string, int from_tty) |
c906108c SS |
572 | { |
573 | step_1 (1, 1, count_string); | |
574 | } | |
575 | ||
74b7792f AC |
576 | static void |
577 | disable_longjmp_breakpoint_cleanup (void *ignore) | |
578 | { | |
579 | disable_longjmp_breakpoint (); | |
580 | } | |
581 | ||
c906108c | 582 | static void |
fba45db2 | 583 | step_1 (int skip_subroutines, int single_inst, char *count_string) |
c906108c SS |
584 | { |
585 | register int count = 1; | |
586 | struct frame_info *frame; | |
587 | struct cleanup *cleanups = 0; | |
43ff13b4 | 588 | int async_exec = 0; |
c5aa993b | 589 | |
c906108c | 590 | ERROR_NO_INFERIOR; |
43ff13b4 JM |
591 | |
592 | if (count_string) | |
593 | async_exec = strip_bg_char (&count_string); | |
c5aa993b | 594 | |
43ff13b4 JM |
595 | /* If we get a request for running in the bg but the target |
596 | doesn't support it, error out. */ | |
6426a772 | 597 | if (event_loop_p && async_exec && !target_can_async_p ()) |
43ff13b4 JM |
598 | error ("Asynchronous execution not supported on this target."); |
599 | ||
600 | /* If we don't get a request of running in the bg, then we need | |
601 | to simulate synchronous (fg) execution. */ | |
6426a772 | 602 | if (event_loop_p && !async_exec && target_can_async_p ()) |
43ff13b4 JM |
603 | { |
604 | /* Simulate synchronous execution */ | |
6426a772 | 605 | async_disable_stdin (); |
43ff13b4 JM |
606 | } |
607 | ||
bb518678 | 608 | count = count_string ? parse_and_eval_long (count_string) : 1; |
c906108c | 609 | |
c5aa993b | 610 | if (!single_inst || skip_subroutines) /* leave si command alone */ |
c906108c | 611 | { |
c5aa993b | 612 | enable_longjmp_breakpoint (); |
c2d11a7d | 613 | if (!event_loop_p || !target_can_async_p ()) |
74b7792f | 614 | cleanups = make_cleanup (disable_longjmp_breakpoint_cleanup, 0 /*ignore*/); |
c2d11a7d | 615 | else |
74b7792f | 616 | make_exec_cleanup (disable_longjmp_breakpoint_cleanup, 0 /*ignore*/); |
c2d11a7d JM |
617 | } |
618 | ||
619 | /* In synchronous case, all is well, just use the regular for loop. */ | |
620 | if (!event_loop_p || !target_can_async_p ()) | |
621 | { | |
622 | for (; count > 0; count--) | |
623 | { | |
624 | clear_proceed_status (); | |
625 | ||
626 | frame = get_current_frame (); | |
627 | if (!frame) /* Avoid coredump here. Why tho? */ | |
628 | error ("No current frame"); | |
aa0cd9c1 | 629 | step_frame_id = get_frame_id (frame); |
c2d11a7d JM |
630 | step_sp = read_sp (); |
631 | ||
632 | if (!single_inst) | |
633 | { | |
634 | find_pc_line_pc_range (stop_pc, &step_range_start, &step_range_end); | |
635 | if (step_range_end == 0) | |
636 | { | |
637 | char *name; | |
638 | if (find_pc_partial_function (stop_pc, &name, &step_range_start, | |
639 | &step_range_end) == 0) | |
640 | error ("Cannot find bounds of current function"); | |
641 | ||
642 | target_terminal_ours (); | |
643 | printf_filtered ("\ | |
644 | Single stepping until exit from function %s, \n\ | |
645 | which has no line number information.\n", name); | |
646 | } | |
647 | } | |
648 | else | |
649 | { | |
650 | /* Say we are stepping, but stop after one insn whatever it does. */ | |
651 | step_range_start = step_range_end = 1; | |
652 | if (!skip_subroutines) | |
653 | /* It is stepi. | |
654 | Don't step over function calls, not even to functions lacking | |
655 | line numbers. */ | |
5fbbeb29 | 656 | step_over_calls = STEP_OVER_NONE; |
c2d11a7d JM |
657 | } |
658 | ||
659 | if (skip_subroutines) | |
5fbbeb29 | 660 | step_over_calls = STEP_OVER_ALL; |
c2d11a7d JM |
661 | |
662 | step_multi = (count > 1); | |
663 | proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1); | |
664 | ||
665 | if (!stop_step) | |
666 | break; | |
667 | ||
668 | /* FIXME: On nexti, this may have already been done (when we hit the | |
669 | step resume break, I think). Probably this should be moved to | |
670 | wait_for_inferior (near the top). */ | |
671 | #if defined (SHIFT_INST_REGS) | |
672 | SHIFT_INST_REGS (); | |
673 | #endif | |
674 | } | |
675 | ||
676 | if (!single_inst || skip_subroutines) | |
677 | do_cleanups (cleanups); | |
678 | return; | |
679 | } | |
680 | /* In case of asynchronous target things get complicated, do only | |
681 | one step for now, before returning control to the event loop. Let | |
682 | the continuation figure out how many other steps we need to do, | |
683 | and handle them one at the time, through step_once(). */ | |
684 | else | |
685 | { | |
686 | if (event_loop_p && target_can_async_p ()) | |
687 | step_once (skip_subroutines, single_inst, count); | |
c906108c | 688 | } |
c2d11a7d | 689 | } |
c906108c | 690 | |
c2d11a7d JM |
691 | /* Called after we are done with one step operation, to check whether |
692 | we need to step again, before we print the prompt and return control | |
693 | to the user. If count is > 1, we will need to do one more call to | |
694 | proceed(), via step_once(). Basically it is like step_once and | |
695 | step_1_continuation are co-recursive. */ | |
696 | static void | |
fba45db2 | 697 | step_1_continuation (struct continuation_arg *arg) |
c2d11a7d | 698 | { |
57e687d9 MS |
699 | int count; |
700 | int skip_subroutines; | |
701 | int single_inst; | |
702 | ||
703 | skip_subroutines = arg->data.integer; | |
704 | single_inst = arg->next->data.integer; | |
705 | count = arg->next->next->data.integer; | |
706 | ||
707 | if (stop_step) | |
708 | { | |
709 | /* FIXME: On nexti, this may have already been done (when we hit the | |
710 | step resume break, I think). Probably this should be moved to | |
711 | wait_for_inferior (near the top). */ | |
c2d11a7d | 712 | #if defined (SHIFT_INST_REGS) |
57e687d9 | 713 | SHIFT_INST_REGS (); |
c2d11a7d | 714 | #endif |
57e687d9 MS |
715 | step_once (skip_subroutines, single_inst, count - 1); |
716 | } | |
717 | else | |
718 | if (!single_inst || skip_subroutines) | |
719 | do_exec_cleanups (ALL_CLEANUPS); | |
c2d11a7d JM |
720 | } |
721 | ||
722 | /* Do just one step operation. If count >1 we will have to set up a | |
723 | continuation to be done after the target stops (after this one | |
724 | step). This is useful to implement the 'step n' kind of commands, in | |
725 | case of asynchronous targets. We had to split step_1 into two parts, | |
726 | one to be done before proceed() and one afterwards. This function is | |
727 | called in case of step n with n>1, after the first step operation has | |
728 | been completed.*/ | |
729 | static void | |
0d06e24b | 730 | step_once (int skip_subroutines, int single_inst, int count) |
c2d11a7d | 731 | { |
0d06e24b JM |
732 | struct continuation_arg *arg1; |
733 | struct continuation_arg *arg2; | |
734 | struct continuation_arg *arg3; | |
735 | struct frame_info *frame; | |
c2d11a7d JM |
736 | |
737 | if (count > 0) | |
c906108c SS |
738 | { |
739 | clear_proceed_status (); | |
740 | ||
741 | frame = get_current_frame (); | |
c5aa993b | 742 | if (!frame) /* Avoid coredump here. Why tho? */ |
c906108c | 743 | error ("No current frame"); |
aa0cd9c1 | 744 | step_frame_id = get_frame_id (frame); |
c906108c SS |
745 | step_sp = read_sp (); |
746 | ||
c5aa993b | 747 | if (!single_inst) |
c906108c SS |
748 | { |
749 | find_pc_line_pc_range (stop_pc, &step_range_start, &step_range_end); | |
5fbbeb29 CF |
750 | |
751 | /* If we have no line info, switch to stepi mode. */ | |
752 | if (step_range_end == 0 && step_stop_if_no_debug) | |
753 | { | |
754 | step_range_start = step_range_end = 1; | |
755 | } | |
756 | else if (step_range_end == 0) | |
c906108c SS |
757 | { |
758 | char *name; | |
759 | if (find_pc_partial_function (stop_pc, &name, &step_range_start, | |
760 | &step_range_end) == 0) | |
761 | error ("Cannot find bounds of current function"); | |
762 | ||
763 | target_terminal_ours (); | |
764 | printf_filtered ("\ | |
765 | Single stepping until exit from function %s, \n\ | |
766 | which has no line number information.\n", name); | |
767 | } | |
768 | } | |
769 | else | |
770 | { | |
771 | /* Say we are stepping, but stop after one insn whatever it does. */ | |
772 | step_range_start = step_range_end = 1; | |
773 | if (!skip_subroutines) | |
774 | /* It is stepi. | |
775 | Don't step over function calls, not even to functions lacking | |
776 | line numbers. */ | |
5fbbeb29 | 777 | step_over_calls = STEP_OVER_NONE; |
c906108c SS |
778 | } |
779 | ||
780 | if (skip_subroutines) | |
5fbbeb29 | 781 | step_over_calls = STEP_OVER_ALL; |
c906108c SS |
782 | |
783 | step_multi = (count > 1); | |
c2d11a7d JM |
784 | arg1 = |
785 | (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg)); | |
786 | arg2 = | |
787 | (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg)); | |
788 | arg3 = | |
789 | (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg)); | |
790 | arg1->next = arg2; | |
57e687d9 | 791 | arg1->data.integer = skip_subroutines; |
c2d11a7d | 792 | arg2->next = arg3; |
57e687d9 | 793 | arg2->data.integer = single_inst; |
c2d11a7d | 794 | arg3->next = NULL; |
57e687d9 | 795 | arg3->data.integer = count; |
c2d11a7d | 796 | add_intermediate_continuation (step_1_continuation, arg1); |
2acceee2 | 797 | proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1); |
c906108c | 798 | } |
c906108c | 799 | } |
c2d11a7d | 800 | |
c906108c SS |
801 | \f |
802 | /* Continue program at specified address. */ | |
803 | ||
804 | static void | |
fba45db2 | 805 | jump_command (char *arg, int from_tty) |
c906108c SS |
806 | { |
807 | register CORE_ADDR addr; | |
808 | struct symtabs_and_lines sals; | |
809 | struct symtab_and_line sal; | |
810 | struct symbol *fn; | |
811 | struct symbol *sfn; | |
43ff13b4 | 812 | int async_exec = 0; |
c5aa993b | 813 | |
c906108c SS |
814 | ERROR_NO_INFERIOR; |
815 | ||
43ff13b4 JM |
816 | /* Find out whether we must run in the background. */ |
817 | if (arg != NULL) | |
818 | async_exec = strip_bg_char (&arg); | |
819 | ||
820 | /* If we must run in the background, but the target can't do it, | |
821 | error out. */ | |
6426a772 | 822 | if (event_loop_p && async_exec && !target_can_async_p ()) |
43ff13b4 JM |
823 | error ("Asynchronous execution not supported on this target."); |
824 | ||
825 | /* If we are not asked to run in the bg, then prepare to run in the | |
826 | foreground, synchronously. */ | |
6426a772 | 827 | if (event_loop_p && !async_exec && target_can_async_p ()) |
c5aa993b | 828 | { |
43ff13b4 | 829 | /* Simulate synchronous execution */ |
6426a772 | 830 | async_disable_stdin (); |
43ff13b4 JM |
831 | } |
832 | ||
c906108c SS |
833 | if (!arg) |
834 | error_no_arg ("starting address"); | |
835 | ||
836 | sals = decode_line_spec_1 (arg, 1); | |
837 | if (sals.nelts != 1) | |
838 | { | |
839 | error ("Unreasonable jump request"); | |
840 | } | |
841 | ||
842 | sal = sals.sals[0]; | |
b8c9b27d | 843 | xfree (sals.sals); |
c906108c SS |
844 | |
845 | if (sal.symtab == 0 && sal.pc == 0) | |
846 | error ("No source file has been specified."); | |
847 | ||
c5aa993b | 848 | resolve_sal_pc (&sal); /* May error out */ |
c906108c SS |
849 | |
850 | /* See if we are trying to jump to another function. */ | |
851 | fn = get_frame_function (get_current_frame ()); | |
852 | sfn = find_pc_function (sal.pc); | |
853 | if (fn != NULL && sfn != fn) | |
854 | { | |
855 | if (!query ("Line %d is not in `%s'. Jump anyway? ", sal.line, | |
de5ad195 | 856 | SYMBOL_PRINT_NAME (fn))) |
c906108c SS |
857 | { |
858 | error ("Not confirmed."); | |
859 | /* NOTREACHED */ | |
860 | } | |
861 | } | |
862 | ||
c5aa993b | 863 | if (sfn != NULL) |
c906108c SS |
864 | { |
865 | fixup_symbol_section (sfn, 0); | |
c5aa993b | 866 | if (section_is_overlay (SYMBOL_BFD_SECTION (sfn)) && |
c906108c SS |
867 | !section_is_mapped (SYMBOL_BFD_SECTION (sfn))) |
868 | { | |
869 | if (!query ("WARNING!!! Destination is in unmapped overlay! Jump anyway? ")) | |
870 | { | |
871 | error ("Not confirmed."); | |
872 | /* NOTREACHED */ | |
873 | } | |
874 | } | |
875 | } | |
876 | ||
c906108c SS |
877 | addr = sal.pc; |
878 | ||
879 | if (from_tty) | |
880 | { | |
881 | printf_filtered ("Continuing at "); | |
882 | print_address_numeric (addr, 1, gdb_stdout); | |
883 | printf_filtered (".\n"); | |
884 | } | |
885 | ||
886 | clear_proceed_status (); | |
887 | proceed (addr, TARGET_SIGNAL_0, 0); | |
888 | } | |
c906108c | 889 | \f |
c5aa993b | 890 | |
c906108c SS |
891 | /* Go to line or address in current procedure */ |
892 | static void | |
fba45db2 | 893 | go_command (char *line_no, int from_tty) |
c906108c | 894 | { |
c5aa993b | 895 | if (line_no == (char *) NULL || !*line_no) |
b83266a0 | 896 | printf_filtered (GO_USAGE); |
c906108c SS |
897 | else |
898 | { | |
b83266a0 SS |
899 | tbreak_command (line_no, from_tty); |
900 | jump_command (line_no, from_tty); | |
c906108c SS |
901 | } |
902 | } | |
c906108c | 903 | \f |
c5aa993b | 904 | |
c906108c SS |
905 | /* Continue program giving it specified signal. */ |
906 | ||
907 | static void | |
fba45db2 | 908 | signal_command (char *signum_exp, int from_tty) |
c906108c SS |
909 | { |
910 | enum target_signal oursig; | |
911 | ||
912 | dont_repeat (); /* Too dangerous. */ | |
913 | ERROR_NO_INFERIOR; | |
914 | ||
915 | if (!signum_exp) | |
916 | error_no_arg ("signal number"); | |
917 | ||
918 | /* It would be even slicker to make signal names be valid expressions, | |
919 | (the type could be "enum $signal" or some such), then the user could | |
920 | assign them to convenience variables. */ | |
921 | oursig = target_signal_from_name (signum_exp); | |
922 | ||
923 | if (oursig == TARGET_SIGNAL_UNKNOWN) | |
924 | { | |
925 | /* No, try numeric. */ | |
bb518678 | 926 | int num = parse_and_eval_long (signum_exp); |
c906108c SS |
927 | |
928 | if (num == 0) | |
929 | oursig = TARGET_SIGNAL_0; | |
930 | else | |
931 | oursig = target_signal_from_command (num); | |
932 | } | |
933 | ||
934 | if (from_tty) | |
935 | { | |
936 | if (oursig == TARGET_SIGNAL_0) | |
937 | printf_filtered ("Continuing with no signal.\n"); | |
938 | else | |
939 | printf_filtered ("Continuing with signal %s.\n", | |
940 | target_signal_to_name (oursig)); | |
941 | } | |
942 | ||
943 | clear_proceed_status (); | |
944 | /* "signal 0" should not get stuck if we are stopped at a breakpoint. | |
945 | FIXME: Neither should "signal foo" but when I tried passing | |
946 | (CORE_ADDR)-1 unconditionally I got a testsuite failure which I haven't | |
947 | tried to track down yet. */ | |
2acceee2 | 948 | proceed (oursig == TARGET_SIGNAL_0 ? (CORE_ADDR) -1 : stop_pc, oursig, 0); |
c906108c SS |
949 | } |
950 | ||
c906108c SS |
951 | /* Proceed until we reach a different source line with pc greater than |
952 | our current one or exit the function. We skip calls in both cases. | |
953 | ||
954 | Note that eventually this command should probably be changed so | |
955 | that only source lines are printed out when we hit the breakpoint | |
956 | we set. This may involve changes to wait_for_inferior and the | |
957 | proceed status code. */ | |
958 | ||
959 | /* ARGSUSED */ | |
960 | static void | |
fba45db2 | 961 | until_next_command (int from_tty) |
c906108c SS |
962 | { |
963 | struct frame_info *frame; | |
964 | CORE_ADDR pc; | |
965 | struct symbol *func; | |
966 | struct symtab_and_line sal; | |
c5aa993b | 967 | |
c906108c SS |
968 | clear_proceed_status (); |
969 | ||
970 | frame = get_current_frame (); | |
971 | ||
972 | /* Step until either exited from this function or greater | |
973 | than the current line (if in symbolic section) or pc (if | |
974 | not). */ | |
975 | ||
976 | pc = read_pc (); | |
977 | func = find_pc_function (pc); | |
c5aa993b | 978 | |
c906108c SS |
979 | if (!func) |
980 | { | |
981 | struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (pc); | |
c5aa993b | 982 | |
c906108c SS |
983 | if (msymbol == NULL) |
984 | error ("Execution is not within a known function."); | |
c5aa993b | 985 | |
c906108c SS |
986 | step_range_start = SYMBOL_VALUE_ADDRESS (msymbol); |
987 | step_range_end = pc; | |
988 | } | |
989 | else | |
990 | { | |
991 | sal = find_pc_line (pc, 0); | |
c5aa993b | 992 | |
c906108c SS |
993 | step_range_start = BLOCK_START (SYMBOL_BLOCK_VALUE (func)); |
994 | step_range_end = sal.end; | |
995 | } | |
c5aa993b | 996 | |
5fbbeb29 | 997 | step_over_calls = STEP_OVER_ALL; |
aa0cd9c1 | 998 | step_frame_id = get_frame_id (frame); |
c906108c SS |
999 | step_sp = read_sp (); |
1000 | ||
1001 | step_multi = 0; /* Only one call to proceed */ | |
c5aa993b | 1002 | |
2acceee2 | 1003 | proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1); |
c906108c SS |
1004 | } |
1005 | ||
c5aa993b | 1006 | static void |
fba45db2 | 1007 | until_command (char *arg, int from_tty) |
c906108c | 1008 | { |
43ff13b4 JM |
1009 | int async_exec = 0; |
1010 | ||
c906108c SS |
1011 | if (!target_has_execution) |
1012 | error ("The program is not running."); | |
43ff13b4 JM |
1013 | |
1014 | /* Find out whether we must run in the background. */ | |
1015 | if (arg != NULL) | |
1016 | async_exec = strip_bg_char (&arg); | |
1017 | ||
1018 | /* If we must run in the background, but the target can't do it, | |
1019 | error out. */ | |
6426a772 | 1020 | if (event_loop_p && async_exec && !target_can_async_p ()) |
43ff13b4 JM |
1021 | error ("Asynchronous execution not supported on this target."); |
1022 | ||
1023 | /* If we are not asked to run in the bg, then prepare to run in the | |
1024 | foreground, synchronously. */ | |
6426a772 | 1025 | if (event_loop_p && !async_exec && target_can_async_p ()) |
c5aa993b | 1026 | { |
43ff13b4 | 1027 | /* Simulate synchronous execution */ |
6426a772 | 1028 | async_disable_stdin (); |
43ff13b4 JM |
1029 | } |
1030 | ||
c906108c | 1031 | if (arg) |
ae66c1fc | 1032 | until_break_command (arg, from_tty, 0); |
c906108c SS |
1033 | else |
1034 | until_next_command (from_tty); | |
1035 | } | |
ae66c1fc EZ |
1036 | |
1037 | static void | |
1038 | advance_command (char *arg, int from_tty) | |
1039 | { | |
1040 | int async_exec = 0; | |
1041 | ||
1042 | if (!target_has_execution) | |
1043 | error ("The program is not running."); | |
1044 | ||
1045 | if (arg == NULL) | |
1046 | error_no_arg ("a location"); | |
1047 | ||
1048 | /* Find out whether we must run in the background. */ | |
1049 | if (arg != NULL) | |
1050 | async_exec = strip_bg_char (&arg); | |
1051 | ||
1052 | /* If we must run in the background, but the target can't do it, | |
1053 | error out. */ | |
1054 | if (event_loop_p && async_exec && !target_can_async_p ()) | |
1055 | error ("Asynchronous execution not supported on this target."); | |
1056 | ||
1057 | /* If we are not asked to run in the bg, then prepare to run in the | |
1058 | foreground, synchronously. */ | |
1059 | if (event_loop_p && !async_exec && target_can_async_p ()) | |
1060 | { | |
1061 | /* Simulate synchronous execution. */ | |
1062 | async_disable_stdin (); | |
1063 | } | |
1064 | ||
1065 | until_break_command (arg, from_tty, 1); | |
1066 | } | |
c906108c | 1067 | \f |
43ff13b4 | 1068 | |
11cf8741 JM |
1069 | /* Print the result of a function at the end of a 'finish' command. */ |
1070 | static void | |
1071 | print_return_value (int structure_return, struct type *value_type) | |
1072 | { | |
3d6d86c6 | 1073 | struct value *value; |
8b93c638 | 1074 | static struct ui_stream *stb = NULL; |
11cf8741 JM |
1075 | |
1076 | if (!structure_return) | |
1077 | { | |
1078 | value = value_being_returned (value_type, stop_registers, structure_return); | |
8b93c638 JM |
1079 | stb = ui_out_stream_new (uiout); |
1080 | ui_out_text (uiout, "Value returned is "); | |
1081 | ui_out_field_fmt (uiout, "gdb-result-var", "$%d", record_latest_value (value)); | |
9549d9c1 | 1082 | ui_out_text (uiout, " = "); |
8b93c638 JM |
1083 | value_print (value, stb->stream, 0, Val_no_prettyprint); |
1084 | ui_out_field_stream (uiout, "return-value", stb); | |
1085 | ui_out_text (uiout, "\n"); | |
11cf8741 JM |
1086 | } |
1087 | else | |
1088 | { | |
1089 | /* We cannot determine the contents of the structure because | |
1090 | it is on the stack, and we don't know where, since we did not | |
1091 | initiate the call, as opposed to the call_function_by_hand case */ | |
1092 | #ifdef VALUE_RETURNED_FROM_STACK | |
1093 | value = 0; | |
8b93c638 JM |
1094 | ui_out_text (uiout, "Value returned has type: "); |
1095 | ui_out_field_string (uiout, "return-type", TYPE_NAME (value_type)); | |
1096 | ui_out_text (uiout, "."); | |
1097 | ui_out_text (uiout, " Cannot determine contents\n"); | |
11cf8741 JM |
1098 | #else |
1099 | value = value_being_returned (value_type, stop_registers, structure_return); | |
8b93c638 JM |
1100 | stb = ui_out_stream_new (uiout); |
1101 | ui_out_text (uiout, "Value returned is "); | |
1102 | ui_out_field_fmt (uiout, "gdb-result-var", "$%d", record_latest_value (value)); | |
28ae27b1 | 1103 | ui_out_text (uiout, " = "); |
8b93c638 JM |
1104 | value_print (value, stb->stream, 0, Val_no_prettyprint); |
1105 | ui_out_field_stream (uiout, "return-value", stb); | |
1106 | ui_out_text (uiout, "\n"); | |
11cf8741 JM |
1107 | #endif |
1108 | } | |
1109 | } | |
1110 | ||
43ff13b4 JM |
1111 | /* Stuff that needs to be done by the finish command after the target |
1112 | has stopped. In asynchronous mode, we wait for the target to stop in | |
1113 | the call to poll or select in the event loop, so it is impossible to | |
1114 | do all the stuff as part of the finish_command function itself. The | |
1115 | only chance we have to complete this command is in | |
1116 | fetch_inferior_event, which is called by the event loop as soon as it | |
1117 | detects that the target has stopped. This function is called via the | |
6953f3ba | 1118 | cmd_continuation pointer. */ |
43ff13b4 | 1119 | void |
fba45db2 | 1120 | finish_command_continuation (struct continuation_arg *arg) |
43ff13b4 JM |
1121 | { |
1122 | register struct symbol *function; | |
1123 | struct breakpoint *breakpoint; | |
0d06e24b | 1124 | struct cleanup *cleanups; |
c5aa993b | 1125 | |
57e687d9 MS |
1126 | breakpoint = (struct breakpoint *) arg->data.pointer; |
1127 | function = (struct symbol *) arg->next->data.pointer; | |
1128 | cleanups = (struct cleanup *) arg->next->next->data.pointer; | |
43ff13b4 | 1129 | |
c5aa993b | 1130 | if (bpstat_find_breakpoint (stop_bpstat, breakpoint) != NULL |
43ff13b4 JM |
1131 | && function != 0) |
1132 | { | |
1133 | struct type *value_type; | |
43ff13b4 JM |
1134 | CORE_ADDR funcaddr; |
1135 | int struct_return; | |
1136 | ||
1137 | value_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (function)); | |
1138 | if (!value_type) | |
8e65ff28 AC |
1139 | internal_error (__FILE__, __LINE__, |
1140 | "finish_command: function has no target type"); | |
c5aa993b | 1141 | |
43ff13b4 JM |
1142 | if (TYPE_CODE (value_type) == TYPE_CODE_VOID) |
1143 | { | |
0d06e24b | 1144 | do_exec_cleanups (cleanups); |
43ff13b4 JM |
1145 | return; |
1146 | } | |
1147 | ||
1148 | funcaddr = BLOCK_START (SYMBOL_BLOCK_VALUE (function)); | |
1149 | ||
1150 | struct_return = using_struct_return (value_of_variable (function, NULL), | |
c5aa993b JM |
1151 | funcaddr, |
1152 | check_typedef (value_type), | |
11cf8741 | 1153 | BLOCK_GCC_COMPILED (SYMBOL_BLOCK_VALUE (function))); |
43ff13b4 | 1154 | |
11cf8741 | 1155 | print_return_value (struct_return, value_type); |
43ff13b4 | 1156 | } |
0d06e24b | 1157 | do_exec_cleanups (cleanups); |
43ff13b4 JM |
1158 | } |
1159 | ||
c906108c SS |
1160 | /* "finish": Set a temporary breakpoint at the place |
1161 | the selected frame will return to, then continue. */ | |
1162 | ||
1163 | static void | |
fba45db2 | 1164 | finish_command (char *arg, int from_tty) |
c906108c SS |
1165 | { |
1166 | struct symtab_and_line sal; | |
1167 | register struct frame_info *frame; | |
1168 | register struct symbol *function; | |
1169 | struct breakpoint *breakpoint; | |
1170 | struct cleanup *old_chain; | |
0d06e24b | 1171 | struct continuation_arg *arg1, *arg2, *arg3; |
43ff13b4 JM |
1172 | |
1173 | int async_exec = 0; | |
1174 | ||
1175 | /* Find out whether we must run in the background. */ | |
1176 | if (arg != NULL) | |
1177 | async_exec = strip_bg_char (&arg); | |
1178 | ||
1179 | /* If we must run in the background, but the target can't do it, | |
1180 | error out. */ | |
6426a772 | 1181 | if (event_loop_p && async_exec && !target_can_async_p ()) |
43ff13b4 JM |
1182 | error ("Asynchronous execution not supported on this target."); |
1183 | ||
1184 | /* If we are not asked to run in the bg, then prepare to run in the | |
1185 | foreground, synchronously. */ | |
6426a772 | 1186 | if (event_loop_p && !async_exec && target_can_async_p ()) |
c5aa993b | 1187 | { |
43ff13b4 | 1188 | /* Simulate synchronous execution */ |
6426a772 | 1189 | async_disable_stdin (); |
43ff13b4 | 1190 | } |
c906108c SS |
1191 | |
1192 | if (arg) | |
1193 | error ("The \"finish\" command does not take any arguments."); | |
1194 | if (!target_has_execution) | |
1195 | error ("The program is not running."); | |
6e7f8b9c | 1196 | if (deprecated_selected_frame == NULL) |
c906108c SS |
1197 | error ("No selected frame."); |
1198 | ||
6e7f8b9c | 1199 | frame = get_prev_frame (deprecated_selected_frame); |
c906108c SS |
1200 | if (frame == 0) |
1201 | error ("\"finish\" not meaningful in the outermost frame."); | |
1202 | ||
1203 | clear_proceed_status (); | |
1204 | ||
bdd78e62 AC |
1205 | sal = find_pc_line (get_frame_pc (frame), 0); |
1206 | sal.pc = get_frame_pc (frame); | |
c906108c | 1207 | |
818dd999 | 1208 | breakpoint = set_momentary_breakpoint (sal, get_frame_id (frame), bp_finish); |
c906108c | 1209 | |
6426a772 | 1210 | if (!event_loop_p || !target_can_async_p ()) |
4d6140d9 | 1211 | old_chain = make_cleanup_delete_breakpoint (breakpoint); |
43ff13b4 | 1212 | else |
4d6140d9 | 1213 | old_chain = make_exec_cleanup_delete_breakpoint (breakpoint); |
c906108c SS |
1214 | |
1215 | /* Find the function we will return from. */ | |
1216 | ||
bdd78e62 | 1217 | function = find_pc_function (get_frame_pc (deprecated_selected_frame)); |
c906108c SS |
1218 | |
1219 | /* Print info on the selected frame, including level number | |
1220 | but not source. */ | |
1221 | if (from_tty) | |
1222 | { | |
1223 | printf_filtered ("Run till exit from "); | |
6e7f8b9c AC |
1224 | print_stack_frame (deprecated_selected_frame, |
1225 | frame_relative_level (deprecated_selected_frame), 0); | |
c906108c SS |
1226 | } |
1227 | ||
43ff13b4 JM |
1228 | /* If running asynchronously and the target support asynchronous |
1229 | execution, set things up for the rest of the finish command to be | |
1230 | completed later on, when gdb has detected that the target has | |
1231 | stopped, in fetch_inferior_event. */ | |
6426a772 | 1232 | if (event_loop_p && target_can_async_p ()) |
43ff13b4 | 1233 | { |
c5aa993b | 1234 | arg1 = |
43ff13b4 | 1235 | (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg)); |
c5aa993b | 1236 | arg2 = |
43ff13b4 | 1237 | (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg)); |
0d06e24b JM |
1238 | arg3 = |
1239 | (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg)); | |
43ff13b4 | 1240 | arg1->next = arg2; |
0d06e24b JM |
1241 | arg2->next = arg3; |
1242 | arg3->next = NULL; | |
57e687d9 MS |
1243 | arg1->data.pointer = breakpoint; |
1244 | arg2->data.pointer = function; | |
1245 | arg3->data.pointer = old_chain; | |
43ff13b4 JM |
1246 | add_continuation (finish_command_continuation, arg1); |
1247 | } | |
1248 | ||
c5aa993b | 1249 | proceed_to_finish = 1; /* We want stop_registers, please... */ |
2acceee2 | 1250 | proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0); |
c906108c | 1251 | |
43ff13b4 JM |
1252 | /* Do this only if not running asynchronously or if the target |
1253 | cannot do async execution. Otherwise, complete this command when | |
c5aa993b | 1254 | the target actually stops, in fetch_inferior_event. */ |
6426a772 | 1255 | if (!event_loop_p || !target_can_async_p ()) |
c5aa993b JM |
1256 | { |
1257 | ||
1258 | /* Did we stop at our breakpoint? */ | |
1259 | if (bpstat_find_breakpoint (stop_bpstat, breakpoint) != NULL | |
1260 | && function != 0) | |
1261 | { | |
1262 | struct type *value_type; | |
c5aa993b JM |
1263 | CORE_ADDR funcaddr; |
1264 | int struct_return; | |
1265 | ||
1266 | value_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (function)); | |
1267 | if (!value_type) | |
8e65ff28 AC |
1268 | internal_error (__FILE__, __LINE__, |
1269 | "finish_command: function has no target type"); | |
c5aa993b JM |
1270 | |
1271 | /* FIXME: Shouldn't we do the cleanups before returning? */ | |
1272 | if (TYPE_CODE (value_type) == TYPE_CODE_VOID) | |
1273 | return; | |
1274 | ||
1275 | funcaddr = BLOCK_START (SYMBOL_BLOCK_VALUE (function)); | |
1276 | ||
1277 | struct_return = | |
1278 | using_struct_return (value_of_variable (function, NULL), | |
1279 | funcaddr, | |
1280 | check_typedef (value_type), | |
1281 | BLOCK_GCC_COMPILED (SYMBOL_BLOCK_VALUE (function))); | |
1282 | ||
11cf8741 | 1283 | print_return_value (struct_return, value_type); |
c5aa993b JM |
1284 | } |
1285 | do_cleanups (old_chain); | |
1286 | } | |
c906108c SS |
1287 | } |
1288 | \f | |
1289 | /* ARGSUSED */ | |
1290 | static void | |
fba45db2 | 1291 | program_info (char *args, int from_tty) |
c906108c SS |
1292 | { |
1293 | bpstat bs = stop_bpstat; | |
1294 | int num = bpstat_num (&bs); | |
c5aa993b | 1295 | |
c906108c SS |
1296 | if (!target_has_execution) |
1297 | { | |
1298 | printf_filtered ("The program being debugged is not being run.\n"); | |
1299 | return; | |
1300 | } | |
1301 | ||
1302 | target_files_info (); | |
1303 | printf_filtered ("Program stopped at %s.\n", | |
c5aa993b | 1304 | local_hex_string ((unsigned long) stop_pc)); |
c906108c SS |
1305 | if (stop_step) |
1306 | printf_filtered ("It stopped after being stepped.\n"); | |
1307 | else if (num != 0) | |
1308 | { | |
1309 | /* There may be several breakpoints in the same place, so this | |
c5aa993b | 1310 | isn't as strange as it seems. */ |
c906108c SS |
1311 | while (num != 0) |
1312 | { | |
1313 | if (num < 0) | |
1314 | { | |
1315 | printf_filtered ("It stopped at a breakpoint that has "); | |
1316 | printf_filtered ("since been deleted.\n"); | |
1317 | } | |
1318 | else | |
1319 | printf_filtered ("It stopped at breakpoint %d.\n", num); | |
1320 | num = bpstat_num (&bs); | |
1321 | } | |
1322 | } | |
1323 | else if (stop_signal != TARGET_SIGNAL_0) | |
1324 | { | |
1325 | printf_filtered ("It stopped with signal %s, %s.\n", | |
1326 | target_signal_to_name (stop_signal), | |
1327 | target_signal_to_string (stop_signal)); | |
1328 | } | |
1329 | ||
1330 | if (!from_tty) | |
1331 | { | |
1332 | printf_filtered ("Type \"info stack\" or \"info registers\" "); | |
1333 | printf_filtered ("for more information.\n"); | |
1334 | } | |
1335 | } | |
1336 | \f | |
1337 | static void | |
fba45db2 | 1338 | environment_info (char *var, int from_tty) |
c906108c SS |
1339 | { |
1340 | if (var) | |
1341 | { | |
1342 | register char *val = get_in_environ (inferior_environ, var); | |
1343 | if (val) | |
1344 | { | |
1345 | puts_filtered (var); | |
1346 | puts_filtered (" = "); | |
1347 | puts_filtered (val); | |
1348 | puts_filtered ("\n"); | |
1349 | } | |
1350 | else | |
1351 | { | |
1352 | puts_filtered ("Environment variable \""); | |
1353 | puts_filtered (var); | |
1354 | puts_filtered ("\" not defined.\n"); | |
1355 | } | |
1356 | } | |
1357 | else | |
1358 | { | |
1359 | register char **vector = environ_vector (inferior_environ); | |
1360 | while (*vector) | |
1361 | { | |
1362 | puts_filtered (*vector++); | |
1363 | puts_filtered ("\n"); | |
1364 | } | |
1365 | } | |
1366 | } | |
1367 | ||
1368 | static void | |
fba45db2 | 1369 | set_environment_command (char *arg, int from_tty) |
c906108c SS |
1370 | { |
1371 | register char *p, *val, *var; | |
1372 | int nullset = 0; | |
1373 | ||
1374 | if (arg == 0) | |
1375 | error_no_arg ("environment variable and value"); | |
1376 | ||
1377 | /* Find seperation between variable name and value */ | |
1378 | p = (char *) strchr (arg, '='); | |
1379 | val = (char *) strchr (arg, ' '); | |
1380 | ||
1381 | if (p != 0 && val != 0) | |
1382 | { | |
1383 | /* We have both a space and an equals. If the space is before the | |
c5aa993b JM |
1384 | equals, walk forward over the spaces til we see a nonspace |
1385 | (possibly the equals). */ | |
c906108c SS |
1386 | if (p > val) |
1387 | while (*val == ' ') | |
1388 | val++; | |
1389 | ||
1390 | /* Now if the = is after the char following the spaces, | |
c5aa993b | 1391 | take the char following the spaces. */ |
c906108c SS |
1392 | if (p > val) |
1393 | p = val - 1; | |
1394 | } | |
1395 | else if (val != 0 && p == 0) | |
1396 | p = val; | |
1397 | ||
1398 | if (p == arg) | |
1399 | error_no_arg ("environment variable to set"); | |
1400 | ||
1401 | if (p == 0 || p[1] == 0) | |
1402 | { | |
1403 | nullset = 1; | |
1404 | if (p == 0) | |
1405 | p = arg + strlen (arg); /* So that savestring below will work */ | |
1406 | } | |
1407 | else | |
1408 | { | |
1409 | /* Not setting variable value to null */ | |
1410 | val = p + 1; | |
1411 | while (*val == ' ' || *val == '\t') | |
1412 | val++; | |
1413 | } | |
1414 | ||
c5aa993b JM |
1415 | while (p != arg && (p[-1] == ' ' || p[-1] == '\t')) |
1416 | p--; | |
c906108c SS |
1417 | |
1418 | var = savestring (arg, p - arg); | |
1419 | if (nullset) | |
1420 | { | |
1421 | printf_filtered ("Setting environment variable "); | |
1422 | printf_filtered ("\"%s\" to null value.\n", var); | |
1423 | set_in_environ (inferior_environ, var, ""); | |
1424 | } | |
1425 | else | |
1426 | set_in_environ (inferior_environ, var, val); | |
b8c9b27d | 1427 | xfree (var); |
c906108c SS |
1428 | } |
1429 | ||
1430 | static void | |
fba45db2 | 1431 | unset_environment_command (char *var, int from_tty) |
c906108c SS |
1432 | { |
1433 | if (var == 0) | |
1434 | { | |
1435 | /* If there is no argument, delete all environment variables. | |
c5aa993b | 1436 | Ask for confirmation if reading from the terminal. */ |
c906108c SS |
1437 | if (!from_tty || query ("Delete all environment variables? ")) |
1438 | { | |
1439 | free_environ (inferior_environ); | |
1440 | inferior_environ = make_environ (); | |
1441 | } | |
1442 | } | |
1443 | else | |
1444 | unset_in_environ (inferior_environ, var); | |
1445 | } | |
1446 | ||
1447 | /* Handle the execution path (PATH variable) */ | |
1448 | ||
1449 | static const char path_var_name[] = "PATH"; | |
1450 | ||
1451 | /* ARGSUSED */ | |
1452 | static void | |
fba45db2 | 1453 | path_info (char *args, int from_tty) |
c906108c SS |
1454 | { |
1455 | puts_filtered ("Executable and object file path: "); | |
1456 | puts_filtered (get_in_environ (inferior_environ, path_var_name)); | |
1457 | puts_filtered ("\n"); | |
1458 | } | |
1459 | ||
1460 | /* Add zero or more directories to the front of the execution path. */ | |
1461 | ||
1462 | static void | |
fba45db2 | 1463 | path_command (char *dirname, int from_tty) |
c906108c SS |
1464 | { |
1465 | char *exec_path; | |
1466 | char *env; | |
1467 | dont_repeat (); | |
1468 | env = get_in_environ (inferior_environ, path_var_name); | |
1469 | /* Can be null if path is not set */ | |
1470 | if (!env) | |
1471 | env = ""; | |
4fcf66da | 1472 | exec_path = xstrdup (env); |
c906108c SS |
1473 | mod_path (dirname, &exec_path); |
1474 | set_in_environ (inferior_environ, path_var_name, exec_path); | |
b8c9b27d | 1475 | xfree (exec_path); |
c906108c | 1476 | if (from_tty) |
c5aa993b | 1477 | path_info ((char *) NULL, from_tty); |
c906108c | 1478 | } |
c906108c | 1479 | \f |
c5aa993b | 1480 | |
c906108c SS |
1481 | #ifdef REGISTER_NAMES |
1482 | char *gdb_register_names[] = REGISTER_NAMES; | |
1483 | #endif | |
4782dc19 | 1484 | /* Print out the machine register regnum. If regnum is -1, print all |
0ab7a791 AC |
1485 | registers (print_all == 1) or all non-float and non-vector |
1486 | registers (print_all == 0). | |
c906108c SS |
1487 | |
1488 | For most machines, having all_registers_info() print the | |
0ab7a791 AC |
1489 | register(s) one per line is good enough. If a different format is |
1490 | required, (eg, for MIPS or Pyramid 90x, which both have lots of | |
1491 | regs), or there is an existing convention for showing all the | |
1492 | registers, define the architecture method PRINT_REGISTERS_INFO to | |
1493 | provide that format. */ | |
c906108c | 1494 | |
666e11c5 | 1495 | void |
0ab7a791 AC |
1496 | default_print_registers_info (struct gdbarch *gdbarch, |
1497 | struct ui_file *file, | |
1498 | struct frame_info *frame, | |
1499 | int regnum, int print_all) | |
c906108c | 1500 | { |
0ab7a791 AC |
1501 | int i; |
1502 | const int numregs = NUM_REGS + NUM_PSEUDO_REGS; | |
0c92afe8 AC |
1503 | char raw_buffer[MAX_REGISTER_SIZE]; |
1504 | char virtual_buffer[MAX_REGISTER_SIZE]; | |
0ab7a791 | 1505 | |
903ad3a6 | 1506 | if (DEPRECATED_DO_REGISTERS_INFO_P ()) |
0ab7a791 | 1507 | { |
903ad3a6 | 1508 | DEPRECATED_DO_REGISTERS_INFO (regnum, print_all); |
0ab7a791 AC |
1509 | return; |
1510 | } | |
c906108c SS |
1511 | |
1512 | for (i = 0; i < numregs; i++) | |
1513 | { | |
4782dc19 AC |
1514 | /* Decide between printing all regs, non-float / vector regs, or |
1515 | specific reg. */ | |
c5aa993b JM |
1516 | if (regnum == -1) |
1517 | { | |
f9418c0f | 1518 | if (print_all) |
4782dc19 | 1519 | { |
f9418c0f | 1520 | if (!gdbarch_register_reggroup_p (gdbarch, i, all_reggroup)) |
4782dc19 | 1521 | continue; |
f9418c0f AC |
1522 | } |
1523 | else | |
1524 | { | |
1525 | if (!gdbarch_register_reggroup_p (gdbarch, i, general_reggroup)) | |
4782dc19 AC |
1526 | continue; |
1527 | } | |
c5aa993b JM |
1528 | } |
1529 | else | |
1530 | { | |
1531 | if (i != regnum) | |
1532 | continue; | |
1533 | } | |
c906108c SS |
1534 | |
1535 | /* If the register name is empty, it is undefined for this | |
c5aa993b | 1536 | processor, so don't display anything. */ |
c906108c SS |
1537 | if (REGISTER_NAME (i) == NULL || *(REGISTER_NAME (i)) == '\0') |
1538 | continue; | |
1539 | ||
0ab7a791 AC |
1540 | fputs_filtered (REGISTER_NAME (i), file); |
1541 | print_spaces_filtered (15 - strlen (REGISTER_NAME (i)), file); | |
c906108c SS |
1542 | |
1543 | /* Get the data in raw format. */ | |
0ab7a791 | 1544 | if (! frame_register_read (frame, i, raw_buffer)) |
c906108c | 1545 | { |
0ab7a791 | 1546 | fprintf_filtered (file, "*value not available*\n"); |
c906108c SS |
1547 | continue; |
1548 | } | |
1549 | ||
0ab7a791 AC |
1550 | /* FIXME: cagney/2002-08-03: This code shouldn't be necessary. |
1551 | The function frame_register_read() should have returned the | |
1552 | pre-cooked register so no conversion is necessary. */ | |
c906108c | 1553 | /* Convert raw data to virtual format if necessary. */ |
c906108c SS |
1554 | if (REGISTER_CONVERTIBLE (i)) |
1555 | { | |
7b83296f | 1556 | REGISTER_CONVERT_TO_VIRTUAL (i, register_type (current_gdbarch, i), |
c906108c SS |
1557 | raw_buffer, virtual_buffer); |
1558 | } | |
1559 | else | |
392a587b JM |
1560 | { |
1561 | memcpy (virtual_buffer, raw_buffer, | |
1562 | REGISTER_VIRTUAL_SIZE (i)); | |
1563 | } | |
c906108c | 1564 | |
0ab7a791 AC |
1565 | /* If virtual format is floating, print it that way, and in raw |
1566 | hex. */ | |
7b83296f | 1567 | if (TYPE_CODE (register_type (current_gdbarch, i)) == TYPE_CODE_FLT) |
c906108c | 1568 | { |
0ab7a791 | 1569 | int j; |
c906108c | 1570 | |
7b83296f | 1571 | val_print (register_type (current_gdbarch, i), virtual_buffer, 0, 0, |
0ab7a791 | 1572 | file, 0, 1, 0, Val_pretty_default); |
c906108c | 1573 | |
0ab7a791 | 1574 | fprintf_filtered (file, "\t(raw 0x"); |
c906108c SS |
1575 | for (j = 0; j < REGISTER_RAW_SIZE (i); j++) |
1576 | { | |
0ab7a791 AC |
1577 | int idx; |
1578 | if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG) | |
1579 | idx = j; | |
1580 | else | |
1581 | idx = REGISTER_RAW_SIZE (i) - 1 - j; | |
1582 | fprintf_filtered (file, "%02x", (unsigned char) raw_buffer[idx]); | |
c906108c | 1583 | } |
0ab7a791 | 1584 | fprintf_filtered (file, ")"); |
c906108c | 1585 | } |
c906108c SS |
1586 | else |
1587 | { | |
ab4327e0 | 1588 | /* Print the register in hex. */ |
7b83296f | 1589 | val_print (register_type (current_gdbarch, i), virtual_buffer, 0, 0, |
9d84ac84 | 1590 | file, 'x', 1, 0, Val_pretty_default); |
ab4327e0 EZ |
1591 | /* If not a vector register, print it also according to its |
1592 | natural format. */ | |
7b83296f | 1593 | if (TYPE_VECTOR (register_type (current_gdbarch, i)) == 0) |
ab4327e0 | 1594 | { |
9d84ac84 | 1595 | fprintf_filtered (file, "\t"); |
7b83296f | 1596 | val_print (register_type (current_gdbarch, i), virtual_buffer, 0, 0, |
9d84ac84 | 1597 | file, 0, 1, 0, Val_pretty_default); |
ab4327e0 | 1598 | } |
c906108c SS |
1599 | } |
1600 | ||
0ab7a791 | 1601 | fprintf_filtered (file, "\n"); |
c906108c SS |
1602 | } |
1603 | } | |
c906108c | 1604 | |
c906108c | 1605 | void |
fba45db2 | 1606 | registers_info (char *addr_exp, int fpregs) |
c906108c SS |
1607 | { |
1608 | int regnum, numregs; | |
1609 | register char *end; | |
1610 | ||
1611 | if (!target_has_registers) | |
1612 | error ("The program has no registers now."); | |
6e7f8b9c | 1613 | if (deprecated_selected_frame == NULL) |
c906108c SS |
1614 | error ("No selected frame."); |
1615 | ||
1616 | if (!addr_exp) | |
1617 | { | |
0ab7a791 | 1618 | gdbarch_print_registers_info (current_gdbarch, gdb_stdout, |
6e7f8b9c | 1619 | deprecated_selected_frame, -1, fpregs); |
c906108c SS |
1620 | return; |
1621 | } | |
1622 | ||
f9418c0f | 1623 | while (*addr_exp != '\0') |
c5aa993b | 1624 | { |
f9418c0f AC |
1625 | char *start; |
1626 | const char *end; | |
c906108c | 1627 | |
f9418c0f AC |
1628 | /* Keep skipping leading white space. */ |
1629 | if (isspace ((*addr_exp))) | |
1630 | { | |
1631 | addr_exp++; | |
1632 | continue; | |
1633 | } | |
c906108c | 1634 | |
f9418c0f AC |
1635 | /* Discard any leading ``$''. Check that there is something |
1636 | resembling a register following it. */ | |
1637 | if (addr_exp[0] == '$') | |
1638 | addr_exp++; | |
1639 | if (isspace ((*addr_exp)) || (*addr_exp) == '\0') | |
1640 | error ("Missing register name"); | |
c906108c | 1641 | |
f9418c0f AC |
1642 | /* Find the start/end of this register name/num/group. */ |
1643 | start = addr_exp; | |
1644 | while ((*addr_exp) != '\0' && !isspace ((*addr_exp))) | |
1645 | addr_exp++; | |
1646 | end = addr_exp; | |
1647 | ||
1648 | /* Figure out what we've found and display it. */ | |
1649 | ||
1650 | /* A register name? */ | |
1651 | { | |
1652 | int regnum = frame_map_name_to_regnum (start, end - start); | |
1653 | if (regnum >= 0) | |
1654 | { | |
1655 | gdbarch_print_registers_info (current_gdbarch, gdb_stdout, | |
6e7f8b9c | 1656 | deprecated_selected_frame, regnum, fpregs); |
f9418c0f AC |
1657 | continue; |
1658 | } | |
1659 | } | |
1660 | ||
1661 | /* A register number? (how portable is this one?). */ | |
1662 | { | |
1663 | char *endptr; | |
1664 | int regnum = strtol (start, &endptr, 0); | |
1665 | if (endptr == end | |
1666 | && regnum >= 0 | |
1667 | && regnum < NUM_REGS + NUM_PSEUDO_REGS) | |
1668 | { | |
1669 | gdbarch_print_registers_info (current_gdbarch, gdb_stdout, | |
6e7f8b9c | 1670 | deprecated_selected_frame, regnum, fpregs); |
f9418c0f AC |
1671 | continue; |
1672 | } | |
1673 | } | |
1674 | ||
1675 | /* A register group? */ | |
1676 | { | |
1677 | struct reggroup *const *group; | |
1678 | for (group = reggroups (current_gdbarch); | |
1679 | (*group) != NULL; | |
1680 | group++) | |
1681 | { | |
1682 | /* Don't bother with a length check. Should the user | |
1683 | enter a short register group name, go with the first | |
1684 | group that matches. */ | |
1685 | if (strncmp (start, reggroup_name ((*group)), end - start) == 0) | |
1686 | break; | |
1687 | } | |
1688 | if ((*group) != NULL) | |
1689 | { | |
1690 | int regnum; | |
1691 | for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++) | |
1692 | { | |
1693 | if (gdbarch_register_reggroup_p (current_gdbarch, regnum, | |
1694 | (*group))) | |
1695 | gdbarch_print_registers_info (current_gdbarch, | |
6e7f8b9c | 1696 | gdb_stdout, deprecated_selected_frame, |
f9418c0f AC |
1697 | regnum, fpregs); |
1698 | } | |
1699 | continue; | |
1700 | } | |
1701 | } | |
c906108c | 1702 | |
f9418c0f AC |
1703 | /* Nothing matched. */ |
1704 | error ("Invalid register `%.*s'", (int) (end - start), start); | |
c5aa993b | 1705 | } |
c906108c SS |
1706 | } |
1707 | ||
1708 | void | |
fba45db2 | 1709 | all_registers_info (char *addr_exp, int from_tty) |
c906108c SS |
1710 | { |
1711 | registers_info (addr_exp, 1); | |
1712 | } | |
1713 | ||
a58dd373 | 1714 | static void |
fba45db2 | 1715 | nofp_registers_info (char *addr_exp, int from_tty) |
c906108c SS |
1716 | { |
1717 | registers_info (addr_exp, 0); | |
1718 | } | |
e76f1f2e AC |
1719 | |
1720 | static void | |
1721 | print_vector_info (struct gdbarch *gdbarch, struct ui_file *file, | |
1722 | struct frame_info *frame, const char *args) | |
1723 | { | |
e71ecd70 MK |
1724 | if (!target_has_registers) |
1725 | error ("The program has no registers now."); | |
6e7f8b9c | 1726 | if (deprecated_selected_frame == NULL) |
e71ecd70 MK |
1727 | error ("No selected frame."); |
1728 | ||
e76f1f2e AC |
1729 | if (gdbarch_print_vector_info_p (gdbarch)) |
1730 | gdbarch_print_vector_info (gdbarch, file, frame, args); | |
1731 | else | |
1732 | { | |
1733 | int regnum; | |
1734 | int printed_something = 0; | |
ab4327e0 | 1735 | |
e76f1f2e AC |
1736 | for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++) |
1737 | { | |
f9418c0f | 1738 | if (gdbarch_register_reggroup_p (gdbarch, regnum, vector_reggroup)) |
e76f1f2e AC |
1739 | { |
1740 | printed_something = 1; | |
e76f1f2e | 1741 | gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1); |
e76f1f2e AC |
1742 | } |
1743 | } | |
1744 | if (!printed_something) | |
1745 | fprintf_filtered (file, "No vector information\n"); | |
1746 | } | |
1747 | } | |
1748 | ||
1749 | static void | |
1750 | vector_info (char *args, int from_tty) | |
1751 | { | |
6e7f8b9c | 1752 | print_vector_info (current_gdbarch, gdb_stdout, deprecated_selected_frame, args); |
e76f1f2e | 1753 | } |
c906108c | 1754 | \f |
c5aa993b | 1755 | |
c906108c SS |
1756 | /* |
1757 | * TODO: | |
1758 | * Should save/restore the tty state since it might be that the | |
1759 | * program to be debugged was started on this tty and it wants | |
1760 | * the tty in some state other than what we want. If it's running | |
1761 | * on another terminal or without a terminal, then saving and | |
1762 | * restoring the tty state is a harmless no-op. | |
1763 | * This only needs to be done if we are attaching to a process. | |
1764 | */ | |
1765 | ||
1766 | /* | |
1767 | attach_command -- | |
1768 | takes a program started up outside of gdb and ``attaches'' to it. | |
1769 | This stops it cold in its tracks and allows us to start debugging it. | |
1770 | and wait for the trace-trap that results from attaching. */ | |
1771 | ||
1772 | void | |
fba45db2 | 1773 | attach_command (char *args, int from_tty) |
c906108c | 1774 | { |
c5aa993b JM |
1775 | char *exec_file; |
1776 | char *full_exec_path = NULL; | |
c906108c | 1777 | |
c5aa993b | 1778 | dont_repeat (); /* Not for the faint of heart */ |
c906108c SS |
1779 | |
1780 | if (target_has_execution) | |
1781 | { | |
1782 | if (query ("A program is being debugged already. Kill it? ")) | |
1783 | target_kill (); | |
1784 | else | |
1785 | error ("Not killed."); | |
1786 | } | |
1787 | ||
1788 | target_attach (args, from_tty); | |
1789 | ||
1790 | /* Set up the "saved terminal modes" of the inferior | |
1791 | based on what modes we are starting it with. */ | |
1792 | target_terminal_init (); | |
1793 | ||
1794 | /* Install inferior's terminal modes. */ | |
1795 | target_terminal_inferior (); | |
1796 | ||
1797 | /* Set up execution context to know that we should return from | |
1798 | wait_for_inferior as soon as the target reports a stop. */ | |
1799 | init_wait_for_inferior (); | |
1800 | clear_proceed_status (); | |
c906108c SS |
1801 | |
1802 | /* No traps are generated when attaching to inferior under Mach 3 | |
1803 | or GNU hurd. */ | |
1804 | #ifndef ATTACH_NO_WAIT | |
c54cfec8 EZ |
1805 | /* Careful here. See comments in inferior.h. Basically some OSes |
1806 | don't ignore SIGSTOPs on continue requests anymore. We need a | |
1807 | way for handle_inferior_event to reset the stop_signal variable | |
1808 | after an attach, and this is what STOP_QUIETLY_NO_SIGSTOP is for. */ | |
c0236d92 | 1809 | stop_soon = STOP_QUIETLY_NO_SIGSTOP; |
c906108c | 1810 | wait_for_inferior (); |
c0236d92 | 1811 | stop_soon = NO_STOP_QUIETLY; |
c906108c SS |
1812 | #endif |
1813 | ||
1814 | /* | |
1815 | * If no exec file is yet known, try to determine it from the | |
1816 | * process itself. | |
1817 | */ | |
1818 | exec_file = (char *) get_exec_file (0); | |
c5aa993b JM |
1819 | if (!exec_file) |
1820 | { | |
39f77062 | 1821 | exec_file = target_pid_to_exec_file (PIDGET (inferior_ptid)); |
c5aa993b JM |
1822 | if (exec_file) |
1823 | { | |
1824 | /* It's possible we don't have a full path, but rather just a | |
1825 | filename. Some targets, such as HP-UX, don't provide the | |
1826 | full path, sigh. | |
1827 | ||
1828 | Attempt to qualify the filename against the source path. | |
1829 | (If that fails, we'll just fall back on the original | |
1830 | filename. Not much more we can do...) | |
1831 | */ | |
1832 | if (!source_full_path_of (exec_file, &full_exec_path)) | |
1833 | full_exec_path = savestring (exec_file, strlen (exec_file)); | |
1834 | ||
1835 | exec_file_attach (full_exec_path, from_tty); | |
1adeb98a | 1836 | symbol_file_add_main (full_exec_path, from_tty); |
c5aa993b | 1837 | } |
c906108c | 1838 | } |
c906108c SS |
1839 | |
1840 | #ifdef SOLIB_ADD | |
990f9fe3 FF |
1841 | /* Add shared library symbols from the newly attached process, if any. */ |
1842 | SOLIB_ADD ((char *) 0, from_tty, ¤t_target, auto_solib_add); | |
1843 | re_enable_breakpoints_in_shlibs (); | |
c906108c SS |
1844 | #endif |
1845 | ||
1846 | /* Take any necessary post-attaching actions for this platform. | |
c5aa993b | 1847 | */ |
39f77062 | 1848 | target_post_attach (PIDGET (inferior_ptid)); |
c906108c SS |
1849 | |
1850 | normal_stop (); | |
6426a772 JM |
1851 | |
1852 | if (attach_hook) | |
1853 | attach_hook (); | |
c906108c SS |
1854 | } |
1855 | ||
1856 | /* | |
1857 | * detach_command -- | |
1858 | * takes a program previously attached to and detaches it. | |
1859 | * The program resumes execution and will no longer stop | |
1860 | * on signals, etc. We better not have left any breakpoints | |
1861 | * in the program or it'll die when it hits one. For this | |
1862 | * to work, it may be necessary for the process to have been | |
1863 | * previously attached. It *might* work if the program was | |
1864 | * started via the normal ptrace (PTRACE_TRACEME). | |
1865 | */ | |
1866 | ||
1867 | static void | |
fba45db2 | 1868 | detach_command (char *args, int from_tty) |
c906108c | 1869 | { |
c5aa993b | 1870 | dont_repeat (); /* Not for the faint of heart */ |
c906108c SS |
1871 | target_detach (args, from_tty); |
1872 | #if defined(SOLIB_RESTART) | |
1873 | SOLIB_RESTART (); | |
1874 | #endif | |
6426a772 JM |
1875 | if (detach_hook) |
1876 | detach_hook (); | |
c906108c SS |
1877 | } |
1878 | ||
43ff13b4 JM |
1879 | /* Stop the execution of the target while running in async mode, in |
1880 | the backgound. */ | |
8b93c638 | 1881 | void |
fba45db2 | 1882 | interrupt_target_command (char *args, int from_tty) |
43ff13b4 | 1883 | { |
6426a772 | 1884 | if (event_loop_p && target_can_async_p ()) |
43ff13b4 | 1885 | { |
c5aa993b | 1886 | dont_repeat (); /* Not for the faint of heart */ |
43ff13b4 JM |
1887 | target_stop (); |
1888 | } | |
1889 | } | |
1890 | ||
c906108c SS |
1891 | /* ARGSUSED */ |
1892 | static void | |
23e3a7ac AC |
1893 | print_float_info (struct gdbarch *gdbarch, struct ui_file *file, |
1894 | struct frame_info *frame, const char *args) | |
c906108c | 1895 | { |
e71ecd70 MK |
1896 | if (!target_has_registers) |
1897 | error ("The program has no registers now."); | |
6e7f8b9c | 1898 | if (deprecated_selected_frame == NULL) |
e71ecd70 MK |
1899 | error ("No selected frame."); |
1900 | ||
23e3a7ac AC |
1901 | if (gdbarch_print_float_info_p (gdbarch)) |
1902 | gdbarch_print_float_info (gdbarch, file, frame, args); | |
1903 | else | |
1904 | { | |
23e3a7ac AC |
1905 | int regnum; |
1906 | int printed_something = 0; | |
ab4327e0 | 1907 | |
23e3a7ac AC |
1908 | for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++) |
1909 | { | |
f9418c0f | 1910 | if (gdbarch_register_reggroup_p (gdbarch, regnum, float_reggroup)) |
23e3a7ac AC |
1911 | { |
1912 | printed_something = 1; | |
23e3a7ac | 1913 | gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1); |
23e3a7ac AC |
1914 | } |
1915 | } | |
1916 | if (!printed_something) | |
1917 | fprintf_filtered (file, "\ | |
1918 | No floating-point info available for this processor.\n"); | |
23e3a7ac AC |
1919 | } |
1920 | } | |
1921 | ||
1922 | static void | |
1923 | float_info (char *args, int from_tty) | |
1924 | { | |
6e7f8b9c | 1925 | print_float_info (current_gdbarch, gdb_stdout, deprecated_selected_frame, args); |
c906108c SS |
1926 | } |
1927 | \f | |
1928 | /* ARGSUSED */ | |
1929 | static void | |
fba45db2 | 1930 | unset_command (char *args, int from_tty) |
c906108c SS |
1931 | { |
1932 | printf_filtered ("\"unset\" must be followed by the name of "); | |
1933 | printf_filtered ("an unset subcommand.\n"); | |
1934 | help_list (unsetlist, "unset ", -1, gdb_stdout); | |
1935 | } | |
1936 | ||
1937 | void | |
fba45db2 | 1938 | _initialize_infcmd (void) |
c906108c SS |
1939 | { |
1940 | struct cmd_list_element *c; | |
c5aa993b | 1941 | |
c94fdfd0 EZ |
1942 | c = add_com ("tty", class_run, tty_command, |
1943 | "Set terminal for future runs of program being debugged."); | |
5ba2abeb | 1944 | set_cmd_completer (c, filename_completer); |
c906108c | 1945 | |
fa58ee11 EZ |
1946 | c = add_set_cmd ("args", class_run, var_string_noescape, |
1947 | (char *) &inferior_args, | |
1948 | "Set argument list to give program being debugged when it is started.\n\ | |
c906108c | 1949 | Follow this command with any number of args, to be passed to the program.", |
fa58ee11 | 1950 | &setlist); |
5ba2abeb | 1951 | set_cmd_completer (c, filename_completer); |
9f60d481 | 1952 | set_cmd_sfunc (c, notice_args_set); |
552c04a7 | 1953 | c = add_show_from_set (c, &showlist); |
9f60d481 | 1954 | set_cmd_sfunc (c, notice_args_read); |
c906108c SS |
1955 | |
1956 | c = add_cmd | |
1957 | ("environment", no_class, environment_info, | |
1958 | "The environment to give the program, or one variable's value.\n\ | |
1959 | With an argument VAR, prints the value of environment variable VAR to\n\ | |
1960 | give the program being debugged. With no arguments, prints the entire\n\ | |
1961 | environment to be given to the program.", &showlist); | |
5ba2abeb | 1962 | set_cmd_completer (c, noop_completer); |
c906108c SS |
1963 | |
1964 | add_prefix_cmd ("unset", no_class, unset_command, | |
d4654627 | 1965 | "Complement to certain \"set\" commands.", |
c906108c | 1966 | &unsetlist, "unset ", 0, &cmdlist); |
c5aa993b | 1967 | |
c906108c | 1968 | c = add_cmd ("environment", class_run, unset_environment_command, |
c5aa993b | 1969 | "Cancel environment variable VAR for the program.\n\ |
c906108c | 1970 | This does not affect the program until the next \"run\" command.", |
c5aa993b | 1971 | &unsetlist); |
5ba2abeb | 1972 | set_cmd_completer (c, noop_completer); |
c906108c SS |
1973 | |
1974 | c = add_cmd ("environment", class_run, set_environment_command, | |
1975 | "Set environment variable value to give the program.\n\ | |
1976 | Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\ | |
1977 | VALUES of environment variables are uninterpreted strings.\n\ | |
1978 | This does not affect the program until the next \"run\" command.", | |
c5aa993b | 1979 | &setlist); |
5ba2abeb | 1980 | set_cmd_completer (c, noop_completer); |
c5aa993b | 1981 | |
fa58ee11 EZ |
1982 | c = add_com ("path", class_files, path_command, |
1983 | "Add directory DIR(s) to beginning of search path for object files.\n\ | |
c906108c SS |
1984 | $cwd in the path means the current working directory.\n\ |
1985 | This path is equivalent to the $PATH shell variable. It is a list of\n\ | |
1986 | directories, separated by colons. These directories are searched to find\n\ | |
1987 | fully linked executable files and separately compiled object files as needed."); | |
5ba2abeb | 1988 | set_cmd_completer (c, filename_completer); |
c906108c SS |
1989 | |
1990 | c = add_cmd ("paths", no_class, path_info, | |
c5aa993b | 1991 | "Current search path for finding object files.\n\ |
c906108c SS |
1992 | $cwd in the path means the current working directory.\n\ |
1993 | This path is equivalent to the $PATH shell variable. It is a list of\n\ | |
1994 | directories, separated by colons. These directories are searched to find\n\ | |
1995 | fully linked executable files and separately compiled object files as needed.", | |
1996 | &showlist); | |
5ba2abeb | 1997 | set_cmd_completer (c, noop_completer); |
c906108c | 1998 | |
c5aa993b JM |
1999 | add_com ("attach", class_run, attach_command, |
2000 | "Attach to a process or file outside of GDB.\n\ | |
c906108c SS |
2001 | This command attaches to another target, of the same type as your last\n\ |
2002 | \"target\" command (\"info files\" will show your target stack).\n\ | |
2003 | The command may take as argument a process id or a device file.\n\ | |
2004 | For a process id, you must have permission to send the process a signal,\n\ | |
2005 | and it must have the same effective uid as the debugger.\n\ | |
2006 | When using \"attach\" with a process id, the debugger finds the\n\ | |
2007 | program running in the process, looking first in the current working\n\ | |
2008 | directory, or (if not found there) using the source file search path\n\ | |
2009 | (see the \"directory\" command). You can also use the \"file\" command\n\ | |
2010 | to specify the program, and to load its symbol table."); | |
2011 | ||
2012 | add_com ("detach", class_run, detach_command, | |
2013 | "Detach a process or file previously attached.\n\ | |
2014 | If a process, it is no longer traced, and it continues its execution. If\n\ | |
2015 | you were debugging a file, the file is closed and gdb no longer accesses it."); | |
2016 | ||
2017 | add_com ("signal", class_run, signal_command, | |
2018 | "Continue program giving it signal specified by the argument.\n\ | |
2019 | An argument of \"0\" means continue program without giving it a signal."); | |
2020 | ||
2021 | add_com ("stepi", class_run, stepi_command, | |
2022 | "Step one instruction exactly.\n\ | |
2023 | Argument N means do this N times (or till program stops for another reason)."); | |
2024 | add_com_alias ("si", "stepi", class_alias, 0); | |
2025 | ||
2026 | add_com ("nexti", class_run, nexti_command, | |
2027 | "Step one instruction, but proceed through subroutine calls.\n\ | |
2028 | Argument N means do this N times (or till program stops for another reason)."); | |
2029 | add_com_alias ("ni", "nexti", class_alias, 0); | |
2030 | ||
2031 | add_com ("finish", class_run, finish_command, | |
2032 | "Execute until selected stack frame returns.\n\ | |
2033 | Upon return, the value returned is printed and put in the value history."); | |
2034 | ||
2035 | add_com ("next", class_run, next_command, | |
2036 | "Step program, proceeding through subroutine calls.\n\ | |
2037 | Like the \"step\" command as long as subroutine calls do not happen;\n\ | |
2038 | when they do, the call is treated as one instruction.\n\ | |
2039 | Argument N means do this N times (or till program stops for another reason)."); | |
2040 | add_com_alias ("n", "next", class_run, 1); | |
2041 | if (xdb_commands) | |
c5aa993b | 2042 | add_com_alias ("S", "next", class_run, 1); |
c906108c SS |
2043 | |
2044 | add_com ("step", class_run, step_command, | |
2045 | "Step program until it reaches a different source line.\n\ | |
2046 | Argument N means do this N times (or till program stops for another reason)."); | |
2047 | add_com_alias ("s", "step", class_run, 1); | |
2048 | ||
c94fdfd0 EZ |
2049 | c = add_com ("until", class_run, until_command, |
2050 | "Execute until the program reaches a source line greater than the current\n\ | |
ae66c1fc | 2051 | or a specified location (same args as break command) within the current frame."); |
5ba2abeb | 2052 | set_cmd_completer (c, location_completer); |
c906108c | 2053 | add_com_alias ("u", "until", class_run, 1); |
c5aa993b | 2054 | |
ae66c1fc EZ |
2055 | c = add_com ("advance", class_run, advance_command, |
2056 | "Continue the program up to the given location (same form as args for break command).\n\ | |
2057 | Execution will also stop upon exit from the current stack frame."); | |
2058 | set_cmd_completer (c, location_completer); | |
2059 | ||
c94fdfd0 EZ |
2060 | c = add_com ("jump", class_run, jump_command, |
2061 | "Continue program being debugged at specified line or address.\n\ | |
c906108c SS |
2062 | Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\ |
2063 | for an address to start at."); | |
5ba2abeb | 2064 | set_cmd_completer (c, location_completer); |
c906108c | 2065 | |
b83266a0 | 2066 | if (xdb_commands) |
c94fdfd0 EZ |
2067 | { |
2068 | c = add_com ("go", class_run, go_command, | |
2069 | "Usage: go <location>\n\ | |
c906108c SS |
2070 | Continue program being debugged, stopping at specified line or \n\ |
2071 | address.\n\ | |
2072 | Give as argument either LINENUM or *ADDR, where ADDR is an \n\ | |
2073 | expression for an address to start at.\n\ | |
2074 | This command is a combination of tbreak and jump."); | |
5ba2abeb | 2075 | set_cmd_completer (c, location_completer); |
c94fdfd0 | 2076 | } |
b83266a0 | 2077 | |
c906108c | 2078 | if (xdb_commands) |
c5aa993b | 2079 | add_com_alias ("g", "go", class_run, 1); |
c906108c SS |
2080 | |
2081 | add_com ("continue", class_run, continue_command, | |
2082 | "Continue program being debugged, after signal or breakpoint.\n\ | |
2083 | If proceeding from breakpoint, a number N may be used as an argument,\n\ | |
2084 | which means to set the ignore count of that breakpoint to N - 1 (so that\n\ | |
2085 | the breakpoint won't break until the Nth time it is reached)."); | |
2086 | add_com_alias ("c", "cont", class_run, 1); | |
2087 | add_com_alias ("fg", "cont", class_run, 1); | |
2088 | ||
fa58ee11 | 2089 | c = add_com ("run", class_run, run_command, |
c906108c SS |
2090 | "Start debugged program. You may specify arguments to give it.\n\ |
2091 | Args may include \"*\", or \"[...]\"; they are expanded using \"sh\".\n\ | |
2092 | Input and output redirection with \">\", \"<\", or \">>\" are also allowed.\n\n\ | |
2093 | With no arguments, uses arguments last specified (with \"run\" or \"set args\").\n\ | |
2094 | To cancel previous arguments and run with no arguments,\n\ | |
2095 | use \"set args\" without arguments."); | |
5ba2abeb | 2096 | set_cmd_completer (c, filename_completer); |
c906108c SS |
2097 | add_com_alias ("r", "run", class_run, 1); |
2098 | if (xdb_commands) | |
2099 | add_com ("R", class_run, run_no_args_command, | |
c5aa993b | 2100 | "Start debugged program with no arguments."); |
c906108c | 2101 | |
43ff13b4 JM |
2102 | add_com ("interrupt", class_run, interrupt_target_command, |
2103 | "Interrupt the execution of the debugged program."); | |
2104 | ||
c906108c | 2105 | add_info ("registers", nofp_registers_info, |
c5aa993b | 2106 | "List of integer registers and their contents, for selected stack frame.\n\ |
c906108c | 2107 | Register name as argument means describe only that register."); |
7194c49b | 2108 | add_info_alias ("r", "registers", 1); |
c906108c SS |
2109 | |
2110 | if (xdb_commands) | |
c5aa993b JM |
2111 | add_com ("lr", class_info, nofp_registers_info, |
2112 | "List of integer registers and their contents, for selected stack frame.\n\ | |
c906108c SS |
2113 | Register name as argument means describe only that register."); |
2114 | add_info ("all-registers", all_registers_info, | |
c5aa993b | 2115 | "List of all registers and their contents, for selected stack frame.\n\ |
c906108c SS |
2116 | Register name as argument means describe only that register."); |
2117 | ||
2118 | add_info ("program", program_info, | |
2119 | "Execution status of the program."); | |
2120 | ||
2121 | add_info ("float", float_info, | |
2122 | "Print the status of the floating point unit\n"); | |
2123 | ||
e76f1f2e AC |
2124 | add_info ("vector", vector_info, |
2125 | "Print the status of the vector unit\n"); | |
2126 | ||
c906108c SS |
2127 | inferior_environ = make_environ (); |
2128 | init_environ (inferior_environ); | |
2129 | } |