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