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