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