IA-64 changes
[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 }
1890 /* Like emacs, don't complete on old versions. Especially useful
c5aa993b 1891 in the "source" command. */
9e0b60a8
JM
1892 if (p[strlen (p) - 1] == '~')
1893 continue;
1894
1895 {
1896 char *q;
1897 if (word == text)
1898 /* Return exactly p. */
1899 return_val[return_val_used++] = p;
1900 else if (word > text)
1901 {
1902 /* Return some portion of p. */
1903 q = xmalloc (strlen (p) + 5);
1904 strcpy (q, p + (word - text));
1905 return_val[return_val_used++] = q;
1906 free (p);
1907 }
1908 else
1909 {
1910 /* Return some of TEXT plus p. */
1911 q = xmalloc (strlen (p) + (text - word) + 5);
1912 strncpy (q, word, text - word);
1913 q[text - word] = '\0';
1914 strcat (q, p);
1915 return_val[return_val_used++] = q;
1916 free (p);
1917 }
1918 }
1919 subsequent_name = 1;
1920 }
1921#if 0
1922 /* There is no way to do this just long enough to affect quote inserting
1923 without also affecting the next completion. This should be fixed in
1924 readline. FIXME. */
1925 /* Insure that readline does the right thing
1926 with respect to inserting quotes. */
1927 rl_completer_word_break_characters = "";
1928#endif
1929 return return_val;
1930}
1931
1932/* Here are some useful test cases for completion. FIXME: These should
1933 be put in the test suite. They should be tested with both M-? and TAB.
1934
1935 "show output-" "radix"
1936 "show output" "-radix"
1937 "p" ambiguous (commands starting with p--path, print, printf, etc.)
1938 "p " ambiguous (all symbols)
1939 "info t foo" no completions
1940 "info t " no completions
1941 "info t" ambiguous ("info target", "info terminal", etc.)
1942 "info ajksdlfk" no completions
1943 "info ajksdlfk " no completions
1944 "info" " "
1945 "info " ambiguous (all info commands)
1946 "p \"a" no completions (string constant)
1947 "p 'a" ambiguous (all symbols starting with a)
1948 "p b-a" ambiguous (all symbols starting with a)
1949 "p b-" ambiguous (all symbols)
1950 "file Make" "file" (word break hard to screw up here)
1951 "file ../gdb.stabs/we" "ird" (needs to not break word at slash)
c5aa993b 1952 */
9e0b60a8
JM
1953
1954/* Generate completions one by one for the completer. Each time we are
1955 called return another potential completion to the caller.
1956 line_completion just completes on commands or passes the buck to the
1957 command's completer function, the stuff specific to symbol completion
1958 is in make_symbol_completion_list.
1959
1960 TEXT is the caller's idea of the "word" we are looking at.
1961
1962 MATCHES is the number of matches that have currently been collected from
1963 calling this completion function. When zero, then we need to initialize,
1964 otherwise the initialization has already taken place and we can just
1965 return the next potential completion string.
1966
1967 LINE_BUFFER is available to be looked at; it contains the entire text
1968 of the line. POINT is the offset in that line of the cursor. You
1969 should pretend that the line ends at POINT.
1970
1971 Returns NULL if there are no more completions, else a pointer to a string
1972 which is a possible completion, it is the caller's responsibility to
1973 free the string. */
1974
1975static char *
1976line_completion_function (text, matches, line_buffer, point)
1977 char *text;
1978 int matches;
1979 char *line_buffer;
1980 int point;
1981{
c5aa993b
JM
1982 static char **list = (char **) NULL; /* Cache of completions */
1983 static int index; /* Next cached completion */
9e0b60a8
JM
1984 char *output = NULL;
1985 char *tmp_command, *p;
1986 /* Pointer within tmp_command which corresponds to text. */
1987 char *word;
1988 struct cmd_list_element *c, *result_list;
1989
1990 if (matches == 0)
1991 {
1992 /* The caller is beginning to accumulate a new set of completions, so
c5aa993b
JM
1993 we need to find all of them now, and cache them for returning one at
1994 a time on future calls. */
9e0b60a8
JM
1995
1996 if (list)
1997 {
1998 /* Free the storage used by LIST, but not by the strings inside.
1999 This is because rl_complete_internal () frees the strings. */
c5aa993b 2000 free ((PTR) list);
9e0b60a8
JM
2001 }
2002 list = 0;
2003 index = 0;
2004
2005 /* Choose the default set of word break characters to break completions.
c5aa993b
JM
2006 If we later find out that we are doing completions on command strings
2007 (as opposed to strings supplied by the individual command completer
2008 functions, which can be any string) then we will switch to the
2009 special word break set for command strings, which leaves out the
2010 '-' character used in some commands. */
9e0b60a8
JM
2011
2012 rl_completer_word_break_characters =
c5aa993b 2013 gdb_completer_word_break_characters;
9e0b60a8
JM
2014
2015 /* Decide whether to complete on a list of gdb commands or on symbols. */
2016 tmp_command = (char *) alloca (point + 1);
2017 p = tmp_command;
2018
2019 strncpy (tmp_command, line_buffer, point);
2020 tmp_command[point] = '\0';
2021 /* Since text always contains some number of characters leading up
c5aa993b
JM
2022 to point, we can find the equivalent position in tmp_command
2023 by subtracting that many characters from the end of tmp_command. */
9e0b60a8
JM
2024 word = tmp_command + point - strlen (text);
2025
2026 if (point == 0)
2027 {
2028 /* An empty line we want to consider ambiguous; that is, it
2029 could be any command. */
2030 c = (struct cmd_list_element *) -1;
2031 result_list = 0;
2032 }
2033 else
2034 {
2035 c = lookup_cmd_1 (&p, cmdlist, &result_list, 1);
2036 }
2037
2038 /* Move p up to the next interesting thing. */
2039 while (*p == ' ' || *p == '\t')
2040 {
2041 p++;
2042 }
2043
2044 if (!c)
2045 {
2046 /* It is an unrecognized command. So there are no
2047 possible completions. */
2048 list = NULL;
2049 }
2050 else if (c == (struct cmd_list_element *) -1)
2051 {
2052 char *q;
2053
2054 /* lookup_cmd_1 advances p up to the first ambiguous thing, but
2055 doesn't advance over that thing itself. Do so now. */
2056 q = p;
2057 while (*q && (isalnum (*q) || *q == '-' || *q == '_'))
2058 ++q;
2059 if (q != tmp_command + point)
2060 {
2061 /* There is something beyond the ambiguous
c5aa993b
JM
2062 command, so there are no possible completions. For
2063 example, "info t " or "info t foo" does not complete
2064 to anything, because "info t" can be "info target" or
2065 "info terminal". */
9e0b60a8
JM
2066 list = NULL;
2067 }
2068 else
2069 {
2070 /* We're trying to complete on the command which was ambiguous.
c5aa993b 2071 This we can deal with. */
9e0b60a8
JM
2072 if (result_list)
2073 {
2074 list = complete_on_cmdlist (*result_list->prefixlist, p,
2075 word);
2076 }
2077 else
2078 {
2079 list = complete_on_cmdlist (cmdlist, p, word);
2080 }
2081 /* Insure that readline does the right thing with respect to
c5aa993b 2082 inserting quotes. */
9e0b60a8
JM
2083 rl_completer_word_break_characters =
2084 gdb_completer_command_word_break_characters;
2085 }
2086 }
2087 else
2088 {
2089 /* We've recognized a full command. */
2090
2091 if (p == tmp_command + point)
2092 {
2093 /* There is no non-whitespace in the line beyond the command. */
2094
2095 if (p[-1] == ' ' || p[-1] == '\t')
2096 {
2097 /* The command is followed by whitespace; we need to complete
2098 on whatever comes after command. */
2099 if (c->prefixlist)
2100 {
2101 /* It is a prefix command; what comes after it is
c5aa993b 2102 a subcommand (e.g. "info "). */
9e0b60a8
JM
2103 list = complete_on_cmdlist (*c->prefixlist, p, word);
2104
2105 /* Insure that readline does the right thing
c5aa993b 2106 with respect to inserting quotes. */
9e0b60a8
JM
2107 rl_completer_word_break_characters =
2108 gdb_completer_command_word_break_characters;
2109 }
2110 else if (c->enums)
2111 {
2112 list = complete_on_enum (c->enums, p, word);
2113 rl_completer_word_break_characters =
2114 gdb_completer_command_word_break_characters;
2115 }
2116 else
2117 {
2118 /* It is a normal command; what comes after it is
c5aa993b 2119 completed by the command's completer function. */
9e0b60a8
JM
2120 list = (*c->completer) (p, word);
2121 }
2122 }
2123 else
2124 {
2125 /* The command is not followed by whitespace; we need to
2126 complete on the command itself. e.g. "p" which is a
2127 command itself but also can complete to "print", "ptype"
2128 etc. */
2129 char *q;
2130
2131 /* Find the command we are completing on. */
2132 q = p;
2133 while (q > tmp_command)
2134 {
2135 if (isalnum (q[-1]) || q[-1] == '-' || q[-1] == '_')
2136 --q;
2137 else
2138 break;
2139 }
2140
2141 list = complete_on_cmdlist (result_list, q, word);
2142
2143 /* Insure that readline does the right thing
2144 with respect to inserting quotes. */
2145 rl_completer_word_break_characters =
2146 gdb_completer_command_word_break_characters;
2147 }
2148 }
2149 else
2150 {
2151 /* There is non-whitespace beyond the command. */
2152
2153 if (c->prefixlist && !c->allow_unknown)
2154 {
2155 /* It is an unrecognized subcommand of a prefix command,
2156 e.g. "info adsfkdj". */
2157 list = NULL;
2158 }
2159 else if (c->enums)
2160 {
2161 list = complete_on_enum (c->enums, p, word);
2162 }
2163 else
2164 {
2165 /* It is a normal command. */
2166 list = (*c->completer) (p, word);
2167 }
2168 }
2169 }
2170 }
2171
2172 /* If we found a list of potential completions during initialization then
2173 dole them out one at a time. The vector of completions is NULL
2174 terminated, so after returning the last one, return NULL (and continue
2175 to do so) each time we are called after that, until a new list is
2176 available. */
2177
2178 if (list)
2179 {
2180 output = list[index];
2181 if (output)
2182 {
2183 index++;
2184 }
2185 }
2186
2187#if 0
2188 /* Can't do this because readline hasn't yet checked the word breaks
2189 for figuring out whether to insert a quote. */
2190 if (output == NULL)
2191 /* Make sure the word break characters are set back to normal for the
2192 next time that readline tries to complete something. */
2193 rl_completer_word_break_characters =
2194 gdb_completer_word_break_characters;
2195#endif
2196
2197 return (output);
2198}
2199
2200/* Line completion interface function for readline. */
2201
2202static char *
2203readline_line_completion_function (text, matches)
2204 char *text;
2205 int matches;
2206{
2207 return line_completion_function (text, matches, rl_line_buffer, rl_point);
2208}
2209
2210/* Skip over a possibly quoted word (as defined by the quote characters
2211 and word break characters the completer uses). Returns pointer to the
2212 location after the "word". */
2213
2214char *
2215skip_quoted (str)
2216 char *str;
2217{
2218 char quote_char = '\0';
2219 char *scan;
2220
2221 for (scan = str; *scan != '\0'; scan++)
2222 {
2223 if (quote_char != '\0')
2224 {
2225 /* Ignore everything until the matching close quote char */
2226 if (*scan == quote_char)
2227 {
2228 /* Found matching close quote. */
2229 scan++;
2230 break;
2231 }
2232 }
2233 else if (strchr (gdb_completer_quote_characters, *scan))
2234 {
2235 /* Found start of a quoted string. */
2236 quote_char = *scan;
2237 }
2238 else if (strchr (gdb_completer_word_break_characters, *scan))
2239 {
2240 break;
2241 }
2242 }
2243 return (scan);
2244}
9e0b60a8 2245\f
c5aa993b 2246
9e0b60a8
JM
2247#ifdef STOP_SIGNAL
2248static void
2249stop_sig (signo)
c5aa993b 2250 int signo;
9e0b60a8
JM
2251{
2252#if STOP_SIGNAL == SIGTSTP
2253 signal (SIGTSTP, SIG_DFL);
2254 sigsetmask (0);
2255 kill (getpid (), SIGTSTP);
2256 signal (SIGTSTP, stop_sig);
2257#else
2258 signal (STOP_SIGNAL, stop_sig);
2259#endif
2260 printf_unfiltered ("%s", get_prompt ());
2261 gdb_flush (gdb_stdout);
2262
2263 /* Forget about any previous command -- null line now will do nothing. */
2264 dont_repeat ();
2265}
2266#endif /* STOP_SIGNAL */
2267
2268/* Initialize signal handlers. */
2269static void
2270do_nothing (signo)
c5aa993b 2271 int signo;
9e0b60a8
JM
2272{
2273 /* Under System V the default disposition of a signal is reinstated after
2274 the signal is caught and delivered to an application process. On such
2275 systems one must restore the replacement signal handler if one wishes
2276 to continue handling the signal in one's program. On BSD systems this
2277 is not needed but it is harmless, and it simplifies the code to just do
2278 it unconditionally. */
2279 signal (signo, do_nothing);
2280}
2281
2282static void
2283init_signals ()
2284{
2285 signal (SIGINT, request_quit);
2286
2287 /* If SIGTRAP was set to SIG_IGN, then the SIG_IGN will get passed
2288 to the inferior and breakpoints will be ignored. */
2289#ifdef SIGTRAP
2290 signal (SIGTRAP, SIG_DFL);
2291#endif
2292
2293 /* If we initialize SIGQUIT to SIG_IGN, then the SIG_IGN will get
2294 passed to the inferior, which we don't want. It would be
2295 possible to do a "signal (SIGQUIT, SIG_DFL)" after we fork, but
2296 on BSD4.3 systems using vfork, that can affect the
2297 GDB process as well as the inferior (the signal handling tables
2298 might be in memory, shared between the two). Since we establish
2299 a handler for SIGQUIT, when we call exec it will set the signal
2300 to SIG_DFL for us. */
2301 signal (SIGQUIT, do_nothing);
2302#ifdef SIGHUP
2303 if (signal (SIGHUP, do_nothing) != SIG_IGN)
2304 signal (SIGHUP, disconnect);
2305#endif
2306 signal (SIGFPE, float_handler);
2307
2308#if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
2309 signal (SIGWINCH, SIGWINCH_HANDLER);
2310#endif
2311}
2312\f
2313/* Read one line from the command input stream `instream'
2314 into the local static buffer `linebuffer' (whose current length
2315 is `linelength').
2316 The buffer is made bigger as necessary.
2317 Returns the address of the start of the line.
2318
2319 NULL is returned for end of file.
2320
2321 *If* the instream == stdin & stdin is a terminal, the line read
2322 is copied into the file line saver (global var char *line,
2323 length linesize) so that it can be duplicated.
2324
2325 This routine either uses fancy command line editing or
2326 simple input as the user has requested. */
2327
2328char *
2329command_line_input (prompt_arg, repeat, annotation_suffix)
2330 char *prompt_arg;
2331 int repeat;
2332 char *annotation_suffix;
2333{
2334 static char *linebuffer = 0;
2335 static unsigned linelength = 0;
2336 register char *p;
2337 char *p1;
2338 char *rl;
2339 char *local_prompt = prompt_arg;
2340 char *nline;
2341 char got_eof = 0;
2342
2343 /* The annotation suffix must be non-NULL. */
2344 if (annotation_suffix == NULL)
2345 annotation_suffix = "";
2346
2347 if (annotation_level > 1 && instream == stdin)
2348 {
2349 local_prompt = alloca ((prompt_arg == NULL ? 0 : strlen (prompt_arg))
2350 + strlen (annotation_suffix) + 40);
2351 if (prompt_arg == NULL)
2352 local_prompt[0] = '\0';
2353 else
2354 strcpy (local_prompt, prompt_arg);
2355 strcat (local_prompt, "\n\032\032");
2356 strcat (local_prompt, annotation_suffix);
2357 strcat (local_prompt, "\n");
2358 }
2359
2360 if (linebuffer == 0)
2361 {
2362 linelength = 80;
2363 linebuffer = (char *) xmalloc (linelength);
2364 }
2365
2366 p = linebuffer;
2367
2368 /* Control-C quits instantly if typed while in this loop
2369 since it should not wait until the user types a newline. */
2370 immediate_quit++;
2371#ifdef STOP_SIGNAL
2372 if (job_control)
2373 {
6426a772 2374 if (event_loop_p)
9e0b60a8
JM
2375 signal (STOP_SIGNAL, handle_stop_sig);
2376 else
2377 signal (STOP_SIGNAL, stop_sig);
2378 }
2379#endif
2380
2381 while (1)
2382 {
2383 /* Make sure that all output has been output. Some machines may let
c5aa993b 2384 you get away with leaving out some of the gdb_flush, but not all. */
9e0b60a8
JM
2385 wrap_here ("");
2386 gdb_flush (gdb_stdout);
2387 gdb_flush (gdb_stderr);
2388
2389 if (source_file_name != NULL)
2390 {
2391 ++source_line_number;
2392 sprintf (source_error,
2393 "%s%s:%d: Error in sourced command file:\n",
2394 source_pre_error,
2395 source_file_name,
2396 source_line_number);
2397 error_pre_print = source_error;
2398 }
2399
2400 if (annotation_level > 1 && instream == stdin)
2401 {
2402 printf_unfiltered ("\n\032\032pre-");
2403 printf_unfiltered (annotation_suffix);
2404 printf_unfiltered ("\n");
2405 }
2406
2407 /* Don't use fancy stuff if not talking to stdin. */
2408 if (readline_hook && instream == NULL)
2409 {
2410 rl = (*readline_hook) (local_prompt);
2411 }
2412 else if (command_editing_p && instream == stdin && ISATTY (instream))
2413 {
2414 rl = readline (local_prompt);
2415 }
2416 else
2417 {
2418 rl = gdb_readline (local_prompt);
2419 }
2420
2421 if (annotation_level > 1 && instream == stdin)
2422 {
2423 printf_unfiltered ("\n\032\032post-");
2424 printf_unfiltered (annotation_suffix);
2425 printf_unfiltered ("\n");
2426 }
2427
2428 if (!rl || rl == (char *) EOF)
2429 {
2430 got_eof = 1;
2431 break;
2432 }
c5aa993b 2433 if (strlen (rl) + 1 + (p - linebuffer) > linelength)
9e0b60a8 2434 {
c5aa993b 2435 linelength = strlen (rl) + 1 + (p - linebuffer);
9e0b60a8
JM
2436 nline = (char *) xrealloc (linebuffer, linelength);
2437 p += nline - linebuffer;
2438 linebuffer = nline;
2439 }
2440 p1 = rl;
2441 /* Copy line. Don't copy null at end. (Leaves line alone
2442 if this was just a newline) */
2443 while (*p1)
2444 *p++ = *p1++;
2445
c5aa993b 2446 free (rl); /* Allocated in readline. */
9e0b60a8
JM
2447
2448 if (p == linebuffer || *(p - 1) != '\\')
2449 break;
2450
2451 p--; /* Put on top of '\'. */
2452 local_prompt = (char *) 0;
c5aa993b 2453 }
9e0b60a8
JM
2454
2455#ifdef STOP_SIGNAL
2456 if (job_control)
2457 signal (STOP_SIGNAL, SIG_DFL);
2458#endif
2459 immediate_quit--;
2460
2461 if (got_eof)
2462 return NULL;
2463
2464#define SERVER_COMMAND_LENGTH 7
2465 server_command =
2466 (p - linebuffer > SERVER_COMMAND_LENGTH)
c5aa993b 2467 && STREQN (linebuffer, "server ", SERVER_COMMAND_LENGTH);
9e0b60a8
JM
2468 if (server_command)
2469 {
2470 /* Note that we don't set `line'. Between this and the check in
c5aa993b
JM
2471 dont_repeat, this insures that repeating will still do the
2472 right thing. */
9e0b60a8
JM
2473 *p = '\0';
2474 return linebuffer + SERVER_COMMAND_LENGTH;
2475 }
2476
2477 /* Do history expansion if that is wished. */
2478 if (history_expansion_p && instream == stdin
2479 && ISATTY (instream))
2480 {
2481 char *history_value;
2482 int expanded;
2483
2484 *p = '\0'; /* Insert null now. */
2485 expanded = history_expand (linebuffer, &history_value);
2486 if (expanded)
2487 {
2488 /* Print the changes. */
2489 printf_unfiltered ("%s\n", history_value);
2490
2491 /* If there was an error, call this function again. */
2492 if (expanded < 0)
2493 {
2494 free (history_value);
2495 return command_line_input (prompt_arg, repeat, annotation_suffix);
2496 }
2497 if (strlen (history_value) > linelength)
2498 {
2499 linelength = strlen (history_value) + 1;
2500 linebuffer = (char *) xrealloc (linebuffer, linelength);
2501 }
2502 strcpy (linebuffer, history_value);
c5aa993b 2503 p = linebuffer + strlen (linebuffer);
9e0b60a8
JM
2504 free (history_value);
2505 }
2506 }
2507
2508 /* If we just got an empty line, and that is supposed
2509 to repeat the previous command, return the value in the
2510 global buffer. */
2511 if (repeat && p == linebuffer)
2512 return line;
c5aa993b 2513 for (p1 = linebuffer; *p1 == ' ' || *p1 == '\t'; p1++);
9e0b60a8
JM
2514 if (repeat && !*p1)
2515 return line;
2516
2517 *p = 0;
2518
2519 /* Add line to history if appropriate. */
2520 if (instream == stdin
2521 && ISATTY (stdin) && *linebuffer)
2522 add_history (linebuffer);
2523
2524 /* Note: lines consisting solely of comments are added to the command
2525 history. This is useful when you type a command, and then
2526 realize you don't want to execute it quite yet. You can comment
2527 out the command and then later fetch it from the value history
2528 and remove the '#'. The kill ring is probably better, but some
2529 people are in the habit of commenting things out. */
2530 if (*p1 == '#')
c5aa993b 2531 *p1 = '\0'; /* Found a comment. */
9e0b60a8
JM
2532
2533 /* Save into global buffer if appropriate. */
2534 if (repeat)
2535 {
2536 if (linelength > linesize)
2537 {
2538 line = xrealloc (line, linelength);
2539 linesize = linelength;
2540 }
2541 strcpy (line, linebuffer);
2542 return line;
2543 }
2544
2545 return linebuffer;
2546}
2547\f
2548
2549/* Expand the body_list of COMMAND so that it can hold NEW_LENGTH
2550 code bodies. This is typically used when we encounter an "else"
2551 clause for an "if" command. */
2552
2553static void
2554realloc_body_list (command, new_length)
2555 struct command_line *command;
2556 int new_length;
2557{
2558 int n;
2559 struct command_line **body_list;
2560
2561 n = command->body_count;
2562
2563 /* Nothing to do? */
2564 if (new_length <= n)
2565 return;
2566
2567 body_list = (struct command_line **)
2568 xmalloc (sizeof (struct command_line *) * new_length);
2569
2570 memcpy (body_list, command->body_list, sizeof (struct command_line *) * n);
2571
2572 free (command->body_list);
2573 command->body_list = body_list;
2574 command->body_count = new_length;
2575}
2576
2577/* Read one line from the input stream. If the command is an "else" or
2578 "end", return such an indication to the caller. */
2579
2580static enum misc_command_type
2581read_next_line (command)
2582 struct command_line **command;
2583{
2584 char *p, *p1, *prompt_ptr, control_prompt[256];
2585 int i = 0;
2586
2587 if (control_level >= 254)
2588 error ("Control nesting too deep!\n");
2589
2590 /* Set a prompt based on the nesting of the control commands. */
2591 if (instream == stdin || (instream == 0 && readline_hook != NULL))
2592 {
2593 for (i = 0; i < control_level; i++)
2594 control_prompt[i] = ' ';
2595 control_prompt[i] = '>';
c5aa993b
JM
2596 control_prompt[i + 1] = '\0';
2597 prompt_ptr = (char *) &control_prompt[0];
9e0b60a8
JM
2598 }
2599 else
2600 prompt_ptr = NULL;
2601
2602 p = command_line_input (prompt_ptr, instream == stdin, "commands");
2603
2604 /* Not sure what to do here. */
2605 if (p == NULL)
2606 return end_command;
2607
2608 /* Strip leading and trailing whitespace. */
2609 while (*p == ' ' || *p == '\t')
2610 p++;
2611
2612 p1 = p + strlen (p);
2613 while (p1 != p && (p1[-1] == ' ' || p1[-1] == '\t'))
2614 p1--;
2615
2616 /* Blanks and comments don't really do anything, but we need to
2617 distinguish them from else, end and other commands which can be
2618 executed. */
2619 if (p1 == p || p[0] == '#')
2620 return nop_command;
c5aa993b 2621
9e0b60a8
JM
2622 /* Is this the end of a simple, while, or if control structure? */
2623 if (p1 - p == 3 && !strncmp (p, "end", 3))
2624 return end_command;
2625
2626 /* Is the else clause of an if control structure? */
2627 if (p1 - p == 4 && !strncmp (p, "else", 4))
2628 return else_command;
2629
2630 /* Check for while, if, break, continue, etc and build a new command
2631 line structure for them. */
2632 if (p1 - p > 5 && !strncmp (p, "while", 5))
2633 *command = build_command_line (while_control, p + 6);
2634 else if (p1 - p > 2 && !strncmp (p, "if", 2))
2635 *command = build_command_line (if_control, p + 3);
2636 else if (p1 - p == 10 && !strncmp (p, "loop_break", 10))
2637 {
2638 *command = (struct command_line *)
2639 xmalloc (sizeof (struct command_line));
2640 (*command)->next = NULL;
2641 (*command)->line = NULL;
2642 (*command)->control_type = break_control;
2643 (*command)->body_count = 0;
2644 (*command)->body_list = NULL;
2645 }
2646 else if (p1 - p == 13 && !strncmp (p, "loop_continue", 13))
2647 {
2648 *command = (struct command_line *)
2649 xmalloc (sizeof (struct command_line));
2650 (*command)->next = NULL;
2651 (*command)->line = NULL;
2652 (*command)->control_type = continue_control;
2653 (*command)->body_count = 0;
2654 (*command)->body_list = NULL;
2655 }
2656 else
2657 {
2658 /* A normal command. */
2659 *command = (struct command_line *)
2660 xmalloc (sizeof (struct command_line));
2661 (*command)->next = NULL;
2662 (*command)->line = savestring (p, p1 - p);
2663 (*command)->control_type = simple_control;
2664 (*command)->body_count = 0;
2665 (*command)->body_list = NULL;
c5aa993b 2666 }
9e0b60a8
JM
2667
2668 /* Nothing special. */
2669 return ok_command;
2670}
2671
2672/* Recursively read in the control structures and create a command_line
2673 structure from them.
2674
2675 The parent_control parameter is the control structure in which the
2676 following commands are nested. */
2677
2678static enum command_control_type
2679recurse_read_control_structure (current_cmd)
2680 struct command_line *current_cmd;
2681{
2682 int current_body, i;
2683 enum misc_command_type val;
2684 enum command_control_type ret;
2685 struct command_line **body_ptr, *child_tail, *next;
2686
2687 child_tail = NULL;
2688 current_body = 1;
2689
2690 /* Sanity checks. */
2691 if (current_cmd->control_type == simple_control)
2692 {
2693 error ("Recursed on a simple control type\n");
2694 return invalid_control;
2695 }
2696
2697 if (current_body > current_cmd->body_count)
2698 {
2699 error ("Allocated body is smaller than this command type needs\n");
2700 return invalid_control;
2701 }
2702
2703 /* Read lines from the input stream and build control structures. */
2704 while (1)
2705 {
2706 dont_repeat ();
2707
2708 next = NULL;
2709 val = read_next_line (&next);
2710
2711 /* Just skip blanks and comments. */
2712 if (val == nop_command)
2713 continue;
2714
2715 if (val == end_command)
2716 {
2717 if (current_cmd->control_type == while_control
2718 || current_cmd->control_type == if_control)
2719 {
2720 /* Success reading an entire control structure. */
2721 ret = simple_control;
2722 break;
2723 }
2724 else
2725 {
2726 ret = invalid_control;
2727 break;
2728 }
2729 }
c5aa993b 2730
9e0b60a8
JM
2731 /* Not the end of a control structure. */
2732 if (val == else_command)
2733 {
2734 if (current_cmd->control_type == if_control
2735 && current_body == 1)
2736 {
2737 realloc_body_list (current_cmd, 2);
2738 current_body = 2;
2739 child_tail = NULL;
2740 continue;
2741 }
2742 else
2743 {
2744 ret = invalid_control;
2745 break;
2746 }
2747 }
2748
2749 if (child_tail)
2750 {
2751 child_tail->next = next;
2752 }
2753 else
2754 {
2755 body_ptr = current_cmd->body_list;
2756 for (i = 1; i < current_body; i++)
2757 body_ptr++;
2758
2759 *body_ptr = next;
2760
2761 }
2762
2763 child_tail = next;
2764
2765 /* If the latest line is another control structure, then recurse
c5aa993b 2766 on it. */
9e0b60a8
JM
2767 if (next->control_type == while_control
2768 || next->control_type == if_control)
2769 {
2770 control_level++;
2771 ret = recurse_read_control_structure (next);
2772 control_level--;
2773
2774 if (ret != simple_control)
2775 break;
2776 }
2777 }
2778
2779 dont_repeat ();
2780
2781 return ret;
2782}
2783
2784/* Read lines from the input stream and accumulate them in a chain of
2785 struct command_line's, which is then returned. For input from a
2786 terminal, the special command "end" is used to mark the end of the
2787 input, and is not included in the returned chain of commands. */
2788
2789#define END_MESSAGE "End with a line saying just \"end\"."
2790
2791struct command_line *
2792read_command_lines (prompt_arg, from_tty)
2793 char *prompt_arg;
2794 int from_tty;
2795{
2796 struct command_line *head, *tail, *next;
2797 struct cleanup *old_chain;
2798 enum command_control_type ret;
2799 enum misc_command_type val;
2800
c5aa993b 2801 control_level = 0;
9e0b60a8
JM
2802 if (readline_begin_hook)
2803 {
2804 /* Note - intentional to merge messages with no newline */
2805 (*readline_begin_hook) ("%s %s\n", prompt_arg, END_MESSAGE);
2806 }
2807 else if (from_tty && input_from_terminal_p ())
2808 {
2809 printf_unfiltered ("%s\n%s\n", prompt_arg, END_MESSAGE);
2810 gdb_flush (gdb_stdout);
2811 }
2812
2813 head = tail = NULL;
2814 old_chain = NULL;
2815
2816 while (1)
2817 {
2818 val = read_next_line (&next);
2819
2820 /* Ignore blank lines or comments. */
2821 if (val == nop_command)
2822 continue;
2823
2824 if (val == end_command)
2825 {
2826 ret = simple_control;
2827 break;
2828 }
2829
2830 if (val != ok_command)
2831 {
2832 ret = invalid_control;
2833 break;
2834 }
2835
2836 if (next->control_type == while_control
2837 || next->control_type == if_control)
2838 {
2839 control_level++;
2840 ret = recurse_read_control_structure (next);
2841 control_level--;
2842
2843 if (ret == invalid_control)
2844 break;
2845 }
c5aa993b 2846
9e0b60a8
JM
2847 if (tail)
2848 {
2849 tail->next = next;
2850 }
2851 else
2852 {
2853 head = next;
c5aa993b
JM
2854 old_chain = make_cleanup ((make_cleanup_func) free_command_lines,
2855 &head);
9e0b60a8
JM
2856 }
2857 tail = next;
2858 }
2859
2860 dont_repeat ();
2861
2862 if (head)
2863 {
2864 if (ret != invalid_control)
2865 {
2866 discard_cleanups (old_chain);
2867 }
2868 else
2869 do_cleanups (old_chain);
2870 }
2871
2872 if (readline_end_hook)
2873 {
2874 (*readline_end_hook) ();
2875 }
2876 return (head);
2877}
2878
2879/* Free a chain of struct command_line's. */
2880
2881void
2882free_command_lines (lptr)
c5aa993b 2883 struct command_line **lptr;
9e0b60a8
JM
2884{
2885 register struct command_line *l = *lptr;
2886 register struct command_line *next;
2887 struct command_line **blist;
2888 int i;
2889
2890 while (l)
2891 {
2892 if (l->body_count > 0)
2893 {
2894 blist = l->body_list;
2895 for (i = 0; i < l->body_count; i++, blist++)
2896 free_command_lines (blist);
2897 }
2898 next = l->next;
2899 free (l->line);
c5aa993b 2900 free ((PTR) l);
9e0b60a8
JM
2901 l = next;
2902 }
2903}
2904\f
2905/* Add an element to the list of info subcommands. */
2906
56382845 2907struct cmd_list_element *
9e0b60a8
JM
2908add_info (name, fun, doc)
2909 char *name;
2910 void (*fun) PARAMS ((char *, int));
2911 char *doc;
2912{
56382845 2913 return add_cmd (name, no_class, fun, doc, &infolist);
9e0b60a8
JM
2914}
2915
2916/* Add an alias to the list of info subcommands. */
2917
56382845 2918struct cmd_list_element *
9e0b60a8
JM
2919add_info_alias (name, oldname, abbrev_flag)
2920 char *name;
2921 char *oldname;
2922 int abbrev_flag;
2923{
56382845 2924 return add_alias_cmd (name, oldname, 0, abbrev_flag, &infolist);
9e0b60a8
JM
2925}
2926
2927/* The "info" command is defined as a prefix, with allow_unknown = 0.
2928 Therefore, its own definition is called only for "info" with no args. */
2929
2930/* ARGSUSED */
2931static void
2932info_command (arg, from_tty)
2933 char *arg;
2934 int from_tty;
2935{
2936 printf_unfiltered ("\"info\" must be followed by the name of an info command.\n");
2937 help_list (infolist, "info ", -1, gdb_stdout);
2938}
2939
2940/* The "complete" command is used by Emacs to implement completion. */
2941
2942/* ARGSUSED */
2943static void
2944complete_command (arg, from_tty)
2945 char *arg;
2946 int from_tty;
2947{
2948 int i;
2949 int argpoint;
2950 char *completion;
2951
2952 dont_repeat ();
2953
2954 if (arg == NULL)
2955 arg = "";
2956 argpoint = strlen (arg);
2957
2958 for (completion = line_completion_function (arg, i = 0, arg, argpoint);
2959 completion;
2960 completion = line_completion_function (arg, ++i, arg, argpoint))
2961 {
2962 printf_unfiltered ("%s\n", completion);
2963 free (completion);
2964 }
2965}
2966
2967/* The "show" command with no arguments shows all the settings. */
2968
2969/* ARGSUSED */
2970static void
2971show_command (arg, from_tty)
2972 char *arg;
2973 int from_tty;
2974{
2975 cmd_show_list (showlist, from_tty, "");
2976}
2977\f
2978/* Add an element to the list of commands. */
2979
56382845 2980struct cmd_list_element *
9e0b60a8
JM
2981add_com (name, class, fun, doc)
2982 char *name;
2983 enum command_class class;
2984 void (*fun) PARAMS ((char *, int));
2985 char *doc;
2986{
56382845 2987 return add_cmd (name, class, fun, doc, &cmdlist);
9e0b60a8
JM
2988}
2989
2990/* Add an alias or abbreviation command to the list of commands. */
2991
56382845 2992struct cmd_list_element *
9e0b60a8
JM
2993add_com_alias (name, oldname, class, abbrev_flag)
2994 char *name;
2995 char *oldname;
2996 enum command_class class;
2997 int abbrev_flag;
2998{
56382845 2999 return add_alias_cmd (name, oldname, class, abbrev_flag, &cmdlist);
9e0b60a8
JM
3000}
3001
3002void
3003error_no_arg (why)
3004 char *why;
3005{
3006 error ("Argument required (%s).", why);
3007}
3008
3009/* ARGSUSED */
3010static void
3011help_command (command, from_tty)
3012 char *command;
c5aa993b 3013 int from_tty; /* Ignored */
9e0b60a8
JM
3014{
3015 help_cmd (command, gdb_stdout);
3016}
3017\f
3018static void
3019validate_comname (comname)
3020 char *comname;
3021{
3022 register char *p;
3023
3024 if (comname == 0)
3025 error_no_arg ("name of command to define");
3026
3027 p = comname;
3028 while (*p)
3029 {
c5aa993b 3030 if (!isalnum (*p) && *p != '-' && *p != '_')
9e0b60a8
JM
3031 error ("Junk in argument list: \"%s\"", p);
3032 p++;
3033 }
3034}
3035
3036/* This is just a placeholder in the command data structures. */
3037static void
3038user_defined_command (ignore, from_tty)
3039 char *ignore;
3040 int from_tty;
3041{
3042}
3043
3044static void
3045define_command (comname, from_tty)
3046 char *comname;
3047 int from_tty;
3048{
3049 register struct command_line *cmds;
3050 register struct cmd_list_element *c, *newc, *hookc = 0;
3051 char *tem = comname;
3052 char tmpbuf[128];
3053#define HOOK_STRING "hook-"
3054#define HOOK_LEN 5
3055
3056 validate_comname (comname);
3057
3058 /* Look it up, and verify that we got an exact match. */
3059 c = lookup_cmd (&tem, cmdlist, "", -1, 1);
3060 if (c && !STREQ (comname, c->name))
3061 c = 0;
3062
3063 if (c)
3064 {
3065 if (c->class == class_user || c->class == class_alias)
3066 tem = "Redefine command \"%s\"? ";
3067 else
3068 tem = "Really redefine built-in command \"%s\"? ";
3069 if (!query (tem, c->name))
3070 error ("Command \"%s\" not redefined.", c->name);
3071 }
3072
3073 /* If this new command is a hook, then mark the command which it
3074 is hooking. Note that we allow hooking `help' commands, so that
3075 we can hook the `stop' pseudo-command. */
3076
3077 if (!strncmp (comname, HOOK_STRING, HOOK_LEN))
3078 {
3079 /* Look up cmd it hooks, and verify that we got an exact match. */
c5aa993b 3080 tem = comname + HOOK_LEN;
9e0b60a8 3081 hookc = lookup_cmd (&tem, cmdlist, "", -1, 0);
c5aa993b 3082 if (hookc && !STREQ (comname + HOOK_LEN, hookc->name))
9e0b60a8
JM
3083 hookc = 0;
3084 if (!hookc)
3085 {
3086 warning ("Your new `%s' command does not hook any existing command.",
3087 comname);
3088 if (!query ("Proceed? "))
3089 error ("Not confirmed.");
3090 }
3091 }
3092
3093 comname = savestring (comname, strlen (comname));
3094
3095 /* If the rest of the commands will be case insensitive, this one
3096 should behave in the same manner. */
3097 for (tem = comname; *tem; tem++)
c5aa993b
JM
3098 if (isupper (*tem))
3099 *tem = tolower (*tem);
9e0b60a8
JM
3100
3101 sprintf (tmpbuf, "Type commands for definition of \"%s\".", comname);
3102 cmds = read_command_lines (tmpbuf, from_tty);
3103
3104 if (c && c->class == class_user)
3105 free_command_lines (&c->user_commands);
3106
3107 newc = add_cmd (comname, class_user, user_defined_command,
c5aa993b
JM
3108 (c && c->class == class_user)
3109 ? c->doc : savestring ("User-defined.", 13), &cmdlist);
9e0b60a8
JM
3110 newc->user_commands = cmds;
3111
3112 /* If this new command is a hook, then mark both commands as being
3113 tied. */
3114 if (hookc)
3115 {
3116 hookc->hook = newc; /* Target gets hooked. */
3117 newc->hookee = hookc; /* We are marked as hooking target cmd. */
3118 }
3119}
3120
3121static void
3122document_command (comname, from_tty)
3123 char *comname;
3124 int from_tty;
3125{
3126 struct command_line *doclines;
3127 register struct cmd_list_element *c;
3128 char *tem = comname;
3129 char tmpbuf[128];
3130
3131 validate_comname (comname);
3132
3133 c = lookup_cmd (&tem, cmdlist, "", 0, 1);
3134
3135 if (c->class != class_user)
3136 error ("Command \"%s\" is built-in.", comname);
3137
3138 sprintf (tmpbuf, "Type documentation for \"%s\".", comname);
3139 doclines = read_command_lines (tmpbuf, from_tty);
3140
c5aa993b
JM
3141 if (c->doc)
3142 free (c->doc);
9e0b60a8
JM
3143
3144 {
3145 register struct command_line *cl1;
3146 register int len = 0;
3147
3148 for (cl1 = doclines; cl1; cl1 = cl1->next)
3149 len += strlen (cl1->line) + 1;
3150
3151 c->doc = (char *) xmalloc (len + 1);
3152 *c->doc = 0;
3153
3154 for (cl1 = doclines; cl1; cl1 = cl1->next)
3155 {
3156 strcat (c->doc, cl1->line);
3157 if (cl1->next)
3158 strcat (c->doc, "\n");
3159 }
3160 }
3161
3162 free_command_lines (&doclines);
3163}
3164\f
3165/* Print the GDB banner. */
3166void
3167print_gdb_version (stream)
d9fcf2fb 3168 struct ui_file *stream;
9e0b60a8
JM
3169{
3170 /* From GNU coding standards, first line is meant to be easy for a
3171 program to parse, and is just canonical program name and version
3172 number, which starts after last space. */
3173
8b93c638
JM
3174#ifdef UI_OUT
3175 /* Print it console style until a format is defined */
3176 fprintf_filtered (stream, "GNU gdb %s (UI_OUT)\n", version);
3177#else
9e0b60a8 3178 fprintf_filtered (stream, "GNU gdb %s\n", version);
8b93c638 3179#endif
9e0b60a8
JM
3180
3181 /* Second line is a copyright notice. */
3182
107b56f0 3183 fprintf_filtered (stream, "Copyright 2000 Free Software Foundation, Inc.\n");
9e0b60a8
JM
3184
3185 /* Following the copyright is a brief statement that the program is
3186 free software, that users are free to copy and change it on
3187 certain conditions, that it is covered by the GNU GPL, and that
3188 there is no warranty. */
3189
3190 fprintf_filtered (stream, "\
3191GDB is free software, covered by the GNU General Public License, and you are\n\
3192welcome to change it and/or distribute copies of it under certain conditions.\n\
3193Type \"show copying\" to see the conditions.\n\
3194There is absolutely no warranty for GDB. Type \"show warranty\" for details.\n");
3195
3196 /* After the required info we print the configuration information. */
3197
3198 fprintf_filtered (stream, "This GDB was configured as \"");
3199 if (!STREQ (host_name, target_name))
3200 {
3201 fprintf_filtered (stream, "--host=%s --target=%s", host_name, target_name);
3202 }
3203 else
3204 {
3205 fprintf_filtered (stream, "%s", host_name);
3206 }
3207 fprintf_filtered (stream, "\".");
3208}
3209
3210/* ARGSUSED */
3211static void
3212show_version (args, from_tty)
3213 char *args;
3214 int from_tty;
3215{
3216 immediate_quit++;
3217 print_gdb_version (gdb_stdout);
3218 printf_filtered ("\n");
3219 immediate_quit--;
3220}
3221\f
3222/* get_prompt: access method for the GDB prompt string. */
3223
3224#define MAX_PROMPT_SIZE 256
3225
3226/*
3227 * int get_prompt_1 (char * buf);
3228 *
3229 * Work-horse for get_prompt (called via catch_errors).
3230 * Argument is buffer to hold the formatted prompt.
3231 *
3232 * Returns: 1 for success (use formatted prompt)
3233 * 0 for failure (use gdb_prompt_string).
c5aa993b 3234 */
9e0b60a8
JM
3235
3236static int gdb_prompt_escape;
3237
3238static int
3239get_prompt_1 (formatted_prompt)
3240 char *formatted_prompt;
3241{
3242 char *local_prompt;
3243
6426a772 3244 if (event_loop_p)
9e0b60a8
JM
3245 local_prompt = PROMPT (0);
3246 else
3247 local_prompt = gdb_prompt_string;
3248
3249
3250 if (gdb_prompt_escape == 0)
3251 {
c5aa993b 3252 return 0; /* do no formatting */
9e0b60a8 3253 }
c5aa993b
JM
3254 else
3255 /* formatted prompt */
9e0b60a8 3256 {
c5aa993b 3257 char fmt[40], *promptp, *outp, *tmp;
9e0b60a8 3258 value_ptr arg_val;
c5aa993b
JM
3259 DOUBLEST doubleval;
3260 LONGEST longval;
9e0b60a8
JM
3261 CORE_ADDR addrval;
3262
3263 int i, len;
3264 struct type *arg_type, *elt_type;
3265
3266 promptp = local_prompt;
c5aa993b 3267 outp = formatted_prompt;
9e0b60a8
JM
3268
3269 while (*promptp != '\0')
3270 {
3271 int available = MAX_PROMPT_SIZE - (outp - formatted_prompt) - 1;
3272
3273 if (*promptp != gdb_prompt_escape)
3274 {
c5aa993b 3275 if (available >= 1) /* overflow protect */
9e0b60a8
JM
3276 *outp++ = *promptp++;
3277 }
3278 else
3279 {
3280 /* GDB prompt string contains escape char. Parse for arg.
c5aa993b
JM
3281 Two consecutive escape chars followed by arg followed by
3282 a comma means to insert the arg using a default format.
3283 Otherwise a printf format string may be included between
3284 the two escape chars. eg:
3285 %%foo, insert foo using default format
3286 %2.2f%foo, insert foo using "%2.2f" format
3287 A mismatch between the format string and the data type
3288 of "foo" is an error (which we don't know how to protect
3289 against). */
9e0b60a8
JM
3290
3291 fmt[0] = '\0'; /* assume null format string */
3292 if (promptp[1] == gdb_prompt_escape) /* double esc char */
3293 {
3294 promptp += 2; /* skip past two escape chars. */
3295 }
3296 else
3297 {
3298 /* extract format string from between two esc chars */
3299 i = 0;
c5aa993b
JM
3300 do
3301 {
3302 fmt[i++] = *promptp++; /* copy format string */
3303 }
3304 while (i < sizeof (fmt) - 1 &&
3305 *promptp != gdb_prompt_escape &&
3306 *promptp != '\0');
9e0b60a8
JM
3307
3308 if (*promptp != gdb_prompt_escape)
3309 error ("Syntax error at prompt position %d",
3310 promptp - local_prompt);
3311 else
3312 {
3313 promptp++; /* skip second escape char */
3314 fmt[i++] = '\0'; /* terminate the format string */
3315 }
3316 }
3317
3318 arg_val = parse_to_comma_and_eval (&promptp);
3319 if (*promptp == ',')
c5aa993b 3320 promptp++; /* skip past the comma */
9e0b60a8 3321 arg_type = check_typedef (VALUE_TYPE (arg_val));
c5aa993b 3322 switch (TYPE_CODE (arg_type))
9e0b60a8
JM
3323 {
3324 case TYPE_CODE_ARRAY:
3325 elt_type = check_typedef (TYPE_TARGET_TYPE (arg_type));
c5aa993b 3326 if (TYPE_LENGTH (arg_type) > 0 &&
9e0b60a8
JM
3327 TYPE_LENGTH (elt_type) == 1 &&
3328 TYPE_CODE (elt_type) == TYPE_CODE_INT)
3329 {
3330 int len = TYPE_LENGTH (arg_type);
3331
3332 if (VALUE_LAZY (arg_val))
3333 value_fetch_lazy (arg_val);
3334 tmp = VALUE_CONTENTS (arg_val);
3335
3336 if (len > available)
c5aa993b 3337 len = available; /* overflow protect */
9e0b60a8
JM
3338
3339 /* FIXME: how to protect GDB from crashing
c5aa993b 3340 from bad user-supplied format string? */
9e0b60a8
JM
3341 if (fmt[0] != 0)
3342 sprintf (outp, fmt, tmp);
3343 else
3344 strncpy (outp, tmp, len);
3345 outp[len] = '\0';
3346 }
3347 break;
3348 case TYPE_CODE_PTR:
3349 elt_type = check_typedef (TYPE_TARGET_TYPE (arg_type));
3350 addrval = value_as_pointer (arg_val);
3351
3352 if (TYPE_LENGTH (elt_type) == 1 &&
c5aa993b 3353 TYPE_CODE (elt_type) == TYPE_CODE_INT &&
9e0b60a8
JM
3354 addrval != 0)
3355 {
3356 /* display it as a string */
3357 char *default_fmt = "%s";
3358 char *tmp;
3359 int err = 0;
3360
3361 /* Limiting the number of bytes that the following call
c5aa993b
JM
3362 will read protects us from sprintf overflow later. */
3363 i = target_read_string (addrval, /* src */
3364 &tmp, /* dest */
3365 available, /* len */
9e0b60a8
JM
3366 &err);
3367 if (err) /* read failed */
3368 error ("%s on target_read", safe_strerror (err));
3369
3370 tmp[i] = '\0'; /* force-terminate string */
3371 /* FIXME: how to protect GDB from crashing
c5aa993b
JM
3372 from bad user-supplied format string? */
3373 sprintf (outp, fmt[0] == 0 ? default_fmt : fmt,
9e0b60a8
JM
3374 tmp);
3375 free (tmp);
3376 }
3377 else
3378 {
3379 /* display it as a pointer */
3380 char *default_fmt = "0x%x";
3381
3382 /* FIXME: how to protect GDB from crashing
c5aa993b
JM
3383 from bad user-supplied format string? */
3384 if (available >= 16 /*? */ ) /* overflow protect */
9e0b60a8
JM
3385 sprintf (outp, fmt[0] == 0 ? default_fmt : fmt,
3386 (long) addrval);
3387 }
3388 break;
3389 case TYPE_CODE_FLT:
3390 {
3391 char *default_fmt = "%g";
3392
3393 doubleval = value_as_double (arg_val);
3394 /* FIXME: how to protect GDB from crashing
3395 from bad user-supplied format string? */
c5aa993b 3396 if (available >= 16 /*? */ ) /* overflow protect */
9e0b60a8
JM
3397 sprintf (outp, fmt[0] == 0 ? default_fmt : fmt,
3398 (double) doubleval);
3399 break;
3400 }
3401 case TYPE_CODE_INT:
3402 {
3403 char *default_fmt = "%d";
3404
3405 longval = value_as_long (arg_val);
3406 /* FIXME: how to protect GDB from crashing
3407 from bad user-supplied format string? */
c5aa993b 3408 if (available >= 16 /*? */ ) /* overflow protect */
9e0b60a8
JM
3409 sprintf (outp, fmt[0] == 0 ? default_fmt : fmt,
3410 (long) longval);
3411 break;
3412 }
3413 case TYPE_CODE_BOOL:
3414 {
3415 /* no default format for bool */
3416 longval = value_as_long (arg_val);
c5aa993b 3417 if (available >= 8 /*? */ ) /* overflow protect */
9e0b60a8
JM
3418 {
3419 if (longval)
3420 strcpy (outp, "<true>");
3421 else
3422 strcpy (outp, "<false>");
3423 }
3424 break;
3425 }
3426 case TYPE_CODE_ENUM:
3427 {
3428 /* no default format for enum */
3429 longval = value_as_long (arg_val);
3430 len = TYPE_NFIELDS (arg_type);
3431 /* find enum name if possible */
3432 for (i = 0; i < len; i++)
3433 if (TYPE_FIELD_BITPOS (arg_type, i) == longval)
c5aa993b 3434 break; /* match -- end loop */
9e0b60a8
JM
3435
3436 if (i < len) /* enum name found */
3437 {
3438 char *name = TYPE_FIELD_NAME (arg_type, i);
3439
3440 strncpy (outp, name, available);
3441 /* in casel available < strlen (name), */
3442 outp[available] = '\0';
3443 }
3444 else
3445 {
c5aa993b 3446 if (available >= 16 /*? */ ) /* overflow protect */
d4f3574e 3447 sprintf (outp, "%ld", (long) longval);
9e0b60a8
JM
3448 }
3449 break;
3450 }
3451 case TYPE_CODE_VOID:
3452 *outp = '\0';
3453 break; /* void type -- no output */
3454 default:
3455 error ("bad data type at prompt position %d",
3456 promptp - local_prompt);
3457 break;
3458 }
3459 outp += strlen (outp);
3460 }
3461 }
3462 *outp++ = '\0'; /* terminate prompt string */
3463 return 1;
3464 }
3465}
3466
3467char *
3468get_prompt ()
3469{
3470 static char buf[MAX_PROMPT_SIZE];
3471
c5aa993b 3472 if (catch_errors (get_prompt_1, buf, "bad formatted prompt: ",
9e0b60a8
JM
3473 RETURN_MASK_ALL))
3474 {
c5aa993b 3475 return &buf[0]; /* successful formatted prompt */
9e0b60a8
JM
3476 }
3477 else
3478 {
3479 /* Prompt could not be formatted. */
6426a772 3480 if (event_loop_p)
9e0b60a8
JM
3481 return PROMPT (0);
3482 else
3483 return gdb_prompt_string;
3484 }
3485}
3486
3487void
3488set_prompt (s)
3489 char *s;
3490{
3491/* ??rehrauer: I don't know why this fails, since it looks as though
3492 assignments to prompt are wrapped in calls to savestring...
c5aa993b
JM
3493 if (prompt != NULL)
3494 free (prompt);
3495 */
6426a772 3496 if (event_loop_p)
9e0b60a8
JM
3497 PROMPT (0) = savestring (s, strlen (s));
3498 else
3499 gdb_prompt_string = savestring (s, strlen (s));
3500}
9e0b60a8 3501\f
c5aa993b 3502
9e0b60a8
JM
3503/* If necessary, make the user confirm that we should quit. Return
3504 non-zero if we should quit, zero if we shouldn't. */
3505
3506int
3507quit_confirm ()
3508{
3509 if (inferior_pid != 0 && target_has_execution)
3510 {
3511 char *s;
3512
3513 /* This is something of a hack. But there's no reliable way to
c5aa993b
JM
3514 see if a GUI is running. The `use_windows' variable doesn't
3515 cut it. */
9e0b60a8
JM
3516 if (init_ui_hook)
3517 s = "A debugging session is active.\nDo you still want to close the debugger?";
3518 else if (attach_flag)
3519 s = "The program is running. Quit anyway (and detach it)? ";
3520 else
3521 s = "The program is running. Exit anyway? ";
3522
c5aa993b 3523 if (!query (s))
9e0b60a8
JM
3524 return 0;
3525 }
3526
3527 return 1;
3528}
3529
3530/* Quit without asking for confirmation. */
3531
3532void
3533quit_force (args, from_tty)
3534 char *args;
3535 int from_tty;
3536{
3537 int exit_code = 0;
3538
3539 /* An optional expression may be used to cause gdb to terminate with the
3540 value of that expression. */
3541 if (args)
3542 {
3543 value_ptr val = parse_and_eval (args);
3544
3545 exit_code = (int) value_as_long (val);
3546 }
3547
3548 if (inferior_pid != 0 && target_has_execution)
3549 {
3550 if (attach_flag)
3551 target_detach (args, from_tty);
3552 else
3553 target_kill ();
3554 }
3555
3556 /* UDI wants this, to kill the TIP. */
3557 target_close (1);
3558
3559 /* Save the history information if it is appropriate to do so. */
3560 if (write_history_p && history_filename)
3561 write_history (history_filename);
3562
c5aa993b 3563 do_final_cleanups (ALL_CLEANUPS); /* Do any final cleanups before exiting */
9e0b60a8
JM
3564
3565#if defined(TUI)
3566 /* tuiDo((TuiOpaqueFuncPtr)tuiCleanUp); */
3567 /* The above does not need to be inside a tuiDo(), since
3568 * it is not manipulating the curses screen, but rather,
3569 * it is tearing it down.
3570 */
3571 if (tui_version)
c5aa993b 3572 tuiCleanUp ();
9e0b60a8
JM
3573#endif
3574
3575 exit (exit_code);
3576}
3577
3578/* Handle the quit command. */
3579
3580void
3581quit_command (args, from_tty)
3582 char *args;
3583 int from_tty;
3584{
c5aa993b 3585 if (!quit_confirm ())
9e0b60a8
JM
3586 error ("Not confirmed.");
3587 quit_force (args, from_tty);
3588}
3589
3590/* Returns whether GDB is running on a terminal and whether the user
3591 desires that questions be asked of them on that terminal. */
3592
3593int
3594input_from_terminal_p ()
3595{
3596 return gdb_has_a_terminal () && (instream == stdin) & caution;
3597}
3598\f
3599/* ARGSUSED */
3600static void
3601pwd_command (args, from_tty)
3602 char *args;
3603 int from_tty;
3604{
c5aa993b
JM
3605 if (args)
3606 error ("The \"pwd\" command does not take an argument: %s", args);
9e0b60a8
JM
3607 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
3608
3609 if (!STREQ (gdb_dirbuf, current_directory))
3610 printf_unfiltered ("Working directory %s\n (canonically %s).\n",
c5aa993b 3611 current_directory, gdb_dirbuf);
9e0b60a8
JM
3612 else
3613 printf_unfiltered ("Working directory %s.\n", current_directory);
3614}
3615
3616void
3617cd_command (dir, from_tty)
3618 char *dir;
3619 int from_tty;
3620{
3621 int len;
3622 /* Found something other than leading repetitions of "/..". */
3623 int found_real_path;
3624 char *p;
3625
3626 /* If the new directory is absolute, repeat is a no-op; if relative,
3627 repeat might be useful but is more likely to be a mistake. */
3628 dont_repeat ();
3629
3630 if (dir == 0)
3631 error_no_arg ("new working directory");
3632
3633 dir = tilde_expand (dir);
3634 make_cleanup (free, dir);
3635
3636 if (chdir (dir) < 0)
3637 perror_with_name (dir);
3638
a0b3c4fd
JM
3639#if defined(_WIN32) || defined(__MSDOS__)
3640 /* There's too much mess with DOSish names like "d:", "d:.",
3641 "d:./foo" etc. Instead of having lots of special #ifdef'ed code,
3642 simply get the canonicalized name of the current directory. */
3643 dir = getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
3644#endif
3645
9e0b60a8 3646 len = strlen (dir);
eb2f494a 3647 if (SLASH_P (dir[len - 1]))
a0b3c4fd
JM
3648 {
3649 /* Remove the trailing slash unless this is a root directory
eb2f494a
AC
3650 (including a drive letter on non-Unix systems). */
3651 if (!(len == 1) /* "/" */
a0b3c4fd 3652#if defined(_WIN32) || defined(__MSDOS__)
eb2f494a 3653 && !(!SLASH_P (*dir) && ROOTED_P (dir) && len <= 3) /* "d:/" */
a0b3c4fd
JM
3654#endif
3655 )
3656 len--;
3657 }
3658
3659 dir = savestring (dir, len);
c5aa993b 3660 if (ROOTED_P (dir))
9e0b60a8
JM
3661 current_directory = dir;
3662 else
3663 {
a0b3c4fd 3664 if (SLASH_P (current_directory[strlen (current_directory) - 1]))
9e0b60a8
JM
3665 current_directory = concat (current_directory, dir, NULL);
3666 else
3667 current_directory = concat (current_directory, SLASH_STRING, dir, NULL);
3668 free (dir);
3669 }
3670
3671 /* Now simplify any occurrences of `.' and `..' in the pathname. */
3672
3673 found_real_path = 0;
3674 for (p = current_directory; *p;)
3675 {
3676 if (SLASH_P (p[0]) && p[1] == '.' && (p[2] == 0 || SLASH_P (p[2])))
3677 strcpy (p, p + 2);
3678 else if (SLASH_P (p[0]) && p[1] == '.' && p[2] == '.'
3679 && (p[3] == 0 || SLASH_P (p[3])))
3680 {
3681 if (found_real_path)
3682 {
3683 /* Search backwards for the directory just before the "/.."
c5aa993b 3684 and obliterate it and the "/..". */
9e0b60a8 3685 char *q = p;
c5aa993b 3686 while (q != current_directory && !SLASH_P (q[-1]))
9e0b60a8
JM
3687 --q;
3688
3689 if (q == current_directory)
3690 /* current_directory is
3691 a relative pathname ("can't happen"--leave it alone). */
3692 ++p;
3693 else
3694 {
3695 strcpy (q - 1, p + 3);
3696 p = q - 1;
3697 }
3698 }
3699 else
3700 /* We are dealing with leading repetitions of "/..", for example
3701 "/../..", which is the Mach super-root. */
3702 p += 3;
3703 }
3704 else
3705 {
3706 found_real_path = 1;
3707 ++p;
3708 }
3709 }
3710
3711 forget_cached_source_info ();
3712
3713 if (from_tty)
3714 pwd_command ((char *) 0, 1);
3715}
3716\f
c5aa993b
JM
3717struct source_cleanup_lines_args
3718{
9e0b60a8
JM
3719 int old_line;
3720 char *old_file;
3721 char *old_pre_error;
3722 char *old_error_pre_print;
3723};
3724
3725static void
3726source_cleanup_lines (args)
3727 PTR args;
3728{
3729 struct source_cleanup_lines_args *p =
c5aa993b 3730 (struct source_cleanup_lines_args *) args;
9e0b60a8
JM
3731 source_line_number = p->old_line;
3732 source_file_name = p->old_file;
3733 source_pre_error = p->old_pre_error;
3734 error_pre_print = p->old_error_pre_print;
3735}
3736
3737/* ARGSUSED */
3738void
3739source_command (args, from_tty)
3740 char *args;
3741 int from_tty;
3742{
3743 FILE *stream;
3744 struct cleanup *old_cleanups;
3745 char *file = args;
3746 struct source_cleanup_lines_args old_lines;
3747 int needed_length;
3748
3749 if (file == NULL)
3750 {
3751 error ("source command requires pathname of file to source.");
3752 }
3753
3754 file = tilde_expand (file);
3755 old_cleanups = make_cleanup (free, file);
3756
3757 stream = fopen (file, FOPEN_RT);
3758 if (!stream)
3759 {
3760 if (from_tty)
3761 perror_with_name (file);
3762 else
3763 return;
3764 }
3765
3766 make_cleanup ((make_cleanup_func) fclose, stream);
3767
3768 old_lines.old_line = source_line_number;
3769 old_lines.old_file = source_file_name;
3770 old_lines.old_pre_error = source_pre_error;
3771 old_lines.old_error_pre_print = error_pre_print;
3772 make_cleanup (source_cleanup_lines, &old_lines);
3773 source_line_number = 0;
3774 source_file_name = file;
3775 source_pre_error = error_pre_print == NULL ? "" : error_pre_print;
3776 source_pre_error = savestring (source_pre_error, strlen (source_pre_error));
3777 make_cleanup (free, source_pre_error);
3778 /* This will get set every time we read a line. So it won't stay "" for
3779 long. */
3780 error_pre_print = "";
3781
3782 needed_length = strlen (source_file_name) + strlen (source_pre_error) + 80;
3783 if (source_error_allocated < needed_length)
3784 {
3785 source_error_allocated *= 2;
3786 if (source_error_allocated < needed_length)
3787 source_error_allocated = needed_length;
3788 if (source_error == NULL)
3789 source_error = xmalloc (source_error_allocated);
3790 else
3791 source_error = xrealloc (source_error, source_error_allocated);
3792 }
3793
3794 read_command_file (stream);
3795
3796 do_cleanups (old_cleanups);
3797}
3798
3799/* ARGSUSED */
3800static void
3801echo_command (text, from_tty)
3802 char *text;
3803 int from_tty;
3804{
3805 char *p = text;
3806 register int c;
3807
3808 if (text)
3809 while ((c = *p++) != '\0')
3810 {
3811 if (c == '\\')
3812 {
3813 /* \ at end of argument is used after spaces
3814 so they won't be lost. */
3815 if (*p == 0)
3816 return;
3817
3818 c = parse_escape (&p);
3819 if (c >= 0)
3820 printf_filtered ("%c", c);
3821 }
3822 else
3823 printf_filtered ("%c", c);
3824 }
3825
3826 /* Force this output to appear now. */
3827 wrap_here ("");
3828 gdb_flush (gdb_stdout);
3829}
3830
3831/* ARGSUSED */
3832static void
3833dont_repeat_command (ignored, from_tty)
3834 char *ignored;
3835 int from_tty;
3836{
c5aa993b
JM
3837 *line = 0; /* Can't call dont_repeat here because we're not
3838 necessarily reading from stdin. */
9e0b60a8
JM
3839}
3840\f
3841/* Functions to manipulate command line editing control variables. */
3842
3843/* Number of commands to print in each call to show_commands. */
3844#define Hist_print 10
3845static void
3846show_commands (args, from_tty)
3847 char *args;
3848 int from_tty;
3849{
3850 /* Index for history commands. Relative to history_base. */
3851 int offset;
3852
3853 /* Number of the history entry which we are planning to display next.
3854 Relative to history_base. */
3855 static int num = 0;
3856
3857 /* The first command in the history which doesn't exist (i.e. one more
3858 than the number of the last command). Relative to history_base. */
3859 int hist_len;
3860
3861 extern HIST_ENTRY *history_get PARAMS ((int));
3862
3863 /* Print out some of the commands from the command history. */
3864 /* First determine the length of the history list. */
3865 hist_len = history_size;
3866 for (offset = 0; offset < history_size; offset++)
3867 {
3868 if (!history_get (history_base + offset))
3869 {
3870 hist_len = offset;
3871 break;
3872 }
3873 }
3874
3875 if (args)
3876 {
3877 if (args[0] == '+' && args[1] == '\0')
3878 /* "info editing +" should print from the stored position. */
3879 ;
3880 else
3881 /* "info editing <exp>" should print around command number <exp>. */
3882 num = (parse_and_eval_address (args) - history_base) - Hist_print / 2;
3883 }
3884 /* "show commands" means print the last Hist_print commands. */
3885 else
3886 {
3887 num = hist_len - Hist_print;
3888 }
3889
3890 if (num < 0)
3891 num = 0;
3892
3893 /* If there are at least Hist_print commands, we want to display the last
3894 Hist_print rather than, say, the last 6. */
3895 if (hist_len - num < Hist_print)
3896 {
3897 num = hist_len - Hist_print;
3898 if (num < 0)
3899 num = 0;
3900 }
3901
3902 for (offset = num; offset < num + Hist_print && offset < hist_len; offset++)
3903 {
3904 printf_filtered ("%5d %s\n", history_base + offset,
c5aa993b 3905 (history_get (history_base + offset))->line);
9e0b60a8
JM
3906 }
3907
3908 /* The next command we want to display is the next one that we haven't
3909 displayed yet. */
3910 num += Hist_print;
3911
3912 /* If the user repeats this command with return, it should do what
3913 "show commands +" does. This is unnecessary if arg is null,
3914 because "show commands +" is not useful after "show commands". */
3915 if (from_tty && args)
3916 {
3917 args[0] = '+';
3918 args[1] = '\0';
3919 }
3920}
3921
3922/* Called by do_setshow_command. */
3923/* ARGSUSED */
3924static void
3925set_history_size_command (args, from_tty, c)
3926 char *args;
3927 int from_tty;
3928 struct cmd_list_element *c;
3929{
3930 if (history_size == INT_MAX)
3931 unstifle_history ();
3932 else if (history_size >= 0)
3933 stifle_history (history_size);
3934 else
3935 {
3936 history_size = INT_MAX;
3937 error ("History size must be non-negative");
3938 }
3939}
3940
3941/* ARGSUSED */
3942static void
3943set_history (args, from_tty)
3944 char *args;
3945 int from_tty;
3946{
3947 printf_unfiltered ("\"set history\" must be followed by the name of a history subcommand.\n");
3948 help_list (sethistlist, "set history ", -1, gdb_stdout);
3949}
3950
3951/* ARGSUSED */
3952static void
3953show_history (args, from_tty)
3954 char *args;
3955 int from_tty;
3956{
3957 cmd_show_list (showhistlist, from_tty, "");
3958}
3959
3960int info_verbose = 0; /* Default verbose msgs off */
3961
3962/* Called by do_setshow_command. An elaborate joke. */
3963/* ARGSUSED */
3964static void
3965set_verbose (args, from_tty, c)
3966 char *args;
3967 int from_tty;
3968 struct cmd_list_element *c;
3969{
3970 char *cmdname = "verbose";
3971 struct cmd_list_element *showcmd;
3972
3973 showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
3974
3975 if (info_verbose)
3976 {
3977 c->doc = "Set verbose printing of informational messages.";
3978 showcmd->doc = "Show verbose printing of informational messages.";
3979 }
3980 else
3981 {
3982 c->doc = "Set verbosity.";
3983 showcmd->doc = "Show verbosity.";
3984 }
3985}
3986
3987static void
3988float_handler (signo)
c5aa993b 3989 int signo;
9e0b60a8
JM
3990{
3991 /* This message is based on ANSI C, section 4.7. Note that integer
3992 divide by zero causes this, so "float" is a misnomer. */
3993 signal (SIGFPE, float_handler);
3994 error ("Erroneous arithmetic operation.");
3995}
5d161b24
DB
3996
3997static void
3998set_debug (arg, from_tty)
eb2f494a
AC
3999 char *arg;
4000 int from_tty;
5d161b24 4001{
eb2f494a
AC
4002 printf_unfiltered ("\"set debug\" must be followed by the name of a print subcommand.\n");
4003 help_list (setdebuglist, "set debug ", -1, gdb_stdout);
5d161b24
DB
4004}
4005
4006static void
4007show_debug (args, from_tty)
eb2f494a
AC
4008 char *args;
4009 int from_tty;
5d161b24 4010{
eb2f494a 4011 cmd_show_list (showdebuglist, from_tty, "");
5d161b24 4012}
c5aa993b 4013
9e0b60a8
JM
4014static void
4015init_cmd_lists ()
4016{
4017 cmdlist = NULL;
4018 infolist = NULL;
4019 enablelist = NULL;
4020 disablelist = NULL;
4021 togglelist = NULL;
4022 stoplist = NULL;
4023 deletelist = NULL;
4024 enablebreaklist = NULL;
4025 setlist = NULL;
4026 unsetlist = NULL;
4027 showlist = NULL;
4028 sethistlist = NULL;
4029 showhistlist = NULL;
4030 unsethistlist = NULL;
4031 maintenancelist = NULL;
4032 maintenanceinfolist = NULL;
4033 maintenanceprintlist = NULL;
4034 setprintlist = NULL;
4035 showprintlist = NULL;
4036 setchecklist = NULL;
4037 showchecklist = NULL;
4038}
4039
4040/* Init the history buffer. Note that we are called after the init file(s)
4041 * have been read so that the user can change the history file via his
4042 * .gdbinit file (for instance). The GDBHISTFILE environment variable
4043 * overrides all of this.
4044 */
4045
4046void
c5aa993b 4047init_history ()
9e0b60a8
JM
4048{
4049 char *tmpenv;
4050
4051 tmpenv = getenv ("HISTSIZE");
4052 if (tmpenv)
4053 history_size = atoi (tmpenv);
4054 else if (!history_size)
4055 history_size = 256;
4056
4057 stifle_history (history_size);
4058
4059 tmpenv = getenv ("GDBHISTFILE");
4060 if (tmpenv)
c5aa993b
JM
4061 history_filename = savestring (tmpenv, strlen (tmpenv));
4062 else if (!history_filename)
4063 {
4064 /* We include the current directory so that if the user changes
4065 directories the file written will be the same as the one
4066 that was read. */
a0b3c4fd 4067#ifdef __MSDOS__
eb2f494a
AC
4068 /* No leading dots in file names are allowed on MSDOS. */
4069 history_filename = concat (current_directory, "/_gdb_history", NULL);
a0b3c4fd 4070#else
c5aa993b 4071 history_filename = concat (current_directory, "/.gdb_history", NULL);
a0b3c4fd 4072#endif
c5aa993b 4073 }
9e0b60a8
JM
4074 read_history (history_filename);
4075}
4076
4077static void
4078init_main ()
4079{
4080 struct cmd_list_element *c;
4081
4082 /* If we are running the asynchronous version,
4083 we initialize the prompts differently. */
6426a772 4084 if (!event_loop_p)
9e0b60a8 4085 {
c5aa993b 4086 gdb_prompt_string = savestring (DEFAULT_PROMPT, strlen (DEFAULT_PROMPT));
9e0b60a8
JM
4087 }
4088 else
4089 {
4090 /* initialize the prompt stack to a simple "(gdb) " prompt or to
96baa820 4091 whatever the DEFAULT_PROMPT is. */
9e0b60a8 4092 the_prompts.top = 0;
c5aa993b 4093 PREFIX (0) = "";
c5aa993b 4094 PROMPT (0) = savestring (DEFAULT_PROMPT, strlen (DEFAULT_PROMPT));
c5aa993b 4095 SUFFIX (0) = "";
9e0b60a8 4096 /* Set things up for annotation_level > 1, if the user ever decides
c5aa993b 4097 to use it. */
9e0b60a8
JM
4098 async_annotation_suffix = "prompt";
4099 /* Set the variable associated with the setshow prompt command. */
4100 new_async_prompt = savestring (PROMPT (0), strlen (PROMPT (0)));
4101 }
4102 gdb_prompt_escape = 0; /* default to none. */
4103
4104 /* Set the important stuff up for command editing. */
4105 command_editing_p = 1;
9e0b60a8
JM
4106 history_expansion_p = 0;
4107 write_history_p = 0;
4108
4109 /* Setup important stuff for command line editing. */
4110 rl_completion_entry_function = (int (*)()) readline_line_completion_function;
4111 rl_completer_word_break_characters = gdb_completer_word_break_characters;
4112 rl_completer_quote_characters = gdb_completer_quote_characters;
4113 rl_readline_name = "gdb";
4114
4115 /* Define the classes of commands.
4116 They will appear in the help list in the reverse of this order. */
4117
4118 add_cmd ("internals", class_maintenance, NO_FUNCTION,
4119 "Maintenance commands.\n\
4120Some gdb commands are provided just for use by gdb maintainers.\n\
4121These commands are subject to frequent change, and may not be as\n\
4122well documented as user commands.",
4123 &cmdlist);
4124 add_cmd ("obscure", class_obscure, NO_FUNCTION, "Obscure features.", &cmdlist);
4125 add_cmd ("aliases", class_alias, NO_FUNCTION, "Aliases of other commands.", &cmdlist);
4126 add_cmd ("user-defined", class_user, NO_FUNCTION, "User-defined commands.\n\
4127The commands in this class are those defined by the user.\n\
4128Use the \"define\" command to define a command.", &cmdlist);
4129 add_cmd ("support", class_support, NO_FUNCTION, "Support facilities.", &cmdlist);
4130 if (!dbx_commands)
4131 add_cmd ("status", class_info, NO_FUNCTION, "Status inquiries.", &cmdlist);
4132 add_cmd ("files", class_files, NO_FUNCTION, "Specifying and examining files.", &cmdlist);
4133 add_cmd ("breakpoints", class_breakpoint, NO_FUNCTION, "Making program stop at certain points.", &cmdlist);
4134 add_cmd ("data", class_vars, NO_FUNCTION, "Examining data.", &cmdlist);
4135 add_cmd ("stack", class_stack, NO_FUNCTION, "Examining the stack.\n\
4136The stack is made up of stack frames. Gdb assigns numbers to stack frames\n\
4137counting from zero for the innermost (currently executing) frame.\n\n\
4138At any time gdb identifies one frame as the \"selected\" frame.\n\
4139Variable lookups are done with respect to the selected frame.\n\
4140When the program being debugged stops, gdb selects the innermost frame.\n\
4141The commands below can be used to select other frames by number or address.",
4142 &cmdlist);
4143 add_cmd ("running", class_run, NO_FUNCTION, "Running the program.", &cmdlist);
4144
4145 add_com ("pwd", class_files, pwd_command,
c5aa993b 4146 "Print working directory. This is used for your program as well.");
9e0b60a8 4147 c = add_cmd ("cd", class_files, cd_command,
c5aa993b 4148 "Set working directory to DIR for debugger and program being debugged.\n\
9e0b60a8
JM
4149The change does not take effect for the program being debugged\n\
4150until the next time it is started.", &cmdlist);
4151 c->completer = filename_completer;
4152
4153 /* The set prompt command is different depending whether or not the
4154 async version is run. NOTE: this difference is going to
4155 disappear as we make the event loop be the default engine of
4156 gdb. */
6426a772 4157 if (!event_loop_p)
9e0b60a8
JM
4158 {
4159 add_show_from_set
c5aa993b 4160 (add_set_cmd ("prompt", class_support, var_string,
9e0b60a8
JM
4161 (char *) &gdb_prompt_string, "Set gdb's prompt",
4162 &setlist),
4163 &showlist);
4164 }
4165 else
4166 {
c5aa993b
JM
4167 c = add_set_cmd ("prompt", class_support, var_string,
4168 (char *) &new_async_prompt, "Set gdb's prompt",
9e0b60a8
JM
4169 &setlist);
4170 add_show_from_set (c, &showlist);
4171 c->function.sfunc = set_async_prompt;
4172 }
4173
4174 add_show_from_set
c5aa993b 4175 (add_set_cmd ("prompt-escape-char", class_support, var_zinteger,
9e0b60a8
JM
4176 (char *) &gdb_prompt_escape,
4177 "Set escape character for formatting of gdb's prompt",
4178 &setlist),
4179 &showlist);
4180
4181 add_com ("echo", class_support, echo_command,
4182 "Print a constant string. Give string as argument.\n\
4183C escape sequences may be used in the argument.\n\
4184No newline is added at the end of the argument;\n\
4185use \"\\n\" if you want a newline to be printed.\n\
4186Since leading and trailing whitespace are ignored in command arguments,\n\
4187if you want to print some you must use \"\\\" before leading whitespace\n\
4188to be printed or after trailing whitespace.");
4189 add_com ("document", class_support, document_command,
4190 "Document a user-defined command.\n\
4191Give command name as argument. Give documentation on following lines.\n\
4192End with a line of just \"end\".");
4193 add_com ("define", class_support, define_command,
4194 "Define a new command name. Command name is argument.\n\
4195Definition appears on following lines, one command per line.\n\
4196End with a line of just \"end\".\n\
4197Use the \"document\" command to give documentation for the new command.\n\
4198Commands defined in this way may have up to ten arguments.");
4199
4200#ifdef __STDC__
4201 c = add_cmd ("source", class_support, source_command,
c5aa993b 4202 "Read commands from a file named FILE.\n\
9e0b60a8
JM
4203Note that the file \"" GDBINIT_FILENAME "\" is read automatically in this way\n\
4204when gdb is started.", &cmdlist);
4205#else
4206 /* Punt file name, we can't help it easily. */
4207 c = add_cmd ("source", class_support, source_command,
c5aa993b 4208 "Read commands from a file named FILE.\n\
9e0b60a8
JM
4209Note that the file \".gdbinit\" is read automatically in this way\n\
4210when gdb is started.", &cmdlist);
4211#endif
4212 c->completer = filename_completer;
4213
4214 add_com ("quit", class_support, quit_command, "Exit gdb.");
4215 add_com ("help", class_support, help_command, "Print list of commands.");
4216 add_com_alias ("q", "quit", class_support, 1);
4217 add_com_alias ("h", "help", class_support, 1);
4218
4219 add_com ("dont-repeat", class_support, dont_repeat_command, "Don't repeat this command.\n\
4220Primarily used inside of user-defined commands that should not be repeated when\n\
4221hitting return.");
4222
c5aa993b 4223 c = add_set_cmd ("verbose", class_support, var_boolean, (char *) &info_verbose,
9e0b60a8
JM
4224 "Set ",
4225 &setlist),
c5aa993b 4226 add_show_from_set (c, &showlist);
9e0b60a8
JM
4227 c->function.sfunc = set_verbose;
4228 set_verbose (NULL, 0, c);
4229
4230 /* The set editing command is different depending whether or not the
4231 async version is run. NOTE: this difference is going to disappear
4232 as we make the event loop be the default engine of gdb. */
6426a772 4233 if (!event_loop_p)
9e0b60a8
JM
4234 {
4235 add_show_from_set
c5aa993b 4236 (add_set_cmd ("editing", class_support, var_boolean, (char *) &command_editing_p,
9e0b60a8
JM
4237 "Set editing of command lines as they are typed.\n\
4238Use \"on\" to enable the editing, and \"off\" to disable it.\n\
4239Without an argument, command line editing is enabled. To edit, use\n\
4240EMACS-like or VI-like commands like control-P or ESC.", &setlist),
4241 &showlist);
4242 }
4243 else
4244 {
c5aa993b 4245 c = add_set_cmd ("editing", class_support, var_boolean, (char *) &async_command_editing_p,
9e0b60a8
JM
4246 "Set editing of command lines as they are typed.\n\
4247Use \"on\" to enable the editing, and \"off\" to disable it.\n\
4248Without an argument, command line editing is enabled. To edit, use\n\
4249EMACS-like or VI-like commands like control-P or ESC.", &setlist);
4250
4251 add_show_from_set (c, &showlist);
4252 c->function.sfunc = set_async_editing_command;
4253 }
4254
4255 add_prefix_cmd ("history", class_support, set_history,
4256 "Generic command for setting command history parameters.",
4257 &sethistlist, "set history ", 0, &setlist);
4258 add_prefix_cmd ("history", class_support, show_history,
4259 "Generic command for showing command history parameters.",
4260 &showhistlist, "show history ", 0, &showlist);
4261
4262 add_show_from_set
c5aa993b
JM
4263 (add_set_cmd ("expansion", no_class, var_boolean, (char *) &history_expansion_p,
4264 "Set history expansion on command input.\n\
9e0b60a8
JM
4265Without an argument, history expansion is enabled.", &sethistlist),
4266 &showhistlist);
4267
4268 add_show_from_set
c5aa993b
JM
4269 (add_set_cmd ("save", no_class, var_boolean, (char *) &write_history_p,
4270 "Set saving of the history record on exit.\n\
9e0b60a8
JM
4271Use \"on\" to enable the saving, and \"off\" to disable it.\n\
4272Without an argument, saving is enabled.", &sethistlist),
4273 &showhistlist);
4274
c5aa993b 4275 c = add_set_cmd ("size", no_class, var_integer, (char *) &history_size,
9e0b60a8
JM
4276 "Set the size of the command history, \n\
4277ie. the number of previous commands to keep a record of.", &sethistlist);
4278 add_show_from_set (c, &showhistlist);
4279 c->function.sfunc = set_history_size_command;
4280
4281 add_show_from_set
c5aa993b
JM
4282 (add_set_cmd ("filename", no_class, var_filename, (char *) &history_filename,
4283 "Set the filename in which to record the command history\n\
9e0b60a8
JM
4284 (the list of previous commands of which a record is kept).", &sethistlist),
4285 &showhistlist);
4286
4287 add_show_from_set
4288 (add_set_cmd ("confirm", class_support, var_boolean,
c5aa993b 4289 (char *) &caution,
9e0b60a8
JM
4290 "Set whether to confirm potentially dangerous operations.",
4291 &setlist),
4292 &showlist);
4293
4294 add_prefix_cmd ("info", class_info, info_command,
c5aa993b 4295 "Generic command for showing things about the program being debugged.",
9e0b60a8
JM
4296 &infolist, "info ", 0, &cmdlist);
4297 add_com_alias ("i", "info", class_info, 1);
4298
4299 add_com ("complete", class_obscure, complete_command,
4300 "List the completions for the rest of the line as a command.");
4301
4302 add_prefix_cmd ("show", class_info, show_command,
4303 "Generic command for showing things about the debugger.",
4304 &showlist, "show ", 0, &cmdlist);
4305 /* Another way to get at the same thing. */
4306 add_info ("set", show_command, "Show all GDB settings.");
4307
4308 add_cmd ("commands", no_class, show_commands,
4309 "Show the history of commands you typed.\n\
4310You can supply a command number to start with, or a `+' to start after\n\
4311the previous command number shown.",
4312 &showlist);
4313
4314 add_cmd ("version", no_class, show_version,
4315 "Show what version of GDB this is.", &showlist);
4316
4317 add_com ("while", class_support, while_command,
c5aa993b 4318 "Execute nested commands WHILE the conditional expression is non zero.\n\
9e0b60a8
JM
4319The conditional expression must follow the word `while' and must in turn be\n\
4320followed by a new line. The nested commands must be entered one per line,\n\
4321and should be terminated by the word `end'.");
4322
4323 add_com ("if", class_support, if_command,
c5aa993b 4324 "Execute nested commands once IF the conditional expression is non zero.\n\
9e0b60a8
JM
4325The conditional expression must follow the word `if' and must in turn be\n\
4326followed by a new line. The nested commands must be entered one per line,\n\
4327and should be terminated by the word 'else' or `end'. If an else clause\n\
4328is used, the same rules apply to its nested commands as to the first ones.");
4329
4330 /* If target is open when baud changes, it doesn't take effect until the
4331 next open (I think, not sure). */
4332 add_show_from_set (add_set_cmd ("remotebaud", no_class,
c5aa993b 4333 var_zinteger, (char *) &baud_rate,
9e0b60a8
JM
4334 "Set baud rate for remote serial I/O.\n\
4335This value is used to set the speed of the serial port when debugging\n\
4336using remote targets.", &setlist),
4337 &showlist);
4338
eb2f494a
AC
4339 c = add_set_cmd ("remotedebug", no_class, var_zinteger,
4340 (char *) &remote_debug,
4341 "Set debugging of remote protocol.\n\
5d161b24 4342When enabled, each packet sent or received with the remote target\n\
eb2f494a
AC
4343is displayed.", &setlist);
4344 deprecate_cmd (c, "set debug remote");
4345 deprecate_cmd (add_show_from_set (c, &showlist), "show debug remote");
5d161b24 4346
eb2f494a
AC
4347 add_show_from_set (add_set_cmd ("remote", no_class, var_zinteger,
4348 (char *) &remote_debug,
4349 "Set debugging of remote protocol.\n\
9e0b60a8 4350When enabled, each packet sent or received with the remote target\n\
5d161b24 4351is displayed.", &setdebuglist),
eb2f494a 4352 &showdebuglist);
9e0b60a8
JM
4353
4354 add_show_from_set (
c5aa993b
JM
4355 add_set_cmd ("remotetimeout", no_class, var_integer, (char *) &remote_timeout,
4356 "Set timeout limit to wait for target to respond.\n\
9e0b60a8
JM
4357This value is used to set the time limit for gdb to wait for a response\n\
4358from the target.", &setlist),
c5aa993b 4359 &showlist);
9e0b60a8
JM
4360
4361 /* The set annotate command is different depending whether or not
4362 the async version is run. NOTE: this difference is going to
4363 disappear as we make the event loop be the default engine of
4364 gdb. */
6426a772 4365 if (!event_loop_p)
9e0b60a8 4366 {
c5aa993b
JM
4367 c = add_set_cmd ("annotate", class_obscure, var_zinteger,
4368 (char *) &annotation_level, "Set annotation_level.\n\
9e0b60a8
JM
43690 == normal; 1 == fullname (for use when running under emacs)\n\
43702 == output annotated suitably for use by programs that control GDB.",
4371 &setlist);
4372 c = add_show_from_set (c, &showlist);
4373 }
4374 else
4375 {
c5aa993b
JM
4376 c = add_set_cmd ("annotate", class_obscure, var_zinteger,
4377 (char *) &annotation_level, "Set annotation_level.\n\
9e0b60a8
JM
43780 == normal; 1 == fullname (for use when running under emacs)\n\
43792 == output annotated suitably for use by programs that control GDB.",
c5aa993b 4380 &setlist);
9e0b60a8
JM
4381 add_show_from_set (c, &showlist);
4382 c->function.sfunc = set_async_annotation_level;
4383 }
6426a772 4384 if (event_loop_p)
104c1213
JM
4385 {
4386 add_show_from_set
4387 (add_set_cmd ("exec-done-display", class_support, var_boolean, (char *) &exec_done_display_p,
4388 "Set notification of completion for asynchronous execution commands.\n\
4389Use \"on\" to enable the notification, and \"off\" to disable it.", &setlist),
4390 &showlist);
4391 }
eb2f494a
AC
4392 add_prefix_cmd ("debug", no_class, set_debug,
4393 "Generic command for setting gdb debugging flags",
4394 &setdebuglist, "set debug ", 0, &setlist);
5d161b24 4395
eb2f494a
AC
4396 add_prefix_cmd ("debug", no_class, show_debug,
4397 "Generic command for showing gdb debugging flags",
4398 &showdebuglist, "show debug ", 0, &showlist);
9e0b60a8 4399}
This page took 0.247781 seconds and 4 git commands to generate.