]>
Commit | Line | Data |
---|---|---|
7d9884b9 | 1 | /* Basic, host-specific, and target-specific definitions for GDB. |
16041d53 | 2 | Copyright (C) 1986, 1989, 1991, 1992, 1993, 1994, 1995 |
6f54efdc | 3 | Free Software Foundation, Inc. |
bd5635a1 RP |
4 | |
5 | This file is part of GDB. | |
6 | ||
a10c0d36 | 7 | This program is free software; you can redistribute it and/or modify |
bd5635a1 | 8 | it under the terms of the GNU General Public License as published by |
a10c0d36 JG |
9 | the Free Software Foundation; either version 2 of the License, or |
10 | (at your option) any later version. | |
bd5635a1 | 11 | |
a10c0d36 | 12 | This program is distributed in the hope that it will be useful, |
bd5635a1 RP |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | GNU General Public License for more details. | |
16 | ||
17 | You should have received a copy of the GNU General Public License | |
a10c0d36 | 18 | along with this program; if not, write to the Free Software |
b6d70e15 | 19 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ |
bd5635a1 | 20 | |
09722039 SG |
21 | #ifndef DEFS_H |
22 | #define DEFS_H | |
d747e0af MT |
23 | |
24 | #include <stdio.h> | |
25 | ||
26 | /* First include ansidecl.h so we can use the various macro definitions | |
debd3443 | 27 | here and in all subsequent file inclusions. */ |
d747e0af MT |
28 | |
29 | #include "ansidecl.h" | |
30 | ||
45993f61 SC |
31 | #ifdef ANSI_PROTOTYPES |
32 | #include <stdarg.h> | |
33 | #else | |
34 | #include <varargs.h> | |
35 | #endif | |
36 | ||
97e7b66f DE |
37 | #include "libiberty.h" |
38 | ||
39 | /* libiberty.h can't declare this one, but evidently we can. */ | |
40 | extern char *strsignal PARAMS ((int)); | |
41 | ||
c023fbf4 KH |
42 | #include "progress.h" |
43 | ||
86db943c SG |
44 | #include "mmalloc.h" |
45 | ||
7343d716 JK |
46 | /* For BFD64 and bfd_vma. */ |
47 | #include "bfd.h" | |
48 | ||
49 | /* An address in the program being debugged. Host byte order. Rather | |
50 | than duplicate all the logic in BFD which figures out what type | |
51 | this is (long, long long, etc.) and whether it needs to be 64 | |
52 | bits (the host/target interactions are subtle), we just use | |
53 | bfd_vma. */ | |
54 | ||
55 | typedef bfd_vma CORE_ADDR; | |
bd5635a1 RP |
56 | |
57 | #define min(a, b) ((a) < (b) ? (a) : (b)) | |
58 | #define max(a, b) ((a) > (b) ? (a) : (b)) | |
59 | ||
2e4964ad FF |
60 | /* Gdb does *lots* of string compares. Use macros to speed them up by |
61 | avoiding function calls if the first characters are not the same. */ | |
62 | ||
bd5d07d9 | 63 | #define STRCMP(a,b) (*(a) == *(b) ? strcmp ((a), (b)) : (int)*(a) - (int)*(b)) |
2e4964ad FF |
64 | #define STREQ(a,b) (*(a) == *(b) ? !strcmp ((a), (b)) : 0) |
65 | #define STREQN(a,b,c) (*(a) == *(b) ? !strncmp ((a), (b), (c)) : 0) | |
66 | ||
dd577ca5 | 67 | /* The character GNU C++ uses to build identifiers that must be unique from |
bd5635a1 RP |
68 | the program's identifiers (such as $this and $$vptr). */ |
69 | #define CPLUS_MARKER '$' /* May be overridden to '.' for SysV */ | |
70 | ||
e146177e | 71 | #include <errno.h> /* System call error return status */ |
bd5635a1 RP |
72 | |
73 | extern int quit_flag; | |
74 | extern int immediate_quit; | |
51b80b00 | 75 | extern int sevenbit_strings; |
d747e0af | 76 | |
6f54efdc | 77 | extern void quit PARAMS ((void)); |
bd5635a1 | 78 | |
c023fbf4 KH |
79 | #define QUIT { \ |
80 | if (quit_flag) quit (); \ | |
81 | if (interactive_hook) interactive_hook (); \ | |
82 | PROGRESS (1); \ | |
83 | } | |
bd5635a1 | 84 | |
e58de8a2 FF |
85 | /* Command classes are top-level categories into which commands are broken |
86 | down for "help" purposes. | |
87 | Notes on classes: class_alias is for alias commands which are not | |
88 | abbreviations of the original command. class-pseudo is for commands | |
89 | which are not really commands nor help topics ("stop"). */ | |
bd5635a1 RP |
90 | |
91 | enum command_class | |
92 | { | |
93 | /* Special args to help_list */ | |
94 | all_classes = -2, all_commands = -1, | |
95 | /* Classes of commands */ | |
96 | no_class = -1, class_run = 0, class_vars, class_stack, | |
97 | class_files, class_support, class_info, class_breakpoint, | |
e58de8a2 FF |
98 | class_alias, class_obscure, class_user, class_maintenance, |
99 | class_pseudo | |
bd5635a1 RP |
100 | }; |
101 | ||
bd5d07d9 FF |
102 | /* Languages represented in the symbol table and elsewhere. |
103 | This should probably be in language.h, but since enum's can't | |
104 | be forward declared to satisfy opaque references before their | |
105 | actual definition, needs to be here. */ | |
106 | ||
107 | enum language | |
108 | { | |
109 | language_unknown, /* Language not known */ | |
110 | language_auto, /* Placeholder for automatic setting */ | |
111 | language_c, /* C */ | |
112 | language_cplus, /* C++ */ | |
bd5d07d9 | 113 | language_chill, /* Chill */ |
e52bfe0c | 114 | language_fortran, /* Fortran */ |
754e5da2 SG |
115 | language_m2, /* Modula-2 */ |
116 | language_asm /* Assembly language */ | |
bd5d07d9 FF |
117 | }; |
118 | ||
bd5635a1 RP |
119 | /* the cleanup list records things that have to be undone |
120 | if an error happens (descriptors to be closed, memory to be freed, etc.) | |
121 | Each link in the chain records a function to call and an | |
122 | argument to give it. | |
123 | ||
124 | Use make_cleanup to add an element to the cleanup chain. | |
125 | Use do_cleanups to do all cleanup actions back to a given | |
126 | point in the chain. Use discard_cleanups to remove cleanups | |
127 | from the chain back to a given point, not doing them. */ | |
128 | ||
129 | struct cleanup | |
130 | { | |
131 | struct cleanup *next; | |
d747e0af MT |
132 | void (*function) PARAMS ((PTR)); |
133 | PTR arg; | |
bd5635a1 RP |
134 | }; |
135 | ||
413cba82 JL |
136 | |
137 | /* The ability to declare that a function never returns is useful, but | |
138 | not really required to compile GDB successfully, so the NORETURN and | |
139 | ATTR_NORETURN macros normally expand into nothing. */ | |
140 | ||
141 | /* If compiling with older versions of GCC, a function may be declared | |
142 | "volatile" to indicate that it does not return. */ | |
143 | ||
144 | #ifndef NORETURN | |
145 | # if defined(__GNUC__) \ | |
b6d70e15 | 146 | && (__GNUC__ == 1 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)) |
413cba82 JL |
147 | # define NORETURN volatile |
148 | # else | |
149 | # define NORETURN /* nothing */ | |
150 | # endif | |
151 | #endif | |
152 | ||
153 | /* GCC 2.5 and later versions define a function attribute "noreturn", | |
b6d70e15 SC |
154 | which is the preferred way to declare that a function never returns. |
155 | However GCC 2.7 appears to be the first version in which this fully | |
156 | works everywhere we use it. */ | |
413cba82 JL |
157 | |
158 | #ifndef ATTR_NORETURN | |
b6d70e15 | 159 | # if defined(__GNUC__) && __GNUC__ >= 2 && __GNUC_MINOR__ >= 7 |
413cba82 JL |
160 | # define ATTR_NORETURN __attribute__ ((noreturn)) |
161 | # else | |
162 | # define ATTR_NORETURN /* nothing */ | |
163 | # endif | |
164 | #endif | |
165 | ||
166 | #ifndef ATTR_FORMAT | |
b6d70e15 | 167 | # if defined(__GNUC__) && __GNUC__ >= 2 && __GNUC_MINOR__ >= 4 && defined (__ANSI_PROTOTYPES) |
413cba82 JL |
168 | # define ATTR_FORMAT(type, x, y) __attribute__ ((format(type, x, y))) |
169 | # else | |
170 | # define ATTR_FORMAT(type, x, y) /* nothing */ | |
171 | # endif | |
172 | #endif | |
173 | ||
637b1661 SG |
174 | /* Needed for various prototypes */ |
175 | ||
176 | #ifdef __STDC__ | |
177 | struct symtab; | |
178 | struct breakpoint; | |
179 | #endif | |
180 | ||
d747e0af MT |
181 | /* From blockframe.c */ |
182 | ||
6f54efdc | 183 | extern int inside_entry_func PARAMS ((CORE_ADDR)); |
d747e0af | 184 | |
6f54efdc | 185 | extern int inside_entry_file PARAMS ((CORE_ADDR addr)); |
d747e0af | 186 | |
6f54efdc | 187 | extern int inside_main_func PARAMS ((CORE_ADDR pc)); |
d747e0af | 188 | |
7532cf10 FF |
189 | /* From ch-lang.c, for the moment. (FIXME) */ |
190 | ||
6f54efdc | 191 | extern char *chill_demangle PARAMS ((const char *)); |
7532cf10 | 192 | |
d747e0af MT |
193 | /* From utils.c */ |
194 | ||
6f54efdc | 195 | extern int strcmp_iw PARAMS ((const char *, const char *)); |
d630b615 | 196 | |
6f54efdc | 197 | extern char *safe_strerror PARAMS ((int)); |
e146177e | 198 | |
6f54efdc | 199 | extern char *safe_strsignal PARAMS ((int)); |
e146177e | 200 | |
6f54efdc | 201 | extern void init_malloc PARAMS ((void *)); |
d747e0af | 202 | |
6f54efdc | 203 | extern void request_quit PARAMS ((int)); |
d747e0af | 204 | |
6f54efdc | 205 | extern void do_cleanups PARAMS ((struct cleanup *)); |
d747e0af | 206 | |
6f54efdc | 207 | extern void discard_cleanups PARAMS ((struct cleanup *)); |
d747e0af MT |
208 | |
209 | /* The bare make_cleanup function is one of those rare beasts that | |
210 | takes almost any type of function as the first arg and anything that | |
211 | will fit in a "void *" as the second arg. | |
212 | ||
213 | Should be, once all calls and called-functions are cleaned up: | |
214 | extern struct cleanup * | |
84d59861 | 215 | make_cleanup PARAMS ((void (*function) (void *), void *)); |
d747e0af MT |
216 | |
217 | Until then, lint and/or various type-checking compiler options will | |
218 | complain about make_cleanup calls. It'd be wrong to just cast things, | |
219 | since the type actually passed when the function is called would be | |
220 | wrong. */ | |
221 | ||
6f54efdc | 222 | extern struct cleanup *make_cleanup (); |
d747e0af | 223 | |
6f54efdc | 224 | extern struct cleanup *save_cleanups PARAMS ((void)); |
d747e0af | 225 | |
6f54efdc | 226 | extern void restore_cleanups PARAMS ((struct cleanup *)); |
d747e0af | 227 | |
6f54efdc | 228 | extern void free_current_contents PARAMS ((char **)); |
d747e0af | 229 | |
6f54efdc | 230 | extern void null_cleanup PARAMS ((char **)); |
d747e0af | 231 | |
6f54efdc | 232 | extern int myread PARAMS ((int, char *, int)); |
d747e0af | 233 | |
413cba82 JL |
234 | extern int query PARAMS((char *, ...)) |
235 | ATTR_FORMAT(printf, 1, 2); | |
6c803036 | 236 | \f |
96f7edbd JK |
237 | /* Annotation stuff. */ |
238 | ||
6c803036 JK |
239 | extern int annotation_level; /* in stack.c */ |
240 | \f | |
6f54efdc | 241 | extern void begin_line PARAMS ((void)); |
51b80b00 | 242 | |
6f54efdc | 243 | extern void wrap_here PARAMS ((char *)); |
d747e0af | 244 | |
6f54efdc | 245 | extern void reinitialize_more_filter PARAMS ((void)); |
d747e0af | 246 | |
04f566a3 JK |
247 | typedef FILE GDB_FILE; |
248 | #define gdb_stdout stdout | |
249 | #define gdb_stderr stderr | |
250 | ||
6f54efdc | 251 | extern void gdb_flush PARAMS ((GDB_FILE *)); |
04f566a3 | 252 | |
6f54efdc | 253 | extern GDB_FILE *gdb_fopen PARAMS ((char * name, char * mode)); |
04f566a3 | 254 | |
6f54efdc | 255 | extern void fputs_filtered PARAMS ((const char *, GDB_FILE *)); |
04f566a3 | 256 | |
6f54efdc | 257 | extern void fputs_unfiltered PARAMS ((const char *, GDB_FILE *)); |
d747e0af | 258 | |
8989d4fc | 259 | extern int fputc_unfiltered PARAMS ((int c, GDB_FILE *)); |
04f566a3 | 260 | |
8989d4fc | 261 | extern int putchar_unfiltered PARAMS ((int c)); |
d747e0af | 262 | |
6f54efdc | 263 | extern void puts_filtered PARAMS ((char *)); |
d747e0af | 264 | |
6f54efdc | 265 | extern void puts_unfiltered PARAMS ((char *)); |
04f566a3 | 266 | |
45993f61 | 267 | extern void vprintf_filtered PARAMS ((char *, va_list)) |
413cba82 | 268 | ATTR_FORMAT(printf, 1, 0); |
51b80b00 | 269 | |
45993f61 | 270 | extern void vfprintf_filtered PARAMS ((FILE *, char *, va_list)) |
413cba82 | 271 | ATTR_FORMAT(printf, 2, 0); |
a8e033f2 | 272 | |
413cba82 JL |
273 | extern void fprintf_filtered PARAMS ((FILE *, char *, ...)) |
274 | ATTR_FORMAT(printf, 2, 3); | |
d747e0af | 275 | |
413cba82 JL |
276 | extern void fprintfi_filtered PARAMS ((int, FILE *, char *, ...)) |
277 | ATTR_FORMAT(printf, 3, 4); | |
a8e033f2 | 278 | |
413cba82 JL |
279 | extern void printf_filtered PARAMS ((char *, ...)) |
280 | ATTR_FORMAT(printf, 1, 2); | |
d747e0af | 281 | |
413cba82 JL |
282 | extern void printfi_filtered PARAMS ((int, char *, ...)) |
283 | ATTR_FORMAT(printf, 2, 3); | |
a8e033f2 | 284 | |
45993f61 | 285 | extern void vprintf_unfiltered PARAMS ((char *, va_list)) |
413cba82 | 286 | ATTR_FORMAT(printf, 1, 0); |
04f566a3 | 287 | |
45993f61 | 288 | extern void vfprintf_unfiltered PARAMS ((FILE *, char *, va_list)) |
413cba82 | 289 | ATTR_FORMAT(printf, 2, 0); |
04f566a3 | 290 | |
413cba82 JL |
291 | extern void fprintf_unfiltered PARAMS ((FILE *, char *, ...)) |
292 | ATTR_FORMAT(printf, 2, 3); | |
d747e0af | 293 | |
413cba82 JL |
294 | extern void printf_unfiltered PARAMS ((char *, ...)) |
295 | ATTR_FORMAT(printf, 1, 2); | |
04f566a3 | 296 | |
6f54efdc | 297 | extern void print_spaces PARAMS ((int, GDB_FILE *)); |
04f566a3 | 298 | |
6f54efdc | 299 | extern void print_spaces_filtered PARAMS ((int, GDB_FILE *)); |
d747e0af | 300 | |
6f54efdc | 301 | extern char *n_spaces PARAMS ((int)); |
d747e0af | 302 | |
6f54efdc | 303 | extern void gdb_printchar PARAMS ((int, GDB_FILE *, int)); |
d747e0af | 304 | |
833e0d94 JK |
305 | extern void gdb_print_address PARAMS ((void *, GDB_FILE *)); |
306 | ||
6f54efdc SS |
307 | extern void fprintf_symbol_filtered PARAMS ((GDB_FILE *, char *, |
308 | enum language, int)); | |
d747e0af | 309 | |
6f54efdc | 310 | extern void perror_with_name PARAMS ((char *)); |
d747e0af | 311 | |
6f54efdc | 312 | extern void print_sys_errmsg PARAMS ((char *, int)); |
d747e0af | 313 | |
1bef45ea JK |
314 | /* From regex.c or libc. BSD 4.4 declares this with the argument type as |
315 | "const char *" in unistd.h, so we can't declare the argument | |
316 | as "char *". */ | |
d747e0af | 317 | |
6f54efdc | 318 | extern char *re_comp PARAMS ((const char *)); |
d747e0af MT |
319 | |
320 | /* From symfile.c */ | |
321 | ||
6f54efdc | 322 | extern void symbol_file_command PARAMS ((char *, int)); |
d747e0af | 323 | |
eba08643 | 324 | /* From top.c */ |
d747e0af | 325 | |
6f54efdc | 326 | extern char *skip_quoted PARAMS ((char *)); |
d630b615 | 327 | |
6f54efdc | 328 | extern char *gdb_readline PARAMS ((char *)); |
d747e0af | 329 | |
6f54efdc | 330 | extern char *command_line_input PARAMS ((char *, int, char *)); |
d747e0af | 331 | |
6f54efdc | 332 | extern void print_prompt PARAMS ((void)); |
d747e0af | 333 | |
6f54efdc | 334 | extern int input_from_terminal_p PARAMS ((void)); |
d747e0af | 335 | |
eba08643 C |
336 | extern int info_verbose; |
337 | ||
bd5635a1 | 338 | /* From printcmd.c */ |
d747e0af | 339 | |
6f54efdc | 340 | extern void set_next_address PARAMS ((CORE_ADDR)); |
d747e0af | 341 | |
6f54efdc SS |
342 | extern void print_address_symbolic PARAMS ((CORE_ADDR, GDB_FILE *, int, |
343 | char *)); | |
d747e0af | 344 | |
6f54efdc | 345 | extern void print_address_numeric PARAMS ((CORE_ADDR, int, GDB_FILE *)); |
833e0d94 | 346 | |
6f54efdc | 347 | extern void print_address PARAMS ((CORE_ADDR, GDB_FILE *)); |
bd5635a1 | 348 | |
e1ce8aa5 | 349 | /* From source.c */ |
d747e0af | 350 | |
6f54efdc | 351 | extern int openp PARAMS ((char *, int, char *, int, int, char **)); |
d747e0af | 352 | |
6f54efdc | 353 | extern void mod_path PARAMS ((char *, char **)); |
d747e0af | 354 | |
6f54efdc | 355 | extern void directory_command PARAMS ((char *, int)); |
d747e0af | 356 | |
6f54efdc | 357 | extern void init_source_path PARAMS ((void)); |
d747e0af | 358 | |
637b1661 SG |
359 | extern char *symtab_to_filename PARAMS ((struct symtab *)); |
360 | ||
d747e0af MT |
361 | /* From findvar.c */ |
362 | ||
6f54efdc | 363 | extern int read_relative_register_raw_bytes PARAMS ((int, char *)); |
e1ce8aa5 | 364 | |
bd5635a1 | 365 | /* From readline (but not in any readline .h files). */ |
d747e0af | 366 | |
6f54efdc | 367 | extern char *tilde_expand PARAMS ((char *)); |
bd5635a1 | 368 | |
78751d4f PS |
369 | /* Control types for commands */ |
370 | ||
371 | enum misc_command_type | |
372 | { | |
373 | ok_command, | |
374 | end_command, | |
375 | else_command, | |
376 | nop_command | |
377 | }; | |
378 | ||
379 | enum command_control_type | |
380 | { | |
381 | simple_control, | |
382 | break_control, | |
383 | continue_control, | |
384 | while_control, | |
385 | if_control, | |
386 | invalid_control | |
387 | }; | |
388 | ||
bd5635a1 RP |
389 | /* Structure for saved commands lines |
390 | (for breakpoints, defined commands, etc). */ | |
391 | ||
392 | struct command_line | |
393 | { | |
394 | struct command_line *next; | |
395 | char *line; | |
78751d4f PS |
396 | enum command_control_type control_type; |
397 | int body_count; | |
398 | struct command_line **body_list; | |
bd5635a1 RP |
399 | }; |
400 | ||
6f54efdc | 401 | extern struct command_line *read_command_lines PARAMS ((void)); |
d747e0af | 402 | |
6f54efdc | 403 | extern void free_command_lines PARAMS ((struct command_line **)); |
bd5635a1 RP |
404 | |
405 | /* String containing the current directory (what getwd would return). */ | |
406 | ||
d747e0af | 407 | extern char *current_directory; |
bd5635a1 RP |
408 | |
409 | /* Default radixes for input and output. Only some values supported. */ | |
410 | extern unsigned input_radix; | |
411 | extern unsigned output_radix; | |
412 | ||
a8a69e63 FF |
413 | /* Possibilities for prettyprint parameters to routines which print |
414 | things. Like enum language, this should be in value.h, but needs | |
415 | to be here for the same reason. FIXME: If we can eliminate this | |
416 | as an arg to LA_VAL_PRINT, then we can probably move it back to | |
417 | value.h. */ | |
418 | ||
419 | enum val_prettyprint | |
420 | { | |
421 | Val_no_prettyprint = 0, | |
422 | Val_prettyprint, | |
423 | /* Use the default setting which the user has specified. */ | |
424 | Val_pretty_default | |
425 | }; | |
426 | ||
0a5d35ed SG |
427 | \f |
428 | /* Host machine definition. This will be a symlink to one of the | |
429 | xm-*.h files, built by the `configure' script. */ | |
430 | ||
431 | #include "xm.h" | |
432 | ||
e58de8a2 FF |
433 | /* Native machine support. This will be a symlink to one of the |
434 | nm-*.h files, built by the `configure' script. */ | |
435 | ||
436 | #include "nm.h" | |
437 | ||
c023fbf4 KH |
438 | /* Target machine definition. This will be a symlink to one of the |
439 | tm-*.h files, built by the `configure' script. */ | |
440 | ||
441 | #include "tm.h" | |
442 | ||
e146177e SEF |
443 | /* If the xm.h file did not define the mode string used to open the |
444 | files, assume that binary files are opened the same way as text | |
445 | files */ | |
446 | #ifndef FOPEN_RB | |
447 | #include "fopen-same.h" | |
448 | #endif | |
449 | ||
0a5d35ed SG |
450 | /* |
451 | * Allow things in gdb to be declared "const". If compiling ANSI, it | |
452 | * just works. If compiling with gcc but non-ansi, redefine to __const__. | |
453 | * If non-ansi, non-gcc, then eliminate "const" entirely, making those | |
454 | * objects be read-write rather than read-only. | |
455 | */ | |
456 | ||
457 | #ifndef const | |
458 | #ifndef __STDC__ | |
459 | # ifdef __GNUC__ | |
460 | # define const __const__ | |
461 | # else | |
462 | # define const /*nothing*/ | |
463 | # endif /* GNUC */ | |
464 | #endif /* STDC */ | |
465 | #endif /* const */ | |
466 | ||
467 | #ifndef volatile | |
468 | #ifndef __STDC__ | |
469 | # ifdef __GNUC__ | |
470 | # define volatile __volatile__ | |
471 | # else | |
472 | # define volatile /*nothing*/ | |
473 | # endif /* GNUC */ | |
474 | #endif /* STDC */ | |
475 | #endif /* volatile */ | |
476 | ||
477 | /* Defaults for system-wide constants (if not defined by xm.h, we fake it). */ | |
478 | ||
bd5635a1 | 479 | #if !defined (UINT_MAX) |
38dc5e12 | 480 | #define UINT_MAX ((unsigned int)(~0)) /* 0xFFFFFFFF for 32-bits */ |
bd5635a1 RP |
481 | #endif |
482 | ||
e1ce8aa5 | 483 | #if !defined (INT_MAX) |
dd577ca5 | 484 | #define INT_MAX ((int)(UINT_MAX >> 1)) /* 0x7FFFFFFF for 32-bits */ |
e1ce8aa5 JK |
485 | #endif |
486 | ||
487 | #if !defined (INT_MIN) | |
38dc5e12 SG |
488 | #define INT_MIN (-INT_MAX - 1) /* 0x80000000 for 32-bits */ |
489 | #endif | |
490 | ||
491 | #if !defined (ULONG_MAX) | |
492 | #define ULONG_MAX ((unsigned long)(~0L)) /* 0xFFFFFFFF for 32-bits */ | |
493 | #endif | |
494 | ||
495 | #if !defined (LONG_MAX) | |
496 | #define LONG_MAX ((long)(ULONG_MAX >> 1)) /* 0x7FFFFFFF for 32-bits */ | |
e1ce8aa5 JK |
497 | #endif |
498 | ||
7343d716 JK |
499 | #ifdef BFD64 |
500 | ||
501 | /* This is to make sure that LONGEST is at least as big as CORE_ADDR. */ | |
502 | ||
70126bf9 | 503 | #define LONGEST BFD_HOST_64_BIT |
7343d716 JK |
504 | |
505 | #else /* No BFD64 */ | |
506 | ||
fad466eb SS |
507 | /* If all compilers for this host support "long long" and we want to |
508 | use it for LONGEST (the performance hit is about 10% on a testsuite | |
509 | run based on one DECstation test), then the xm.h file can define | |
510 | CC_HAS_LONG_LONG. | |
511 | ||
512 | Using GCC 1.39 on BSDI with long long causes about 700 new | |
513 | testsuite failures. Using long long for LONGEST on the DECstation | |
514 | causes 3 new FAILs in the testsuite and many heuristic fencepost | |
515 | warnings. These are not investigated, but a first guess would be | |
516 | that the BSDI problems are GCC bugs in long long support and the | |
517 | latter are GDB bugs. */ | |
7efb57c3 FF |
518 | |
519 | #ifndef CC_HAS_LONG_LONG | |
fad466eb | 520 | # if defined (__GNUC__) && defined (FORCE_LONG_LONG) |
7efb57c3 FF |
521 | # define CC_HAS_LONG_LONG 1 |
522 | # endif | |
523 | #endif | |
fad466eb | 524 | |
7efb57c3 FF |
525 | /* LONGEST should not be a typedef, because "unsigned LONGEST" needs to work. |
526 | CC_HAS_LONG_LONG is defined if the host compiler supports "long long" | |
527 | variables and we wish to make use of that support. */ | |
d747e0af MT |
528 | |
529 | #ifndef LONGEST | |
7efb57c3 FF |
530 | # ifdef CC_HAS_LONG_LONG |
531 | # define LONGEST long long | |
532 | # else | |
533 | # define LONGEST long | |
534 | # endif | |
535 | #endif | |
536 | ||
7343d716 JK |
537 | #endif /* No BFD64 */ |
538 | ||
7efb57c3 FF |
539 | /* Convert a LONGEST to an int. This is used in contexts (e.g. number of |
540 | arguments to a function, number in a value history, register number, etc.) | |
541 | where the value must not be larger than can fit in an int. */ | |
542 | ||
fb0f4231 | 543 | extern int longest_to_int PARAMS ((LONGEST)); |
d747e0af | 544 | |
0a5d35ed SG |
545 | /* Assorted functions we can declare, now that const and volatile are |
546 | defined. */ | |
d747e0af | 547 | |
6f54efdc | 548 | extern char *savestring PARAMS ((const char *, int)); |
d747e0af | 549 | |
6f54efdc | 550 | extern char *msavestring PARAMS ((void *, const char *, int)); |
318bf84f | 551 | |
6f54efdc | 552 | extern char *strsave PARAMS ((const char *)); |
d747e0af | 553 | |
6f54efdc | 554 | extern char *mstrsave PARAMS ((void *, const char *)); |
318bf84f | 555 | |
6f54efdc | 556 | extern PTR xmalloc PARAMS ((long)); |
d747e0af | 557 | |
6f54efdc | 558 | extern PTR xrealloc PARAMS ((PTR, long)); |
318bf84f | 559 | |
6f54efdc | 560 | extern PTR xmmalloc PARAMS ((PTR, long)); |
318bf84f | 561 | |
6f54efdc | 562 | extern PTR xmrealloc PARAMS ((PTR, PTR, long)); |
318bf84f | 563 | |
6f54efdc | 564 | extern int parse_escape PARAMS ((char **)); |
d747e0af | 565 | |
86db943c | 566 | extern char *reg_names[]; |
d747e0af | 567 | |
833e0d94 JK |
568 | /* Message to be printed before the error message, when an error occurs. */ |
569 | ||
570 | extern char *error_pre_print; | |
571 | ||
8989d4fc JK |
572 | /* Message to be printed before the error message, when an error occurs. */ |
573 | ||
574 | extern char *quit_pre_print; | |
575 | ||
833e0d94 JK |
576 | /* Message to be printed before the warning message, when a warning occurs. */ |
577 | ||
578 | extern char *warning_pre_print; | |
579 | ||
85c613aa | 580 | extern NORETURN void error PARAMS((char *, ...)) ATTR_NORETURN; |
a0cf4681 JK |
581 | |
582 | extern void error_begin PARAMS ((void)); | |
d747e0af | 583 | |
85c613aa | 584 | extern NORETURN void fatal PARAMS((char *, ...)) ATTR_NORETURN; |
d747e0af | 585 | |
6f54efdc | 586 | extern NORETURN void nomem PARAMS ((long)) ATTR_NORETURN; |
318bf84f | 587 | |
2fcdae93 PS |
588 | /* Reasons for calling return_to_top_level. */ |
589 | enum return_reason { | |
590 | /* User interrupt. */ | |
591 | RETURN_QUIT, | |
592 | ||
593 | /* Any other error. */ | |
594 | RETURN_ERROR | |
595 | }; | |
596 | ||
597 | #define RETURN_MASK_QUIT (1 << (int)RETURN_QUIT) | |
598 | #define RETURN_MASK_ERROR (1 << (int)RETURN_ERROR) | |
599 | #define RETURN_MASK_ALL (RETURN_MASK_QUIT | RETURN_MASK_ERROR) | |
600 | typedef int return_mask; | |
601 | ||
6f54efdc SS |
602 | extern NORETURN void |
603 | return_to_top_level PARAMS ((enum return_reason)) ATTR_NORETURN; | |
2fcdae93 | 604 | |
6f54efdc SS |
605 | extern int |
606 | catch_errors PARAMS ((int (*) (char *), void *, char *, return_mask)); | |
d747e0af | 607 | |
8989d4fc | 608 | extern void warning_begin PARAMS ((void)); |
d747e0af | 609 | |
413cba82 JL |
610 | extern void warning PARAMS ((char *, ...)) |
611 | ATTR_FORMAT(printf, 1, 2); | |
d747e0af | 612 | |
97e7b66f DE |
613 | /* Global functions from other, non-gdb GNU thingies. |
614 | Libiberty thingies are no longer declared here. We include libiberty.h | |
615 | above, instead. */ | |
d747e0af | 616 | |
6f54efdc | 617 | extern char *getenv PARAMS ((const char *)); |
d747e0af | 618 | |
e146177e SEF |
619 | /* From other system libraries */ |
620 | ||
0a5d35ed | 621 | #ifdef __STDC__ |
d747e0af | 622 | #include <stddef.h> |
e3be225e | 623 | #include <stdlib.h> |
0a5d35ed | 624 | #endif |
d747e0af | 625 | |
e3be225e | 626 | extern int fclose (); |
e146177e | 627 | |
8989d4fc | 628 | #ifndef atof |
e3be225e | 629 | extern double atof (); |
8989d4fc | 630 | #endif |
51b57ded | 631 | |
d747e0af | 632 | #ifndef MALLOC_INCOMPATIBLE |
318bf84f | 633 | |
e3be225e | 634 | extern PTR malloc (); |
d747e0af | 635 | |
e3be225e | 636 | extern PTR realloc (); |
318bf84f | 637 | |
e3be225e | 638 | extern void free (); |
d747e0af | 639 | |
e3be225e | 640 | #endif /* MALLOC_INCOMPATIBLE */ |
d747e0af | 641 | |
45993f61 | 642 | #ifndef WIN32 |
e3be225e | 643 | extern char *strchr (); |
51b57ded | 644 | |
e3be225e | 645 | extern char *strrchr (); |
d747e0af | 646 | |
e3be225e | 647 | extern char *strstr (); |
e146177e | 648 | |
e3be225e | 649 | extern char *strtok (); |
51b57ded | 650 | |
e3be225e | 651 | extern char *strerror (); |
45993f61 | 652 | #endif |
e2aab031 | 653 | |
0a5d35ed SG |
654 | /* Various possibilities for alloca. */ |
655 | #ifndef alloca | |
656 | # ifdef __GNUC__ | |
657 | # define alloca __builtin_alloca | |
7343d716 | 658 | # else /* Not GNU C */ |
0a5d35ed | 659 | # ifdef sparc |
22fd4704 | 660 | # include <alloca.h> /* NOTE: Doesn't declare alloca() */ |
e676a15f | 661 | # endif |
7343d716 JK |
662 | |
663 | /* We need to be careful not to declare this in a way which conflicts with | |
664 | bison. Bison never declares it as char *, but under various circumstances | |
665 | (like __hpux) we need to use void *. */ | |
666 | # if defined (__STDC__) || defined (__hpux) | |
667 | extern void *alloca (); | |
668 | # else /* Don't use void *. */ | |
0f552c5f | 669 | extern char *alloca (); |
7343d716 JK |
670 | # endif /* Don't use void *. */ |
671 | # endif /* Not GNU C */ | |
672 | #endif /* alloca not defined */ | |
e2aab031 | 673 | |
479f0f18 | 674 | /* HOST_BYTE_ORDER must be defined to one of these. */ |
a10c0d36 | 675 | |
0a5d35ed SG |
676 | #if !defined (BIG_ENDIAN) |
677 | #define BIG_ENDIAN 4321 | |
678 | #endif | |
a10c0d36 | 679 | |
0a5d35ed SG |
680 | #if !defined (LITTLE_ENDIAN) |
681 | #define LITTLE_ENDIAN 1234 | |
682 | #endif | |
a10c0d36 | 683 | |
2fcdae93 | 684 | /* Target-system-dependent parameters for GDB. */ |
7d9884b9 | 685 | |
479f0f18 SG |
686 | #ifdef TARGET_BYTE_ORDER_SELECTABLE |
687 | /* The target endianness is selectable at runtime. Define | |
688 | TARGET_BYTE_ORDER to be a variable. The user can use the `set | |
689 | endian' command to change it. */ | |
690 | #undef TARGET_BYTE_ORDER | |
691 | #define TARGET_BYTE_ORDER target_byte_order | |
692 | extern int target_byte_order; | |
693 | #endif | |
694 | ||
695 | extern void set_endian_from_file PARAMS ((bfd *)); | |
696 | ||
04f566a3 JK |
697 | /* Number of bits in a char or unsigned char for the target machine. |
698 | Just like CHAR_BIT in <limits.h> but describes the target machine. */ | |
699 | #if !defined (TARGET_CHAR_BIT) | |
700 | #define TARGET_CHAR_BIT 8 | |
701 | #endif | |
702 | ||
703 | /* Number of bits in a short or unsigned short for the target machine. */ | |
704 | #if !defined (TARGET_SHORT_BIT) | |
705 | #define TARGET_SHORT_BIT (2 * TARGET_CHAR_BIT) | |
706 | #endif | |
707 | ||
708 | /* Number of bits in an int or unsigned int for the target machine. */ | |
709 | #if !defined (TARGET_INT_BIT) | |
710 | #define TARGET_INT_BIT (4 * TARGET_CHAR_BIT) | |
711 | #endif | |
712 | ||
713 | /* Number of bits in a long or unsigned long for the target machine. */ | |
714 | #if !defined (TARGET_LONG_BIT) | |
715 | #define TARGET_LONG_BIT (4 * TARGET_CHAR_BIT) | |
716 | #endif | |
717 | ||
718 | /* Number of bits in a long long or unsigned long long for the target machine. */ | |
719 | #if !defined (TARGET_LONG_LONG_BIT) | |
720 | #define TARGET_LONG_LONG_BIT (2 * TARGET_LONG_BIT) | |
721 | #endif | |
722 | ||
723 | /* Number of bits in a float for the target machine. */ | |
724 | #if !defined (TARGET_FLOAT_BIT) | |
725 | #define TARGET_FLOAT_BIT (4 * TARGET_CHAR_BIT) | |
726 | #endif | |
727 | ||
728 | /* Number of bits in a double for the target machine. */ | |
729 | #if !defined (TARGET_DOUBLE_BIT) | |
730 | #define TARGET_DOUBLE_BIT (8 * TARGET_CHAR_BIT) | |
731 | #endif | |
732 | ||
733 | /* Number of bits in a long double for the target machine. */ | |
734 | #if !defined (TARGET_LONG_DOUBLE_BIT) | |
735 | #define TARGET_LONG_DOUBLE_BIT (2 * TARGET_DOUBLE_BIT) | |
736 | #endif | |
737 | ||
04f566a3 JK |
738 | /* Number of bits in a pointer for the target machine */ |
739 | #if !defined (TARGET_PTR_BIT) | |
740 | #define TARGET_PTR_BIT TARGET_INT_BIT | |
741 | #endif | |
742 | ||
743 | /* If we picked up a copy of CHAR_BIT from a configuration file | |
744 | (which may get it by including <limits.h>) then use it to set | |
745 | the number of bits in a host char. If not, use the same size | |
746 | as the target. */ | |
747 | ||
748 | #if defined (CHAR_BIT) | |
749 | #define HOST_CHAR_BIT CHAR_BIT | |
750 | #else | |
751 | #define HOST_CHAR_BIT TARGET_CHAR_BIT | |
752 | #endif | |
753 | ||
7d9884b9 JG |
754 | /* The bit byte-order has to do just with numbering of bits in |
755 | debugging symbols and such. Conceptually, it's quite separate | |
756 | from byte/word byte order. */ | |
757 | ||
758 | #if !defined (BITS_BIG_ENDIAN) | |
479f0f18 SG |
759 | #ifndef TARGET_BYTE_ORDER_SELECTABLE |
760 | ||
7d9884b9 JG |
761 | #if TARGET_BYTE_ORDER == BIG_ENDIAN |
762 | #define BITS_BIG_ENDIAN 1 | |
763 | #endif /* Big endian. */ | |
764 | ||
765 | #if TARGET_BYTE_ORDER == LITTLE_ENDIAN | |
766 | #define BITS_BIG_ENDIAN 0 | |
767 | #endif /* Little endian. */ | |
479f0f18 SG |
768 | |
769 | #else /* defined (TARGET_BYTE_ORDER_SELECTABLE) */ | |
770 | ||
771 | #define BITS_BIG_ENDIAN (TARGET_BYTE_ORDER == BIG_ENDIAN) | |
772 | ||
773 | #endif /* defined (TARGET_BYTE_ORDER_SELECTABLE) */ | |
7d9884b9 JG |
774 | #endif /* BITS_BIG_ENDIAN not defined. */ |
775 | ||
e3c16900 | 776 | /* In findvar.c. */ |
e3c16900 | 777 | |
6f54efdc SS |
778 | extern LONGEST extract_signed_integer PARAMS ((void *, int)); |
779 | ||
780 | extern unsigned LONGEST extract_unsigned_integer PARAMS ((void *, int)); | |
781 | ||
782 | extern CORE_ADDR extract_address PARAMS ((void *, int)); | |
783 | ||
784 | extern void store_signed_integer PARAMS ((void *, int, LONGEST)); | |
785 | ||
786 | extern void store_unsigned_integer PARAMS ((void *, int, unsigned LONGEST)); | |
787 | ||
788 | extern void store_address PARAMS ((void *, int, CORE_ADDR)); | |
789 | ||
790 | extern double extract_floating PARAMS ((void *, int)); | |
04f566a3 | 791 | |
6f54efdc | 792 | extern void store_floating PARAMS ((void *, int, double)); |
e3c16900 | 793 | \f |
7d9884b9 JG |
794 | /* On some machines there are bits in addresses which are not really |
795 | part of the address, but are used by the kernel, the hardware, etc. | |
796 | for special purposes. ADDR_BITS_REMOVE takes out any such bits | |
797 | so we get a "real" address such as one would find in a symbol | |
04f566a3 | 798 | table. This is used only for addresses of instructions, and even then |
e3c16900 JK |
799 | I'm not sure it's used in all contexts. It exists to deal with there |
800 | being a few stray bits in the PC which would mislead us, not as some sort | |
04f566a3 JK |
801 | of generic thing to handle alignment or segmentation (it's possible it |
802 | should be in TARGET_READ_PC instead). */ | |
7d9884b9 JG |
803 | #if !defined (ADDR_BITS_REMOVE) |
804 | #define ADDR_BITS_REMOVE(addr) (addr) | |
7d9884b9 JG |
805 | #endif /* No ADDR_BITS_REMOVE. */ |
806 | ||
d747e0af MT |
807 | /* From valops.c */ |
808 | ||
6f54efdc | 809 | extern CORE_ADDR push_bytes PARAMS ((CORE_ADDR, char *, int)); |
d747e0af | 810 | |
6f54efdc | 811 | extern CORE_ADDR push_word PARAMS ((CORE_ADDR, unsigned LONGEST)); |
d747e0af | 812 | |
0239d9b3 FF |
813 | /* Some parts of gdb might be considered optional, in the sense that they |
814 | are not essential for being able to build a working, usable debugger | |
815 | for a specific environment. For example, the maintenance commands | |
816 | are there for the benefit of gdb maintainers. As another example, | |
817 | some environments really don't need gdb's that are able to read N | |
818 | different object file formats. In order to make it possible (but | |
819 | not necessarily recommended) to build "stripped down" versions of | |
820 | gdb, the following defines control selective compilation of those | |
821 | parts of gdb which can be safely left out when necessary. Note that | |
822 | the default is to include everything. */ | |
823 | ||
824 | #ifndef MAINTENANCE_CMDS | |
825 | #define MAINTENANCE_CMDS 1 | |
826 | #endif | |
827 | ||
45993f61 SC |
828 | #ifdef MAINTENANCE_CMDS |
829 | extern int watchdog; | |
830 | #endif | |
831 | ||
09722039 SG |
832 | #include "dis-asm.h" /* Get defs for disassemble_info */ |
833 | ||
18b46e7c SS |
834 | extern int dis_asm_read_memory PARAMS ((bfd_vma memaddr, bfd_byte *myaddr, |
835 | int len, disassemble_info *info)); | |
836 | ||
837 | extern void dis_asm_memory_error PARAMS ((int status, bfd_vma memaddr, | |
838 | disassemble_info *info)); | |
839 | ||
840 | extern void dis_asm_print_address PARAMS ((bfd_vma addr, | |
841 | disassemble_info *info)); | |
842 | ||
843 | extern int (*tm_print_insn) PARAMS ((bfd_vma, disassemble_info*)); | |
844 | ||
845 | /* Hooks for alternate command interfaces. */ | |
846 | ||
09722039 SG |
847 | #ifdef __STDC__ |
848 | struct target_waitstatus; | |
849 | struct cmd_list_element; | |
850 | #endif | |
851 | ||
8164ec2e SG |
852 | extern void (*init_ui_hook) PARAMS ((void)); |
853 | extern void (*command_loop_hook) PARAMS ((void)); | |
18b46e7c SS |
854 | extern void (*fputs_unfiltered_hook) PARAMS ((const char *linebuffer, |
855 | FILE *stream)); | |
856 | extern void (*print_frame_info_listing_hook) PARAMS ((struct symtab *s, | |
857 | int line, int stopline, | |
858 | int noerror)); | |
e3be225e | 859 | extern int (*query_hook) PARAMS (()); |
8164ec2e SG |
860 | extern void (*flush_hook) PARAMS ((FILE *stream)); |
861 | extern void (*create_breakpoint_hook) PARAMS ((struct breakpoint *b)); | |
862 | extern void (*delete_breakpoint_hook) PARAMS ((struct breakpoint *bpt)); | |
326ae3e2 | 863 | extern void (*modify_breakpoint_hook) PARAMS ((struct breakpoint *bpt)); |
b6d70e15 | 864 | extern void (*target_output_hook) PARAMS ((char *)); |
637b1661 | 865 | extern void (*interactive_hook) PARAMS ((void)); |
16041d53 | 866 | extern void (*registers_changed_hook) PARAMS ((void)); |
479f0f18 SG |
867 | |
868 | extern int (*target_wait_hook) PARAMS ((int pid, | |
869 | struct target_waitstatus *status)); | |
870 | ||
871 | extern void (*call_command_hook) PARAMS ((struct cmd_list_element *c, | |
872 | char *cmd, int from_tty)); | |
873 | ||
b6d70e15 | 874 | extern NORETURN void (*error_hook) PARAMS (()) ATTR_NORETURN; |
45993f61 SC |
875 | |
876 | ||
877 | ||
754e5da2 SG |
878 | /* Inhibit window interface if non-zero. */ |
879 | ||
c5197511 | 880 | extern int use_windows; |
754e5da2 | 881 | |
45993f61 SC |
882 | /* Symbolic definitions of filename-related things. */ |
883 | /* FIXME, this doesn't work very well if host and executable | |
884 | filesystems conventions are different. */ | |
885 | ||
886 | #ifndef DIRNAME_SEPARATOR | |
887 | #define DIRNAME_SEPARATOR ':' | |
888 | #endif | |
889 | ||
890 | #ifndef SLASH_P | |
b6d70e15 SC |
891 | #if defined(__GO32__)||defined(WIN32) |
892 | #define SLASH_P(X) ((X)=='\\') | |
893 | #else | |
45993f61 SC |
894 | #define SLASH_P(X) ((X)=='/') |
895 | #endif | |
b6d70e15 | 896 | #endif |
45993f61 SC |
897 | |
898 | #ifndef SLASH_CHAR | |
b6d70e15 SC |
899 | #if defined(__GO32__)||defined(WIN32) |
900 | #define SLASH_CHAR '\\' | |
901 | #else | |
45993f61 SC |
902 | #define SLASH_CHAR '/' |
903 | #endif | |
b6d70e15 | 904 | #endif |
45993f61 SC |
905 | |
906 | #ifndef SLASH_STRING | |
b6d70e15 SC |
907 | #if defined(__GO32__)||defined(WIN32) |
908 | #define SLASH_STRING "\\" | |
909 | #else | |
45993f61 SC |
910 | #define SLASH_STRING "/" |
911 | #endif | |
b6d70e15 | 912 | #endif |
45993f61 SC |
913 | |
914 | #ifndef ROOTED_P | |
915 | #define ROOTED_P(X) (SLASH_P((X)[0])) | |
916 | #endif | |
917 | ||
09722039 | 918 | #endif /* #ifndef DEFS_H */ |