]>
Commit | Line | Data |
---|---|---|
172559ec | 1 | /* Top level stuff for GDB, the GNU debugger. |
16041d53 | 2 | Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995 |
172559ec JK |
3 | Free Software Foundation, Inc. |
4 | ||
5 | This file is part of GDB. | |
6 | ||
7 | This program is free software; you can redistribute it and/or modify | |
8 | it under the terms of the GNU General Public License as published by | |
9 | the Free Software Foundation; either version 2 of the License, or | |
10 | (at your option) any later version. | |
11 | ||
12 | This program is distributed in the hope that it will be useful, | |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | GNU General Public License for more details. | |
16 | ||
17 | You should have received a copy of the GNU General Public License | |
18 | along with this program; if not, write to the Free Software | |
6c9638b4 | 19 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ |
172559ec JK |
20 | |
21 | #include "defs.h" | |
22 | #include "gdbcmd.h" | |
23 | #include "call-cmds.h" | |
24 | #include "symtab.h" | |
25 | #include "inferior.h" | |
26 | #include "signals.h" | |
27 | #include "target.h" | |
28 | #include "breakpoint.h" | |
29 | #include "gdbtypes.h" | |
30 | #include "expression.h" | |
e52bfe0c | 31 | #include "value.h" |
172559ec JK |
32 | #include "language.h" |
33 | #include "terminal.h" /* For job_control. */ | |
34 | #include "annotate.h" | |
35 | #include <setjmp.h> | |
36 | #include "top.h" | |
37 | ||
38 | /* readline include files */ | |
39 | #include "readline.h" | |
40 | #include "history.h" | |
41 | ||
42 | /* readline defines this. */ | |
43 | #undef savestring | |
44 | ||
45 | #include <sys/types.h> | |
1a494973 | 46 | #ifdef HAVE_UNISTD_H |
172559ec JK |
47 | #include <unistd.h> |
48 | #endif | |
49 | ||
2b576293 | 50 | #include "gdb_string.h" |
172559ec JK |
51 | #ifndef NO_SYS_FILE |
52 | #include <sys/file.h> | |
53 | #endif | |
54 | #include <sys/param.h> | |
2b576293 | 55 | #include "gdb_stat.h" |
172559ec JK |
56 | #include <ctype.h> |
57 | ||
e3be225e SS |
58 | extern void initialize_targets PARAMS ((void)); |
59 | ||
60 | extern void initialize_utils PARAMS ((void)); | |
61 | ||
172559ec JK |
62 | /* Prototypes for local functions */ |
63 | ||
9ed8604f PS |
64 | static char * line_completion_function PARAMS ((char *, int, char *, int)); |
65 | ||
66 | static char * readline_line_completion_function PARAMS ((char *, int)); | |
172559ec | 67 | |
e52bfe0c | 68 | static void command_loop_marker PARAMS ((int)); |
172559ec | 69 | |
e52bfe0c | 70 | static void while_command PARAMS ((char *, int)); |
172559ec | 71 | |
e52bfe0c | 72 | static void if_command PARAMS ((char *, int)); |
172559ec | 73 | |
e52bfe0c JL |
74 | static struct command_line * |
75 | build_command_line PARAMS ((enum command_control_type, char *)); | |
172559ec | 76 | |
e52bfe0c JL |
77 | static struct command_line * |
78 | get_command_line PARAMS ((enum command_control_type, char *)); | |
172559ec | 79 | |
e52bfe0c | 80 | static void realloc_body_list PARAMS ((struct command_line *, int)); |
172559ec | 81 | |
e52bfe0c | 82 | static enum misc_command_type read_next_line PARAMS ((struct command_line **)); |
172559ec | 83 | |
e52bfe0c JL |
84 | static enum command_control_type |
85 | recurse_read_control_structure PARAMS ((struct command_line *)); | |
172559ec | 86 | |
0f8cdd9b JL |
87 | static struct cleanup * setup_user_args PARAMS ((char *)); |
88 | ||
89 | static char * locate_arg PARAMS ((char *)); | |
90 | ||
91 | static char * insert_args PARAMS ((char *)); | |
92 | ||
93 | static void arg_cleanup PARAMS ((void)); | |
94 | ||
e52bfe0c | 95 | static void init_main PARAMS ((void)); |
172559ec | 96 | |
e52bfe0c | 97 | static void init_cmd_lists PARAMS ((void)); |
172559ec | 98 | |
e52bfe0c | 99 | static void float_handler PARAMS ((int)); |
172559ec | 100 | |
e52bfe0c | 101 | static void init_signals PARAMS ((void)); |
172559ec | 102 | |
e52bfe0c | 103 | static void set_verbose PARAMS ((char *, int, struct cmd_list_element *)); |
172559ec | 104 | |
b8176214 ILT |
105 | #ifdef TARGET_BYTE_ORDER_SELECTABLE |
106 | ||
107 | static void set_endian PARAMS ((char *, int)); | |
108 | ||
109 | static void set_endian_big PARAMS ((char *, int)); | |
110 | ||
111 | static void set_endian_little PARAMS ((char *, int)); | |
112 | ||
b83ed019 ILT |
113 | static void set_endian_auto PARAMS ((char *, int)); |
114 | ||
b8176214 ILT |
115 | static void show_endian PARAMS ((char *, int)); |
116 | ||
117 | #endif | |
118 | ||
e52bfe0c | 119 | static void show_history PARAMS ((char *, int)); |
172559ec | 120 | |
e52bfe0c | 121 | static void set_history PARAMS ((char *, int)); |
172559ec | 122 | |
e52bfe0c JL |
123 | static void set_history_size_command PARAMS ((char *, int, |
124 | struct cmd_list_element *)); | |
172559ec | 125 | |
e52bfe0c | 126 | static void show_commands PARAMS ((char *, int)); |
172559ec | 127 | |
e52bfe0c | 128 | static void echo_command PARAMS ((char *, int)); |
172559ec | 129 | |
e52bfe0c | 130 | static void pwd_command PARAMS ((char *, int)); |
172559ec | 131 | |
e52bfe0c | 132 | static void show_version PARAMS ((char *, int)); |
172559ec | 133 | |
e52bfe0c | 134 | static void document_command PARAMS ((char *, int)); |
172559ec | 135 | |
e52bfe0c | 136 | static void define_command PARAMS ((char *, int)); |
172559ec | 137 | |
e52bfe0c JL |
138 | static void validate_comname PARAMS ((char *)); |
139 | ||
140 | static void help_command PARAMS ((char *, int)); | |
141 | ||
142 | static void show_command PARAMS ((char *, int)); | |
143 | ||
144 | static void info_command PARAMS ((char *, int)); | |
145 | ||
146 | static void complete_command PARAMS ((char *, int)); | |
147 | ||
148 | static void do_nothing PARAMS ((int)); | |
149 | ||
150 | static int quit_cover PARAMS ((char *)); | |
151 | ||
152 | static void disconnect PARAMS ((int)); | |
153 | ||
154 | static void source_cleanup PARAMS ((FILE *)); | |
172559ec JK |
155 | |
156 | /* If this definition isn't overridden by the header files, assume | |
157 | that isatty and fileno exist on this system. */ | |
158 | #ifndef ISATTY | |
159 | #define ISATTY(FP) (isatty (fileno (FP))) | |
160 | #endif | |
161 | ||
162 | /* Initialization file name for gdb. This is overridden in some configs. */ | |
163 | ||
164 | #ifndef GDBINIT_FILENAME | |
165 | #define GDBINIT_FILENAME ".gdbinit" | |
166 | #endif | |
167 | char gdbinit[] = GDBINIT_FILENAME; | |
f22661ee | 168 | |
172559ec JK |
169 | int inhibit_gdbinit = 0; |
170 | ||
f22661ee SS |
171 | /* If nonzero, and GDB has been configured to be able to use windows, |
172 | attempt to open them upon startup. */ | |
754e5da2 | 173 | |
f22661ee | 174 | int use_windows = 1; |
754e5da2 | 175 | |
172559ec JK |
176 | /* Version number of GDB, as a string. */ |
177 | ||
178 | extern char *version; | |
179 | ||
180 | /* Canonical host name as a string. */ | |
181 | ||
182 | extern char *host_name; | |
183 | ||
184 | /* Canonical target name as a string. */ | |
185 | ||
186 | extern char *target_name; | |
187 | ||
188 | extern char lang_frame_mismatch_warn[]; /* language.c */ | |
189 | ||
190 | /* Flag for whether we want all the "from_tty" gubbish printed. */ | |
191 | ||
192 | int caution = 1; /* Default is yes, sigh. */ | |
193 | ||
f22661ee | 194 | /* Define all cmd_list_elements. */ |
172559ec JK |
195 | |
196 | /* Chain containing all defined commands. */ | |
197 | ||
198 | struct cmd_list_element *cmdlist; | |
199 | ||
200 | /* Chain containing all defined info subcommands. */ | |
201 | ||
202 | struct cmd_list_element *infolist; | |
203 | ||
204 | /* Chain containing all defined enable subcommands. */ | |
205 | ||
206 | struct cmd_list_element *enablelist; | |
207 | ||
208 | /* Chain containing all defined disable subcommands. */ | |
209 | ||
210 | struct cmd_list_element *disablelist; | |
211 | ||
212 | /* Chain containing all defined delete subcommands. */ | |
213 | ||
214 | struct cmd_list_element *deletelist; | |
215 | ||
216 | /* Chain containing all defined "enable breakpoint" subcommands. */ | |
217 | ||
218 | struct cmd_list_element *enablebreaklist; | |
219 | ||
220 | /* Chain containing all defined set subcommands */ | |
221 | ||
222 | struct cmd_list_element *setlist; | |
223 | ||
224 | /* Chain containing all defined unset subcommands */ | |
225 | ||
226 | struct cmd_list_element *unsetlist; | |
227 | ||
228 | /* Chain containing all defined show subcommands. */ | |
229 | ||
230 | struct cmd_list_element *showlist; | |
231 | ||
b8176214 ILT |
232 | #ifdef TARGET_BYTE_ORDER_SELECTABLE |
233 | /* Chain containing the \"set endian\" commands. */ | |
234 | ||
235 | struct cmd_list_element *endianlist; | |
236 | #endif | |
237 | ||
172559ec JK |
238 | /* Chain containing all defined \"set history\". */ |
239 | ||
240 | struct cmd_list_element *sethistlist; | |
241 | ||
242 | /* Chain containing all defined \"show history\". */ | |
243 | ||
244 | struct cmd_list_element *showhistlist; | |
245 | ||
246 | /* Chain containing all defined \"unset history\". */ | |
247 | ||
248 | struct cmd_list_element *unsethistlist; | |
249 | ||
250 | /* Chain containing all defined maintenance subcommands. */ | |
251 | ||
252 | #if MAINTENANCE_CMDS | |
253 | struct cmd_list_element *maintenancelist; | |
254 | #endif | |
255 | ||
256 | /* Chain containing all defined "maintenance info" subcommands. */ | |
257 | ||
258 | #if MAINTENANCE_CMDS | |
259 | struct cmd_list_element *maintenanceinfolist; | |
260 | #endif | |
261 | ||
262 | /* Chain containing all defined "maintenance print" subcommands. */ | |
263 | ||
264 | #if MAINTENANCE_CMDS | |
265 | struct cmd_list_element *maintenanceprintlist; | |
266 | #endif | |
267 | ||
268 | struct cmd_list_element *setprintlist; | |
269 | ||
270 | struct cmd_list_element *showprintlist; | |
271 | ||
272 | struct cmd_list_element *setchecklist; | |
273 | ||
274 | struct cmd_list_element *showchecklist; | |
275 | ||
276 | /* stdio stream that command input is being read from. Set to stdin normally. | |
277 | Set by source_command to the file we are sourcing. Set to NULL if we are | |
278 | executing a user-defined command. */ | |
279 | ||
280 | FILE *instream; | |
281 | ||
282 | /* Current working directory. */ | |
283 | ||
284 | char *current_directory; | |
285 | ||
286 | /* The directory name is actually stored here (usually). */ | |
b7ec5b8d | 287 | char gdb_dirbuf[1024]; |
172559ec JK |
288 | |
289 | /* Function to call before reading a command, if nonzero. | |
290 | The function receives two args: an input stream, | |
291 | and a prompt string. */ | |
292 | ||
293 | void (*window_hook) PARAMS ((FILE *, char *)); | |
294 | ||
295 | int epoch_interface; | |
296 | int xgdb_verbose; | |
297 | ||
298 | /* gdb prints this when reading a command interactively */ | |
299 | static char *prompt; | |
300 | ||
301 | /* Buffer used for reading command lines, and the size | |
302 | allocated for it so far. */ | |
303 | ||
304 | char *line; | |
305 | int linesize = 100; | |
306 | ||
307 | /* Nonzero if the current command is modified by "server ". This | |
308 | affects things like recording into the command history, comamnds | |
309 | repeating on RETURN, etc. This is so a user interface (emacs, GUI, | |
310 | whatever) can issue its own commands and also send along commands | |
311 | from the user, and have the user not notice that the user interface | |
312 | is issuing commands too. */ | |
313 | int server_command; | |
314 | ||
315 | /* Baud rate specified for talking to serial target systems. Default | |
316 | is left as -1, so targets can choose their own defaults. */ | |
317 | /* FIXME: This means that "show remotebaud" and gr_files_info can print -1 | |
318 | or (unsigned int)-1. This is a Bad User Interface. */ | |
319 | ||
320 | int baud_rate = -1; | |
321 | ||
322 | /* Non-zero tells remote* modules to output debugging info. */ | |
323 | ||
324 | int remote_debug = 0; | |
325 | ||
e52bfe0c JL |
326 | /* Level of control structure. */ |
327 | static int control_level; | |
328 | ||
0f8cdd9b JL |
329 | /* Structure for arguments to user defined functions. */ |
330 | #define MAXUSERARGS 10 | |
331 | struct user_args | |
332 | { | |
333 | struct user_args *next; | |
334 | struct | |
335 | { | |
336 | char *arg; | |
337 | int len; | |
338 | } a[MAXUSERARGS]; | |
339 | int count; | |
340 | } *user_args; | |
341 | ||
172559ec JK |
342 | /* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT. */ |
343 | ||
344 | #ifndef STOP_SIGNAL | |
345 | #ifdef SIGTSTP | |
346 | #define STOP_SIGNAL SIGTSTP | |
347 | static void stop_sig PARAMS ((int)); | |
348 | #endif | |
349 | #endif | |
350 | ||
351 | /* Some System V have job control but not sigsetmask(). */ | |
352 | #if !defined (HAVE_SIGSETMASK) | |
353 | #if !defined (USG) | |
354 | #define HAVE_SIGSETMASK 1 | |
355 | #else | |
356 | #define HAVE_SIGSETMASK 0 | |
357 | #endif | |
358 | #endif | |
359 | ||
360 | #if 0 == (HAVE_SIGSETMASK) | |
361 | #define sigsetmask(n) | |
362 | #endif | |
8164ec2e SG |
363 | |
364 | /* Hooks for alternate command interfaces. */ | |
365 | ||
366 | /* Called after most modules have been initialized, but before taking users | |
367 | command file. */ | |
368 | ||
369 | void (*init_ui_hook) PARAMS ((void)); | |
370 | ||
371 | /* Called instead of command_loop at top level. Can be invoked via | |
372 | return_to_top_level. */ | |
373 | ||
374 | void (*command_loop_hook) PARAMS ((void)); | |
375 | ||
764efb58 | 376 | |
8164ec2e SG |
377 | /* Called instead of fputs for all output. */ |
378 | ||
86db943c | 379 | void (*fputs_unfiltered_hook) PARAMS ((const char *linebuffer, FILE *stream)); |
8164ec2e | 380 | |
764efb58 SC |
381 | /* Called when the target says something to the host, which may |
382 | want to appear in a different window. */ | |
383 | ||
327332d8 | 384 | void (*target_output_hook) PARAMS ((char *)); |
764efb58 | 385 | |
8164ec2e SG |
386 | /* Called from print_frame_info to list the line we stopped in. */ |
387 | ||
388 | void (*print_frame_info_listing_hook) PARAMS ((struct symtab *s, int line, | |
389 | int stopline, int noerror)); | |
390 | /* Replaces most of query. */ | |
391 | ||
392 | int (*query_hook) PARAMS (()); | |
393 | ||
394 | /* Called from gdb_flush to flush output. */ | |
395 | ||
396 | void (*flush_hook) PARAMS ((FILE *stream)); | |
397 | ||
398 | /* Called as appropriate to notify the interface of the specified breakpoint | |
399 | conditions. */ | |
400 | ||
637b1661 | 401 | void (*create_breakpoint_hook) PARAMS ((struct breakpoint *bpt)); |
8164ec2e | 402 | void (*delete_breakpoint_hook) PARAMS ((struct breakpoint *bpt)); |
6131622e | 403 | void (*modify_breakpoint_hook) PARAMS ((struct breakpoint *bpt)); |
637b1661 SG |
404 | |
405 | /* Called during long calculations to allow GUI to repair window damage, and to | |
406 | check for stop buttons, etc... */ | |
407 | ||
408 | void (*interactive_hook) PARAMS ((void)); | |
409 | ||
16041d53 SC |
410 | /* Called when the registers have changed, as a hint to a GUI |
411 | to minimize window update. */ | |
412 | ||
413 | void (*registers_changed_hook) PARAMS ((void)); | |
414 | ||
479f0f18 SG |
415 | /* Called when going to wait for the target. Usually allows the GUI to run |
416 | while waiting for target events. */ | |
417 | ||
418 | int (*target_wait_hook) PARAMS ((int pid, struct target_waitstatus *status)); | |
419 | ||
420 | /* Used by UI as a wrapper around command execution. May do various things | |
421 | like enabling/disabling buttons, etc... */ | |
422 | ||
423 | void (*call_command_hook) PARAMS ((struct cmd_list_element *c, char *cmd, | |
424 | int from_tty)); | |
45993f61 SC |
425 | |
426 | ||
427 | /* Takes control from error (). Typically used to prevent longjmps out of the | |
428 | middle of the GUI. Usually used in conjunction with a catch routine. */ | |
429 | ||
6b14af2b | 430 | NORETURN void (*error_hook) PARAMS (()) ATTR_NORETURN; |
45993f61 | 431 | |
172559ec JK |
432 | \f |
433 | /* Where to go for return_to_top_level (RETURN_ERROR). */ | |
434 | jmp_buf error_return; | |
435 | /* Where to go for return_to_top_level (RETURN_QUIT). */ | |
436 | jmp_buf quit_return; | |
437 | ||
438 | /* Return for reason REASON. This generally gets back to the command | |
439 | loop, but can be caught via catch_errors. */ | |
440 | ||
441 | NORETURN void | |
442 | return_to_top_level (reason) | |
443 | enum return_reason reason; | |
444 | { | |
445 | quit_flag = 0; | |
446 | immediate_quit = 0; | |
447 | ||
448 | /* Perhaps it would be cleaner to do this via the cleanup chain (not sure | |
449 | I can think of a reason why that is vital, though). */ | |
450 | bpstat_clear_actions(stop_bpstat); /* Clear queued breakpoint commands */ | |
451 | ||
452 | disable_current_display (); | |
453 | do_cleanups (ALL_CLEANUPS); | |
454 | ||
455 | if (annotation_level > 1) | |
456 | switch (reason) | |
457 | { | |
458 | case RETURN_QUIT: | |
459 | annotate_quit (); | |
460 | break; | |
461 | case RETURN_ERROR: | |
462 | annotate_error (); | |
463 | break; | |
464 | } | |
465 | ||
466 | (NORETURN void) longjmp | |
467 | (reason == RETURN_ERROR ? error_return : quit_return, 1); | |
468 | } | |
469 | ||
470 | /* Call FUNC with arg ARGS, catching any errors. If there is no | |
471 | error, return the value returned by FUNC. If there is an error, | |
472 | print ERRSTRING, print the specific error message, then return | |
473 | zero. | |
474 | ||
475 | Must not be called with immediate_quit in effect (bad things might | |
476 | happen, say we got a signal in the middle of a memcpy to quit_return). | |
477 | This is an OK restriction; with very few exceptions immediate_quit can | |
478 | be replaced by judicious use of QUIT. | |
479 | ||
480 | MASK specifies what to catch; it is normally set to | |
481 | RETURN_MASK_ALL, if for no other reason than that the code which | |
482 | calls catch_errors might not be set up to deal with a quit which | |
483 | isn't caught. But if the code can deal with it, it generally | |
484 | should be RETURN_MASK_ERROR, unless for some reason it is more | |
485 | useful to abort only the portion of the operation inside the | |
486 | catch_errors. Note that quit should return to the command line | |
487 | fairly quickly, even if some further processing is being done. */ | |
488 | ||
489 | int | |
490 | catch_errors (func, args, errstring, mask) | |
491 | int (*func) PARAMS ((char *)); | |
492 | PTR args; | |
493 | char *errstring; | |
494 | return_mask mask; | |
495 | { | |
496 | jmp_buf saved_error; | |
497 | jmp_buf saved_quit; | |
498 | jmp_buf tmp_jmp; | |
499 | int val; | |
500 | struct cleanup *saved_cleanup_chain; | |
501 | char *saved_error_pre_print; | |
dee80384 | 502 | char *saved_quit_pre_print; |
172559ec JK |
503 | |
504 | saved_cleanup_chain = save_cleanups (); | |
505 | saved_error_pre_print = error_pre_print; | |
dee80384 | 506 | saved_quit_pre_print = quit_pre_print; |
172559ec JK |
507 | |
508 | if (mask & RETURN_MASK_ERROR) | |
dee80384 JK |
509 | { |
510 | memcpy ((char *)saved_error, (char *)error_return, sizeof (jmp_buf)); | |
511 | error_pre_print = errstring; | |
512 | } | |
172559ec | 513 | if (mask & RETURN_MASK_QUIT) |
dee80384 JK |
514 | { |
515 | memcpy (saved_quit, quit_return, sizeof (jmp_buf)); | |
516 | quit_pre_print = errstring; | |
517 | } | |
172559ec JK |
518 | |
519 | if (setjmp (tmp_jmp) == 0) | |
520 | { | |
521 | if (mask & RETURN_MASK_ERROR) | |
522 | memcpy (error_return, tmp_jmp, sizeof (jmp_buf)); | |
523 | if (mask & RETURN_MASK_QUIT) | |
524 | memcpy (quit_return, tmp_jmp, sizeof (jmp_buf)); | |
525 | val = (*func) (args); | |
526 | } | |
527 | else | |
528 | val = 0; | |
529 | ||
530 | restore_cleanups (saved_cleanup_chain); | |
531 | ||
172559ec | 532 | if (mask & RETURN_MASK_ERROR) |
dee80384 JK |
533 | { |
534 | memcpy (error_return, saved_error, sizeof (jmp_buf)); | |
535 | error_pre_print = saved_error_pre_print; | |
536 | } | |
172559ec | 537 | if (mask & RETURN_MASK_QUIT) |
dee80384 JK |
538 | { |
539 | memcpy (quit_return, saved_quit, sizeof (jmp_buf)); | |
540 | quit_pre_print = saved_quit_pre_print; | |
541 | } | |
172559ec JK |
542 | return val; |
543 | } | |
544 | ||
545 | /* Handler for SIGHUP. */ | |
546 | ||
547 | static void | |
548 | disconnect (signo) | |
549 | int signo; | |
550 | { | |
551 | catch_errors (quit_cover, NULL, | |
552 | "Could not kill the program being debugged", RETURN_MASK_ALL); | |
553 | signal (SIGHUP, SIG_DFL); | |
554 | kill (getpid (), SIGHUP); | |
555 | } | |
556 | ||
557 | /* Just a little helper function for disconnect(). */ | |
558 | ||
559 | static int | |
560 | quit_cover (s) | |
561 | char *s; | |
562 | { | |
563 | caution = 0; /* Throw caution to the wind -- we're exiting. | |
564 | This prevents asking the user dumb questions. */ | |
565 | quit_command((char *)0, 0); | |
566 | return 0; | |
567 | } | |
568 | \f | |
569 | /* Line number we are currently in in a file which is being sourced. */ | |
570 | static int source_line_number; | |
571 | ||
572 | /* Name of the file we are sourcing. */ | |
573 | static char *source_file_name; | |
574 | ||
575 | /* Buffer containing the error_pre_print used by the source stuff. | |
576 | Malloc'd. */ | |
577 | static char *source_error; | |
578 | static int source_error_allocated; | |
579 | ||
580 | /* Something to glom on to the start of error_pre_print if source_file_name | |
581 | is set. */ | |
582 | static char *source_pre_error; | |
583 | ||
584 | /* Clean up on error during a "source" command (or execution of a | |
585 | user-defined command). */ | |
586 | ||
587 | static void | |
588 | source_cleanup (stream) | |
589 | FILE *stream; | |
590 | { | |
591 | /* Restore the previous input stream. */ | |
592 | instream = stream; | |
593 | } | |
594 | ||
595 | /* Read commands from STREAM. */ | |
596 | void | |
597 | read_command_file (stream) | |
598 | FILE *stream; | |
599 | { | |
600 | struct cleanup *cleanups; | |
601 | ||
602 | cleanups = make_cleanup (source_cleanup, instream); | |
603 | instream = stream; | |
604 | command_loop (); | |
605 | do_cleanups (cleanups); | |
606 | } | |
607 | \f | |
608 | extern void init_proc (); | |
609 | ||
43ab4ba5 SS |
610 | void (*pre_init_ui_hook) PARAMS ((void)); |
611 | ||
172559ec JK |
612 | void |
613 | gdb_init () | |
614 | { | |
43ab4ba5 SS |
615 | if (pre_init_ui_hook) |
616 | pre_init_ui_hook (); | |
617 | ||
172559ec JK |
618 | /* Run the init function of each source file */ |
619 | ||
b7ec5b8d FF |
620 | getcwd (gdb_dirbuf, sizeof (gdb_dirbuf)); |
621 | current_directory = gdb_dirbuf; | |
f36b58b1 | 622 | |
172559ec | 623 | init_cmd_lists (); /* This needs to be done first */ |
754e5da2 SG |
624 | initialize_targets (); /* Setup target_terminal macros for utils.c */ |
625 | initialize_utils (); /* Make errors and warnings possible */ | |
172559ec JK |
626 | initialize_all_files (); |
627 | init_main (); /* But that omits this file! Do it now */ | |
628 | init_signals (); | |
629 | ||
630 | init_proc (); | |
631 | ||
632 | /* We need a default language for parsing expressions, so simple things like | |
633 | "set width 0" won't fail if no language is explicitly set in a config file | |
634 | or implicitly set by reading an executable during startup. */ | |
635 | set_language (language_c); | |
636 | expected_language = current_language; /* don't warn about the change. */ | |
754e5da2 SG |
637 | |
638 | if (init_ui_hook) | |
639 | init_ui_hook (); | |
172559ec JK |
640 | } |
641 | ||
e52bfe0c JL |
642 | /* Allocate, initialize a new command line structure for one of the |
643 | control commands (if/while). */ | |
644 | ||
645 | static struct command_line * | |
646 | build_command_line (type, args) | |
647 | enum command_control_type type; | |
648 | char *args; | |
649 | { | |
650 | struct command_line *cmd; | |
651 | ||
652 | cmd = (struct command_line *)xmalloc (sizeof (struct command_line)); | |
653 | cmd->next = NULL; | |
654 | cmd->control_type = type; | |
655 | ||
656 | cmd->body_count = 1; | |
657 | cmd->body_list | |
658 | = (struct command_line **)xmalloc (sizeof (struct command_line *) | |
659 | * cmd->body_count); | |
660 | memset (cmd->body_list, 0, sizeof (struct command_line *) * cmd->body_count); | |
661 | cmd->line = savestring (args, strlen (args)); | |
662 | return cmd; | |
663 | } | |
664 | ||
665 | /* Build and return a new command structure for the control commands | |
666 | such as "if" and "while". */ | |
667 | ||
668 | static struct command_line * | |
669 | get_command_line (type, arg) | |
670 | enum command_control_type type; | |
671 | char *arg; | |
672 | { | |
673 | struct command_line *cmd; | |
674 | struct cleanup *old_chain = NULL; | |
675 | ||
676 | /* Allocate and build a new command line structure. */ | |
677 | cmd = build_command_line (type, arg); | |
678 | ||
679 | old_chain = make_cleanup (free_command_lines, &cmd); | |
680 | ||
681 | /* Read in the body of this command. */ | |
682 | if (recurse_read_control_structure (cmd) == invalid_control) | |
683 | { | |
684 | warning ("error reading in control structure\n"); | |
685 | do_cleanups (old_chain); | |
686 | return NULL; | |
687 | } | |
688 | ||
689 | discard_cleanups (old_chain); | |
690 | return cmd; | |
691 | } | |
692 | ||
0f8cdd9b JL |
693 | /* Recursively print a command (including full control structures). */ |
694 | void | |
695 | print_command_line (cmd, depth) | |
696 | struct command_line *cmd; | |
697 | unsigned int depth; | |
698 | { | |
699 | unsigned int i; | |
700 | ||
701 | if (depth) | |
702 | { | |
703 | for (i = 0; i < depth; i++) | |
704 | fputs_filtered (" ", gdb_stdout); | |
705 | } | |
706 | ||
707 | /* A simple command, print it and return. */ | |
708 | if (cmd->control_type == simple_control) | |
709 | { | |
710 | fputs_filtered (cmd->line, gdb_stdout); | |
711 | fputs_filtered ("\n", gdb_stdout); | |
712 | return; | |
713 | } | |
714 | ||
715 | /* loop_continue to jump to the start of a while loop, print it | |
716 | and return. */ | |
717 | if (cmd->control_type == continue_control) | |
718 | { | |
719 | fputs_filtered ("loop_continue\n", gdb_stdout); | |
720 | return; | |
721 | } | |
722 | ||
723 | /* loop_break to break out of a while loop, print it and return. */ | |
724 | if (cmd->control_type == break_control) | |
725 | { | |
726 | fputs_filtered ("loop_break\n", gdb_stdout); | |
727 | return; | |
728 | } | |
729 | ||
730 | /* A while command. Recursively print its subcommands before returning. */ | |
731 | if (cmd->control_type == while_control) | |
732 | { | |
733 | struct command_line *list; | |
734 | fputs_filtered ("while ", gdb_stdout); | |
735 | fputs_filtered (cmd->line, gdb_stdout); | |
736 | fputs_filtered ("\n", gdb_stdout); | |
737 | list = *cmd->body_list; | |
738 | while (list) | |
739 | { | |
740 | print_command_line (list, depth + 1); | |
741 | list = list->next; | |
742 | } | |
743 | } | |
744 | ||
745 | /* An if command. Recursively print both arms before returning. */ | |
746 | if (cmd->control_type == if_control) | |
747 | { | |
748 | fputs_filtered ("if ", gdb_stdout); | |
749 | fputs_filtered (cmd->line, gdb_stdout); | |
750 | fputs_filtered ("\n", gdb_stdout); | |
751 | /* The true arm. */ | |
752 | print_command_line (cmd->body_list[0], depth + 1); | |
753 | ||
754 | /* Show the false arm if it exists. */ | |
755 | if (cmd->body_count == 2) | |
756 | { | |
757 | if (depth) | |
758 | { | |
759 | for (i = 0; i < depth; i++) | |
760 | fputs_filtered (" ", gdb_stdout); | |
761 | } | |
762 | fputs_filtered ("else\n", gdb_stdout); | |
763 | print_command_line (cmd->body_list[1], depth + 1); | |
764 | } | |
765 | if (depth) | |
766 | { | |
767 | for (i = 0; i < depth; i++) | |
768 | fputs_filtered (" ", gdb_stdout); | |
769 | } | |
770 | fputs_filtered ("end\n", gdb_stdout); | |
771 | } | |
772 | } | |
773 | ||
e52bfe0c JL |
774 | /* Execute the command in CMD. */ |
775 | ||
0f8cdd9b | 776 | enum command_control_type |
e52bfe0c JL |
777 | execute_control_command (cmd) |
778 | struct command_line *cmd; | |
779 | { | |
780 | struct expression *expr; | |
781 | struct command_line *current; | |
782 | struct cleanup *old_chain = 0; | |
e52bfe0c JL |
783 | value_ptr val; |
784 | int loop; | |
785 | enum command_control_type ret; | |
0f8cdd9b | 786 | char *new_line; |
e52bfe0c JL |
787 | |
788 | switch (cmd->control_type) | |
789 | { | |
790 | case simple_control: | |
791 | /* A simple command, execute it and return. */ | |
0f8cdd9b JL |
792 | new_line = insert_args (cmd->line); |
793 | if (!new_line) | |
794 | return invalid_control; | |
795 | old_chain = make_cleanup (free_current_contents, &new_line); | |
796 | execute_command (new_line, 0); | |
797 | ret = cmd->control_type; | |
798 | break; | |
e52bfe0c JL |
799 | |
800 | case continue_control: | |
801 | case break_control: | |
802 | /* Return for "continue", and "break" so we can either | |
803 | continue the loop at the top, or break out. */ | |
0f8cdd9b JL |
804 | ret = cmd->control_type; |
805 | break; | |
e52bfe0c JL |
806 | |
807 | case while_control: | |
808 | { | |
809 | /* Parse the loop control expression for the while statement. */ | |
0f8cdd9b JL |
810 | new_line = insert_args (cmd->line); |
811 | if (!new_line) | |
812 | return invalid_control; | |
813 | old_chain = make_cleanup (free_current_contents, &new_line); | |
814 | expr = parse_expression (new_line); | |
815 | make_cleanup (free_current_contents, &expr); | |
816 | ||
e52bfe0c JL |
817 | ret = simple_control; |
818 | loop = true; | |
819 | ||
820 | /* Keep iterating so long as the expression is true. */ | |
821 | while (loop == true) | |
822 | { | |
823 | /* Evaluate the expression. */ | |
824 | val = evaluate_expression (expr); | |
825 | ||
826 | /* If the value is false, then break out of the loop. */ | |
827 | if (!value_true (val)) | |
828 | break; | |
829 | ||
830 | /* Execute the body of the while statement. */ | |
831 | current = *cmd->body_list; | |
832 | while (current) | |
833 | { | |
834 | ret = execute_control_command (current); | |
835 | ||
836 | /* If we got an error, or a "break" command, then stop | |
837 | looping. */ | |
838 | if (ret == invalid_control || ret == break_control) | |
839 | { | |
840 | loop = false; | |
841 | break; | |
842 | } | |
843 | ||
844 | /* If we got a "continue" command, then restart the loop | |
845 | at this point. */ | |
846 | if (ret == continue_control) | |
847 | break; | |
848 | ||
849 | /* Get the next statement. */ | |
850 | current = current->next; | |
851 | } | |
852 | } | |
853 | ||
854 | /* Reset RET so that we don't recurse the break all the way down. */ | |
855 | if (ret == break_control) | |
856 | ret = simple_control; | |
857 | ||
858 | break; | |
859 | } | |
860 | ||
861 | case if_control: | |
862 | { | |
0f8cdd9b JL |
863 | new_line = insert_args (cmd->line); |
864 | if (!new_line) | |
865 | return invalid_control; | |
866 | old_chain = make_cleanup (free_current_contents, &new_line); | |
e52bfe0c | 867 | /* Parse the conditional for the if statement. */ |
0f8cdd9b JL |
868 | expr = parse_expression (new_line); |
869 | make_cleanup (free_current_contents, &expr); | |
e52bfe0c JL |
870 | |
871 | current = NULL; | |
872 | ret = simple_control; | |
873 | ||
874 | /* Evaluate the conditional. */ | |
875 | val = evaluate_expression (expr); | |
876 | ||
877 | /* Choose which arm to take commands from based on the value of the | |
878 | conditional expression. */ | |
879 | if (value_true (val)) | |
880 | current = *cmd->body_list; | |
881 | else if (cmd->body_count == 2) | |
882 | current = *(cmd->body_list + 1); | |
883 | ||
884 | /* Execute commands in the given arm. */ | |
885 | while (current) | |
886 | { | |
887 | ret = execute_control_command (current); | |
888 | ||
889 | /* If we got an error, get out. */ | |
890 | if (ret != simple_control) | |
891 | break; | |
892 | ||
893 | /* Get the next statement in the body. */ | |
894 | current = current->next; | |
895 | } | |
0f8cdd9b | 896 | |
e52bfe0c JL |
897 | break; |
898 | } | |
899 | ||
900 | default: | |
901 | warning ("Invalid control type in command structure."); | |
902 | return invalid_control; | |
903 | } | |
904 | ||
905 | if (old_chain) | |
906 | do_cleanups (old_chain); | |
907 | ||
908 | return ret; | |
909 | } | |
910 | ||
911 | /* "while" command support. Executes a body of statements while the | |
912 | loop condition is nonzero. */ | |
913 | ||
914 | static void | |
915 | while_command (arg, from_tty) | |
916 | char *arg; | |
917 | int from_tty; | |
918 | { | |
919 | struct command_line *command = NULL; | |
920 | ||
921 | control_level = 1; | |
922 | command = get_command_line (while_control, arg); | |
923 | ||
924 | if (command == NULL) | |
925 | return; | |
926 | ||
927 | execute_control_command (command); | |
928 | free_command_lines (&command); | |
929 | } | |
930 | ||
931 | /* "if" command support. Execute either the true or false arm depending | |
932 | on the value of the if conditional. */ | |
933 | ||
934 | static void | |
935 | if_command (arg, from_tty) | |
936 | char *arg; | |
937 | int from_tty; | |
938 | { | |
939 | struct command_line *command = NULL; | |
940 | ||
941 | control_level = 1; | |
942 | command = get_command_line (if_control, arg); | |
943 | ||
944 | if (command == NULL) | |
945 | return; | |
946 | ||
947 | execute_control_command (command); | |
948 | free_command_lines (&command); | |
949 | } | |
950 | ||
0f8cdd9b JL |
951 | /* Cleanup */ |
952 | static void | |
953 | arg_cleanup () | |
954 | { | |
955 | struct user_args *oargs = user_args; | |
956 | if (!user_args) | |
957 | fatal ("Internal error, arg_cleanup called with no user args.\n"); | |
958 | ||
959 | user_args = user_args->next; | |
960 | free (oargs); | |
961 | } | |
962 | ||
963 | /* Bind the incomming arguments for a user defined command to | |
964 | $arg0, $arg1 ... $argMAXUSERARGS. */ | |
965 | ||
966 | static struct cleanup * | |
967 | setup_user_args (p) | |
968 | char *p; | |
969 | { | |
970 | struct user_args *args; | |
971 | struct cleanup *old_chain; | |
972 | unsigned int arg_count = 0; | |
973 | ||
974 | args = (struct user_args *)xmalloc (sizeof (struct user_args)); | |
975 | memset (args, 0, sizeof (struct user_args)); | |
976 | ||
977 | args->next = user_args; | |
978 | user_args = args; | |
979 | ||
980 | old_chain = make_cleanup (arg_cleanup, 0); | |
981 | ||
982 | if (p == NULL) | |
983 | return old_chain; | |
984 | ||
985 | while (*p) | |
986 | { | |
987 | char *start_arg; | |
988 | ||
989 | if (arg_count >= MAXUSERARGS) | |
990 | { | |
991 | error ("user defined function may only have %d arguments.\n", | |
992 | MAXUSERARGS); | |
993 | return old_chain; | |
994 | } | |
995 | ||
996 | /* Strip whitespace. */ | |
997 | while (*p == ' ' || *p == '\t') | |
998 | p++; | |
999 | ||
1000 | /* P now points to an argument. */ | |
1001 | start_arg = p; | |
1002 | user_args->a[arg_count].arg = p; | |
1003 | ||
1004 | /* Get to the end of this argument. */ | |
1005 | while (*p && *p != ' ' && *p != '\t') | |
1006 | p++; | |
1007 | ||
1008 | user_args->a[arg_count].len = p - start_arg; | |
1009 | arg_count++; | |
1010 | user_args->count++; | |
1011 | } | |
1012 | return old_chain; | |
1013 | } | |
1014 | ||
1015 | /* Given character string P, return a point to the first argument ($arg), | |
1016 | or NULL if P contains no arguments. */ | |
1017 | ||
1018 | static char * | |
1019 | locate_arg (p) | |
1020 | char *p; | |
1021 | { | |
e3be225e | 1022 | while ((p = strchr (p, '$'))) |
0f8cdd9b JL |
1023 | { |
1024 | if (strncmp (p, "$arg", 4) == 0 && isdigit (p[4])) | |
1025 | return p; | |
1026 | p++; | |
1027 | } | |
1028 | return NULL; | |
1029 | } | |
1030 | ||
1031 | /* Insert the user defined arguments stored in user_arg into the $arg | |
1032 | arguments found in line, with the updated copy being placed into nline. */ | |
1033 | ||
1034 | static char * | |
1035 | insert_args (line) | |
1036 | char *line; | |
1037 | { | |
1038 | char *p, *save_line, *new_line; | |
1039 | unsigned len, i; | |
1040 | ||
1041 | /* First we need to know how much memory to allocate for the new line. */ | |
1042 | save_line = line; | |
1043 | len = 0; | |
e3be225e | 1044 | while ((p = locate_arg (line))) |
0f8cdd9b JL |
1045 | { |
1046 | len += p - line; | |
1047 | i = p[4] - '0'; | |
1048 | ||
1049 | if (i >= user_args->count) | |
1050 | { | |
1051 | error ("Missing argument %d in user function.\n", i); | |
1052 | return NULL; | |
1053 | } | |
1054 | len += user_args->a[i].len; | |
1055 | line = p + 5; | |
1056 | } | |
1057 | ||
1058 | /* Don't forget the tail. */ | |
1059 | len += strlen (line); | |
1060 | ||
1061 | /* Allocate space for the new line and fill it in. */ | |
1062 | new_line = (char *)xmalloc (len + 1); | |
1063 | if (new_line == NULL) | |
1064 | return NULL; | |
1065 | ||
1066 | /* Restore pointer to beginning of old line. */ | |
1067 | line = save_line; | |
1068 | ||
1069 | /* Save pointer to beginning of new line. */ | |
1070 | save_line = new_line; | |
1071 | ||
e3be225e | 1072 | while ((p = locate_arg (line))) |
0f8cdd9b JL |
1073 | { |
1074 | int i, len; | |
1075 | ||
1076 | memcpy (new_line, line, p - line); | |
1077 | new_line += p - line; | |
1078 | i = p[4] - '0'; | |
1079 | ||
e3be225e SS |
1080 | len = user_args->a[i].len; |
1081 | if (len) | |
0f8cdd9b JL |
1082 | { |
1083 | memcpy (new_line, user_args->a[i].arg, len); | |
1084 | new_line += len; | |
1085 | } | |
1086 | line = p + 5; | |
1087 | } | |
1088 | /* Don't forget the tail. */ | |
1089 | strcpy (new_line, line); | |
1090 | ||
1091 | /* Return a pointer to the beginning of the new line. */ | |
1092 | return save_line; | |
1093 | } | |
1094 | ||
172559ec JK |
1095 | void |
1096 | execute_user_command (c, args) | |
1097 | struct cmd_list_element *c; | |
1098 | char *args; | |
1099 | { | |
1100 | register struct command_line *cmdlines; | |
1101 | struct cleanup *old_chain; | |
e52bfe0c JL |
1102 | enum command_control_type ret; |
1103 | ||
0f8cdd9b | 1104 | old_chain = setup_user_args (args); |
172559ec JK |
1105 | |
1106 | cmdlines = c->user_commands; | |
1107 | if (cmdlines == 0) | |
1108 | /* Null command */ | |
1109 | return; | |
1110 | ||
1111 | /* Set the instream to 0, indicating execution of a | |
1112 | user-defined function. */ | |
1113 | old_chain = make_cleanup (source_cleanup, instream); | |
1114 | instream = (FILE *) 0; | |
1115 | while (cmdlines) | |
1116 | { | |
e52bfe0c JL |
1117 | ret = execute_control_command (cmdlines); |
1118 | if (ret != simple_control && ret != break_control) | |
1119 | { | |
1120 | warning ("Error in control structure.\n"); | |
1121 | break; | |
1122 | } | |
172559ec JK |
1123 | cmdlines = cmdlines->next; |
1124 | } | |
1125 | do_cleanups (old_chain); | |
1126 | } | |
1127 | ||
1128 | /* Execute the line P as a command. | |
1129 | Pass FROM_TTY as second argument to the defining function. */ | |
1130 | ||
1131 | void | |
1132 | execute_command (p, from_tty) | |
1133 | char *p; | |
1134 | int from_tty; | |
1135 | { | |
1136 | register struct cmd_list_element *c; | |
1137 | register enum language flang; | |
1138 | static int warned = 0; | |
1139 | ||
1140 | free_all_values (); | |
1141 | ||
1142 | /* This can happen when command_line_input hits end of file. */ | |
1143 | if (p == NULL) | |
1144 | return; | |
e52bfe0c | 1145 | |
172559ec JK |
1146 | while (*p == ' ' || *p == '\t') p++; |
1147 | if (*p) | |
1148 | { | |
1149 | char *arg; | |
e52bfe0c | 1150 | |
172559ec JK |
1151 | c = lookup_cmd (&p, cmdlist, "", 0, 1); |
1152 | /* Pass null arg rather than an empty one. */ | |
1153 | arg = *p ? p : 0; | |
1154 | ||
080868b4 PS |
1155 | /* Clear off trailing whitespace, except for set and complete command. */ |
1156 | if (arg && c->type != set_cmd && c->function.cfunc != complete_command) | |
1157 | { | |
1158 | p = arg + strlen (arg) - 1; | |
1159 | while (p >= arg && (*p == ' ' || *p == '\t')) | |
1160 | p--; | |
1161 | *(p + 1) = '\0'; | |
1162 | } | |
1163 | ||
172559ec JK |
1164 | /* If this command has been hooked, run the hook first. */ |
1165 | if (c->hook) | |
1166 | execute_user_command (c->hook, (char *)0); | |
1167 | ||
1168 | if (c->class == class_user) | |
1169 | execute_user_command (c, arg); | |
1170 | else if (c->type == set_cmd || c->type == show_cmd) | |
1171 | do_setshow_command (arg, from_tty & caution, c); | |
1172 | else if (c->function.cfunc == NO_FUNCTION) | |
1173 | error ("That is not a command, just a help topic."); | |
479f0f18 SG |
1174 | else if (call_command_hook) |
1175 | call_command_hook (c, arg, from_tty & caution); | |
172559ec JK |
1176 | else |
1177 | (*c->function.cfunc) (arg, from_tty & caution); | |
1178 | } | |
1179 | ||
1180 | /* Tell the user if the language has changed (except first time). */ | |
1181 | if (current_language != expected_language) | |
1182 | { | |
1183 | if (language_mode == language_mode_auto) { | |
1184 | language_info (1); /* Print what changed. */ | |
1185 | } | |
1186 | warned = 0; | |
1187 | } | |
1188 | ||
1189 | /* Warn the user if the working language does not match the | |
1190 | language of the current frame. Only warn the user if we are | |
1191 | actually running the program, i.e. there is a stack. */ | |
1192 | /* FIXME: This should be cacheing the frame and only running when | |
1193 | the frame changes. */ | |
43ab4ba5 | 1194 | |
172559ec | 1195 | if (target_has_stack) |
172559ec | 1196 | { |
43ab4ba5 SS |
1197 | flang = get_frame_language (); |
1198 | if (!warned | |
1199 | && flang != language_unknown | |
1200 | && flang != current_language->la_language) | |
1201 | { | |
1202 | printf_filtered ("%s\n", lang_frame_mismatch_warn); | |
1203 | warned = 1; | |
1204 | } | |
172559ec | 1205 | } |
172559ec JK |
1206 | } |
1207 | ||
1208 | /* ARGSUSED */ | |
1209 | static void | |
1210 | command_loop_marker (foo) | |
1211 | int foo; | |
1212 | { | |
1213 | } | |
1214 | ||
1215 | /* Read commands from `instream' and execute them | |
1216 | until end of file or error reading instream. */ | |
43ab4ba5 | 1217 | |
172559ec JK |
1218 | void |
1219 | command_loop () | |
1220 | { | |
1221 | struct cleanup *old_chain; | |
1222 | char *command; | |
1223 | int stdin_is_tty = ISATTY (stdin); | |
43ab4ba5 | 1224 | long time_at_cmd_start; |
83ebf439 | 1225 | long space_at_cmd_start; |
43ab4ba5 SS |
1226 | extern int display_time; |
1227 | extern int display_space; | |
172559ec JK |
1228 | |
1229 | while (!feof (instream)) | |
1230 | { | |
1231 | if (window_hook && instream == stdin) | |
1232 | (*window_hook) (instream, prompt); | |
1233 | ||
1234 | quit_flag = 0; | |
1235 | if (instream == stdin && stdin_is_tty) | |
1236 | reinitialize_more_filter (); | |
1237 | old_chain = make_cleanup (command_loop_marker, 0); | |
1238 | command = command_line_input (instream == stdin ? prompt : (char *) NULL, | |
1239 | instream == stdin, "prompt"); | |
1240 | if (command == 0) | |
1241 | return; | |
43ab4ba5 SS |
1242 | |
1243 | time_at_cmd_start = get_run_time (); | |
1244 | ||
83ebf439 SS |
1245 | if (display_space) |
1246 | { | |
1247 | extern char **environ; | |
1248 | char *lim = (char *) sbrk (0); | |
1249 | ||
1250 | space_at_cmd_start = (long) (lim - (char *) &environ); | |
1251 | } | |
1252 | ||
172559ec JK |
1253 | execute_command (command, instream == stdin); |
1254 | /* Do any commands attached to breakpoint we stopped at. */ | |
1255 | bpstat_do_actions (&stop_bpstat); | |
1256 | do_cleanups (old_chain); | |
43ab4ba5 SS |
1257 | |
1258 | if (display_time) | |
1259 | { | |
1260 | long cmd_time = get_run_time () - time_at_cmd_start; | |
1261 | ||
1262 | printf_unfiltered ("Command execution time: %ld.%06ld\n", | |
1263 | cmd_time / 1000000, cmd_time % 1000000); | |
1264 | } | |
1265 | ||
1266 | if (display_space) | |
1267 | { | |
1268 | extern char **environ; | |
1269 | char *lim = (char *) sbrk (0); | |
83ebf439 SS |
1270 | long space_now = lim - (char *) &environ; |
1271 | long space_diff = space_now - space_at_cmd_start; | |
43ab4ba5 | 1272 | |
83ebf439 SS |
1273 | printf_unfiltered ("Space used: %ld (%c%ld for this command)\n", |
1274 | space_now, | |
1275 | (space_diff >= 0 ? '+' : '-'), | |
1276 | space_diff); | |
43ab4ba5 | 1277 | } |
172559ec JK |
1278 | } |
1279 | } | |
1280 | \f | |
1281 | /* Commands call this if they do not want to be repeated by null lines. */ | |
1282 | ||
1283 | void | |
1284 | dont_repeat () | |
1285 | { | |
1286 | if (server_command) | |
1287 | return; | |
1288 | ||
1289 | /* If we aren't reading from standard input, we are saving the last | |
1290 | thing read from stdin in line and don't want to delete it. Null lines | |
1291 | won't repeat here in any case. */ | |
1292 | if (instream == stdin) | |
1293 | *line = 0; | |
1294 | } | |
1295 | \f | |
1296 | /* Read a line from the stream "instream" without command line editing. | |
1297 | ||
1298 | It prints PRROMPT once at the start. | |
e52bfe0c | 1299 | Action is compatible with "readline", e.g. space for the result is |
172559ec JK |
1300 | malloc'd and should be freed by the caller. |
1301 | ||
1302 | A NULL return means end of file. */ | |
1303 | char * | |
1304 | gdb_readline (prrompt) | |
1305 | char *prrompt; | |
1306 | { | |
1307 | int c; | |
1308 | char *result; | |
1309 | int input_index = 0; | |
1310 | int result_size = 80; | |
1311 | ||
1312 | if (prrompt) | |
1313 | { | |
1314 | /* Don't use a _filtered function here. It causes the assumed | |
1315 | character position to be off, since the newline we read from | |
1316 | the user is not accounted for. */ | |
1317 | fputs_unfiltered (prrompt, gdb_stdout); | |
172559ec JK |
1318 | #ifdef MPW |
1319 | /* Move to a new line so the entered line doesn't have a prompt | |
1320 | on the front of it. */ | |
1321 | fputs_unfiltered ("\n", gdb_stdout); | |
1322 | #endif /* MPW */ | |
172559ec JK |
1323 | gdb_flush (gdb_stdout); |
1324 | } | |
e52bfe0c | 1325 | |
172559ec JK |
1326 | result = (char *) xmalloc (result_size); |
1327 | ||
1328 | while (1) | |
1329 | { | |
1330 | /* Read from stdin if we are executing a user defined command. | |
1331 | This is the right thing for prompt_for_continue, at least. */ | |
1332 | c = fgetc (instream ? instream : stdin); | |
1333 | ||
1334 | if (c == EOF) | |
1335 | { | |
1336 | if (input_index > 0) | |
1337 | /* The last line does not end with a newline. Return it, and | |
1338 | if we are called again fgetc will still return EOF and | |
1339 | we'll return NULL then. */ | |
1340 | break; | |
1341 | free (result); | |
1342 | return NULL; | |
1343 | } | |
1344 | ||
1345 | if (c == '\n') | |
1346 | break; | |
1347 | ||
1348 | result[input_index++] = c; | |
1349 | while (input_index >= result_size) | |
1350 | { | |
1351 | result_size *= 2; | |
1352 | result = (char *) xrealloc (result, result_size); | |
1353 | } | |
1354 | } | |
1355 | ||
1356 | result[input_index++] = '\0'; | |
1357 | return result; | |
1358 | } | |
1359 | ||
1360 | /* Variables which control command line editing and history | |
1361 | substitution. These variables are given default values at the end | |
1362 | of this file. */ | |
1363 | static int command_editing_p; | |
1364 | static int history_expansion_p; | |
1365 | static int write_history_p; | |
1366 | static int history_size; | |
1367 | static char *history_filename; | |
1368 | ||
1369 | /* readline uses the word breaks for two things: | |
1370 | (1) In figuring out where to point the TEXT parameter to the | |
1371 | rl_completion_entry_function. Since we don't use TEXT for much, | |
1372 | it doesn't matter a lot what the word breaks are for this purpose, but | |
1373 | it does affect how much stuff M-? lists. | |
1374 | (2) If one of the matches contains a word break character, readline | |
1375 | will quote it. That's why we switch between | |
1376 | gdb_completer_word_break_characters and | |
1377 | gdb_completer_command_word_break_characters. I'm not sure when | |
1378 | we need this behavior (perhaps for funky characters in C++ symbols?). */ | |
1379 | ||
1380 | /* Variables which are necessary for fancy command line editing. */ | |
1381 | char *gdb_completer_word_break_characters = | |
1382 | " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,-"; | |
1383 | ||
1384 | /* When completing on command names, we remove '-' from the list of | |
1385 | word break characters, since we use it in command names. If the | |
1386 | readline library sees one in any of the current completion strings, | |
1387 | it thinks that the string needs to be quoted and automatically supplies | |
1388 | a leading quote. */ | |
1389 | char *gdb_completer_command_word_break_characters = | |
1390 | " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,"; | |
1391 | ||
1392 | /* Characters that can be used to quote completion strings. Note that we | |
1393 | can't include '"' because the gdb C parser treats such quoted sequences | |
1394 | as strings. */ | |
1395 | char *gdb_completer_quote_characters = | |
1396 | "'"; | |
1397 | ||
1398 | /* Functions that are used as part of the fancy command line editing. */ | |
1399 | ||
1400 | /* This can be used for functions which don't want to complete on symbols | |
1401 | but don't want to complete on anything else either. */ | |
1402 | /* ARGSUSED */ | |
1403 | char ** | |
1404 | noop_completer (text, prefix) | |
1405 | char *text; | |
1406 | char *prefix; | |
1407 | { | |
1408 | return NULL; | |
1409 | } | |
1410 | ||
1411 | /* Complete on filenames. */ | |
1412 | char ** | |
1413 | filename_completer (text, word) | |
1414 | char *text; | |
1415 | char *word; | |
1416 | { | |
1417 | /* From readline. */ | |
1418 | extern char *filename_completion_function (); | |
1419 | int subsequent_name; | |
1420 | char **return_val; | |
1421 | int return_val_used; | |
1422 | int return_val_alloced; | |
1423 | ||
1424 | return_val_used = 0; | |
1425 | /* Small for testing. */ | |
1426 | return_val_alloced = 1; | |
1427 | return_val = (char **) xmalloc (return_val_alloced * sizeof (char *)); | |
1428 | ||
1429 | subsequent_name = 0; | |
1430 | while (1) | |
1431 | { | |
1432 | char *p; | |
1433 | p = filename_completion_function (text, subsequent_name); | |
1434 | if (return_val_used >= return_val_alloced) | |
1435 | { | |
1436 | return_val_alloced *= 2; | |
1437 | return_val = | |
1438 | (char **) xrealloc (return_val, | |
1439 | return_val_alloced * sizeof (char *)); | |
1440 | } | |
1441 | if (p == NULL) | |
1442 | { | |
1443 | return_val[return_val_used++] = p; | |
1444 | break; | |
1445 | } | |
1446 | /* Like emacs, don't complete on old versions. Especially useful | |
1447 | in the "source" command. */ | |
1448 | if (p[strlen (p) - 1] == '~') | |
1449 | continue; | |
1450 | ||
1451 | { | |
1452 | char *q; | |
1453 | if (word == text) | |
1454 | /* Return exactly p. */ | |
1455 | return_val[return_val_used++] = p; | |
1456 | else if (word > text) | |
1457 | { | |
1458 | /* Return some portion of p. */ | |
1459 | q = xmalloc (strlen (p) + 5); | |
1460 | strcpy (q, p + (word - text)); | |
1461 | return_val[return_val_used++] = q; | |
1462 | free (p); | |
1463 | } | |
1464 | else | |
1465 | { | |
1466 | /* Return some of TEXT plus p. */ | |
1467 | q = xmalloc (strlen (p) + (text - word) + 5); | |
1468 | strncpy (q, word, text - word); | |
1469 | q[text - word] = '\0'; | |
1470 | strcat (q, p); | |
1471 | return_val[return_val_used++] = q; | |
1472 | free (p); | |
1473 | } | |
1474 | } | |
1475 | subsequent_name = 1; | |
1476 | } | |
1477 | #if 0 | |
1478 | /* There is no way to do this just long enough to affect quote inserting | |
1479 | without also affecting the next completion. This should be fixed in | |
1480 | readline. FIXME. */ | |
1481 | /* Insure that readline does the right thing | |
1482 | with respect to inserting quotes. */ | |
1483 | rl_completer_word_break_characters = ""; | |
1484 | #endif | |
1485 | return return_val; | |
1486 | } | |
1487 | ||
1488 | /* Here are some useful test cases for completion. FIXME: These should | |
1489 | be put in the test suite. They should be tested with both M-? and TAB. | |
1490 | ||
1491 | "show output-" "radix" | |
1492 | "show output" "-radix" | |
1493 | "p" ambiguous (commands starting with p--path, print, printf, etc.) | |
1494 | "p " ambiguous (all symbols) | |
1495 | "info t foo" no completions | |
1496 | "info t " no completions | |
1497 | "info t" ambiguous ("info target", "info terminal", etc.) | |
1498 | "info ajksdlfk" no completions | |
1499 | "info ajksdlfk " no completions | |
1500 | "info" " " | |
1501 | "info " ambiguous (all info commands) | |
1502 | "p \"a" no completions (string constant) | |
1503 | "p 'a" ambiguous (all symbols starting with a) | |
1504 | "p b-a" ambiguous (all symbols starting with a) | |
1505 | "p b-" ambiguous (all symbols) | |
1506 | "file Make" "file" (word break hard to screw up here) | |
1507 | "file ../gdb.stabs/we" "ird" (needs to not break word at slash) | |
1508 | */ | |
1509 | ||
1510 | /* Generate completions one by one for the completer. Each time we are | |
9ed8604f PS |
1511 | called return another potential completion to the caller. |
1512 | line_completion just completes on commands or passes the buck to the | |
1513 | command's completer function, the stuff specific to symbol completion | |
172559ec JK |
1514 | is in make_symbol_completion_list. |
1515 | ||
9ed8604f | 1516 | TEXT is the caller's idea of the "word" we are looking at. |
172559ec JK |
1517 | |
1518 | MATCHES is the number of matches that have currently been collected from | |
1519 | calling this completion function. When zero, then we need to initialize, | |
1520 | otherwise the initialization has already taken place and we can just | |
1521 | return the next potential completion string. | |
1522 | ||
9ed8604f PS |
1523 | LINE_BUFFER is available to be looked at; it contains the entire text |
1524 | of the line. POINT is the offset in that line of the cursor. You | |
1525 | should pretend that the line ends at POINT. | |
172559ec | 1526 | |
9ed8604f PS |
1527 | Returns NULL if there are no more completions, else a pointer to a string |
1528 | which is a possible completion, it is the caller's responsibility to | |
1529 | free the string. */ | |
172559ec JK |
1530 | |
1531 | static char * | |
9ed8604f | 1532 | line_completion_function (text, matches, line_buffer, point) |
172559ec JK |
1533 | char *text; |
1534 | int matches; | |
9ed8604f PS |
1535 | char *line_buffer; |
1536 | int point; | |
172559ec JK |
1537 | { |
1538 | static char **list = (char **)NULL; /* Cache of completions */ | |
1539 | static int index; /* Next cached completion */ | |
1540 | char *output = NULL; | |
1541 | char *tmp_command, *p; | |
1542 | /* Pointer within tmp_command which corresponds to text. */ | |
1543 | char *word; | |
1544 | struct cmd_list_element *c, *result_list; | |
1545 | ||
1546 | if (matches == 0) | |
1547 | { | |
1548 | /* The caller is beginning to accumulate a new set of completions, so | |
1549 | we need to find all of them now, and cache them for returning one at | |
1550 | a time on future calls. */ | |
1551 | ||
1552 | if (list) | |
1553 | { | |
1554 | /* Free the storage used by LIST, but not by the strings inside. | |
1555 | This is because rl_complete_internal () frees the strings. */ | |
1556 | free ((PTR)list); | |
1557 | } | |
1558 | list = 0; | |
1559 | index = 0; | |
1560 | ||
1561 | /* Choose the default set of word break characters to break completions. | |
1562 | If we later find out that we are doing completions on command strings | |
1563 | (as opposed to strings supplied by the individual command completer | |
1564 | functions, which can be any string) then we will switch to the | |
1565 | special word break set for command strings, which leaves out the | |
1566 | '-' character used in some commands. */ | |
1567 | ||
1568 | rl_completer_word_break_characters = | |
1569 | gdb_completer_word_break_characters; | |
1570 | ||
1571 | /* Decide whether to complete on a list of gdb commands or on symbols. */ | |
9ed8604f | 1572 | tmp_command = (char *) alloca (point + 1); |
172559ec JK |
1573 | p = tmp_command; |
1574 | ||
9ed8604f PS |
1575 | strncpy (tmp_command, line_buffer, point); |
1576 | tmp_command[point] = '\0'; | |
172559ec | 1577 | /* Since text always contains some number of characters leading up |
9ed8604f | 1578 | to point, we can find the equivalent position in tmp_command |
172559ec | 1579 | by subtracting that many characters from the end of tmp_command. */ |
9ed8604f | 1580 | word = tmp_command + point - strlen (text); |
172559ec | 1581 | |
9ed8604f | 1582 | if (point == 0) |
172559ec JK |
1583 | { |
1584 | /* An empty line we want to consider ambiguous; that is, it | |
1585 | could be any command. */ | |
1586 | c = (struct cmd_list_element *) -1; | |
1587 | result_list = 0; | |
1588 | } | |
1589 | else | |
1590 | { | |
1591 | c = lookup_cmd_1 (&p, cmdlist, &result_list, 1); | |
1592 | } | |
1593 | ||
1594 | /* Move p up to the next interesting thing. */ | |
1595 | while (*p == ' ' || *p == '\t') | |
1596 | { | |
1597 | p++; | |
1598 | } | |
1599 | ||
1600 | if (!c) | |
1601 | { | |
1602 | /* It is an unrecognized command. So there are no | |
1603 | possible completions. */ | |
1604 | list = NULL; | |
1605 | } | |
1606 | else if (c == (struct cmd_list_element *) -1) | |
1607 | { | |
1608 | char *q; | |
1609 | ||
1610 | /* lookup_cmd_1 advances p up to the first ambiguous thing, but | |
1611 | doesn't advance over that thing itself. Do so now. */ | |
1612 | q = p; | |
1613 | while (*q && (isalnum (*q) || *q == '-' || *q == '_')) | |
1614 | ++q; | |
9ed8604f | 1615 | if (q != tmp_command + point) |
172559ec JK |
1616 | { |
1617 | /* There is something beyond the ambiguous | |
1618 | command, so there are no possible completions. For | |
1619 | example, "info t " or "info t foo" does not complete | |
1620 | to anything, because "info t" can be "info target" or | |
1621 | "info terminal". */ | |
1622 | list = NULL; | |
1623 | } | |
1624 | else | |
1625 | { | |
1626 | /* We're trying to complete on the command which was ambiguous. | |
1627 | This we can deal with. */ | |
1628 | if (result_list) | |
1629 | { | |
1630 | list = complete_on_cmdlist (*result_list->prefixlist, p, | |
1631 | word); | |
1632 | } | |
1633 | else | |
1634 | { | |
1635 | list = complete_on_cmdlist (cmdlist, p, word); | |
1636 | } | |
1637 | /* Insure that readline does the right thing with respect to | |
1638 | inserting quotes. */ | |
1639 | rl_completer_word_break_characters = | |
1640 | gdb_completer_command_word_break_characters; | |
1641 | } | |
1642 | } | |
1643 | else | |
1644 | { | |
1645 | /* We've recognized a full command. */ | |
1646 | ||
9ed8604f | 1647 | if (p == tmp_command + point) |
172559ec JK |
1648 | { |
1649 | /* There is no non-whitespace in the line beyond the command. */ | |
1650 | ||
1651 | if (p[-1] == ' ' || p[-1] == '\t') | |
1652 | { | |
1653 | /* The command is followed by whitespace; we need to complete | |
1654 | on whatever comes after command. */ | |
1655 | if (c->prefixlist) | |
1656 | { | |
1657 | /* It is a prefix command; what comes after it is | |
1658 | a subcommand (e.g. "info "). */ | |
1659 | list = complete_on_cmdlist (*c->prefixlist, p, word); | |
1660 | ||
1661 | /* Insure that readline does the right thing | |
1662 | with respect to inserting quotes. */ | |
1663 | rl_completer_word_break_characters = | |
1664 | gdb_completer_command_word_break_characters; | |
1665 | } | |
09374c98 SG |
1666 | else if (c->enums) |
1667 | { | |
1668 | list = complete_on_enum (c->enums, p, word); | |
1669 | rl_completer_word_break_characters = | |
1670 | gdb_completer_command_word_break_characters; | |
1671 | } | |
172559ec JK |
1672 | else |
1673 | { | |
1674 | /* It is a normal command; what comes after it is | |
1675 | completed by the command's completer function. */ | |
1676 | list = (*c->completer) (p, word); | |
1677 | } | |
1678 | } | |
1679 | else | |
1680 | { | |
1681 | /* The command is not followed by whitespace; we need to | |
1682 | complete on the command itself. e.g. "p" which is a | |
1683 | command itself but also can complete to "print", "ptype" | |
1684 | etc. */ | |
1685 | char *q; | |
1686 | ||
1687 | /* Find the command we are completing on. */ | |
1688 | q = p; | |
1689 | while (q > tmp_command) | |
1690 | { | |
1691 | if (isalnum (q[-1]) || q[-1] == '-' || q[-1] == '_') | |
1692 | --q; | |
1693 | else | |
1694 | break; | |
1695 | } | |
1696 | ||
1697 | list = complete_on_cmdlist (result_list, q, word); | |
1698 | ||
1699 | /* Insure that readline does the right thing | |
1700 | with respect to inserting quotes. */ | |
1701 | rl_completer_word_break_characters = | |
1702 | gdb_completer_command_word_break_characters; | |
1703 | } | |
1704 | } | |
1705 | else | |
1706 | { | |
1707 | /* There is non-whitespace beyond the command. */ | |
1708 | ||
1709 | if (c->prefixlist && !c->allow_unknown) | |
1710 | { | |
1711 | /* It is an unrecognized subcommand of a prefix command, | |
1712 | e.g. "info adsfkdj". */ | |
1713 | list = NULL; | |
1714 | } | |
09374c98 SG |
1715 | else if (c->enums) |
1716 | { | |
1717 | list = complete_on_enum (c->enums, p, word); | |
1718 | } | |
172559ec JK |
1719 | else |
1720 | { | |
1721 | /* It is a normal command. */ | |
1722 | list = (*c->completer) (p, word); | |
1723 | } | |
1724 | } | |
1725 | } | |
1726 | } | |
1727 | ||
1728 | /* If we found a list of potential completions during initialization then | |
1729 | dole them out one at a time. The vector of completions is NULL | |
1730 | terminated, so after returning the last one, return NULL (and continue | |
1731 | to do so) each time we are called after that, until a new list is | |
1732 | available. */ | |
1733 | ||
1734 | if (list) | |
1735 | { | |
1736 | output = list[index]; | |
1737 | if (output) | |
1738 | { | |
1739 | index++; | |
1740 | } | |
1741 | } | |
1742 | ||
1743 | #if 0 | |
1744 | /* Can't do this because readline hasn't yet checked the word breaks | |
1745 | for figuring out whether to insert a quote. */ | |
1746 | if (output == NULL) | |
1747 | /* Make sure the word break characters are set back to normal for the | |
1748 | next time that readline tries to complete something. */ | |
1749 | rl_completer_word_break_characters = | |
1750 | gdb_completer_word_break_characters; | |
1751 | #endif | |
1752 | ||
1753 | return (output); | |
1754 | } | |
1755 | ||
9ed8604f PS |
1756 | /* Line completion interface function for readline. */ |
1757 | ||
1758 | static char * | |
1759 | readline_line_completion_function (text, matches) | |
1760 | char *text; | |
1761 | int matches; | |
1762 | { | |
1763 | return line_completion_function (text, matches, rl_line_buffer, rl_point); | |
1764 | } | |
1765 | ||
172559ec JK |
1766 | /* Skip over a possibly quoted word (as defined by the quote characters |
1767 | and word break characters the completer uses). Returns pointer to the | |
1768 | location after the "word". */ | |
1769 | ||
1770 | char * | |
1771 | skip_quoted (str) | |
1772 | char *str; | |
1773 | { | |
1774 | char quote_char = '\0'; | |
1775 | char *scan; | |
1776 | ||
1777 | for (scan = str; *scan != '\0'; scan++) | |
1778 | { | |
1779 | if (quote_char != '\0') | |
1780 | { | |
1781 | /* Ignore everything until the matching close quote char */ | |
1782 | if (*scan == quote_char) | |
1783 | { | |
1784 | /* Found matching close quote. */ | |
1785 | scan++; | |
1786 | break; | |
1787 | } | |
1788 | } | |
1789 | else if (strchr (gdb_completer_quote_characters, *scan)) | |
1790 | { | |
1791 | /* Found start of a quoted string. */ | |
1792 | quote_char = *scan; | |
1793 | } | |
1794 | else if (strchr (gdb_completer_word_break_characters, *scan)) | |
1795 | { | |
1796 | break; | |
1797 | } | |
1798 | } | |
1799 | return (scan); | |
1800 | } | |
1801 | ||
1802 | \f | |
1803 | #ifdef STOP_SIGNAL | |
1804 | static void | |
1805 | stop_sig (signo) | |
1806 | int signo; | |
1807 | { | |
1808 | #if STOP_SIGNAL == SIGTSTP | |
1809 | signal (SIGTSTP, SIG_DFL); | |
1810 | sigsetmask (0); | |
1811 | kill (getpid (), SIGTSTP); | |
1812 | signal (SIGTSTP, stop_sig); | |
1813 | #else | |
1814 | signal (STOP_SIGNAL, stop_sig); | |
1815 | #endif | |
1816 | printf_unfiltered ("%s", prompt); | |
1817 | gdb_flush (gdb_stdout); | |
1818 | ||
1819 | /* Forget about any previous command -- null line now will do nothing. */ | |
1820 | dont_repeat (); | |
1821 | } | |
1822 | #endif /* STOP_SIGNAL */ | |
1823 | ||
1824 | /* Initialize signal handlers. */ | |
1825 | static void | |
1826 | do_nothing (signo) | |
1827 | int signo; | |
1828 | { | |
1829 | } | |
1830 | ||
1831 | static void | |
1832 | init_signals () | |
1833 | { | |
1834 | signal (SIGINT, request_quit); | |
1835 | ||
1836 | /* If we initialize SIGQUIT to SIG_IGN, then the SIG_IGN will get | |
1837 | passed to the inferior, which we don't want. It would be | |
1838 | possible to do a "signal (SIGQUIT, SIG_DFL)" after we fork, but | |
1839 | on BSD4.3 systems using vfork, that can affect the | |
1840 | GDB process as well as the inferior (the signal handling tables | |
1841 | might be in memory, shared between the two). Since we establish | |
1842 | a handler for SIGQUIT, when we call exec it will set the signal | |
1843 | to SIG_DFL for us. */ | |
1844 | signal (SIGQUIT, do_nothing); | |
1845 | if (signal (SIGHUP, do_nothing) != SIG_IGN) | |
1846 | signal (SIGHUP, disconnect); | |
1847 | signal (SIGFPE, float_handler); | |
1848 | ||
1849 | #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER) | |
1850 | signal (SIGWINCH, SIGWINCH_HANDLER); | |
1851 | #endif | |
1852 | } | |
1853 | \f | |
1854 | /* Read one line from the command input stream `instream' | |
1855 | into the local static buffer `linebuffer' (whose current length | |
1856 | is `linelength'). | |
1857 | The buffer is made bigger as necessary. | |
1858 | Returns the address of the start of the line. | |
1859 | ||
1860 | NULL is returned for end of file. | |
1861 | ||
1862 | *If* the instream == stdin & stdin is a terminal, the line read | |
1863 | is copied into the file line saver (global var char *line, | |
1864 | length linesize) so that it can be duplicated. | |
1865 | ||
1866 | This routine either uses fancy command line editing or | |
1867 | simple input as the user has requested. */ | |
1868 | ||
1869 | char * | |
1870 | command_line_input (prrompt, repeat, annotation_suffix) | |
1871 | char *prrompt; | |
1872 | int repeat; | |
1873 | char *annotation_suffix; | |
1874 | { | |
1875 | static char *linebuffer = 0; | |
1876 | static unsigned linelength = 0; | |
1877 | register char *p; | |
1878 | char *p1; | |
1879 | char *rl; | |
1880 | char *local_prompt = prrompt; | |
1881 | register int c; | |
1882 | char *nline; | |
1883 | char got_eof = 0; | |
1884 | ||
dfb14bc8 SS |
1885 | /* The annotation suffix must be non-NULL. */ |
1886 | if (annotation_suffix == NULL) | |
1887 | annotation_suffix = ""; | |
1888 | ||
172559ec JK |
1889 | if (annotation_level > 1 && instream == stdin) |
1890 | { | |
1891 | local_prompt = alloca ((prrompt == NULL ? 0 : strlen (prrompt)) | |
1892 | + strlen (annotation_suffix) + 40); | |
1893 | if (prrompt == NULL) | |
1894 | local_prompt[0] = '\0'; | |
1895 | else | |
1896 | strcpy (local_prompt, prrompt); | |
1897 | strcat (local_prompt, "\n\032\032"); | |
1898 | strcat (local_prompt, annotation_suffix); | |
1899 | strcat (local_prompt, "\n"); | |
1900 | } | |
1901 | ||
1902 | if (linebuffer == 0) | |
1903 | { | |
1904 | linelength = 80; | |
1905 | linebuffer = (char *) xmalloc (linelength); | |
1906 | } | |
1907 | ||
1908 | p = linebuffer; | |
1909 | ||
1910 | /* Control-C quits instantly if typed while in this loop | |
1911 | since it should not wait until the user types a newline. */ | |
1912 | immediate_quit++; | |
1913 | #ifdef STOP_SIGNAL | |
1914 | if (job_control) | |
1915 | signal (STOP_SIGNAL, stop_sig); | |
1916 | #endif | |
1917 | ||
1918 | while (1) | |
1919 | { | |
1920 | /* Make sure that all output has been output. Some machines may let | |
1921 | you get away with leaving out some of the gdb_flush, but not all. */ | |
1922 | wrap_here (""); | |
1923 | gdb_flush (gdb_stdout); | |
1924 | gdb_flush (gdb_stderr); | |
1925 | ||
1926 | if (source_file_name != NULL) | |
1927 | { | |
1928 | ++source_line_number; | |
1929 | sprintf (source_error, | |
1930 | "%s%s:%d: Error in sourced command file:\n", | |
1931 | source_pre_error, | |
1932 | source_file_name, | |
1933 | source_line_number); | |
1934 | error_pre_print = source_error; | |
1935 | } | |
1936 | ||
1937 | if (annotation_level > 1 && instream == stdin) | |
1938 | { | |
1939 | printf_unfiltered ("\n\032\032pre-"); | |
1940 | printf_unfiltered (annotation_suffix); | |
1941 | printf_unfiltered ("\n"); | |
1942 | } | |
1943 | ||
1944 | /* Don't use fancy stuff if not talking to stdin. */ | |
1945 | if (command_editing_p && instream == stdin | |
1946 | && ISATTY (instream)) | |
1947 | rl = readline (local_prompt); | |
1948 | else | |
1949 | rl = gdb_readline (local_prompt); | |
1950 | ||
1951 | if (annotation_level > 1 && instream == stdin) | |
1952 | { | |
1953 | printf_unfiltered ("\n\032\032post-"); | |
1954 | printf_unfiltered (annotation_suffix); | |
1955 | printf_unfiltered ("\n"); | |
1956 | } | |
1957 | ||
1958 | if (!rl || rl == (char *) EOF) | |
1959 | { | |
1960 | got_eof = 1; | |
1961 | break; | |
1962 | } | |
1963 | if (strlen(rl) + 1 + (p - linebuffer) > linelength) | |
1964 | { | |
1965 | linelength = strlen(rl) + 1 + (p - linebuffer); | |
1966 | nline = (char *) xrealloc (linebuffer, linelength); | |
1967 | p += nline - linebuffer; | |
1968 | linebuffer = nline; | |
1969 | } | |
1970 | p1 = rl; | |
1971 | /* Copy line. Don't copy null at end. (Leaves line alone | |
1972 | if this was just a newline) */ | |
1973 | while (*p1) | |
1974 | *p++ = *p1++; | |
1975 | ||
1976 | free (rl); /* Allocated in readline. */ | |
1977 | ||
1978 | if (p == linebuffer || *(p - 1) != '\\') | |
1979 | break; | |
1980 | ||
1981 | p--; /* Put on top of '\'. */ | |
1982 | local_prompt = (char *) 0; | |
1983 | } | |
1984 | ||
1985 | #ifdef STOP_SIGNAL | |
1986 | if (job_control) | |
1987 | signal (STOP_SIGNAL, SIG_DFL); | |
1988 | #endif | |
1989 | immediate_quit--; | |
1990 | ||
1991 | if (got_eof) | |
1992 | return NULL; | |
1993 | ||
1994 | #define SERVER_COMMAND_LENGTH 7 | |
1995 | server_command = | |
1996 | (p - linebuffer > SERVER_COMMAND_LENGTH) | |
1997 | && STREQN (linebuffer, "server ", SERVER_COMMAND_LENGTH); | |
1998 | if (server_command) | |
1999 | { | |
2000 | /* Note that we don't set `line'. Between this and the check in | |
2001 | dont_repeat, this insures that repeating will still do the | |
2002 | right thing. */ | |
2003 | *p = '\0'; | |
2004 | return linebuffer + SERVER_COMMAND_LENGTH; | |
2005 | } | |
2006 | ||
2007 | /* Do history expansion if that is wished. */ | |
2008 | if (history_expansion_p && instream == stdin | |
2009 | && ISATTY (instream)) | |
2010 | { | |
2011 | char *history_value; | |
2012 | int expanded; | |
2013 | ||
2014 | *p = '\0'; /* Insert null now. */ | |
2015 | expanded = history_expand (linebuffer, &history_value); | |
2016 | if (expanded) | |
2017 | { | |
2018 | /* Print the changes. */ | |
2019 | printf_unfiltered ("%s\n", history_value); | |
2020 | ||
2021 | /* If there was an error, call this function again. */ | |
2022 | if (expanded < 0) | |
2023 | { | |
2024 | free (history_value); | |
2025 | return command_line_input (prrompt, repeat, annotation_suffix); | |
2026 | } | |
2027 | if (strlen (history_value) > linelength) | |
2028 | { | |
2029 | linelength = strlen (history_value) + 1; | |
2030 | linebuffer = (char *) xrealloc (linebuffer, linelength); | |
2031 | } | |
2032 | strcpy (linebuffer, history_value); | |
2033 | p = linebuffer + strlen(linebuffer); | |
2034 | free (history_value); | |
2035 | } | |
2036 | } | |
2037 | ||
2038 | /* If we just got an empty line, and that is supposed | |
2039 | to repeat the previous command, return the value in the | |
2040 | global buffer. */ | |
2041 | if (repeat) | |
2042 | { | |
2043 | if (p == linebuffer) | |
2044 | return line; | |
2045 | p1 = linebuffer; | |
2046 | while (*p1 == ' ' || *p1 == '\t') | |
2047 | p1++; | |
2048 | if (!*p1) | |
2049 | return line; | |
2050 | } | |
2051 | ||
2052 | *p = 0; | |
2053 | ||
2054 | /* Add line to history if appropriate. */ | |
2055 | if (instream == stdin | |
2056 | && ISATTY (stdin) && *linebuffer) | |
2057 | add_history (linebuffer); | |
2058 | ||
2059 | /* Note: lines consisting solely of comments are added to the command | |
2060 | history. This is useful when you type a command, and then | |
2061 | realize you don't want to execute it quite yet. You can comment | |
2062 | out the command and then later fetch it from the value history | |
2063 | and remove the '#'. The kill ring is probably better, but some | |
2064 | people are in the habit of commenting things out. */ | |
2065 | p1 = linebuffer; | |
2066 | while ((c = *p1++) != '\0') | |
2067 | { | |
2068 | if (c == '"') | |
2069 | while ((c = *p1++) != '"') | |
2070 | { | |
2071 | /* Make sure an escaped '"' doesn't make us think the string | |
2072 | is ended. */ | |
2073 | if (c == '\\') | |
2074 | parse_escape (&p1); | |
2075 | if (c == '\0') | |
2076 | break; | |
2077 | } | |
2078 | else if (c == '\'') | |
2079 | while ((c = *p1++) != '\'') | |
2080 | { | |
2081 | /* Make sure an escaped '\'' doesn't make us think the string | |
2082 | is ended. */ | |
2083 | if (c == '\\') | |
2084 | parse_escape (&p1); | |
2085 | if (c == '\0') | |
2086 | break; | |
2087 | } | |
2088 | else if (c == '#') | |
2089 | { | |
2090 | /* Found a comment. */ | |
2091 | p1[-1] = '\0'; | |
2092 | break; | |
2093 | } | |
2094 | } | |
2095 | ||
2096 | /* Save into global buffer if appropriate. */ | |
2097 | if (repeat) | |
2098 | { | |
2099 | if (linelength > linesize) | |
2100 | { | |
2101 | line = xrealloc (line, linelength); | |
2102 | linesize = linelength; | |
2103 | } | |
2104 | strcpy (line, linebuffer); | |
2105 | return line; | |
2106 | } | |
2107 | ||
2108 | return linebuffer; | |
2109 | } | |
2110 | \f | |
e52bfe0c JL |
2111 | |
2112 | /* Expand the body_list of COMMAND so that it can hold NEW_LENGTH | |
2113 | code bodies. This is typically used when we encounter an "else" | |
2114 | clause for an "if" command. */ | |
2115 | ||
2116 | static void | |
2117 | realloc_body_list (command, new_length) | |
2118 | struct command_line *command; | |
2119 | int new_length; | |
2120 | { | |
2121 | int n; | |
2122 | struct command_line **body_list; | |
2123 | ||
2124 | n = command->body_count; | |
2125 | ||
2126 | /* Nothing to do? */ | |
2127 | if (new_length <= n) | |
2128 | return; | |
2129 | ||
2130 | body_list = (struct command_line **) | |
2131 | xmalloc (sizeof (struct command_line *) * new_length); | |
2132 | ||
2133 | memcpy (body_list, command->body_list, sizeof (struct command_line *) * n); | |
2134 | ||
2135 | free (command->body_list); | |
2136 | command->body_list = body_list; | |
2137 | command->body_count = new_length; | |
2138 | } | |
2139 | ||
2140 | /* Read one line from the input stream. If the command is an "else" or | |
2141 | "end", return such an indication to the caller. */ | |
2142 | ||
2143 | static enum misc_command_type | |
2144 | read_next_line (command) | |
2145 | struct command_line **command; | |
2146 | { | |
2147 | char *p, *p1, *prompt_ptr, control_prompt[256]; | |
2148 | int i = 0; | |
2149 | ||
2150 | if (control_level >= 254) | |
2151 | error ("Control nesting too deep!\n"); | |
2152 | ||
2153 | /* Set a prompt based on the nesting of the control commands. */ | |
2154 | if (instream == stdin) | |
2155 | { | |
2156 | for (i = 0; i < control_level; i++) | |
2157 | control_prompt[i] = ' '; | |
2158 | control_prompt[i] = '>'; | |
2159 | control_prompt[i+1] = '\0'; | |
2160 | prompt_ptr = (char *)&control_prompt[0]; | |
2161 | } | |
2162 | else | |
2163 | prompt_ptr = NULL; | |
2164 | ||
e04f8901 | 2165 | p = command_line_input (prompt_ptr, instream == stdin, "commands"); |
e52bfe0c JL |
2166 | |
2167 | /* Not sure what to do here. */ | |
2168 | if (p == NULL) | |
2169 | return end_command; | |
2170 | ||
2171 | /* Strip leading and trailing whitespace. */ | |
2172 | while (*p == ' ' || *p == '\t') | |
2173 | p++; | |
2174 | ||
2175 | p1 = p + strlen (p); | |
2176 | while (p1 != p && (p1[-1] == ' ' || p1[-1] == '\t')) | |
2177 | p1--; | |
2178 | ||
2179 | /* Blanks and comments don't really do anything, but we need to | |
2180 | distinguish them from else, end and other commands which can be | |
2181 | executed. */ | |
2182 | if (p1 == p || p[0] == '#') | |
2183 | return nop_command; | |
2184 | ||
2185 | /* Is this the end of a simple, while, or if control structure? */ | |
2186 | if (p1 - p == 3 && !strncmp (p, "end", 3)) | |
2187 | return end_command; | |
2188 | ||
2189 | /* Is the else clause of an if control structure? */ | |
2190 | if (p1 - p == 4 && !strncmp (p, "else", 4)) | |
2191 | return else_command; | |
2192 | ||
2193 | /* Check for while, if, break, continue, etc and build a new command | |
2194 | line structure for them. */ | |
2195 | if (p1 - p > 5 && !strncmp (p, "while", 5)) | |
2196 | *command = build_command_line (while_control, p + 6); | |
2197 | else if (p1 - p > 2 && !strncmp (p, "if", 2)) | |
2198 | *command = build_command_line (if_control, p + 3); | |
2199 | else if (p1 - p == 5 && !strncmp (p, "loop_break", 5)) | |
2200 | { | |
2201 | *command = (struct command_line *) | |
2202 | xmalloc (sizeof (struct command_line)); | |
2203 | (*command)->next = NULL; | |
2204 | (*command)->line = NULL; | |
2205 | (*command)->control_type = break_control; | |
2206 | (*command)->body_count = 0; | |
2207 | (*command)->body_list = NULL; | |
2208 | } | |
2209 | else if (p1 - p == 8 && !strncmp (p, "loop_continue", 8)) | |
2210 | { | |
2211 | *command = (struct command_line *) | |
2212 | xmalloc (sizeof (struct command_line)); | |
2213 | (*command)->next = NULL; | |
2214 | (*command)->line = NULL; | |
2215 | (*command)->control_type = continue_control; | |
2216 | (*command)->body_count = 0; | |
2217 | (*command)->body_list = NULL; | |
2218 | } | |
2219 | else | |
2220 | { | |
2221 | /* A normal command. */ | |
2222 | *command = (struct command_line *) | |
2223 | xmalloc (sizeof (struct command_line)); | |
2224 | (*command)->next = NULL; | |
2225 | (*command)->line = savestring (p, p1 - p); | |
2226 | (*command)->control_type = simple_control; | |
2227 | (*command)->body_count = 0; | |
2228 | (*command)->body_list = NULL; | |
2229 | } | |
2230 | ||
2231 | /* Nothing special. */ | |
2232 | return ok_command; | |
2233 | } | |
2234 | ||
2235 | /* Recursively read in the control structures and create a command_line | |
2236 | tructure from them. | |
2237 | ||
2238 | The parent_control parameter is the control structure in which the | |
2239 | following commands are nested. */ | |
2240 | ||
2241 | static enum command_control_type | |
2242 | recurse_read_control_structure (current_cmd) | |
2243 | struct command_line *current_cmd; | |
2244 | { | |
2245 | int current_body, i; | |
2246 | enum misc_command_type val; | |
2247 | enum command_control_type ret; | |
2248 | struct command_line **body_ptr, *child_tail, *next; | |
2249 | struct cleanup *old_chains, *tmp_chains; | |
2250 | ||
2251 | old_chains = NULL; | |
2252 | child_tail = NULL; | |
2253 | current_body = 1; | |
2254 | ||
2255 | /* Sanity checks. */ | |
2256 | if (current_cmd->control_type == simple_control) | |
2257 | { | |
2258 | error ("Recursed on a simple control type\n"); | |
2259 | return invalid_control; | |
2260 | } | |
2261 | ||
2262 | if (current_body > current_cmd->body_count) | |
2263 | { | |
2264 | error ("Allocated body is smaller than this command type needs\n"); | |
2265 | return invalid_control; | |
2266 | } | |
2267 | ||
2268 | /* Read lines from the input stream and build control structures. */ | |
2269 | while (1) | |
2270 | { | |
2271 | dont_repeat (); | |
2272 | ||
2273 | next = NULL; | |
2274 | val = read_next_line (&next); | |
2275 | ||
2276 | /* Just skip blanks and comments. */ | |
2277 | if (val == nop_command) | |
2278 | continue; | |
2279 | ||
2280 | if (val == end_command) | |
2281 | { | |
2282 | if (current_cmd->control_type == while_control | |
2283 | || current_cmd->control_type == if_control) | |
2284 | { | |
2285 | /* Success reading an entire control structure. */ | |
2286 | ret = simple_control; | |
2287 | break; | |
2288 | } | |
2289 | else | |
2290 | { | |
2291 | ret = invalid_control; | |
2292 | break; | |
2293 | } | |
2294 | } | |
2295 | ||
2296 | /* Not the end of a control structure. */ | |
2297 | if (val == else_command) | |
2298 | { | |
2299 | if (current_cmd->control_type == if_control | |
2300 | && current_body == 1) | |
2301 | { | |
2302 | realloc_body_list (current_cmd, 2); | |
2303 | current_body = 2; | |
2304 | child_tail = NULL; | |
2305 | continue; | |
2306 | } | |
2307 | else | |
2308 | { | |
2309 | ret = invalid_control; | |
2310 | break; | |
2311 | } | |
2312 | } | |
2313 | ||
2314 | if (child_tail) | |
2315 | { | |
2316 | child_tail->next = next; | |
2317 | } | |
2318 | else | |
2319 | { | |
2320 | /* We have just read the first line of the child's control | |
2321 | structure. From now on, arrange to throw away the line | |
2322 | we have if we quit or get an error. */ | |
2323 | body_ptr = current_cmd->body_list; | |
2324 | for (i = 1; i < current_body; i++) | |
2325 | body_ptr++; | |
2326 | ||
2327 | *body_ptr = next; | |
2328 | ||
2329 | tmp_chains = make_cleanup (free_command_lines, body_ptr); | |
2330 | ||
2331 | if (!old_chains) | |
2332 | old_chains = tmp_chains; | |
2333 | } | |
2334 | ||
2335 | child_tail = next; | |
2336 | ||
2337 | /* If the latest line is another control structure, then recurse | |
2338 | on it. */ | |
2339 | if (next->control_type == while_control | |
2340 | || next->control_type == if_control) | |
2341 | { | |
2342 | control_level++; | |
2343 | ret = recurse_read_control_structure (next); | |
2344 | control_level--; | |
2345 | ||
2346 | if (ret != simple_control) | |
2347 | break; | |
2348 | } | |
2349 | } | |
2350 | ||
2351 | dont_repeat (); | |
2352 | if (ret == invalid_control && old_chains) | |
2353 | do_cleanups (old_chains); | |
2354 | else if (old_chains) | |
2355 | discard_cleanups (old_chains); | |
2356 | ||
2357 | return ret; | |
2358 | } | |
2359 | ||
2360 | ||
172559ec JK |
2361 | /* Read lines from the input stream |
2362 | and accumulate them in a chain of struct command_line's | |
2363 | which is then returned. */ | |
2364 | ||
2365 | struct command_line * | |
2366 | read_command_lines () | |
2367 | { | |
e52bfe0c JL |
2368 | struct command_line *head, *tail, *next; |
2369 | struct cleanup *old_chain; | |
2370 | enum command_control_type ret; | |
2371 | enum misc_command_type val; | |
2372 | ||
2373 | head = tail = NULL; | |
2374 | old_chain = NULL; | |
172559ec JK |
2375 | |
2376 | while (1) | |
2377 | { | |
e52bfe0c | 2378 | val = read_next_line (&next); |
172559ec | 2379 | |
e52bfe0c JL |
2380 | /* Ignore blank lines or comments. */ |
2381 | if (val == nop_command) | |
2382 | continue; | |
2383 | ||
2384 | if (val == end_command) | |
2385 | { | |
2386 | ret = simple_control; | |
2387 | break; | |
2388 | } | |
2389 | ||
2390 | if (val != ok_command) | |
2391 | { | |
2392 | ret = invalid_control; | |
2393 | break; | |
2394 | } | |
2395 | ||
2396 | if (next->control_type == while_control | |
2397 | || next->control_type == if_control) | |
2398 | { | |
2399 | control_level++; | |
2400 | ret = recurse_read_control_structure (next); | |
2401 | control_level--; | |
172559ec | 2402 | |
e52bfe0c JL |
2403 | if (ret == invalid_control) |
2404 | break; | |
2405 | } | |
2406 | ||
172559ec JK |
2407 | if (tail) |
2408 | { | |
2409 | tail->next = next; | |
2410 | } | |
2411 | else | |
2412 | { | |
e52bfe0c JL |
2413 | head = next; |
2414 | old_chain = make_cleanup (free_command_lines, &head); | |
172559ec JK |
2415 | } |
2416 | tail = next; | |
2417 | } | |
2418 | ||
2419 | dont_repeat (); | |
2420 | ||
e52bfe0c JL |
2421 | if (head) |
2422 | { | |
2423 | if (ret != invalid_control) | |
2424 | { | |
2425 | discard_cleanups (old_chain); | |
2426 | return head; | |
2427 | } | |
2428 | else | |
2429 | do_cleanups (old_chain); | |
2430 | } | |
2431 | ||
2432 | return NULL; | |
172559ec JK |
2433 | } |
2434 | ||
2435 | /* Free a chain of struct command_line's. */ | |
2436 | ||
2437 | void | |
2438 | free_command_lines (lptr) | |
2439 | struct command_line **lptr; | |
2440 | { | |
2441 | register struct command_line *l = *lptr; | |
2442 | register struct command_line *next; | |
e52bfe0c JL |
2443 | struct command_line **blist; |
2444 | int i; | |
172559ec JK |
2445 | |
2446 | while (l) | |
2447 | { | |
e52bfe0c JL |
2448 | if (l->body_count > 0) |
2449 | { | |
2450 | blist = l->body_list; | |
2451 | for (i = 0; i < l->body_count; i++, blist++) | |
2452 | free_command_lines (blist); | |
2453 | } | |
172559ec JK |
2454 | next = l->next; |
2455 | free (l->line); | |
2456 | free ((PTR)l); | |
2457 | l = next; | |
2458 | } | |
2459 | } | |
2460 | \f | |
2461 | /* Add an element to the list of info subcommands. */ | |
2462 | ||
2463 | void | |
2464 | add_info (name, fun, doc) | |
2465 | char *name; | |
2466 | void (*fun) PARAMS ((char *, int)); | |
2467 | char *doc; | |
2468 | { | |
2469 | add_cmd (name, no_class, fun, doc, &infolist); | |
2470 | } | |
2471 | ||
2472 | /* Add an alias to the list of info subcommands. */ | |
2473 | ||
2474 | void | |
2475 | add_info_alias (name, oldname, abbrev_flag) | |
2476 | char *name; | |
2477 | char *oldname; | |
2478 | int abbrev_flag; | |
2479 | { | |
2480 | add_alias_cmd (name, oldname, 0, abbrev_flag, &infolist); | |
2481 | } | |
2482 | ||
2483 | /* The "info" command is defined as a prefix, with allow_unknown = 0. | |
2484 | Therefore, its own definition is called only for "info" with no args. */ | |
2485 | ||
2486 | /* ARGSUSED */ | |
2487 | static void | |
2488 | info_command (arg, from_tty) | |
2489 | char *arg; | |
2490 | int from_tty; | |
2491 | { | |
2492 | printf_unfiltered ("\"info\" must be followed by the name of an info command.\n"); | |
2493 | help_list (infolist, "info ", -1, gdb_stdout); | |
2494 | } | |
2495 | ||
2496 | /* The "complete" command is used by Emacs to implement completion. */ | |
2497 | ||
2498 | /* ARGSUSED */ | |
2499 | static void | |
2500 | complete_command (arg, from_tty) | |
2501 | char *arg; | |
2502 | int from_tty; | |
2503 | { | |
2504 | int i; | |
9ed8604f | 2505 | int argpoint; |
172559ec JK |
2506 | char *completion; |
2507 | ||
2508 | dont_repeat (); | |
2509 | ||
2510 | if (arg == NULL) | |
9ed8604f PS |
2511 | arg = ""; |
2512 | argpoint = strlen (arg); | |
172559ec | 2513 | |
9ed8604f | 2514 | for (completion = line_completion_function (arg, i = 0, arg, argpoint); |
172559ec | 2515 | completion; |
9ed8604f PS |
2516 | completion = line_completion_function (arg, ++i, arg, argpoint)) |
2517 | { | |
2518 | printf_unfiltered ("%s\n", completion); | |
2519 | free (completion); | |
2520 | } | |
172559ec JK |
2521 | } |
2522 | ||
2523 | /* The "show" command with no arguments shows all the settings. */ | |
2524 | ||
2525 | /* ARGSUSED */ | |
2526 | static void | |
2527 | show_command (arg, from_tty) | |
2528 | char *arg; | |
2529 | int from_tty; | |
2530 | { | |
2531 | cmd_show_list (showlist, from_tty, ""); | |
2532 | } | |
2533 | \f | |
2534 | /* Add an element to the list of commands. */ | |
2535 | ||
2536 | void | |
2537 | add_com (name, class, fun, doc) | |
2538 | char *name; | |
2539 | enum command_class class; | |
2540 | void (*fun) PARAMS ((char *, int)); | |
2541 | char *doc; | |
2542 | { | |
2543 | add_cmd (name, class, fun, doc, &cmdlist); | |
2544 | } | |
2545 | ||
2546 | /* Add an alias or abbreviation command to the list of commands. */ | |
2547 | ||
2548 | void | |
2549 | add_com_alias (name, oldname, class, abbrev_flag) | |
2550 | char *name; | |
2551 | char *oldname; | |
2552 | enum command_class class; | |
2553 | int abbrev_flag; | |
2554 | { | |
2555 | add_alias_cmd (name, oldname, class, abbrev_flag, &cmdlist); | |
2556 | } | |
2557 | ||
2558 | void | |
2559 | error_no_arg (why) | |
2560 | char *why; | |
2561 | { | |
2562 | error ("Argument required (%s).", why); | |
2563 | } | |
2564 | ||
2565 | /* ARGSUSED */ | |
2566 | static void | |
2567 | help_command (command, from_tty) | |
2568 | char *command; | |
2569 | int from_tty; /* Ignored */ | |
2570 | { | |
2571 | help_cmd (command, gdb_stdout); | |
2572 | } | |
2573 | \f | |
2574 | static void | |
2575 | validate_comname (comname) | |
2576 | char *comname; | |
2577 | { | |
2578 | register char *p; | |
2579 | ||
2580 | if (comname == 0) | |
2581 | error_no_arg ("name of command to define"); | |
2582 | ||
2583 | p = comname; | |
2584 | while (*p) | |
2585 | { | |
080868b4 | 2586 | if (!isalnum(*p) && *p != '-' && *p != '_') |
172559ec JK |
2587 | error ("Junk in argument list: \"%s\"", p); |
2588 | p++; | |
2589 | } | |
2590 | } | |
2591 | ||
2592 | /* This is just a placeholder in the command data structures. */ | |
2593 | static void | |
2594 | user_defined_command (ignore, from_tty) | |
2595 | char *ignore; | |
2596 | int from_tty; | |
2597 | { | |
2598 | } | |
2599 | ||
2600 | static void | |
2601 | define_command (comname, from_tty) | |
2602 | char *comname; | |
2603 | int from_tty; | |
2604 | { | |
2605 | register struct command_line *cmds; | |
2606 | register struct cmd_list_element *c, *newc, *hookc = 0; | |
2607 | char *tem = comname; | |
2608 | #define HOOK_STRING "hook-" | |
2609 | #define HOOK_LEN 5 | |
2610 | ||
2611 | validate_comname (comname); | |
2612 | ||
2613 | /* Look it up, and verify that we got an exact match. */ | |
2614 | c = lookup_cmd (&tem, cmdlist, "", -1, 1); | |
2615 | if (c && !STREQ (comname, c->name)) | |
2616 | c = 0; | |
e52bfe0c | 2617 | |
172559ec JK |
2618 | if (c) |
2619 | { | |
2620 | if (c->class == class_user || c->class == class_alias) | |
2621 | tem = "Redefine command \"%s\"? "; | |
2622 | else | |
2623 | tem = "Really redefine built-in command \"%s\"? "; | |
2624 | if (!query (tem, c->name)) | |
2625 | error ("Command \"%s\" not redefined.", c->name); | |
2626 | } | |
2627 | ||
2628 | /* If this new command is a hook, then mark the command which it | |
2629 | is hooking. Note that we allow hooking `help' commands, so that | |
2630 | we can hook the `stop' pseudo-command. */ | |
2631 | ||
2632 | if (!strncmp (comname, HOOK_STRING, HOOK_LEN)) | |
2633 | { | |
2634 | /* Look up cmd it hooks, and verify that we got an exact match. */ | |
2635 | tem = comname+HOOK_LEN; | |
2636 | hookc = lookup_cmd (&tem, cmdlist, "", -1, 0); | |
2637 | if (hookc && !STREQ (comname+HOOK_LEN, hookc->name)) | |
2638 | hookc = 0; | |
2639 | if (!hookc) | |
2640 | { | |
2641 | warning ("Your new `%s' command does not hook any existing command.", | |
2642 | comname); | |
e3033bb0 | 2643 | if (!query ("Proceed? ")) |
172559ec JK |
2644 | error ("Not confirmed."); |
2645 | } | |
2646 | } | |
2647 | ||
2648 | comname = savestring (comname, strlen (comname)); | |
2649 | ||
e52bfe0c | 2650 | /* If the rest of the commands will be case insensitive, this one |
172559ec JK |
2651 | should behave in the same manner. */ |
2652 | for (tem = comname; *tem; tem++) | |
2653 | if (isupper(*tem)) *tem = tolower(*tem); | |
2654 | ||
2655 | if (from_tty) | |
2656 | { | |
2657 | printf_unfiltered ("Type commands for definition of \"%s\".\n\ | |
2658 | End with a line saying just \"end\".\n", comname); | |
2659 | gdb_flush (gdb_stdout); | |
2660 | } | |
2661 | ||
e52bfe0c | 2662 | control_level = 0; |
172559ec JK |
2663 | cmds = read_command_lines (); |
2664 | ||
2665 | if (c && c->class == class_user) | |
2666 | free_command_lines (&c->user_commands); | |
2667 | ||
2668 | newc = add_cmd (comname, class_user, user_defined_command, | |
2669 | (c && c->class == class_user) | |
2670 | ? c->doc : savestring ("User-defined.", 13), &cmdlist); | |
2671 | newc->user_commands = cmds; | |
2672 | ||
2673 | /* If this new command is a hook, then mark both commands as being | |
2674 | tied. */ | |
2675 | if (hookc) | |
2676 | { | |
2677 | hookc->hook = newc; /* Target gets hooked. */ | |
2678 | newc->hookee = hookc; /* We are marked as hooking target cmd. */ | |
2679 | } | |
2680 | } | |
2681 | ||
2682 | static void | |
2683 | document_command (comname, from_tty) | |
2684 | char *comname; | |
2685 | int from_tty; | |
2686 | { | |
2687 | struct command_line *doclines; | |
2688 | register struct cmd_list_element *c; | |
2689 | char *tem = comname; | |
2690 | ||
2691 | validate_comname (comname); | |
2692 | ||
2693 | c = lookup_cmd (&tem, cmdlist, "", 0, 1); | |
2694 | ||
2695 | if (c->class != class_user) | |
2696 | error ("Command \"%s\" is built-in.", comname); | |
2697 | ||
2698 | if (from_tty) | |
2699 | printf_unfiltered ("Type documentation for \"%s\".\n\ | |
2700 | End with a line saying just \"end\".\n", comname); | |
2701 | ||
2702 | doclines = read_command_lines (); | |
2703 | ||
2704 | if (c->doc) free (c->doc); | |
2705 | ||
2706 | { | |
2707 | register struct command_line *cl1; | |
2708 | register int len = 0; | |
2709 | ||
2710 | for (cl1 = doclines; cl1; cl1 = cl1->next) | |
2711 | len += strlen (cl1->line) + 1; | |
2712 | ||
2713 | c->doc = (char *) xmalloc (len + 1); | |
2714 | *c->doc = 0; | |
2715 | ||
2716 | for (cl1 = doclines; cl1; cl1 = cl1->next) | |
2717 | { | |
2718 | strcat (c->doc, cl1->line); | |
2719 | if (cl1->next) | |
2720 | strcat (c->doc, "\n"); | |
2721 | } | |
2722 | } | |
2723 | ||
2724 | free_command_lines (&doclines); | |
2725 | } | |
2726 | \f | |
2727 | void | |
2728 | print_gnu_advertisement () | |
2729 | { | |
2730 | printf_unfiltered ("\ | |
2731 | GDB is free software and you are welcome to distribute copies of it\n\ | |
2732 | under certain conditions; type \"show copying\" to see the conditions.\n\ | |
2733 | There is absolutely no warranty for GDB; type \"show warranty\" for details.\n\ | |
2734 | "); | |
2735 | } | |
2736 | ||
2737 | void | |
2738 | print_gdb_version (stream) | |
2739 | GDB_FILE *stream; | |
2740 | { | |
2741 | fprintf_filtered (stream, "\ | |
2742 | GDB %s (%s", version, host_name); | |
2743 | ||
2744 | if (!STREQ (host_name, target_name)) | |
2745 | fprintf_filtered (stream, " --target %s", target_name); | |
2746 | ||
2747 | fprintf_filtered (stream, "), "); | |
2748 | wrap_here(""); | |
7f4b4b71 | 2749 | fprintf_filtered (stream, "Copyright 1995 Free Software Foundation, Inc."); |
172559ec JK |
2750 | } |
2751 | ||
2752 | /* ARGSUSED */ | |
2753 | static void | |
2754 | show_version (args, from_tty) | |
2755 | char *args; | |
2756 | int from_tty; | |
2757 | { | |
2758 | immediate_quit++; | |
2759 | print_gnu_advertisement (); | |
2760 | print_gdb_version (gdb_stdout); | |
2761 | printf_filtered ("\n"); | |
2762 | immediate_quit--; | |
2763 | } | |
2764 | \f | |
2765 | /* xgdb calls this to reprint the usual GDB prompt. Obsolete now that xgdb | |
2766 | is obsolete. */ | |
2767 | ||
2768 | void | |
2769 | print_prompt () | |
2770 | { | |
2771 | printf_unfiltered ("%s", prompt); | |
2772 | gdb_flush (gdb_stdout); | |
2773 | } | |
2774 | \f | |
2775 | void | |
2776 | quit_command (args, from_tty) | |
2777 | char *args; | |
2778 | int from_tty; | |
2779 | { | |
641c7fdf SS |
2780 | int exit_code = 0; |
2781 | ||
2782 | /* An optional expression may be used to cause gdb to terminate with the | |
2783 | value of that expression. */ | |
2784 | if (args) | |
2785 | { | |
2786 | value_ptr val = parse_and_eval (args); | |
2787 | ||
2788 | exit_code = (int) value_as_long (val); | |
2789 | } | |
2790 | ||
172559ec JK |
2791 | if (inferior_pid != 0 && target_has_execution) |
2792 | { | |
2793 | if (attach_flag) | |
2794 | { | |
2795 | if (query ("The program is running. Quit anyway (and detach it)? ")) | |
2796 | target_detach (args, from_tty); | |
2797 | else | |
2798 | error ("Not confirmed."); | |
2799 | } | |
2800 | else | |
2801 | { | |
2802 | if (query ("The program is running. Quit anyway (and kill it)? ")) | |
2803 | target_kill (); | |
2804 | else | |
2805 | error ("Not confirmed."); | |
2806 | } | |
2807 | } | |
2808 | /* UDI wants this, to kill the TIP. */ | |
2809 | target_close (1); | |
2810 | ||
2811 | /* Save the history information if it is appropriate to do so. */ | |
2812 | if (write_history_p && history_filename) | |
2813 | write_history (history_filename); | |
2814 | ||
641c7fdf | 2815 | exit (exit_code); |
172559ec JK |
2816 | } |
2817 | ||
2818 | /* Returns whether GDB is running on a terminal and whether the user | |
2819 | desires that questions be asked of them on that terminal. */ | |
2820 | ||
2821 | int | |
2822 | input_from_terminal_p () | |
2823 | { | |
2824 | return gdb_has_a_terminal () && (instream == stdin) & caution; | |
2825 | } | |
2826 | \f | |
2827 | /* ARGSUSED */ | |
2828 | static void | |
2829 | pwd_command (args, from_tty) | |
2830 | char *args; | |
2831 | int from_tty; | |
2832 | { | |
2833 | if (args) error ("The \"pwd\" command does not take an argument: %s", args); | |
b7ec5b8d | 2834 | getcwd (gdb_dirbuf, sizeof (gdb_dirbuf)); |
172559ec | 2835 | |
b7ec5b8d | 2836 | if (!STREQ (gdb_dirbuf, current_directory)) |
172559ec | 2837 | printf_unfiltered ("Working directory %s\n (canonically %s).\n", |
b7ec5b8d | 2838 | current_directory, gdb_dirbuf); |
172559ec JK |
2839 | else |
2840 | printf_unfiltered ("Working directory %s.\n", current_directory); | |
2841 | } | |
2842 | ||
2843 | void | |
2844 | cd_command (dir, from_tty) | |
2845 | char *dir; | |
2846 | int from_tty; | |
2847 | { | |
2848 | int len; | |
2849 | /* Found something other than leading repetitions of "/..". */ | |
2850 | int found_real_path; | |
2851 | char *p; | |
2852 | ||
2853 | /* If the new directory is absolute, repeat is a no-op; if relative, | |
2854 | repeat might be useful but is more likely to be a mistake. */ | |
2855 | dont_repeat (); | |
2856 | ||
2857 | if (dir == 0) | |
2858 | error_no_arg ("new working directory"); | |
2859 | ||
2860 | dir = tilde_expand (dir); | |
2861 | make_cleanup (free, dir); | |
2862 | ||
2863 | if (chdir (dir) < 0) | |
2864 | perror_with_name (dir); | |
2865 | ||
2866 | len = strlen (dir); | |
2e1cc801 SS |
2867 | dir = savestring (dir, len - (len > 1 && SLASH_P(dir[len-1]))); |
2868 | if (ROOTED_P(dir)) | |
172559ec JK |
2869 | current_directory = dir; |
2870 | else | |
2871 | { | |
2e1cc801 | 2872 | if (SLASH_P (current_directory[0]) && current_directory[1] == '\0') |
172559ec JK |
2873 | current_directory = concat (current_directory, dir, NULL); |
2874 | else | |
2e1cc801 | 2875 | current_directory = concat (current_directory, SLASH_STRING, dir, NULL); |
172559ec JK |
2876 | free (dir); |
2877 | } | |
2878 | ||
2879 | /* Now simplify any occurrences of `.' and `..' in the pathname. */ | |
2880 | ||
2881 | found_real_path = 0; | |
2882 | for (p = current_directory; *p;) | |
2883 | { | |
2e1cc801 | 2884 | if (SLASH_P (p[0]) && p[1] == '.' && (p[2] == 0 || SLASH_P (p[2]))) |
172559ec | 2885 | strcpy (p, p + 2); |
2e1cc801 SS |
2886 | else if (SLASH_P (p[0]) && p[1] == '.' && p[2] == '.' |
2887 | && (p[3] == 0 || SLASH_P (p[3]))) | |
172559ec JK |
2888 | { |
2889 | if (found_real_path) | |
2890 | { | |
2891 | /* Search backwards for the directory just before the "/.." | |
2892 | and obliterate it and the "/..". */ | |
2893 | char *q = p; | |
2e1cc801 | 2894 | while (q != current_directory && ! SLASH_P (q[-1])) |
172559ec JK |
2895 | --q; |
2896 | ||
2897 | if (q == current_directory) | |
2898 | /* current_directory is | |
2899 | a relative pathname ("can't happen"--leave it alone). */ | |
2900 | ++p; | |
2901 | else | |
2902 | { | |
2903 | strcpy (q - 1, p + 3); | |
2904 | p = q - 1; | |
2905 | } | |
2906 | } | |
2907 | else | |
2908 | /* We are dealing with leading repetitions of "/..", for example | |
2909 | "/../..", which is the Mach super-root. */ | |
2910 | p += 3; | |
2911 | } | |
2912 | else | |
2913 | { | |
2914 | found_real_path = 1; | |
2915 | ++p; | |
2916 | } | |
2917 | } | |
2918 | ||
2919 | forget_cached_source_info (); | |
2920 | ||
2921 | if (from_tty) | |
2922 | pwd_command ((char *) 0, 1); | |
2923 | } | |
2924 | \f | |
2925 | struct source_cleanup_lines_args { | |
2926 | int old_line; | |
2927 | char *old_file; | |
2928 | char *old_pre_error; | |
2929 | char *old_error_pre_print; | |
2930 | }; | |
2931 | ||
2932 | static void | |
2933 | source_cleanup_lines (args) | |
2934 | PTR args; | |
2935 | { | |
2936 | struct source_cleanup_lines_args *p = | |
2937 | (struct source_cleanup_lines_args *)args; | |
2938 | source_line_number = p->old_line; | |
2939 | source_file_name = p->old_file; | |
2940 | source_pre_error = p->old_pre_error; | |
2941 | error_pre_print = p->old_error_pre_print; | |
2942 | } | |
2943 | ||
2944 | /* ARGSUSED */ | |
2945 | void | |
2946 | source_command (args, from_tty) | |
2947 | char *args; | |
2948 | int from_tty; | |
2949 | { | |
2950 | FILE *stream; | |
2951 | struct cleanup *old_cleanups; | |
2952 | char *file = args; | |
2953 | struct source_cleanup_lines_args old_lines; | |
2954 | int needed_length; | |
2955 | ||
2956 | if (file == NULL) | |
2957 | { | |
2958 | error ("source command requires pathname of file to source."); | |
2959 | } | |
2960 | ||
2961 | file = tilde_expand (file); | |
2962 | old_cleanups = make_cleanup (free, file); | |
2963 | ||
2964 | stream = fopen (file, FOPEN_RT); | |
2965 | if (stream == 0) | |
2966 | perror_with_name (file); | |
2967 | ||
2968 | make_cleanup (fclose, stream); | |
2969 | ||
2970 | old_lines.old_line = source_line_number; | |
2971 | old_lines.old_file = source_file_name; | |
2972 | old_lines.old_pre_error = source_pre_error; | |
2973 | old_lines.old_error_pre_print = error_pre_print; | |
2974 | make_cleanup (source_cleanup_lines, &old_lines); | |
2975 | source_line_number = 0; | |
2976 | source_file_name = file; | |
2977 | source_pre_error = error_pre_print == NULL ? "" : error_pre_print; | |
2978 | source_pre_error = savestring (source_pre_error, strlen (source_pre_error)); | |
2979 | make_cleanup (free, source_pre_error); | |
2980 | /* This will get set every time we read a line. So it won't stay "" for | |
2981 | long. */ | |
2982 | error_pre_print = ""; | |
2983 | ||
2984 | needed_length = strlen (source_file_name) + strlen (source_pre_error) + 80; | |
2985 | if (source_error_allocated < needed_length) | |
2986 | { | |
2987 | source_error_allocated *= 2; | |
2988 | if (source_error_allocated < needed_length) | |
2989 | source_error_allocated = needed_length; | |
2990 | if (source_error == NULL) | |
2991 | source_error = xmalloc (source_error_allocated); | |
2992 | else | |
2993 | source_error = xrealloc (source_error, source_error_allocated); | |
2994 | } | |
2995 | ||
2996 | read_command_file (stream); | |
2997 | ||
2998 | do_cleanups (old_cleanups); | |
2999 | } | |
3000 | ||
3001 | /* ARGSUSED */ | |
3002 | static void | |
3003 | echo_command (text, from_tty) | |
3004 | char *text; | |
3005 | int from_tty; | |
3006 | { | |
3007 | char *p = text; | |
3008 | register int c; | |
3009 | ||
3010 | if (text) | |
3011 | while ((c = *p++) != '\0') | |
3012 | { | |
3013 | if (c == '\\') | |
3014 | { | |
3015 | /* \ at end of argument is used after spaces | |
3016 | so they won't be lost. */ | |
3017 | if (*p == 0) | |
3018 | return; | |
3019 | ||
3020 | c = parse_escape (&p); | |
3021 | if (c >= 0) | |
3022 | printf_filtered ("%c", c); | |
3023 | } | |
3024 | else | |
3025 | printf_filtered ("%c", c); | |
3026 | } | |
3027 | ||
3028 | /* Force this output to appear now. */ | |
3029 | wrap_here (""); | |
3030 | gdb_flush (gdb_stdout); | |
3031 | } | |
3032 | ||
b8176214 ILT |
3033 | \f |
3034 | #ifdef TARGET_BYTE_ORDER_SELECTABLE | |
3035 | ||
3036 | /* Functions to manipulate the endianness of the target. */ | |
3037 | ||
3038 | #ifndef TARGET_BYTE_ORDER_DEFAULT | |
3039 | #define TARGET_BYTE_ORDER_DEFAULT BIG_ENDIAN | |
3040 | #endif | |
3041 | ||
3042 | int target_byte_order = TARGET_BYTE_ORDER_DEFAULT; | |
3043 | ||
b83ed019 ILT |
3044 | static int target_byte_order_auto = 1; |
3045 | ||
b8176214 ILT |
3046 | /* Called if the user enters ``set endian'' without an argument. */ |
3047 | static void | |
3048 | set_endian (args, from_tty) | |
3049 | char *args; | |
3050 | int from_tty; | |
3051 | { | |
b83ed019 | 3052 | printf_unfiltered ("\"set endian\" must be followed by \"auto\", \"big\" or \"little\".\n"); |
b8176214 ILT |
3053 | show_endian (args, from_tty); |
3054 | } | |
3055 | ||
3056 | /* Called by ``set endian big''. */ | |
3057 | static void | |
3058 | set_endian_big (args, from_tty) | |
3059 | char *args; | |
3060 | int from_tty; | |
3061 | { | |
3062 | target_byte_order = BIG_ENDIAN; | |
b83ed019 | 3063 | target_byte_order_auto = 0; |
b8176214 ILT |
3064 | } |
3065 | ||
3066 | /* Called by ``set endian little''. */ | |
3067 | static void | |
3068 | set_endian_little (args, from_tty) | |
3069 | char *args; | |
3070 | int from_tty; | |
3071 | { | |
3072 | target_byte_order = LITTLE_ENDIAN; | |
b83ed019 ILT |
3073 | target_byte_order_auto = 0; |
3074 | } | |
3075 | ||
3076 | /* Called by ``set endian auto''. */ | |
3077 | static void | |
3078 | set_endian_auto (args, from_tty) | |
3079 | char *args; | |
3080 | int from_tty; | |
3081 | { | |
3082 | target_byte_order_auto = 1; | |
b8176214 ILT |
3083 | } |
3084 | ||
3085 | /* Called by ``show endian''. */ | |
3086 | static void | |
3087 | show_endian (args, from_tty) | |
3088 | char *args; | |
3089 | int from_tty; | |
3090 | { | |
b83ed019 ILT |
3091 | const char *msg = |
3092 | (target_byte_order_auto | |
3093 | ? "The target endianness is set automatically (currently %s endian)\n" | |
3094 | : "The target is assumed to be %s endian\n"); | |
032f80d8 | 3095 | printf_unfiltered ((char *) msg, TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little"); |
b8176214 ILT |
3096 | } |
3097 | ||
3098 | #endif /* defined (TARGET_BYTE_ORDER_SELECTABLE) */ | |
b83ed019 ILT |
3099 | |
3100 | /* Set the endianness from a BFD. */ | |
3101 | void | |
3102 | set_endian_from_file (abfd) | |
3103 | bfd *abfd; | |
3104 | { | |
3105 | #ifdef TARGET_BYTE_ORDER_SELECTABLE | |
3106 | int want; | |
3107 | ||
3108 | if (abfd->xvec->byteorder_big_p) | |
3109 | want = BIG_ENDIAN; | |
3110 | else | |
3111 | want = LITTLE_ENDIAN; | |
3112 | if (target_byte_order_auto) | |
3113 | target_byte_order = want; | |
3114 | else if (target_byte_order != want) | |
3115 | warning ("%s endian file does not match %s endian target.", | |
3116 | want == BIG_ENDIAN ? "big" : "little", | |
3117 | TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little"); | |
3118 | ||
3119 | #else /* ! defined (TARGET_BYTE_ORDER_SELECTABLE) */ | |
3120 | ||
3121 | if (abfd->xvec->byteorder_big_p | |
3122 | ? TARGET_BYTE_ORDER != BIG_ENDIAN | |
3123 | : TARGET_BYTE_ORDER == BIG_ENDIAN) | |
3124 | warning ("%s endian file does not match %s endian target.", | |
688427fb | 3125 | abfd->xvec->byteorder_big_p ? "big" : "little", |
b83ed019 ILT |
3126 | TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little"); |
3127 | ||
3128 | #endif /* ! defined (TARGET_BYTE_ORDER_SELECTABLE) */ | |
3129 | } | |
172559ec JK |
3130 | \f |
3131 | /* Functions to manipulate command line editing control variables. */ | |
3132 | ||
3133 | /* Number of commands to print in each call to show_commands. */ | |
3134 | #define Hist_print 10 | |
3135 | static void | |
3136 | show_commands (args, from_tty) | |
3137 | char *args; | |
3138 | int from_tty; | |
3139 | { | |
3140 | /* Index for history commands. Relative to history_base. */ | |
3141 | int offset; | |
3142 | ||
3143 | /* Number of the history entry which we are planning to display next. | |
3144 | Relative to history_base. */ | |
3145 | static int num = 0; | |
3146 | ||
3147 | /* The first command in the history which doesn't exist (i.e. one more | |
3148 | than the number of the last command). Relative to history_base. */ | |
3149 | int hist_len; | |
3150 | ||
3151 | extern HIST_ENTRY *history_get PARAMS ((int)); | |
3152 | ||
3153 | /* Print out some of the commands from the command history. */ | |
3154 | /* First determine the length of the history list. */ | |
3155 | hist_len = history_size; | |
3156 | for (offset = 0; offset < history_size; offset++) | |
3157 | { | |
3158 | if (!history_get (history_base + offset)) | |
3159 | { | |
3160 | hist_len = offset; | |
3161 | break; | |
3162 | } | |
3163 | } | |
3164 | ||
3165 | if (args) | |
3166 | { | |
3167 | if (args[0] == '+' && args[1] == '\0') | |
3168 | /* "info editing +" should print from the stored position. */ | |
3169 | ; | |
3170 | else | |
3171 | /* "info editing <exp>" should print around command number <exp>. */ | |
3172 | num = (parse_and_eval_address (args) - history_base) - Hist_print / 2; | |
3173 | } | |
3174 | /* "show commands" means print the last Hist_print commands. */ | |
3175 | else | |
3176 | { | |
3177 | num = hist_len - Hist_print; | |
3178 | } | |
3179 | ||
3180 | if (num < 0) | |
3181 | num = 0; | |
3182 | ||
3183 | /* If there are at least Hist_print commands, we want to display the last | |
3184 | Hist_print rather than, say, the last 6. */ | |
3185 | if (hist_len - num < Hist_print) | |
3186 | { | |
3187 | num = hist_len - Hist_print; | |
3188 | if (num < 0) | |
3189 | num = 0; | |
3190 | } | |
3191 | ||
3192 | for (offset = num; offset < num + Hist_print && offset < hist_len; offset++) | |
3193 | { | |
3194 | printf_filtered ("%5d %s\n", history_base + offset, | |
3195 | (history_get (history_base + offset))->line); | |
3196 | } | |
3197 | ||
3198 | /* The next command we want to display is the next one that we haven't | |
3199 | displayed yet. */ | |
3200 | num += Hist_print; | |
e52bfe0c | 3201 | |
172559ec JK |
3202 | /* If the user repeats this command with return, it should do what |
3203 | "show commands +" does. This is unnecessary if arg is null, | |
3204 | because "show commands +" is not useful after "show commands". */ | |
3205 | if (from_tty && args) | |
3206 | { | |
3207 | args[0] = '+'; | |
3208 | args[1] = '\0'; | |
3209 | } | |
3210 | } | |
3211 | ||
3212 | /* Called by do_setshow_command. */ | |
3213 | /* ARGSUSED */ | |
3214 | static void | |
3215 | set_history_size_command (args, from_tty, c) | |
3216 | char *args; | |
3217 | int from_tty; | |
3218 | struct cmd_list_element *c; | |
3219 | { | |
3220 | if (history_size == INT_MAX) | |
3221 | unstifle_history (); | |
3222 | else if (history_size >= 0) | |
3223 | stifle_history (history_size); | |
3224 | else | |
3225 | { | |
3226 | history_size = INT_MAX; | |
3227 | error ("History size must be non-negative"); | |
3228 | } | |
3229 | } | |
3230 | ||
3231 | /* ARGSUSED */ | |
3232 | static void | |
3233 | set_history (args, from_tty) | |
3234 | char *args; | |
3235 | int from_tty; | |
3236 | { | |
3237 | printf_unfiltered ("\"set history\" must be followed by the name of a history subcommand.\n"); | |
3238 | help_list (sethistlist, "set history ", -1, gdb_stdout); | |
3239 | } | |
3240 | ||
3241 | /* ARGSUSED */ | |
3242 | static void | |
3243 | show_history (args, from_tty) | |
3244 | char *args; | |
3245 | int from_tty; | |
3246 | { | |
3247 | cmd_show_list (showhistlist, from_tty, ""); | |
3248 | } | |
3249 | ||
3250 | int info_verbose = 0; /* Default verbose msgs off */ | |
3251 | ||
3252 | /* Called by do_setshow_command. An elaborate joke. */ | |
3253 | /* ARGSUSED */ | |
e52bfe0c | 3254 | static void |
172559ec JK |
3255 | set_verbose (args, from_tty, c) |
3256 | char *args; | |
3257 | int from_tty; | |
3258 | struct cmd_list_element *c; | |
3259 | { | |
3260 | char *cmdname = "verbose"; | |
3261 | struct cmd_list_element *showcmd; | |
e52bfe0c | 3262 | |
172559ec JK |
3263 | showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1); |
3264 | ||
3265 | if (info_verbose) | |
3266 | { | |
3267 | c->doc = "Set verbose printing of informational messages."; | |
3268 | showcmd->doc = "Show verbose printing of informational messages."; | |
3269 | } | |
3270 | else | |
3271 | { | |
3272 | c->doc = "Set verbosity."; | |
3273 | showcmd->doc = "Show verbosity."; | |
3274 | } | |
3275 | } | |
3276 | ||
3277 | static void | |
3278 | float_handler (signo) | |
3279 | int signo; | |
3280 | { | |
3281 | /* This message is based on ANSI C, section 4.7. Note that integer | |
3282 | divide by zero causes this, so "float" is a misnomer. */ | |
3283 | signal (SIGFPE, float_handler); | |
3284 | error ("Erroneous arithmetic operation."); | |
3285 | } | |
3286 | ||
172559ec JK |
3287 | \f |
3288 | static void | |
3289 | init_cmd_lists () | |
3290 | { | |
3291 | cmdlist = NULL; | |
3292 | infolist = NULL; | |
3293 | enablelist = NULL; | |
3294 | disablelist = NULL; | |
3295 | deletelist = NULL; | |
3296 | enablebreaklist = NULL; | |
3297 | setlist = NULL; | |
3298 | unsetlist = NULL; | |
3299 | showlist = NULL; | |
b8176214 ILT |
3300 | #ifdef TARGET_BYTE_ORDER_SELECTABLE |
3301 | endianlist = NULL; | |
3302 | #endif | |
172559ec JK |
3303 | sethistlist = NULL; |
3304 | showhistlist = NULL; | |
3305 | unsethistlist = NULL; | |
3306 | #if MAINTENANCE_CMDS | |
3307 | maintenancelist = NULL; | |
3308 | maintenanceinfolist = NULL; | |
3309 | maintenanceprintlist = NULL; | |
3310 | #endif | |
3311 | setprintlist = NULL; | |
3312 | showprintlist = NULL; | |
3313 | setchecklist = NULL; | |
3314 | showchecklist = NULL; | |
3315 | } | |
3316 | ||
3317 | /* Init the history buffer. Note that we are called after the init file(s) | |
3318 | * have been read so that the user can change the history file via his | |
3319 | * .gdbinit file (for instance). The GDBHISTFILE environment variable | |
3320 | * overrides all of this. | |
3321 | */ | |
3322 | ||
3323 | void | |
3324 | init_history() | |
3325 | { | |
3326 | char *tmpenv; | |
3327 | ||
3328 | tmpenv = getenv ("HISTSIZE"); | |
3329 | if (tmpenv) | |
3330 | history_size = atoi (tmpenv); | |
3331 | else if (!history_size) | |
3332 | history_size = 256; | |
3333 | ||
3334 | stifle_history (history_size); | |
3335 | ||
3336 | tmpenv = getenv ("GDBHISTFILE"); | |
3337 | if (tmpenv) | |
3338 | history_filename = savestring (tmpenv, strlen(tmpenv)); | |
3339 | else if (!history_filename) { | |
3340 | /* We include the current directory so that if the user changes | |
3341 | directories the file written will be the same as the one | |
3342 | that was read. */ | |
3343 | history_filename = concat (current_directory, "/.gdb_history", NULL); | |
3344 | } | |
3345 | read_history (history_filename); | |
3346 | } | |
3347 | ||
3348 | static void | |
3349 | init_main () | |
3350 | { | |
3351 | struct cmd_list_element *c; | |
e52bfe0c | 3352 | |
b8176214 ILT |
3353 | #ifdef TARGET_BYTE_ORDER_SELECTABLE |
3354 | ||
3355 | add_prefix_cmd ("endian", class_support, set_endian, | |
3356 | "Set endianness of target.", | |
3357 | &endianlist, "set endian ", 0, &setlist); | |
3358 | add_cmd ("big", class_support, set_endian_big, | |
3359 | "Set target as being big endian.", &endianlist); | |
3360 | add_cmd ("little", class_support, set_endian_little, | |
3361 | "Set target as being little endian.", &endianlist); | |
b83ed019 ILT |
3362 | add_cmd ("auto", class_support, set_endian_auto, |
3363 | "Select target endianness automatically.", &endianlist); | |
b8176214 ILT |
3364 | add_cmd ("endian", class_support, show_endian, |
3365 | "Show endianness of target.", &showlist); | |
3366 | ||
3367 | #endif /* defined (TARGET_BYTE_ORDER_SELECTABLE) */ | |
3368 | ||
172559ec JK |
3369 | #ifdef DEFAULT_PROMPT |
3370 | prompt = savestring (DEFAULT_PROMPT, strlen(DEFAULT_PROMPT)); | |
3371 | #else | |
3372 | prompt = savestring ("(gdb) ", 6); | |
3373 | #endif | |
3374 | ||
3375 | /* Set the important stuff up for command editing. */ | |
3376 | command_editing_p = 1; | |
3377 | history_expansion_p = 0; | |
3378 | write_history_p = 0; | |
e52bfe0c | 3379 | |
172559ec | 3380 | /* Setup important stuff for command line editing. */ |
9ed8604f | 3381 | rl_completion_entry_function = (int (*)()) readline_line_completion_function; |
172559ec JK |
3382 | rl_completer_word_break_characters = gdb_completer_word_break_characters; |
3383 | rl_completer_quote_characters = gdb_completer_quote_characters; | |
3384 | rl_readline_name = "gdb"; | |
3385 | ||
3386 | /* Define the classes of commands. | |
3387 | They will appear in the help list in the reverse of this order. */ | |
3388 | ||
3389 | add_cmd ("internals", class_maintenance, NO_FUNCTION, | |
3390 | "Maintenance commands.\n\ | |
3391 | Some gdb commands are provided just for use by gdb maintainers.\n\ | |
3392 | These commands are subject to frequent change, and may not be as\n\ | |
3393 | well documented as user commands.", | |
3394 | &cmdlist); | |
3395 | add_cmd ("obscure", class_obscure, NO_FUNCTION, "Obscure features.", &cmdlist); | |
3396 | add_cmd ("aliases", class_alias, NO_FUNCTION, "Aliases of other commands.", &cmdlist); | |
3397 | add_cmd ("user-defined", class_user, NO_FUNCTION, "User-defined commands.\n\ | |
3398 | The commands in this class are those defined by the user.\n\ | |
3399 | Use the \"define\" command to define a command.", &cmdlist); | |
3400 | add_cmd ("support", class_support, NO_FUNCTION, "Support facilities.", &cmdlist); | |
3401 | add_cmd ("status", class_info, NO_FUNCTION, "Status inquiries.", &cmdlist); | |
3402 | add_cmd ("files", class_files, NO_FUNCTION, "Specifying and examining files.", &cmdlist); | |
3403 | add_cmd ("breakpoints", class_breakpoint, NO_FUNCTION, "Making program stop at certain points.", &cmdlist); | |
3404 | add_cmd ("data", class_vars, NO_FUNCTION, "Examining data.", &cmdlist); | |
3405 | add_cmd ("stack", class_stack, NO_FUNCTION, "Examining the stack.\n\ | |
3406 | The stack is made up of stack frames. Gdb assigns numbers to stack frames\n\ | |
3407 | counting from zero for the innermost (currently executing) frame.\n\n\ | |
3408 | At any time gdb identifies one frame as the \"selected\" frame.\n\ | |
3409 | Variable lookups are done with respect to the selected frame.\n\ | |
3410 | When the program being debugged stops, gdb selects the innermost frame.\n\ | |
3411 | The commands below can be used to select other frames by number or address.", | |
3412 | &cmdlist); | |
3413 | add_cmd ("running", class_run, NO_FUNCTION, "Running the program.", &cmdlist); | |
3414 | ||
3415 | add_com ("pwd", class_files, pwd_command, | |
3416 | "Print working directory. This is used for your program as well."); | |
3417 | c = add_cmd ("cd", class_files, cd_command, | |
3418 | "Set working directory to DIR for debugger and program being debugged.\n\ | |
3419 | The change does not take effect for the program being debugged\n\ | |
3420 | until the next time it is started.", &cmdlist); | |
3421 | c->completer = filename_completer; | |
3422 | ||
3423 | add_show_from_set | |
3424 | (add_set_cmd ("prompt", class_support, var_string, (char *)&prompt, | |
3425 | "Set gdb's prompt", | |
3426 | &setlist), | |
3427 | &showlist); | |
e52bfe0c | 3428 | |
172559ec JK |
3429 | add_com ("echo", class_support, echo_command, |
3430 | "Print a constant string. Give string as argument.\n\ | |
3431 | C escape sequences may be used in the argument.\n\ | |
3432 | No newline is added at the end of the argument;\n\ | |
3433 | use \"\\n\" if you want a newline to be printed.\n\ | |
3434 | Since leading and trailing whitespace are ignored in command arguments,\n\ | |
3435 | if you want to print some you must use \"\\\" before leading whitespace\n\ | |
3436 | to be printed or after trailing whitespace."); | |
3437 | add_com ("document", class_support, document_command, | |
3438 | "Document a user-defined command.\n\ | |
3439 | Give command name as argument. Give documentation on following lines.\n\ | |
3440 | End with a line of just \"end\"."); | |
3441 | add_com ("define", class_support, define_command, | |
3442 | "Define a new command name. Command name is argument.\n\ | |
3443 | Definition appears on following lines, one command per line.\n\ | |
3444 | End with a line of just \"end\".\n\ | |
3445 | Use the \"document\" command to give documentation for the new command.\n\ | |
59528079 | 3446 | Commands defined in this way may have up to ten arguments."); |
172559ec JK |
3447 | |
3448 | #ifdef __STDC__ | |
3449 | c = add_cmd ("source", class_support, source_command, | |
3450 | "Read commands from a file named FILE.\n\ | |
3451 | Note that the file \"" GDBINIT_FILENAME "\" is read automatically in this way\n\ | |
3452 | when gdb is started.", &cmdlist); | |
3453 | #else | |
3454 | /* Punt file name, we can't help it easily. */ | |
3455 | c = add_cmd ("source", class_support, source_command, | |
3456 | "Read commands from a file named FILE.\n\ | |
3457 | Note that the file \".gdbinit\" is read automatically in this way\n\ | |
3458 | when gdb is started.", &cmdlist); | |
3459 | #endif | |
3460 | c->completer = filename_completer; | |
3461 | ||
3462 | add_com ("quit", class_support, quit_command, "Exit gdb."); | |
3463 | add_com ("help", class_support, help_command, "Print list of commands."); | |
3464 | add_com_alias ("q", "quit", class_support, 1); | |
3465 | add_com_alias ("h", "help", class_support, 1); | |
3466 | ||
3467 | ||
3468 | c = add_set_cmd ("verbose", class_support, var_boolean, (char *)&info_verbose, | |
3469 | "Set ", | |
3470 | &setlist), | |
3471 | add_show_from_set (c, &showlist); | |
3472 | c->function.sfunc = set_verbose; | |
3473 | set_verbose (NULL, 0, c); | |
e52bfe0c | 3474 | |
172559ec JK |
3475 | add_show_from_set |
3476 | (add_set_cmd ("editing", class_support, var_boolean, (char *)&command_editing_p, | |
3477 | "Set editing of command lines as they are typed.\n\ | |
3478 | Use \"on\" to enable to enable the editing, and \"off\" to disable it.\n\ | |
3479 | Without an argument, command line editing is enabled. To edit, use\n\ | |
3480 | EMACS-like or VI-like commands like control-P or ESC.", &setlist), | |
3481 | &showlist); | |
3482 | ||
3483 | add_prefix_cmd ("history", class_support, set_history, | |
3484 | "Generic command for setting command history parameters.", | |
3485 | &sethistlist, "set history ", 0, &setlist); | |
3486 | add_prefix_cmd ("history", class_support, show_history, | |
3487 | "Generic command for showing command history parameters.", | |
3488 | &showhistlist, "show history ", 0, &showlist); | |
3489 | ||
3490 | add_show_from_set | |
3491 | (add_set_cmd ("expansion", no_class, var_boolean, (char *)&history_expansion_p, | |
3492 | "Set history expansion on command input.\n\ | |
3493 | Without an argument, history expansion is enabled.", &sethistlist), | |
3494 | &showhistlist); | |
3495 | ||
3496 | add_show_from_set | |
3497 | (add_set_cmd ("save", no_class, var_boolean, (char *)&write_history_p, | |
3498 | "Set saving of the history record on exit.\n\ | |
3499 | Use \"on\" to enable to enable the saving, and \"off\" to disable it.\n\ | |
3500 | Without an argument, saving is enabled.", &sethistlist), | |
3501 | &showhistlist); | |
3502 | ||
3503 | c = add_set_cmd ("size", no_class, var_integer, (char *)&history_size, | |
3504 | "Set the size of the command history, \n\ | |
3505 | ie. the number of previous commands to keep a record of.", &sethistlist); | |
3506 | add_show_from_set (c, &showhistlist); | |
3507 | c->function.sfunc = set_history_size_command; | |
3508 | ||
3509 | add_show_from_set | |
3510 | (add_set_cmd ("filename", no_class, var_filename, (char *)&history_filename, | |
3511 | "Set the filename in which to record the command history\n\ | |
3512 | (the list of previous commands of which a record is kept).", &sethistlist), | |
3513 | &showhistlist); | |
3514 | ||
3515 | add_show_from_set | |
3516 | (add_set_cmd ("confirm", class_support, var_boolean, | |
3517 | (char *)&caution, | |
3518 | "Set whether to confirm potentially dangerous operations.", | |
3519 | &setlist), | |
3520 | &showlist); | |
3521 | ||
3522 | add_prefix_cmd ("info", class_info, info_command, | |
3523 | "Generic command for showing things about the program being debugged.", | |
3524 | &infolist, "info ", 0, &cmdlist); | |
3525 | add_com_alias ("i", "info", class_info, 1); | |
3526 | ||
3527 | add_com ("complete", class_obscure, complete_command, | |
3528 | "List the completions for the rest of the line as a command."); | |
3529 | ||
3530 | add_prefix_cmd ("show", class_info, show_command, | |
3531 | "Generic command for showing things about the debugger.", | |
3532 | &showlist, "show ", 0, &cmdlist); | |
3533 | /* Another way to get at the same thing. */ | |
3534 | add_info ("set", show_command, "Show all GDB settings."); | |
3535 | ||
3536 | add_cmd ("commands", no_class, show_commands, | |
943b7032 | 3537 | "Show the history of commands you typed.\n\ |
172559ec JK |
3538 | You can supply a command number to start with, or a `+' to start after\n\ |
3539 | the previous command number shown.", | |
3540 | &showlist); | |
3541 | ||
3542 | add_cmd ("version", no_class, show_version, | |
3543 | "Show what version of GDB this is.", &showlist); | |
3544 | ||
e52bfe0c JL |
3545 | add_com ("while", class_support, while_command, |
3546 | "Execute nested commands WHILE the conditional expression is non zero.\n\ | |
943b7032 PS |
3547 | The conditional expression must follow the word `while' and must in turn be\n\ |
3548 | followed by a new line. The nested commands must be entered one per line,\n\ | |
e52bfe0c JL |
3549 | and should be terminated by the word `end'."); |
3550 | ||
3551 | add_com ("if", class_support, if_command, | |
3552 | "Execute nested commands once IF the conditional expression is non zero.\n\ | |
943b7032 PS |
3553 | The conditional expression must follow the word `if' and must in turn be\n\ |
3554 | followed by a new line. The nested commands must be entered one per line,\n\ | |
3555 | and should be terminated by the word 'else' or `end'. If an else clause\n\ | |
e52bfe0c JL |
3556 | is used, the same rules apply to its nested commands as to the first ones."); |
3557 | ||
172559ec JK |
3558 | /* If target is open when baud changes, it doesn't take effect until the |
3559 | next open (I think, not sure). */ | |
3560 | add_show_from_set (add_set_cmd ("remotebaud", no_class, | |
3561 | var_zinteger, (char *)&baud_rate, | |
3562 | "Set baud rate for remote serial I/O.\n\ | |
3563 | This value is used to set the speed of the serial port when debugging\n\ | |
3564 | using remote targets.", &setlist), | |
3565 | &showlist); | |
3566 | ||
3567 | add_show_from_set ( | |
3568 | add_set_cmd ("remotedebug", no_class, var_zinteger, (char *)&remote_debug, | |
3569 | "Set debugging of remote protocol.\n\ | |
3570 | When enabled, each packet sent or received with the remote target\n\ | |
3571 | is displayed.", &setlist), | |
3572 | &showlist); | |
3573 | } |