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