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