Get rid of the global "base_target" and use "find_target_beneath"
[deliverable/binutils-gdb.git] / gdb / top.c
CommitLineData
c906108c 1/* Top level stuff for GDB, the GNU debugger.
a752853e 2
6aba47ca 3 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
9b254dd1 4 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
0fb0cc75 5 2008, 2009 Free Software Foundation, Inc.
c906108c 6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
c5aa993b 12 (at your option) any later version.
c906108c 13
c5aa993b
JM
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
c906108c 18
c5aa993b 19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
21
22#include "defs.h"
23#include "gdbcmd.h"
24#include "call-cmds.h"
210661e7
EZ
25#include "cli/cli-cmds.h"
26#include "cli/cli-script.h"
27#include "cli/cli-setshow.h"
18a642a1 28#include "cli/cli-decode.h"
c906108c
SS
29#include "symtab.h"
30#include "inferior.h"
60250e8b 31#include "exceptions.h"
042be3a9 32#include <signal.h>
c906108c
SS
33#include "target.h"
34#include "breakpoint.h"
35#include "gdbtypes.h"
36#include "expression.h"
37#include "value.h"
38#include "language.h"
c5aa993b 39#include "terminal.h" /* For job_control. */
c906108c 40#include "annotate.h"
c5f0f3d0 41#include "completer.h"
c906108c 42#include "top.h"
d4f3574e 43#include "version.h"
210661e7 44#include "serial.h"
d16aafd8 45#include "doublest.h"
f9c696d2 46#include "gdb_assert.h"
f17517ea 47#include "main.h"
2e03ee74 48#include "event-loop.h"
8ea051c5 49#include "gdbthread.h"
c906108c
SS
50
51/* readline include files */
dbda9972
AC
52#include "readline/readline.h"
53#include "readline/history.h"
c906108c
SS
54
55/* readline defines this. */
56#undef savestring
57
58#include <sys/types.h>
c906108c 59
c2c6d25f 60#include "event-top.h"
c906108c
SS
61#include "gdb_string.h"
62#include "gdb_stat.h"
63#include <ctype.h>
8b93c638
JM
64#include "ui-out.h"
65#include "cli-out.h"
c906108c 66
104c1213
JM
67/* Default command line prompt. This is overriden in some configs. */
68
69#ifndef DEFAULT_PROMPT
70#define DEFAULT_PROMPT "(gdb) "
c906108c
SS
71#endif
72
73/* Initialization file name for gdb. This is overridden in some configs. */
74
eaae3919
EZ
75#ifndef PATH_MAX
76# ifdef FILENAME_MAX
77# define PATH_MAX FILENAME_MAX
78# else
79# define PATH_MAX 512
80# endif
81#endif
82
c906108c
SS
83#ifndef GDBINIT_FILENAME
84#define GDBINIT_FILENAME ".gdbinit"
85#endif
eaae3919 86char gdbinit[PATH_MAX + 1] = GDBINIT_FILENAME;
c906108c
SS
87
88int inhibit_gdbinit = 0;
89
90/* If nonzero, and GDB has been configured to be able to use windows,
91 attempt to open them upon startup. */
92
f15ab4a7 93int use_windows = 0;
c906108c 94
c906108c
SS
95extern char lang_frame_mismatch_warn[]; /* language.c */
96
97/* Flag for whether we want all the "from_tty" gubbish printed. */
98
c5aa993b 99int caution = 1; /* Default is yes, sigh. */
920d2a44
AC
100static void
101show_caution (struct ui_file *file, int from_tty,
102 struct cmd_list_element *c, const char *value)
103{
104 fprintf_filtered (file, _("\
105Whether to confirm potentially dangerous operations is %s.\n"),
106 value);
107}
c906108c 108
c906108c
SS
109/* stdio stream that command input is being read from. Set to stdin normally.
110 Set by source_command to the file we are sourcing. Set to NULL if we are
111 executing a user-defined command or interacting via a GUI. */
112
113FILE *instream;
114
698ba934
DJ
115/* Flag to indicate whether a user defined command is currently running. */
116
117int in_user_command;
118
c906108c
SS
119/* Current working directory. */
120
121char *current_directory;
122
123/* The directory name is actually stored here (usually). */
124char gdb_dirbuf[1024];
125
126/* Function to call before reading a command, if nonzero.
127 The function receives two args: an input stream,
128 and a prompt string. */
129
507f3c78 130void (*window_hook) (FILE *, char *);
c906108c
SS
131
132int epoch_interface;
133int xgdb_verbose;
134
c906108c
SS
135/* Buffer used for reading command lines, and the size
136 allocated for it so far. */
137
138char *line;
139int linesize = 100;
140
141/* Nonzero if the current command is modified by "server ". This
c2d11a7d 142 affects things like recording into the command history, commands
c906108c
SS
143 repeating on RETURN, etc. This is so a user interface (emacs, GUI,
144 whatever) can issue its own commands and also send along commands
145 from the user, and have the user not notice that the user interface
146 is issuing commands too. */
147int server_command;
148
149/* Baud rate specified for talking to serial target systems. Default
150 is left as -1, so targets can choose their own defaults. */
151/* FIXME: This means that "show remotebaud" and gr_files_info can print -1
152 or (unsigned int)-1. This is a Bad User Interface. */
153
154int baud_rate = -1;
155
156/* Timeout limit for response from target. */
157
ce808e91
AC
158/* The default value has been changed many times over the years. It
159 was originally 5 seconds. But that was thought to be a long time
160 to sit and wait, so it was changed to 2 seconds. That was thought
161 to be plenty unless the connection was going through some terminal
162 server or multiplexer or other form of hairy serial connection.
163
164 In mid-1996, remote_timeout was moved from remote.c to top.c and
165 it began being used in other remote-* targets. It appears that the
166 default was changed to 20 seconds at that time, perhaps because the
85a453d5 167 Renesas E7000 ICE didn't always respond in a timely manner.
ce808e91
AC
168
169 But if 5 seconds is a long time to sit and wait for retransmissions,
170 20 seconds is far worse. This demonstrates the difficulty of using
171 a single variable for all protocol timeouts.
172
173 As remote.c is used much more than remote-e7000.c, it was changed
174 back to 2 seconds in 1999. */
175
176int remote_timeout = 2;
c906108c
SS
177
178/* Non-zero tells remote* modules to output debugging info. */
179
180int remote_debug = 0;
181
6dd77b81
RH
182/* Sbrk location on entry to main. Used for statistics only. */
183#ifdef HAVE_SBRK
184char *lim_at_start;
185#endif
186
c906108c
SS
187/* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT. */
188
189#ifndef STOP_SIGNAL
190#ifdef SIGTSTP
191#define STOP_SIGNAL SIGTSTP
a14ed312 192static void stop_sig (int);
c906108c
SS
193#endif
194#endif
195
c906108c
SS
196/* Hooks for alternate command interfaces. */
197
198/* Called after most modules have been initialized, but before taking users
1ad24239
KS
199 command file.
200
201 If the UI fails to initialize and it wants GDB to continue
202 using the default UI, then it should clear this hook before returning. */
c906108c 203
9a4105ab 204void (*deprecated_init_ui_hook) (char *argv0);
7a292a7a
SS
205
206/* This hook is called from within gdb's many mini-event loops which could
207 steal control from a real user interface's event loop. It returns
208 non-zero if the user is requesting a detach, zero otherwise. */
209
98bbd631 210int (*deprecated_ui_loop_hook) (int);
c906108c
SS
211
212/* Called instead of command_loop at top level. Can be invoked via
b5a2688f 213 throw_exception(). */
c906108c 214
9a4105ab 215void (*deprecated_command_loop_hook) (void);
c906108c
SS
216
217
c906108c
SS
218/* Called from print_frame_info to list the line we stopped in. */
219
9a4105ab
AC
220void (*deprecated_print_frame_info_listing_hook) (struct symtab * s, int line,
221 int stopline, int noerror);
c906108c
SS
222/* Replaces most of query. */
223
9a4105ab 224int (*deprecated_query_hook) (const char *, va_list);
c906108c
SS
225
226/* Replaces most of warning. */
227
9a4105ab 228void (*deprecated_warning_hook) (const char *, va_list);
c906108c 229
9a4105ab
AC
230/* These three functions support getting lines of text from the user.
231 They are used in sequence. First deprecated_readline_begin_hook is
232 called with a text string that might be (for example) a message for
233 the user to type in a sequence of commands to be executed at a
234 breakpoint. If this function calls back to a GUI, it might take
235 this opportunity to pop up a text interaction window with this
236 message. Next, deprecated_readline_hook is called with a prompt
237 that is emitted prior to collecting the user input. It can be
238 called multiple times. Finally, deprecated_readline_end_hook is
239 called to notify the GUI that we are done with the interaction
240 window and it can close it. */
c906108c 241
9a4105ab
AC
242void (*deprecated_readline_begin_hook) (char *, ...);
243char *(*deprecated_readline_hook) (char *);
244void (*deprecated_readline_end_hook) (void);
c906108c 245
6426a772
JM
246/* Called as appropriate to notify the interface that we have attached
247 to or detached from an already running process. */
248
9a4105ab
AC
249void (*deprecated_attach_hook) (void);
250void (*deprecated_detach_hook) (void);
6426a772 251
c906108c
SS
252/* Called during long calculations to allow GUI to repair window damage, and to
253 check for stop buttons, etc... */
254
9a4105ab 255void (*deprecated_interactive_hook) (void);
c906108c 256
c906108c
SS
257/* Tell the GUI someone changed the register REGNO. -1 means
258 that the caller does not know which register changed or
c5aa993b 259 that several registers have changed (see value_assign). */
9a4105ab 260void (*deprecated_register_changed_hook) (int regno);
c906108c
SS
261
262/* Tell the GUI someone changed LEN bytes of memory at ADDR */
9a4105ab 263void (*deprecated_memory_changed_hook) (CORE_ADDR addr, int len);
c906108c
SS
264
265/* Called when going to wait for the target. Usually allows the GUI to run
266 while waiting for target events. */
267
9a4105ab
AC
268ptid_t (*deprecated_target_wait_hook) (ptid_t ptid,
269 struct target_waitstatus * status);
c906108c
SS
270
271/* Used by UI as a wrapper around command execution. May do various things
272 like enabling/disabling buttons, etc... */
273
9a4105ab
AC
274void (*deprecated_call_command_hook) (struct cmd_list_element * c, char *cmd,
275 int from_tty);
c906108c 276
96baa820
JM
277/* Called after a `set' command has finished. Is only run if the
278 `set' command succeeded. */
279
9a4105ab 280void (*deprecated_set_hook) (struct cmd_list_element * c);
96baa820 281
c906108c
SS
282/* Called when the current thread changes. Argument is thread id. */
283
9a4105ab 284void (*deprecated_context_hook) (int id);
c906108c 285
c906108c
SS
286/* Handler for SIGHUP. */
287
288#ifdef SIGHUP
392a587b 289/* NOTE 1999-04-29: This function will be static again, once we modify
cd0fc7c3
SS
290 gdb to use the event loop as the default command loop and we merge
291 event-top.c into this file, top.c */
292/* static */ int
d0c8cdfb 293quit_cover (void *s)
c906108c 294{
c5aa993b
JM
295 caution = 0; /* Throw caution to the wind -- we're exiting.
296 This prevents asking the user dumb questions. */
297 quit_command ((char *) 0, 0);
c906108c
SS
298 return 0;
299}
300#endif /* defined SIGHUP */
301\f
302/* Line number we are currently in in a file which is being sourced. */
392a587b 303/* NOTE 1999-04-29: This variable will be static again, once we modify
cd0fc7c3
SS
304 gdb to use the event loop as the default command loop and we merge
305 event-top.c into this file, top.c */
306/* static */ int source_line_number;
c906108c
SS
307
308/* Name of the file we are sourcing. */
392a587b 309/* NOTE 1999-04-29: This variable will be static again, once we modify
cd0fc7c3
SS
310 gdb to use the event loop as the default command loop and we merge
311 event-top.c into this file, top.c */
312/* static */ char *source_file_name;
c906108c 313
c906108c
SS
314/* Clean up on error during a "source" command (or execution of a
315 user-defined command). */
316
d318976c 317void
e41a3b1a 318do_restore_instream_cleanup (void *stream)
c906108c
SS
319{
320 /* Restore the previous input stream. */
321 instream = stream;
322}
323
324/* Read commands from STREAM. */
325void
fba45db2 326read_command_file (FILE *stream)
c906108c
SS
327{
328 struct cleanup *cleanups;
329
e41a3b1a 330 cleanups = make_cleanup (do_restore_instream_cleanup, instream);
c906108c 331 instream = stream;
c5aa993b 332 command_loop ();
c906108c
SS
333 do_cleanups (cleanups);
334}
335\f
507f3c78 336void (*pre_init_ui_hook) (void);
c906108c 337
e41a3b1a
AC
338#ifdef __MSDOS__
339void
340do_chdir_cleanup (void *old_dir)
341{
342 chdir (old_dir);
b8c9b27d 343 xfree (old_dir);
e41a3b1a
AC
344}
345#endif
346
d318976c
FN
347/* Execute the line P as a command.
348 Pass FROM_TTY as second argument to the defining function. */
c906108c 349
4f8d22e3
PA
350/* Execute command P, in the current user context. */
351
d318976c
FN
352void
353execute_command (char *p, int from_tty)
c906108c 354{
52f0bd74
AC
355 struct cmd_list_element *c;
356 enum language flang;
d318976c
FN
357 static int warned = 0;
358 char *line;
2f77b315 359 long time_at_cmd_start = 0;
32c1e744
VP
360#ifdef HAVE_SBRK
361 long space_at_cmd_start = 0;
362#endif
363 extern int display_time;
364 extern int display_space;
365
366 if (target_can_async_p ())
367 {
368 time_at_cmd_start = get_run_time ();
369
370 if (display_space)
371 {
372#ifdef HAVE_SBRK
373 char *lim = (char *) sbrk (0);
374 space_at_cmd_start = lim - lim_at_start;
375#endif
376 }
377 }
67e1e03a 378
d318976c 379 free_all_values ();
c906108c 380
d318976c
FN
381 /* Force cleanup of any alloca areas if using C alloca instead of
382 a builtin alloca. */
383 alloca (0);
c906108c 384
d318976c
FN
385 /* This can happen when command_line_input hits end of file. */
386 if (p == NULL)
387 return;
c906108c 388
49d03eab 389 target_log_command (p);
8b93c638 390
d318976c
FN
391 while (*p == ' ' || *p == '\t')
392 p++;
393 if (*p)
8b93c638 394 {
d318976c
FN
395 char *arg;
396 line = p;
8b93c638 397
16026cd7
AS
398 /* If trace-commands is set then this will print this command. */
399 print_command_trace (p);
400
d318976c 401 c = lookup_cmd (&p, cmdlist, "", 0, 1);
8b93c638 402
4f8d22e3
PA
403 /* If the selected thread has terminated, we allow only a
404 limited set of commands. */
8ea051c5 405 if (target_can_async_p ()
4f8d22e3
PA
406 && is_exited (inferior_ptid)
407 && !get_cmd_no_selected_thread_ok (c))
408 error (_("\
409Cannot execute this command without a live selected thread. See `help thread'."));
8b93c638 410
d318976c
FN
411 /* Pass null arg rather than an empty one. */
412 arg = *p ? p : 0;
8b93c638 413
9f60d481
AC
414 /* FIXME: cagney/2002-02-02: The c->type test is pretty dodgy
415 while the is_complete_command(cfunc) test is just plain
416 bogus. They should both be replaced by a test of the form
417 c->strip_trailing_white_space_p. */
418 /* NOTE: cagney/2002-02-02: The function.cfunc in the below
419 can't be replaced with func. This is because it is the
420 cfunc, and not the func, that has the value that the
421 is_complete_command hack is testing for. */
422 /* Clear off trailing whitespace, except for set and complete
423 command. */
d318976c
FN
424 if (arg
425 && c->type != set_cmd
bbaca940 426 && !is_complete_command (c))
8b93c638 427 {
d318976c
FN
428 p = arg + strlen (arg) - 1;
429 while (p >= arg && (*p == ' ' || *p == '\t'))
430 p--;
431 *(p + 1) = '\0';
8b93c638
JM
432 }
433
d318976c 434 /* If this command has been pre-hooked, run the hook first. */
5913bcb0 435 execute_cmd_pre_hook (c);
c906108c 436
d318976c
FN
437 if (c->flags & DEPRECATED_WARN_USER)
438 deprecated_cmd_warning (&line);
c906108c 439
d318976c
FN
440 if (c->class == class_user)
441 execute_user_command (c, arg);
442 else if (c->type == set_cmd || c->type == show_cmd)
443 do_setshow_command (arg, from_tty & caution, c);
f436dd25 444 else if (!cmd_func_p (c))
8a3fe4f8 445 error (_("That is not a command, just a help topic."));
9a4105ab
AC
446 else if (deprecated_call_command_hook)
447 deprecated_call_command_hook (c, arg, from_tty & caution);
d318976c 448 else
f436dd25 449 cmd_func (c, arg, from_tty & caution);
d318976c
FN
450
451 /* If this command has been post-hooked, run the hook last. */
5913bcb0 452 execute_cmd_post_hook (c);
c906108c 453
c906108c
SS
454 }
455
d318976c
FN
456 /* Tell the user if the language has changed (except first time). */
457 if (current_language != expected_language)
c906108c 458 {
d318976c 459 if (language_mode == language_mode_auto)
c906108c 460 {
d318976c 461 language_info (1); /* Print what changed. */
c906108c 462 }
d318976c 463 warned = 0;
c906108c
SS
464 }
465
d318976c
FN
466 /* Warn the user if the working language does not match the
467 language of the current frame. Only warn the user if we are
468 actually running the program, i.e. there is a stack. */
469 /* FIXME: This should be cacheing the frame and only running when
470 the frame changes. */
471
0d6431e2 472 if (target_has_stack && is_stopped (inferior_ptid))
c906108c 473 {
d318976c
FN
474 flang = get_frame_language ();
475 if (!warned
476 && flang != language_unknown
477 && flang != current_language->la_language)
c906108c 478 {
d318976c
FN
479 printf_filtered ("%s\n", lang_frame_mismatch_warn);
480 warned = 1;
c906108c 481 }
c906108c
SS
482 }
483}
484
d318976c
FN
485/* Read commands from `instream' and execute them
486 until end of file or error reading instream. */
c906108c 487
d318976c
FN
488void
489command_loop (void)
c906108c 490{
d318976c
FN
491 struct cleanup *old_chain;
492 char *command;
493 int stdin_is_tty = ISATTY (stdin);
494 long time_at_cmd_start;
495#ifdef HAVE_SBRK
496 long space_at_cmd_start = 0;
497#endif
498 extern int display_time;
499 extern int display_space;
c5aa993b 500
d318976c
FN
501 while (instream && !feof (instream))
502 {
d318976c
FN
503 if (window_hook && instream == stdin)
504 (*window_hook) (instream, get_prompt ());
c906108c 505
d318976c
FN
506 quit_flag = 0;
507 if (instream == stdin && stdin_is_tty)
508 reinitialize_more_filter ();
509 old_chain = make_cleanup (null_cleanup, 0);
c906108c 510
d318976c
FN
511 /* Get a command-line. This calls the readline package. */
512 command = command_line_input (instream == stdin ?
513 get_prompt () : (char *) NULL,
514 instream == stdin, "prompt");
d318976c
FN
515 if (command == 0)
516 return;
c906108c 517
d318976c 518 time_at_cmd_start = get_run_time ();
c906108c 519
d318976c 520 if (display_space)
9e0b60a8 521 {
d318976c 522#ifdef HAVE_SBRK
d318976c 523 char *lim = (char *) sbrk (0);
6dd77b81 524 space_at_cmd_start = lim - lim_at_start;
9e0b60a8 525#endif
d318976c 526 }
9e0b60a8 527
d318976c 528 execute_command (command, instream == stdin);
347bddb7
PA
529
530 /* Do any commands attached to breakpoint we are stopped at. */
531 bpstat_do_actions ();
532
d318976c 533 do_cleanups (old_chain);
9e0b60a8 534
d318976c 535 if (display_time)
9e0b60a8 536 {
d318976c 537 long cmd_time = get_run_time () - time_at_cmd_start;
9e0b60a8 538
a3f17187 539 printf_unfiltered (_("Command execution time: %ld.%06ld\n"),
d318976c 540 cmd_time / 1000000, cmd_time % 1000000);
9e0b60a8 541 }
9e0b60a8 542
d318976c 543 if (display_space)
9e0b60a8 544 {
d318976c 545#ifdef HAVE_SBRK
d318976c 546 char *lim = (char *) sbrk (0);
6dd77b81 547 long space_now = lim - lim_at_start;
d318976c
FN
548 long space_diff = space_now - space_at_cmd_start;
549
57ee890f 550 printf_unfiltered (_("Space used: %ld (%s%ld for this command)\n"),
d318976c 551 space_now,
57ee890f 552 (space_diff >= 0 ? "+" : ""),
d318976c
FN
553 space_diff);
554#endif
9e0b60a8 555 }
9e0b60a8 556 }
9e0b60a8 557}
d318976c
FN
558\f
559/* Commands call this if they do not want to be repeated by null lines. */
9e0b60a8 560
d318976c
FN
561void
562dont_repeat (void)
9e0b60a8 563{
d318976c
FN
564 if (server_command)
565 return;
9e0b60a8 566
d318976c
FN
567 /* If we aren't reading from standard input, we are saving the last
568 thing read from stdin in line and don't want to delete it. Null lines
569 won't repeat here in any case. */
570 if (instream == stdin)
571 *line = 0;
9e0b60a8 572}
d318976c
FN
573\f
574/* Read a line from the stream "instream" without command line editing.
9e0b60a8 575
d318976c
FN
576 It prints PROMPT_ARG once at the start.
577 Action is compatible with "readline", e.g. space for the result is
578 malloc'd and should be freed by the caller.
9e0b60a8 579
d318976c
FN
580 A NULL return means end of file. */
581char *
582gdb_readline (char *prompt_arg)
9e0b60a8 583{
d318976c
FN
584 int c;
585 char *result;
586 int input_index = 0;
587 int result_size = 80;
9e0b60a8 588
d318976c 589 if (prompt_arg)
9e0b60a8 590 {
d318976c
FN
591 /* Don't use a _filtered function here. It causes the assumed
592 character position to be off, since the newline we read from
593 the user is not accounted for. */
594 fputs_unfiltered (prompt_arg, gdb_stdout);
9e0b60a8
JM
595 gdb_flush (gdb_stdout);
596 }
597
d318976c 598 result = (char *) xmalloc (result_size);
9e0b60a8
JM
599
600 while (1)
601 {
d318976c
FN
602 /* Read from stdin if we are executing a user defined command.
603 This is the right thing for prompt_for_continue, at least. */
604 c = fgetc (instream ? instream : stdin);
9e0b60a8 605
d318976c 606 if (c == EOF)
9e0b60a8 607 {
d318976c
FN
608 if (input_index > 0)
609 /* The last line does not end with a newline. Return it, and
610 if we are called again fgetc will still return EOF and
611 we'll return NULL then. */
9e0b60a8 612 break;
b8c9b27d 613 xfree (result);
d318976c 614 return NULL;
9e0b60a8 615 }
c5aa993b 616
d318976c 617 if (c == '\n')
9e0b60a8 618 {
d318976c
FN
619 if (input_index > 0 && result[input_index - 1] == '\r')
620 input_index--;
621 break;
9e0b60a8 622 }
9e0b60a8 623
d318976c
FN
624 result[input_index++] = c;
625 while (input_index >= result_size)
9e0b60a8 626 {
d318976c
FN
627 result_size *= 2;
628 result = (char *) xrealloc (result, result_size);
9e0b60a8 629 }
9e0b60a8
JM
630 }
631
d318976c
FN
632 result[input_index++] = '\0';
633 return result;
9e0b60a8
JM
634}
635
d318976c
FN
636/* Variables which control command line editing and history
637 substitution. These variables are given default values at the end
638 of this file. */
639static int command_editing_p;
920d2a44 640
d318976c
FN
641/* NOTE 1999-04-29: This variable will be static again, once we modify
642 gdb to use the event loop as the default command loop and we merge
643 event-top.c into this file, top.c */
920d2a44 644
d318976c 645/* static */ int history_expansion_p;
920d2a44 646
d318976c 647static int write_history_p;
920d2a44
AC
648static void
649show_write_history_p (struct ui_file *file, int from_tty,
650 struct cmd_list_element *c, const char *value)
651{
652 fprintf_filtered (file, _("Saving of the history record on exit is %s.\n"),
653 value);
654}
655
d318976c 656static int history_size;
920d2a44
AC
657static void
658show_history_size (struct ui_file *file, int from_tty,
659 struct cmd_list_element *c, const char *value)
660{
661 fprintf_filtered (file, _("The size of the command history is %s.\n"),
662 value);
663}
664
d318976c 665static char *history_filename;
920d2a44
AC
666static void
667show_history_filename (struct ui_file *file, int from_tty,
668 struct cmd_list_element *c, const char *value)
669{
670 fprintf_filtered (file, _("\
671The filename in which to record the command history is \"%s\".\n"),
672 value);
673}
9e0b60a8 674
b4f5539f 675/* This is like readline(), but it has some gdb-specific behavior.
2e03ee74 676 gdb may want readline in both the synchronous and async modes during
b4f5539f
TT
677 a single gdb invocation. At the ordinary top-level prompt we might
678 be using the async readline. That means we can't use
679 rl_pre_input_hook, since it doesn't work properly in async mode.
680 However, for a secondary prompt (" >", such as occurs during a
2e03ee74
DJ
681 `define'), gdb wants a synchronous response.
682
683 We used to call readline() directly, running it in synchronous
684 mode. But mixing modes this way is not supported, and as of
685 readline 5.x it no longer works; the arrow keys come unbound during
686 the synchronous call. So we make a nested call into the event
687 loop. That's what gdb_readline_wrapper is for. */
688
689/* A flag set as soon as gdb_readline_wrapper_line is called; we can't
690 rely on gdb_readline_wrapper_result, which might still be NULL if
691 the user types Control-D for EOF. */
692static int gdb_readline_wrapper_done;
693
694/* The result of the current call to gdb_readline_wrapper, once a newline
695 is seen. */
696static char *gdb_readline_wrapper_result;
697
698/* Any intercepted hook. Operate-and-get-next sets this, expecting it
699 to be called after the newline is processed (which will redisplay
700 the prompt). But in gdb_readline_wrapper we will not get a new
701 prompt until the next call, or until we return to the event loop.
702 So we disable this hook around the newline and restore it before we
703 return. */
704static void (*saved_after_char_processing_hook) (void);
705
706/* This function is called when readline has seen a complete line of
707 text. */
708
709static void
710gdb_readline_wrapper_line (char *line)
711{
712 gdb_assert (!gdb_readline_wrapper_done);
713 gdb_readline_wrapper_result = line;
714 gdb_readline_wrapper_done = 1;
715
716 /* Prevent operate-and-get-next from acting too early. */
717 saved_after_char_processing_hook = after_char_processing_hook;
718 after_char_processing_hook = NULL;
1b05479a
DJ
719
720 /* Prevent parts of the prompt from being redisplayed if annotations
721 are enabled, and readline's state getting out of sync. */
722 if (async_command_editing_p)
723 rl_callback_handler_remove ();
2e03ee74
DJ
724}
725
726struct gdb_readline_wrapper_cleanup
727 {
728 void (*handler_orig) (char *);
2e03ee74
DJ
729 int already_prompted_orig;
730 };
731
732static void
733gdb_readline_wrapper_cleanup (void *arg)
734{
735 struct gdb_readline_wrapper_cleanup *cleanup = arg;
736
2e03ee74 737 rl_already_prompted = cleanup->already_prompted_orig;
2e03ee74
DJ
738
739 gdb_assert (input_handler == gdb_readline_wrapper_line);
740 input_handler = cleanup->handler_orig;
741 gdb_readline_wrapper_result = NULL;
742 gdb_readline_wrapper_done = 0;
743
744 after_char_processing_hook = saved_after_char_processing_hook;
745 saved_after_char_processing_hook = NULL;
746
747 xfree (cleanup);
748}
749
b4f5539f
TT
750char *
751gdb_readline_wrapper (char *prompt)
752{
2e03ee74
DJ
753 struct cleanup *back_to;
754 struct gdb_readline_wrapper_cleanup *cleanup;
755 char *retval;
756
757 cleanup = xmalloc (sizeof (*cleanup));
758 cleanup->handler_orig = input_handler;
759 input_handler = gdb_readline_wrapper_line;
760
2e03ee74
DJ
761 cleanup->already_prompted_orig = rl_already_prompted;
762
763 back_to = make_cleanup (gdb_readline_wrapper_cleanup, cleanup);
764
765 /* Display our prompt and prevent double prompt display. */
1b05479a 766 display_gdb_prompt (prompt);
2e03ee74
DJ
767 rl_already_prompted = 1;
768
362646f5 769 if (after_char_processing_hook)
2e03ee74
DJ
770 (*after_char_processing_hook) ();
771 gdb_assert (after_char_processing_hook == NULL);
772
773 /* gdb_do_one_event argument is unused. */
774 while (gdb_do_one_event (NULL) >= 0)
775 if (gdb_readline_wrapper_done)
776 break;
b4f5539f 777
2e03ee74
DJ
778 retval = gdb_readline_wrapper_result;
779 do_cleanups (back_to);
780 return retval;
b4f5539f
TT
781}
782
9e0b60a8 783\f
d318976c
FN
784#ifdef STOP_SIGNAL
785static void
786stop_sig (int signo)
9e0b60a8 787{
d318976c
FN
788#if STOP_SIGNAL == SIGTSTP
789 signal (SIGTSTP, SIG_DFL);
46711df8
MK
790#if HAVE_SIGPROCMASK
791 {
792 sigset_t zero;
793
794 sigemptyset (&zero);
795 sigprocmask (SIG_SETMASK, &zero, 0);
796 }
797#elif HAVE_SIGSETMASK
d318976c 798 sigsetmask (0);
46711df8 799#endif
d318976c
FN
800 kill (getpid (), SIGTSTP);
801 signal (SIGTSTP, stop_sig);
802#else
803 signal (STOP_SIGNAL, stop_sig);
804#endif
805 printf_unfiltered ("%s", get_prompt ());
806 gdb_flush (gdb_stdout);
9e0b60a8 807
d318976c
FN
808 /* Forget about any previous command -- null line now will do nothing. */
809 dont_repeat ();
9e0b60a8 810}
d318976c 811#endif /* STOP_SIGNAL */
9e0b60a8 812
d318976c 813/* Initialize signal handlers. */
64cdedad
EZ
814static void
815float_handler (int signo)
816{
817 /* This message is based on ANSI C, section 4.7. Note that integer
818 divide by zero causes this, so "float" is a misnomer. */
819 signal (SIGFPE, float_handler);
8a3fe4f8 820 error (_("Erroneous arithmetic operation."));
64cdedad
EZ
821}
822
9e0b60a8 823static void
d318976c 824do_nothing (int signo)
9e0b60a8 825{
d318976c
FN
826 /* Under System V the default disposition of a signal is reinstated after
827 the signal is caught and delivered to an application process. On such
828 systems one must restore the replacement signal handler if one wishes
829 to continue handling the signal in one's program. On BSD systems this
830 is not needed but it is harmless, and it simplifies the code to just do
831 it unconditionally. */
832 signal (signo, do_nothing);
9e0b60a8
JM
833}
834
467d8519
TT
835/* The current saved history number from operate-and-get-next.
836 This is -1 if not valid. */
837static int operate_saved_history = -1;
838
839/* This is put on the appropriate hook and helps operate-and-get-next
840 do its work. */
b9362cc7 841static void
5ae5f592 842gdb_rl_operate_and_get_next_completion (void)
467d8519
TT
843{
844 int delta = where_history () - operate_saved_history;
845 /* The `key' argument to rl_get_previous_history is ignored. */
846 rl_get_previous_history (delta, 0);
847 operate_saved_history = -1;
848
849 /* readline doesn't automatically update the display for us. */
12f4afab 850 rl_redisplay ();
467d8519
TT
851
852 after_char_processing_hook = NULL;
853 rl_pre_input_hook = NULL;
854}
855
856/* This is a gdb-local readline command handler. It accepts the
857 current command line (like RET does) and, if this command was taken
858 from the history, arranges for the next command in the history to
859 appear on the command line when the prompt returns.
860 We ignore the arguments. */
861static int
862gdb_rl_operate_and_get_next (int count, int key)
863{
b5686e99
MK
864 int where;
865
362646f5
AC
866 /* Use the async hook. */
867 after_char_processing_hook = gdb_rl_operate_and_get_next_completion;
467d8519 868
b5686e99
MK
869 /* Find the current line, and find the next line to use. */
870 where = where_history();
871
872 /* FIXME: kettenis/20020817: max_input_history is renamed into
873 history_max_entries in readline-4.2. When we do a new readline
874 import, we should probably change it here too, even though
875 readline maintains backwards compatibility for now by still
876 defining max_input_history. */
877 if ((history_is_stifled () && (history_length >= max_input_history)) ||
878 (where >= history_length - 1))
879 operate_saved_history = where;
880 else
881 operate_saved_history = where + 1;
882
467d8519
TT
883 return rl_newline (1, key);
884}
885\f
d318976c
FN
886/* Read one line from the command input stream `instream'
887 into the local static buffer `linebuffer' (whose current length
888 is `linelength').
889 The buffer is made bigger as necessary.
890 Returns the address of the start of the line.
9e0b60a8 891
d318976c 892 NULL is returned for end of file.
9e0b60a8 893
d318976c
FN
894 *If* the instream == stdin & stdin is a terminal, the line read
895 is copied into the file line saver (global var char *line,
896 length linesize) so that it can be duplicated.
9e0b60a8 897
d318976c
FN
898 This routine either uses fancy command line editing or
899 simple input as the user has requested. */
10689f25 900
d318976c
FN
901char *
902command_line_input (char *prompt_arg, int repeat, char *annotation_suffix)
9e0b60a8 903{
d318976c
FN
904 static char *linebuffer = 0;
905 static unsigned linelength = 0;
52f0bd74 906 char *p;
d318976c
FN
907 char *p1;
908 char *rl;
909 char *local_prompt = prompt_arg;
910 char *nline;
911 char got_eof = 0;
912
913 /* The annotation suffix must be non-NULL. */
914 if (annotation_suffix == NULL)
915 annotation_suffix = "";
9e0b60a8 916
d318976c
FN
917 if (annotation_level > 1 && instream == stdin)
918 {
919 local_prompt = alloca ((prompt_arg == NULL ? 0 : strlen (prompt_arg))
920 + strlen (annotation_suffix) + 40);
921 if (prompt_arg == NULL)
922 local_prompt[0] = '\0';
923 else
924 strcpy (local_prompt, prompt_arg);
925 strcat (local_prompt, "\n\032\032");
926 strcat (local_prompt, annotation_suffix);
927 strcat (local_prompt, "\n");
928 }
9e0b60a8 929
d318976c 930 if (linebuffer == 0)
9e0b60a8 931 {
d318976c
FN
932 linelength = 80;
933 linebuffer = (char *) xmalloc (linelength);
9e0b60a8 934 }
9e0b60a8 935
d318976c 936 p = linebuffer;
9e0b60a8 937
d318976c
FN
938 /* Control-C quits instantly if typed while in this loop
939 since it should not wait until the user types a newline. */
940 immediate_quit++;
941#ifdef STOP_SIGNAL
942 if (job_control)
362646f5 943 signal (STOP_SIGNAL, handle_stop_sig);
d318976c
FN
944#endif
945
946 while (1)
9e0b60a8 947 {
d318976c
FN
948 /* Make sure that all output has been output. Some machines may let
949 you get away with leaving out some of the gdb_flush, but not all. */
950 wrap_here ("");
951 gdb_flush (gdb_stdout);
952 gdb_flush (gdb_stderr);
953
954 if (source_file_name != NULL)
637537d0 955 ++source_line_number;
d318976c
FN
956
957 if (annotation_level > 1 && instream == stdin)
958 {
306d9ac5
DC
959 puts_unfiltered ("\n\032\032pre-");
960 puts_unfiltered (annotation_suffix);
961 puts_unfiltered ("\n");
d318976c
FN
962 }
963
964 /* Don't use fancy stuff if not talking to stdin. */
698ba934 965 if (deprecated_readline_hook && input_from_terminal_p ())
d318976c 966 {
9a4105ab 967 rl = (*deprecated_readline_hook) (local_prompt);
d318976c 968 }
698ba934 969 else if (command_editing_p && input_from_terminal_p ())
d318976c 970 {
b4f5539f 971 rl = gdb_readline_wrapper (local_prompt);
d318976c 972 }
9e0b60a8 973 else
d318976c
FN
974 {
975 rl = gdb_readline (local_prompt);
976 }
9e0b60a8 977
d318976c
FN
978 if (annotation_level > 1 && instream == stdin)
979 {
306d9ac5
DC
980 puts_unfiltered ("\n\032\032post-");
981 puts_unfiltered (annotation_suffix);
982 puts_unfiltered ("\n");
d318976c 983 }
9e0b60a8 984
d318976c 985 if (!rl || rl == (char *) EOF)
9e0b60a8 986 {
d318976c
FN
987 got_eof = 1;
988 break;
9e0b60a8 989 }
d318976c
FN
990 if (strlen (rl) + 1 + (p - linebuffer) > linelength)
991 {
992 linelength = strlen (rl) + 1 + (p - linebuffer);
993 nline = (char *) xrealloc (linebuffer, linelength);
994 p += nline - linebuffer;
995 linebuffer = nline;
996 }
997 p1 = rl;
998 /* Copy line. Don't copy null at end. (Leaves line alone
999 if this was just a newline) */
1000 while (*p1)
1001 *p++ = *p1++;
9e0b60a8 1002
b8c9b27d 1003 xfree (rl); /* Allocated in readline. */
9e0b60a8 1004
d318976c
FN
1005 if (p == linebuffer || *(p - 1) != '\\')
1006 break;
9e0b60a8 1007
d318976c
FN
1008 p--; /* Put on top of '\'. */
1009 local_prompt = (char *) 0;
1010 }
9e0b60a8 1011
d318976c
FN
1012#ifdef STOP_SIGNAL
1013 if (job_control)
1014 signal (STOP_SIGNAL, SIG_DFL);
1015#endif
1016 immediate_quit--;
9e0b60a8 1017
d318976c
FN
1018 if (got_eof)
1019 return NULL;
9e0b60a8 1020
d318976c
FN
1021#define SERVER_COMMAND_LENGTH 7
1022 server_command =
1023 (p - linebuffer > SERVER_COMMAND_LENGTH)
bf896cb0 1024 && strncmp (linebuffer, "server ", SERVER_COMMAND_LENGTH) == 0;
d318976c 1025 if (server_command)
9e0b60a8 1026 {
d318976c
FN
1027 /* Note that we don't set `line'. Between this and the check in
1028 dont_repeat, this insures that repeating will still do the
1029 right thing. */
1030 *p = '\0';
1031 return linebuffer + SERVER_COMMAND_LENGTH;
9e0b60a8 1032 }
9e0b60a8 1033
d318976c
FN
1034 /* Do history expansion if that is wished. */
1035 if (history_expansion_p && instream == stdin
1036 && ISATTY (instream))
1037 {
1038 char *history_value;
1039 int expanded;
9e0b60a8 1040
d318976c
FN
1041 *p = '\0'; /* Insert null now. */
1042 expanded = history_expand (linebuffer, &history_value);
1043 if (expanded)
1044 {
1045 /* Print the changes. */
1046 printf_unfiltered ("%s\n", history_value);
9e0b60a8 1047
d318976c
FN
1048 /* If there was an error, call this function again. */
1049 if (expanded < 0)
1050 {
b8c9b27d 1051 xfree (history_value);
d318976c
FN
1052 return command_line_input (prompt_arg, repeat, annotation_suffix);
1053 }
1054 if (strlen (history_value) > linelength)
1055 {
1056 linelength = strlen (history_value) + 1;
1057 linebuffer = (char *) xrealloc (linebuffer, linelength);
1058 }
1059 strcpy (linebuffer, history_value);
1060 p = linebuffer + strlen (linebuffer);
d318976c 1061 }
91d2803c 1062 xfree (history_value);
d318976c 1063 }
9e0b60a8 1064
d318976c
FN
1065 /* If we just got an empty line, and that is supposed
1066 to repeat the previous command, return the value in the
1067 global buffer. */
1068 if (repeat && p == linebuffer)
1069 return line;
1070 for (p1 = linebuffer; *p1 == ' ' || *p1 == '\t'; p1++);
1071 if (repeat && !*p1)
1072 return line;
9e0b60a8 1073
d318976c 1074 *p = 0;
9e0b60a8 1075
d318976c
FN
1076 /* Add line to history if appropriate. */
1077 if (instream == stdin
1078 && ISATTY (stdin) && *linebuffer)
1079 add_history (linebuffer);
9e0b60a8 1080
d318976c
FN
1081 /* Note: lines consisting solely of comments are added to the command
1082 history. This is useful when you type a command, and then
1083 realize you don't want to execute it quite yet. You can comment
1084 out the command and then later fetch it from the value history
1085 and remove the '#'. The kill ring is probably better, but some
1086 people are in the habit of commenting things out. */
1087 if (*p1 == '#')
1088 *p1 = '\0'; /* Found a comment. */
9e0b60a8 1089
d318976c
FN
1090 /* Save into global buffer if appropriate. */
1091 if (repeat)
1092 {
1093 if (linelength > linesize)
1094 {
1095 line = xrealloc (line, linelength);
1096 linesize = linelength;
1097 }
1098 strcpy (line, linebuffer);
1099 return line;
1100 }
9e0b60a8 1101
d318976c 1102 return linebuffer;
9e0b60a8
JM
1103}
1104\f
1105/* Print the GDB banner. */
1106void
fba45db2 1107print_gdb_version (struct ui_file *stream)
9e0b60a8
JM
1108{
1109 /* From GNU coding standards, first line is meant to be easy for a
1110 program to parse, and is just canonical program name and version
1111 number, which starts after last space. */
1112
c16158bc 1113 fprintf_filtered (stream, "GNU gdb %s%s\n", PKGVERSION, version);
9e0b60a8
JM
1114
1115 /* Second line is a copyright notice. */
1116
c9fc347d 1117 fprintf_filtered (stream, "Copyright (C) 2009 Free Software Foundation, Inc.\n");
9e0b60a8
JM
1118
1119 /* Following the copyright is a brief statement that the program is
1120 free software, that users are free to copy and change it on
1121 certain conditions, that it is covered by the GNU GPL, and that
1122 there is no warranty. */
1123
1124 fprintf_filtered (stream, "\
b8533aec
DJ
1125License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\n\
1126This is free software: you are free to change and redistribute it.\n\
0b93d57c 1127There is NO WARRANTY, to the extent permitted by law. Type \"show copying\"\n\
b8533aec 1128and \"show warranty\" for details.\n");
9e0b60a8
JM
1129
1130 /* After the required info we print the configuration information. */
1131
1132 fprintf_filtered (stream, "This GDB was configured as \"");
6314a349 1133 if (strcmp (host_name, target_name) != 0)
9e0b60a8
JM
1134 {
1135 fprintf_filtered (stream, "--host=%s --target=%s", host_name, target_name);
1136 }
1137 else
1138 {
1139 fprintf_filtered (stream, "%s", host_name);
1140 }
1141 fprintf_filtered (stream, "\".");
c16158bc
JM
1142
1143 if (REPORT_BUGS_TO[0])
1144 {
1145 fprintf_filtered (stream,
1146 _("\nFor bug reporting instructions, please see:\n"));
7949220d 1147 fprintf_filtered (stream, "%s.", REPORT_BUGS_TO);
c16158bc 1148 }
9e0b60a8 1149}
9e0b60a8
JM
1150\f
1151/* get_prompt: access method for the GDB prompt string. */
1152
9e0b60a8 1153char *
fba45db2 1154get_prompt (void)
9e0b60a8 1155{
362646f5 1156 return PROMPT (0);
9e0b60a8
JM
1157}
1158
1159void
fba45db2 1160set_prompt (char *s)
9e0b60a8
JM
1161{
1162/* ??rehrauer: I don't know why this fails, since it looks as though
1163 assignments to prompt are wrapped in calls to savestring...
c5aa993b 1164 if (prompt != NULL)
b8c9b27d 1165 xfree (prompt);
c5aa993b 1166 */
362646f5 1167 PROMPT (0) = savestring (s, strlen (s));
9e0b60a8 1168}
9e0b60a8 1169\f
c5aa993b 1170
9e0b60a8
JM
1171/* If necessary, make the user confirm that we should quit. Return
1172 non-zero if we should quit, zero if we shouldn't. */
1173
1174int
fba45db2 1175quit_confirm (void)
9e0b60a8 1176{
39f77062 1177 if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
9e0b60a8
JM
1178 {
1179 char *s;
181e7f93 1180 struct inferior *inf = current_inferior ();
9e0b60a8
JM
1181
1182 /* This is something of a hack. But there's no reliable way to
c5aa993b
JM
1183 see if a GUI is running. The `use_windows' variable doesn't
1184 cut it. */
9a4105ab 1185 if (deprecated_init_ui_hook)
9e2f0ad4 1186 s = _("A debugging session is active.\nDo you still want to close the debugger?");
181e7f93 1187 else if (inf->attach_flag)
9e2f0ad4 1188 s = _("The program is running. Quit anyway (and detach it)? ");
9e0b60a8 1189 else
9e2f0ad4 1190 s = _("The program is running. Quit anyway (and kill it)? ");
9e0b60a8 1191
306d9ac5 1192 if (!query ("%s", s))
9e0b60a8
JM
1193 return 0;
1194 }
1195
1196 return 1;
1197}
1198
b0abbc58 1199struct qt_args
9e0b60a8 1200{
b0abbc58
JJ
1201 char *args;
1202 int from_tty;
1203};
9e0b60a8 1204
54a012c9
PA
1205/* Callback for iterate_over_threads. Finds any thread of inferior
1206 given by ARG (really an int*). */
1207
b0abbc58 1208static int
54a012c9 1209any_thread_of (struct thread_info *thread, void *arg)
b0abbc58 1210{
54a012c9 1211 int pid = * (int *)arg;
9e0b60a8 1212
54a012c9
PA
1213 if (PIDGET (thread->ptid) == pid)
1214 return 1;
1215
1216 return 0;
1217}
1218
1219/* Callback for iterate_over_inferiors. Kills or detaches the given
1220 inferior, depending on how we originally gained control of it. */
1221
1222static int
1223kill_or_detach (struct inferior *inf, void *args)
1224{
1225 struct qt_args *qt = args;
1226 struct thread_info *thread;
1227
1228 thread = iterate_over_threads (any_thread_of, &inf->pid);
1229 if (thread)
9e0b60a8 1230 {
54a012c9 1231 switch_to_thread (thread->ptid);
181e7f93 1232 if (inf->attach_flag)
54a012c9 1233 target_detach (qt->args, qt->from_tty);
9e0b60a8 1234 else
54a012c9 1235 target_kill ();
9e0b60a8
JM
1236 }
1237
54a012c9
PA
1238 return 0;
1239}
1240
1241/* Helper routine for quit_force that requires error handling. */
1242
1243static int
1244quit_target (void *arg)
1245{
1246 struct qt_args *qt = (struct qt_args *)arg;
1247
1248 /* Kill or detach all inferiors. */
6aa8e5c2
PA
1249 if (target_has_execution)
1250 iterate_over_inferiors (kill_or_detach, qt);
54a012c9 1251
aa76d38d
PA
1252 /* Give all pushed targets a chance to do minimal cleanup, and pop
1253 them all out. */
1254 pop_all_targets (1);
9e0b60a8
JM
1255
1256 /* Save the history information if it is appropriate to do so. */
1257 if (write_history_p && history_filename)
1258 write_history (history_filename);
1259
c5aa993b 1260 do_final_cleanups (ALL_CLEANUPS); /* Do any final cleanups before exiting */
9e0b60a8 1261
b0abbc58
JJ
1262 return 0;
1263}
1264
1265/* Quit without asking for confirmation. */
1266
1267void
1268quit_force (char *args, int from_tty)
1269{
1270 int exit_code = 0;
365c70b1 1271 struct qt_args qt;
b0abbc58
JJ
1272
1273 /* An optional expression may be used to cause gdb to terminate with the
1274 value of that expression. */
1275 if (args)
1276 {
1277 struct value *val = parse_and_eval (args);
1278
1279 exit_code = (int) value_as_long (val);
1280 }
4b0ad762
AS
1281 else if (return_child_result)
1282 exit_code = return_child_result_value;
b0abbc58 1283
365c70b1
JJ
1284 qt.args = args;
1285 qt.from_tty = from_tty;
1286
b0abbc58 1287 /* We want to handle any quit errors and exit regardless. */
365c70b1 1288 catch_errors (quit_target, &qt,
b0abbc58
JJ
1289 "Quitting: ", RETURN_MASK_ALL);
1290
9e0b60a8
JM
1291 exit (exit_code);
1292}
1293
698ba934
DJ
1294/* Returns whether GDB is running on a terminal and input is
1295 currently coming from that terminal. */
9e0b60a8
JM
1296
1297int
fba45db2 1298input_from_terminal_p (void)
9e0b60a8 1299{
698ba934
DJ
1300 if (gdb_has_a_terminal () && instream == stdin)
1301 return 1;
1302
1303 /* If INSTREAM is unset, and we are not in a user command, we
1304 must be in Insight. That's like having a terminal, for our
1305 purposes. */
1306 if (instream == NULL && !in_user_command)
1307 return 1;
1308
1309 return 0;
9e0b60a8
JM
1310}
1311\f
9e0b60a8 1312static void
fba45db2 1313dont_repeat_command (char *ignored, int from_tty)
9e0b60a8 1314{
c5aa993b
JM
1315 *line = 0; /* Can't call dont_repeat here because we're not
1316 necessarily reading from stdin. */
9e0b60a8
JM
1317}
1318\f
1319/* Functions to manipulate command line editing control variables. */
1320
1321/* Number of commands to print in each call to show_commands. */
1322#define Hist_print 10
d318976c 1323void
fba45db2 1324show_commands (char *args, int from_tty)
9e0b60a8
JM
1325{
1326 /* Index for history commands. Relative to history_base. */
1327 int offset;
1328
1329 /* Number of the history entry which we are planning to display next.
1330 Relative to history_base. */
1331 static int num = 0;
1332
1333 /* The first command in the history which doesn't exist (i.e. one more
1334 than the number of the last command). Relative to history_base. */
1335 int hist_len;
1336
9e0b60a8
JM
1337 /* Print out some of the commands from the command history. */
1338 /* First determine the length of the history list. */
1339 hist_len = history_size;
1340 for (offset = 0; offset < history_size; offset++)
1341 {
1342 if (!history_get (history_base + offset))
1343 {
1344 hist_len = offset;
1345 break;
1346 }
1347 }
1348
1349 if (args)
1350 {
1351 if (args[0] == '+' && args[1] == '\0')
1352 /* "info editing +" should print from the stored position. */
1353 ;
1354 else
1355 /* "info editing <exp>" should print around command number <exp>. */
0e828ed1 1356 num = (parse_and_eval_long (args) - history_base) - Hist_print / 2;
9e0b60a8
JM
1357 }
1358 /* "show commands" means print the last Hist_print commands. */
1359 else
1360 {
1361 num = hist_len - Hist_print;
1362 }
1363
1364 if (num < 0)
1365 num = 0;
1366
1367 /* If there are at least Hist_print commands, we want to display the last
1368 Hist_print rather than, say, the last 6. */
1369 if (hist_len - num < Hist_print)
1370 {
1371 num = hist_len - Hist_print;
1372 if (num < 0)
1373 num = 0;
1374 }
1375
1376 for (offset = num; offset < num + Hist_print && offset < hist_len; offset++)
1377 {
1378 printf_filtered ("%5d %s\n", history_base + offset,
c5aa993b 1379 (history_get (history_base + offset))->line);
9e0b60a8
JM
1380 }
1381
1382 /* The next command we want to display is the next one that we haven't
1383 displayed yet. */
1384 num += Hist_print;
1385
1386 /* If the user repeats this command with return, it should do what
1387 "show commands +" does. This is unnecessary if arg is null,
1388 because "show commands +" is not useful after "show commands". */
1389 if (from_tty && args)
1390 {
1391 args[0] = '+';
1392 args[1] = '\0';
1393 }
1394}
1395
1396/* Called by do_setshow_command. */
9e0b60a8 1397static void
fba45db2 1398set_history_size_command (char *args, int from_tty, struct cmd_list_element *c)
9e0b60a8
JM
1399{
1400 if (history_size == INT_MAX)
1401 unstifle_history ();
1402 else if (history_size >= 0)
1403 stifle_history (history_size);
1404 else
1405 {
1406 history_size = INT_MAX;
8a3fe4f8 1407 error (_("History size must be non-negative"));
9e0b60a8
JM
1408 }
1409}
1410
d318976c 1411void
fba45db2 1412set_history (char *args, int from_tty)
9e0b60a8 1413{
a3f17187 1414 printf_unfiltered (_("\"set history\" must be followed by the name of a history subcommand.\n"));
9e0b60a8
JM
1415 help_list (sethistlist, "set history ", -1, gdb_stdout);
1416}
1417
d318976c 1418void
fba45db2 1419show_history (char *args, int from_tty)
9e0b60a8
JM
1420{
1421 cmd_show_list (showhistlist, from_tty, "");
1422}
1423
1424int info_verbose = 0; /* Default verbose msgs off */
1425
1426/* Called by do_setshow_command. An elaborate joke. */
d318976c 1427void
fba45db2 1428set_verbose (char *args, int from_tty, struct cmd_list_element *c)
9e0b60a8
JM
1429{
1430 char *cmdname = "verbose";
1431 struct cmd_list_element *showcmd;
1432
1433 showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
1434
1435 if (info_verbose)
1436 {
1437 c->doc = "Set verbose printing of informational messages.";
1438 showcmd->doc = "Show verbose printing of informational messages.";
1439 }
1440 else
1441 {
1442 c->doc = "Set verbosity.";
1443 showcmd->doc = "Show verbosity.";
1444 }
1445}
1446
9e0b60a8
JM
1447/* Init the history buffer. Note that we are called after the init file(s)
1448 * have been read so that the user can change the history file via his
1449 * .gdbinit file (for instance). The GDBHISTFILE environment variable
1450 * overrides all of this.
1451 */
1452
1453void
fba45db2 1454init_history (void)
9e0b60a8
JM
1455{
1456 char *tmpenv;
1457
1458 tmpenv = getenv ("HISTSIZE");
1459 if (tmpenv)
1460 history_size = atoi (tmpenv);
1461 else if (!history_size)
1462 history_size = 256;
1463
1464 stifle_history (history_size);
1465
1466 tmpenv = getenv ("GDBHISTFILE");
1467 if (tmpenv)
c5aa993b
JM
1468 history_filename = savestring (tmpenv, strlen (tmpenv));
1469 else if (!history_filename)
1470 {
1471 /* We include the current directory so that if the user changes
1472 directories the file written will be the same as the one
1473 that was read. */
a0b3c4fd 1474#ifdef __MSDOS__
eb2f494a 1475 /* No leading dots in file names are allowed on MSDOS. */
1754f103
MK
1476 history_filename = concat (current_directory, "/_gdb_history",
1477 (char *)NULL);
a0b3c4fd 1478#else
1754f103
MK
1479 history_filename = concat (current_directory, "/.gdb_history",
1480 (char *)NULL);
a0b3c4fd 1481#endif
c5aa993b 1482 }
9e0b60a8
JM
1483 read_history (history_filename);
1484}
1485
920d2a44
AC
1486static void
1487show_new_async_prompt (struct ui_file *file, int from_tty,
1488 struct cmd_list_element *c, const char *value)
1489{
1490 fprintf_filtered (file, _("Gdb's prompt is \"%s\".\n"), value);
1491}
1492
1493static void
1494show_async_command_editing_p (struct ui_file *file, int from_tty,
1495 struct cmd_list_element *c, const char *value)
1496{
1497 fprintf_filtered (file, _("\
1498Editing of command lines as they are typed is %s.\n"),
1499 value);
1500}
1501
1502static void
1503show_annotation_level (struct ui_file *file, int from_tty,
1504 struct cmd_list_element *c, const char *value)
1505{
1506 fprintf_filtered (file, _("Annotation_level is %s.\n"), value);
1507}
1508
1509static void
1510show_exec_done_display_p (struct ui_file *file, int from_tty,
1511 struct cmd_list_element *c, const char *value)
1512{
1513 fprintf_filtered (file, _("\
1514Notification of completion for asynchronous execution commands is %s.\n"),
1515 value);
1516}
9e0b60a8 1517static void
fba45db2 1518init_main (void)
9e0b60a8
JM
1519{
1520 struct cmd_list_element *c;
1521
362646f5
AC
1522 /* initialize the prompt stack to a simple "(gdb) " prompt or to
1523 whatever the DEFAULT_PROMPT is. */
1524 the_prompts.top = 0;
1525 PREFIX (0) = "";
1526 PROMPT (0) = savestring (DEFAULT_PROMPT, strlen (DEFAULT_PROMPT));
1527 SUFFIX (0) = "";
1528 /* Set things up for annotation_level > 1, if the user ever decides
1529 to use it. */
1530 async_annotation_suffix = "prompt";
1531 /* Set the variable associated with the setshow prompt command. */
1532 new_async_prompt = savestring (PROMPT (0), strlen (PROMPT (0)));
1533
1534 /* If gdb was started with --annotate=2, this is equivalent to the
1535 user entering the command 'set annotate 2' at the gdb prompt, so
1536 we need to do extra processing. */
1537 if (annotation_level > 1)
1538 set_async_annotation_level (NULL, 0, NULL);
9e0b60a8
JM
1539
1540 /* Set the important stuff up for command editing. */
1541 command_editing_p = 1;
9e0b60a8
JM
1542 history_expansion_p = 0;
1543 write_history_p = 0;
1544
1545 /* Setup important stuff for command line editing. */
38017ce8 1546 rl_completion_entry_function = readline_line_completion_function;
51065942 1547 rl_completer_word_break_characters = default_word_break_characters ();
d318976c 1548 rl_completer_quote_characters = get_gdb_completer_quote_characters ();
9e0b60a8 1549 rl_readline_name = "gdb";
7cb3ec5e 1550 rl_terminal_name = getenv ("TERM");
9e0b60a8 1551
467d8519
TT
1552 /* The name for this defun comes from Bash, where it originated.
1553 15 is Control-o, the same binding this function has in Bash. */
1554 rl_add_defun ("operate-and-get-next", gdb_rl_operate_and_get_next, 15);
1555
4d28ad1e
AC
1556 add_setshow_string_cmd ("prompt", class_support,
1557 &new_async_prompt, _("\
1558Set gdb's prompt"), _("\
1559Show gdb's prompt"), NULL,
1560 set_async_prompt,
920d2a44 1561 show_new_async_prompt,
4d28ad1e 1562 &setlist, &showlist);
9e0b60a8 1563
1bedd215
AC
1564 add_com ("dont-repeat", class_support, dont_repeat_command, _("\
1565Don't repeat this command.\n\
9e0b60a8 1566Primarily used inside of user-defined commands that should not be repeated when\n\
1bedd215 1567hitting return."));
9e0b60a8 1568
5bf193a2
AC
1569 add_setshow_boolean_cmd ("editing", class_support,
1570 &async_command_editing_p, _("\
1571Set editing of command lines as they are typed."), _("\
1572Show editing of command lines as they are typed."), _("\
9e0b60a8
JM
1573Use \"on\" to enable the editing, and \"off\" to disable it.\n\
1574Without an argument, command line editing is enabled. To edit, use\n\
5bf193a2
AC
1575EMACS-like or VI-like commands like control-P or ESC."),
1576 set_async_editing_command,
920d2a44 1577 show_async_command_editing_p,
5bf193a2
AC
1578 &setlist, &showlist);
1579
1580 add_setshow_boolean_cmd ("save", no_class, &write_history_p, _("\
1581Set saving of the history record on exit."), _("\
1582Show saving of the history record on exit."), _("\
9e0b60a8 1583Use \"on\" to enable the saving, and \"off\" to disable it.\n\
5bf193a2
AC
1584Without an argument, saving is enabled."),
1585 NULL,
920d2a44 1586 show_write_history_p,
5bf193a2 1587 &sethistlist, &showhistlist);
9e0b60a8 1588
4d28ad1e
AC
1589 add_setshow_integer_cmd ("size", no_class, &history_size, _("\
1590Set the size of the command history,"), _("\
1591Show the size of the command history,"), _("\
1592ie. the number of previous commands to keep a record of."),
1593 set_history_size_command,
920d2a44 1594 show_history_size,
4d28ad1e
AC
1595 &sethistlist, &showhistlist);
1596
1597 add_setshow_filename_cmd ("filename", no_class, &history_filename, _("\
1598Set the filename in which to record the command history"), _("\
1599Show the filename in which to record the command history"), _("\
1600(the list of previous commands of which a record is kept)."),
1601 NULL,
920d2a44 1602 show_history_filename,
4d28ad1e 1603 &sethistlist, &showhistlist);
9e0b60a8 1604
5bf193a2
AC
1605 add_setshow_boolean_cmd ("confirm", class_support, &caution, _("\
1606Set whether to confirm potentially dangerous operations."), _("\
1607Show whether to confirm potentially dangerous operations."), NULL,
1608 NULL,
920d2a44 1609 show_caution,
5bf193a2 1610 &setlist, &showlist);
9e0b60a8 1611
85c07804
AC
1612 add_setshow_zinteger_cmd ("annotate", class_obscure, &annotation_level, _("\
1613Set annotation_level."), _("\
1614Show annotation_level."), _("\
9e0b60a8 16150 == normal; 1 == fullname (for use when running under emacs)\n\
85c07804
AC
16162 == output annotated suitably for use by programs that control GDB."),
1617 set_async_annotation_level,
920d2a44 1618 show_annotation_level,
85c07804 1619 &setlist, &showlist);
362646f5 1620
5bf193a2
AC
1621 add_setshow_boolean_cmd ("exec-done-display", class_support,
1622 &exec_done_display_p, _("\
1623Set notification of completion for asynchronous execution commands."), _("\
1624Show notification of completion for asynchronous execution commands."), _("\
1625Use \"on\" to enable the notification, and \"off\" to disable it."),
1626 NULL,
920d2a44 1627 show_exec_done_display_p,
5bf193a2 1628 &setlist, &showlist);
9e0b60a8 1629}
64cdedad
EZ
1630
1631void
1632gdb_init (char *argv0)
1633{
1634 if (pre_init_ui_hook)
1635 pre_init_ui_hook ();
1636
1637 /* Run the init function of each source file */
1638
64cdedad
EZ
1639#ifdef __MSDOS__
1640 /* Make sure we return to the original directory upon exit, come
1641 what may, since the OS doesn't do that for us. */
1642 make_final_cleanup (do_chdir_cleanup, xstrdup (current_directory));
1643#endif
1644
1645 init_cmd_lists (); /* This needs to be done first */
1646 initialize_targets (); /* Setup target_terminal macros for utils.c */
1647 initialize_utils (); /* Make errors and warnings possible */
1648 initialize_all_files ();
1649 initialize_current_architecture ();
1650 init_cli_cmds();
1651 init_main (); /* But that omits this file! Do it now */
1652
0ea3f30e
DJ
1653 initialize_stdin_serial ();
1654
362646f5 1655 async_init_signals ();
64cdedad
EZ
1656
1657 /* We need a default language for parsing expressions, so simple things like
1658 "set width 0" won't fail if no language is explicitly set in a config file
1659 or implicitly set by reading an executable during startup. */
1660 set_language (language_c);
1661 expected_language = current_language; /* don't warn about the change. */
1662
9a4105ab
AC
1663 /* Allow another UI to initialize. If the UI fails to initialize,
1664 and it wants GDB to revert to the CLI, it should clear
1665 deprecated_init_ui_hook. */
1666 if (deprecated_init_ui_hook)
1667 deprecated_init_ui_hook (argv0);
64cdedad 1668}
This page took 0.92101 seconds and 4 git commands to generate.