use bison
[deliverable/binutils-gdb.git] / gdb / defs.h
CommitLineData
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
5This file is part of GDB.
6
a10c0d36 7This program is free software; you can redistribute it and/or modify
bd5635a1 8it under the terms of the GNU General Public License as published by
a10c0d36
JG
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
bd5635a1 11
a10c0d36 12This program is distributed in the hope that it will be useful,
bd5635a1
RP
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
a10c0d36 18along with this program; if not, write to the Free Software
b6d70e15 19Foundation, 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. */
40extern 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
57typedef 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
75extern int quit_flag;
76extern int immediate_quit;
51b80b00 77extern int sevenbit_strings;
d747e0af 78
6f54efdc 79extern 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
93enum 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
109enum 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
131struct 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__
179struct symtab;
180struct breakpoint;
181#endif
182
d747e0af
MT
183/* From blockframe.c */
184
6f54efdc 185extern int inside_entry_func PARAMS ((CORE_ADDR));
d747e0af 186
6f54efdc 187extern int inside_entry_file PARAMS ((CORE_ADDR addr));
d747e0af 188
6f54efdc 189extern int inside_main_func PARAMS ((CORE_ADDR pc));
d747e0af 190
7532cf10
FF
191/* From ch-lang.c, for the moment. (FIXME) */
192
6f54efdc 193extern char *chill_demangle PARAMS ((const char *));
7532cf10 194
d747e0af
MT
195/* From utils.c */
196
6f54efdc 197extern int strcmp_iw PARAMS ((const char *, const char *));
d630b615 198
6f54efdc 199extern char *safe_strerror PARAMS ((int));
e146177e 200
6f54efdc 201extern char *safe_strsignal PARAMS ((int));
e146177e 202
6f54efdc 203extern void init_malloc PARAMS ((void *));
d747e0af 204
6f54efdc 205extern void request_quit PARAMS ((int));
d747e0af 206
6f54efdc 207extern void do_cleanups PARAMS ((struct cleanup *));
d747e0af 208
6f54efdc 209extern 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:
216extern struct cleanup *
84d59861 217make_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 224extern struct cleanup *make_cleanup ();
d747e0af 225
6f54efdc 226extern struct cleanup *save_cleanups PARAMS ((void));
d747e0af 227
6f54efdc 228extern void restore_cleanups PARAMS ((struct cleanup *));
d747e0af 229
6f54efdc 230extern void free_current_contents PARAMS ((char **));
d747e0af 231
6f54efdc 232extern void null_cleanup PARAMS ((char **));
d747e0af 233
6f54efdc 234extern int myread PARAMS ((int, char *, int));
d747e0af 235
413cba82
JL
236extern int query PARAMS((char *, ...))
237 ATTR_FORMAT(printf, 1, 2);
6c803036 238\f
96f7edbd
JK
239/* Annotation stuff. */
240
6c803036
JK
241extern int annotation_level; /* in stack.c */
242\f
6f54efdc 243extern void begin_line PARAMS ((void));
51b80b00 244
6f54efdc 245extern void wrap_here PARAMS ((char *));
d747e0af 246
6f54efdc 247extern void reinitialize_more_filter PARAMS ((void));
d747e0af 248
04f566a3
JK
249typedef FILE GDB_FILE;
250#define gdb_stdout stdout
251#define gdb_stderr stderr
252
6f54efdc 253extern void gdb_flush PARAMS ((GDB_FILE *));
04f566a3 254
6f54efdc 255extern GDB_FILE *gdb_fopen PARAMS ((char * name, char * mode));
04f566a3 256
6f54efdc 257extern void fputs_filtered PARAMS ((const char *, GDB_FILE *));
04f566a3 258
6f54efdc 259extern void fputs_unfiltered PARAMS ((const char *, GDB_FILE *));
d747e0af 260
8989d4fc 261extern int fputc_unfiltered PARAMS ((int c, GDB_FILE *));
04f566a3 262
8989d4fc 263extern int putchar_unfiltered PARAMS ((int c));
d747e0af 264
6f54efdc 265extern void puts_filtered PARAMS ((char *));
d747e0af 266
6f54efdc 267extern void puts_unfiltered PARAMS ((char *));
04f566a3 268
45993f61 269extern void vprintf_filtered PARAMS ((char *, va_list))
413cba82 270 ATTR_FORMAT(printf, 1, 0);
51b80b00 271
45993f61 272extern void vfprintf_filtered PARAMS ((FILE *, char *, va_list))
413cba82 273 ATTR_FORMAT(printf, 2, 0);
a8e033f2 274
413cba82
JL
275extern void fprintf_filtered PARAMS ((FILE *, char *, ...))
276 ATTR_FORMAT(printf, 2, 3);
d747e0af 277
413cba82
JL
278extern void fprintfi_filtered PARAMS ((int, FILE *, char *, ...))
279 ATTR_FORMAT(printf, 3, 4);
a8e033f2 280
413cba82
JL
281extern void printf_filtered PARAMS ((char *, ...))
282 ATTR_FORMAT(printf, 1, 2);
d747e0af 283
413cba82
JL
284extern void printfi_filtered PARAMS ((int, char *, ...))
285 ATTR_FORMAT(printf, 2, 3);
a8e033f2 286
45993f61 287extern void vprintf_unfiltered PARAMS ((char *, va_list))
413cba82 288 ATTR_FORMAT(printf, 1, 0);
04f566a3 289
45993f61 290extern void vfprintf_unfiltered PARAMS ((FILE *, char *, va_list))
413cba82 291 ATTR_FORMAT(printf, 2, 0);
04f566a3 292
413cba82
JL
293extern void fprintf_unfiltered PARAMS ((FILE *, char *, ...))
294 ATTR_FORMAT(printf, 2, 3);
d747e0af 295
413cba82
JL
296extern void printf_unfiltered PARAMS ((char *, ...))
297 ATTR_FORMAT(printf, 1, 2);
04f566a3 298
6f54efdc 299extern void print_spaces PARAMS ((int, GDB_FILE *));
04f566a3 300
6f54efdc 301extern void print_spaces_filtered PARAMS ((int, GDB_FILE *));
d747e0af 302
6f54efdc 303extern char *n_spaces PARAMS ((int));
d747e0af 304
6f54efdc 305extern void gdb_printchar PARAMS ((int, GDB_FILE *, int));
d747e0af 306
833e0d94
JK
307extern void gdb_print_address PARAMS ((void *, GDB_FILE *));
308
6f54efdc
SS
309extern void fprintf_symbol_filtered PARAMS ((GDB_FILE *, char *,
310 enum language, int));
d747e0af 311
6f54efdc 312extern void perror_with_name PARAMS ((char *));
d747e0af 313
6f54efdc 314extern 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 320extern char *re_comp PARAMS ((const char *));
d747e0af
MT
321
322/* From symfile.c */
323
6f54efdc 324extern void symbol_file_command PARAMS ((char *, int));
d747e0af 325
eba08643 326/* From top.c */
d747e0af 327
6f54efdc 328extern char *skip_quoted PARAMS ((char *));
d630b615 329
6f54efdc 330extern char *gdb_readline PARAMS ((char *));
d747e0af 331
6f54efdc 332extern char *command_line_input PARAMS ((char *, int, char *));
d747e0af 333
6f54efdc 334extern void print_prompt PARAMS ((void));
d747e0af 335
6f54efdc 336extern int input_from_terminal_p PARAMS ((void));
d747e0af 337
eba08643
C
338extern int info_verbose;
339
bd5635a1 340/* From printcmd.c */
d747e0af 341
6f54efdc 342extern void set_next_address PARAMS ((CORE_ADDR));
d747e0af 343
6f54efdc
SS
344extern void print_address_symbolic PARAMS ((CORE_ADDR, GDB_FILE *, int,
345 char *));
d747e0af 346
6f54efdc 347extern void print_address_numeric PARAMS ((CORE_ADDR, int, GDB_FILE *));
833e0d94 348
6f54efdc 349extern void print_address PARAMS ((CORE_ADDR, GDB_FILE *));
bd5635a1 350
e1ce8aa5 351/* From source.c */
d747e0af 352
6f54efdc 353extern int openp PARAMS ((char *, int, char *, int, int, char **));
d747e0af 354
6f54efdc 355extern void mod_path PARAMS ((char *, char **));
d747e0af 356
6f54efdc 357extern void directory_command PARAMS ((char *, int));
d747e0af 358
6f54efdc 359extern void init_source_path PARAMS ((void));
d747e0af 360
637b1661
SG
361extern char *symtab_to_filename PARAMS ((struct symtab *));
362
d747e0af
MT
363/* From findvar.c */
364
6f54efdc 365extern 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 369extern char *tilde_expand PARAMS ((char *));
bd5635a1 370
78751d4f
PS
371/* Control types for commands */
372
373enum misc_command_type
374{
375 ok_command,
376 end_command,
377 else_command,
378 nop_command
379};
380
381enum 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
394struct 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 403extern struct command_line *read_command_lines PARAMS ((void));
d747e0af 404
6f54efdc 405extern void free_command_lines PARAMS ((struct command_line **));
bd5635a1
RP
406
407/* String containing the current directory (what getwd would return). */
408
d747e0af 409extern char *current_directory;
bd5635a1
RP
410
411/* Default radixes for input and output. Only some values supported. */
412extern unsigned input_radix;
413extern 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
421enum 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 545extern 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 550extern char *savestring PARAMS ((const char *, int));
d747e0af 551
6f54efdc 552extern char *msavestring PARAMS ((void *, const char *, int));
318bf84f 553
6f54efdc 554extern char *strsave PARAMS ((const char *));
d747e0af 555
6f54efdc 556extern char *mstrsave PARAMS ((void *, const char *));
318bf84f 557
6f54efdc 558extern PTR xmmalloc PARAMS ((PTR, long));
318bf84f 559
6f54efdc 560extern PTR xmrealloc PARAMS ((PTR, PTR, long));
318bf84f 561
6f54efdc 562extern int parse_escape PARAMS ((char **));
d747e0af 563
86db943c 564extern char *reg_names[];
d747e0af 565
833e0d94
JK
566/* Message to be printed before the error message, when an error occurs. */
567
568extern char *error_pre_print;
569
8989d4fc
JK
570/* Message to be printed before the error message, when an error occurs. */
571
572extern char *quit_pre_print;
573
833e0d94
JK
574/* Message to be printed before the warning message, when a warning occurs. */
575
576extern char *warning_pre_print;
577
85c613aa 578extern NORETURN void error PARAMS((char *, ...)) ATTR_NORETURN;
a0cf4681
JK
579
580extern void error_begin PARAMS ((void));
d747e0af 581
85c613aa 582extern NORETURN void fatal PARAMS((char *, ...)) ATTR_NORETURN;
d747e0af 583
6f54efdc 584extern NORETURN void nomem PARAMS ((long)) ATTR_NORETURN;
318bf84f 585
2fcdae93
PS
586/* Reasons for calling return_to_top_level. */
587enum return_reason {
588 /* User interrupt. */
589 RETURN_QUIT,
590
591 /* Any other error. */
592 RETURN_ERROR
593};
594
595#define RETURN_MASK_QUIT (1 << (int)RETURN_QUIT)
596#define RETURN_MASK_ERROR (1 << (int)RETURN_ERROR)
597#define RETURN_MASK_ALL (RETURN_MASK_QUIT | RETURN_MASK_ERROR)
598typedef int return_mask;
599
6f54efdc
SS
600extern NORETURN void
601return_to_top_level PARAMS ((enum return_reason)) ATTR_NORETURN;
2fcdae93 602
6f54efdc
SS
603extern int
604catch_errors PARAMS ((int (*) (char *), void *, char *, return_mask));
d747e0af 605
8989d4fc 606extern void warning_begin PARAMS ((void));
d747e0af 607
413cba82
JL
608extern void warning PARAMS ((char *, ...))
609 ATTR_FORMAT(printf, 1, 2);
d747e0af 610
97e7b66f
DE
611/* Global functions from other, non-gdb GNU thingies.
612 Libiberty thingies are no longer declared here. We include libiberty.h
613 above, instead. */
d747e0af 614
6b009ef6 615#ifndef GETENV_PROVIDED
6f54efdc 616extern char *getenv PARAMS ((const char *));
6b009ef6 617#endif
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
6b009ef6
SC
626
627/* We take the address of fclose later, but some stdio's forget
628 to declare this. We can't always declare it since there's
629 no way to declare the parameters without upsetting some compiler
630 somewhere. */
631
632#ifndef FCLOSE_PROVIDED
e3be225e 633extern int fclose ();
6b009ef6 634#endif
e146177e 635
8989d4fc 636#ifndef atof
e3be225e 637extern double atof ();
8989d4fc 638#endif
51b57ded 639
d747e0af 640#ifndef MALLOC_INCOMPATIBLE
318bf84f 641
e3be225e 642extern PTR malloc ();
d747e0af 643
e3be225e 644extern PTR realloc ();
318bf84f 645
e3be225e 646extern void free ();
d747e0af 647
e3be225e 648#endif /* MALLOC_INCOMPATIBLE */
d747e0af 649
45993f61 650#ifndef WIN32
031c4a7e
FF
651
652#ifndef strchr
e3be225e 653extern char *strchr ();
031c4a7e 654#endif
51b57ded 655
031c4a7e 656#ifndef strrchr
e3be225e 657extern char *strrchr ();
031c4a7e 658#endif
d747e0af 659
031c4a7e 660#ifndef strstr
e3be225e 661extern char *strstr ();
031c4a7e 662#endif
e146177e 663
031c4a7e 664#ifndef strtok
e3be225e 665extern char *strtok ();
031c4a7e 666#endif
51b57ded 667
031c4a7e 668#ifndef strerror
e3be225e 669extern char *strerror ();
45993f61 670#endif
e2aab031 671
031c4a7e
FF
672#endif /* !WIN32 */
673
0a5d35ed
SG
674/* Various possibilities for alloca. */
675#ifndef alloca
676# ifdef __GNUC__
677# define alloca __builtin_alloca
7343d716 678# else /* Not GNU C */
0a5d35ed 679# ifdef sparc
22fd4704 680# include <alloca.h> /* NOTE: Doesn't declare alloca() */
e676a15f 681# endif
7343d716
JK
682
683/* We need to be careful not to declare this in a way which conflicts with
684 bison. Bison never declares it as char *, but under various circumstances
685 (like __hpux) we need to use void *. */
686# if defined (__STDC__) || defined (__hpux)
687 extern void *alloca ();
688# else /* Don't use void *. */
0f552c5f 689 extern char *alloca ();
7343d716
JK
690# endif /* Don't use void *. */
691# endif /* Not GNU C */
692#endif /* alloca not defined */
e2aab031 693
479f0f18 694/* HOST_BYTE_ORDER must be defined to one of these. */
a10c0d36 695
0a5d35ed
SG
696#if !defined (BIG_ENDIAN)
697#define BIG_ENDIAN 4321
698#endif
a10c0d36 699
0a5d35ed
SG
700#if !defined (LITTLE_ENDIAN)
701#define LITTLE_ENDIAN 1234
702#endif
a10c0d36 703
2fcdae93 704/* Target-system-dependent parameters for GDB. */
7d9884b9 705
479f0f18
SG
706#ifdef TARGET_BYTE_ORDER_SELECTABLE
707/* The target endianness is selectable at runtime. Define
708 TARGET_BYTE_ORDER to be a variable. The user can use the `set
709 endian' command to change it. */
710#undef TARGET_BYTE_ORDER
711#define TARGET_BYTE_ORDER target_byte_order
712extern int target_byte_order;
713#endif
714
715extern void set_endian_from_file PARAMS ((bfd *));
716
04f566a3
JK
717/* Number of bits in a char or unsigned char for the target machine.
718 Just like CHAR_BIT in <limits.h> but describes the target machine. */
719#if !defined (TARGET_CHAR_BIT)
720#define TARGET_CHAR_BIT 8
721#endif
722
723/* Number of bits in a short or unsigned short for the target machine. */
724#if !defined (TARGET_SHORT_BIT)
725#define TARGET_SHORT_BIT (2 * TARGET_CHAR_BIT)
726#endif
727
728/* Number of bits in an int or unsigned int for the target machine. */
729#if !defined (TARGET_INT_BIT)
730#define TARGET_INT_BIT (4 * TARGET_CHAR_BIT)
731#endif
732
733/* Number of bits in a long or unsigned long for the target machine. */
734#if !defined (TARGET_LONG_BIT)
735#define TARGET_LONG_BIT (4 * TARGET_CHAR_BIT)
736#endif
737
738/* Number of bits in a long long or unsigned long long for the target machine. */
739#if !defined (TARGET_LONG_LONG_BIT)
740#define TARGET_LONG_LONG_BIT (2 * TARGET_LONG_BIT)
741#endif
742
743/* Number of bits in a float for the target machine. */
744#if !defined (TARGET_FLOAT_BIT)
745#define TARGET_FLOAT_BIT (4 * TARGET_CHAR_BIT)
746#endif
747
748/* Number of bits in a double for the target machine. */
749#if !defined (TARGET_DOUBLE_BIT)
750#define TARGET_DOUBLE_BIT (8 * TARGET_CHAR_BIT)
751#endif
752
753/* Number of bits in a long double for the target machine. */
754#if !defined (TARGET_LONG_DOUBLE_BIT)
755#define TARGET_LONG_DOUBLE_BIT (2 * TARGET_DOUBLE_BIT)
756#endif
757
04f566a3
JK
758/* Number of bits in a pointer for the target machine */
759#if !defined (TARGET_PTR_BIT)
760#define TARGET_PTR_BIT TARGET_INT_BIT
761#endif
762
763/* If we picked up a copy of CHAR_BIT from a configuration file
764 (which may get it by including <limits.h>) then use it to set
765 the number of bits in a host char. If not, use the same size
766 as the target. */
767
768#if defined (CHAR_BIT)
769#define HOST_CHAR_BIT CHAR_BIT
770#else
771#define HOST_CHAR_BIT TARGET_CHAR_BIT
772#endif
773
7d9884b9
JG
774/* The bit byte-order has to do just with numbering of bits in
775 debugging symbols and such. Conceptually, it's quite separate
776 from byte/word byte order. */
777
778#if !defined (BITS_BIG_ENDIAN)
479f0f18
SG
779#ifndef TARGET_BYTE_ORDER_SELECTABLE
780
7d9884b9
JG
781#if TARGET_BYTE_ORDER == BIG_ENDIAN
782#define BITS_BIG_ENDIAN 1
783#endif /* Big endian. */
784
785#if TARGET_BYTE_ORDER == LITTLE_ENDIAN
786#define BITS_BIG_ENDIAN 0
787#endif /* Little endian. */
479f0f18
SG
788
789#else /* defined (TARGET_BYTE_ORDER_SELECTABLE) */
790
791#define BITS_BIG_ENDIAN (TARGET_BYTE_ORDER == BIG_ENDIAN)
792
793#endif /* defined (TARGET_BYTE_ORDER_SELECTABLE) */
7d9884b9
JG
794#endif /* BITS_BIG_ENDIAN not defined. */
795
e3c16900 796/* In findvar.c. */
e3c16900 797
6f54efdc
SS
798extern LONGEST extract_signed_integer PARAMS ((void *, int));
799
800extern unsigned LONGEST extract_unsigned_integer PARAMS ((void *, int));
801
802extern CORE_ADDR extract_address PARAMS ((void *, int));
803
804extern void store_signed_integer PARAMS ((void *, int, LONGEST));
805
806extern void store_unsigned_integer PARAMS ((void *, int, unsigned LONGEST));
807
808extern void store_address PARAMS ((void *, int, CORE_ADDR));
809
810extern double extract_floating PARAMS ((void *, int));
04f566a3 811
6f54efdc 812extern void store_floating PARAMS ((void *, int, double));
e3c16900 813\f
7d9884b9
JG
814/* On some machines there are bits in addresses which are not really
815 part of the address, but are used by the kernel, the hardware, etc.
816 for special purposes. ADDR_BITS_REMOVE takes out any such bits
817 so we get a "real" address such as one would find in a symbol
04f566a3 818 table. This is used only for addresses of instructions, and even then
e3c16900
JK
819 I'm not sure it's used in all contexts. It exists to deal with there
820 being a few stray bits in the PC which would mislead us, not as some sort
04f566a3
JK
821 of generic thing to handle alignment or segmentation (it's possible it
822 should be in TARGET_READ_PC instead). */
7d9884b9
JG
823#if !defined (ADDR_BITS_REMOVE)
824#define ADDR_BITS_REMOVE(addr) (addr)
7d9884b9
JG
825#endif /* No ADDR_BITS_REMOVE. */
826
d747e0af
MT
827/* From valops.c */
828
6f54efdc 829extern CORE_ADDR push_bytes PARAMS ((CORE_ADDR, char *, int));
d747e0af 830
6f54efdc 831extern CORE_ADDR push_word PARAMS ((CORE_ADDR, unsigned LONGEST));
d747e0af 832
0239d9b3
FF
833/* Some parts of gdb might be considered optional, in the sense that they
834 are not essential for being able to build a working, usable debugger
835 for a specific environment. For example, the maintenance commands
836 are there for the benefit of gdb maintainers. As another example,
837 some environments really don't need gdb's that are able to read N
838 different object file formats. In order to make it possible (but
839 not necessarily recommended) to build "stripped down" versions of
840 gdb, the following defines control selective compilation of those
841 parts of gdb which can be safely left out when necessary. Note that
842 the default is to include everything. */
843
844#ifndef MAINTENANCE_CMDS
845#define MAINTENANCE_CMDS 1
846#endif
847
45993f61
SC
848#ifdef MAINTENANCE_CMDS
849extern int watchdog;
850#endif
851
09722039
SG
852#include "dis-asm.h" /* Get defs for disassemble_info */
853
18b46e7c
SS
854extern int dis_asm_read_memory PARAMS ((bfd_vma memaddr, bfd_byte *myaddr,
855 int len, disassemble_info *info));
856
857extern void dis_asm_memory_error PARAMS ((int status, bfd_vma memaddr,
858 disassemble_info *info));
859
860extern void dis_asm_print_address PARAMS ((bfd_vma addr,
861 disassemble_info *info));
862
863extern int (*tm_print_insn) PARAMS ((bfd_vma, disassemble_info*));
864
865/* Hooks for alternate command interfaces. */
866
09722039
SG
867#ifdef __STDC__
868struct target_waitstatus;
869struct cmd_list_element;
870#endif
871
8164ec2e
SG
872extern void (*init_ui_hook) PARAMS ((void));
873extern void (*command_loop_hook) PARAMS ((void));
18b46e7c
SS
874extern void (*fputs_unfiltered_hook) PARAMS ((const char *linebuffer,
875 FILE *stream));
876extern void (*print_frame_info_listing_hook) PARAMS ((struct symtab *s,
877 int line, int stopline,
878 int noerror));
e3be225e 879extern int (*query_hook) PARAMS (());
8164ec2e
SG
880extern void (*flush_hook) PARAMS ((FILE *stream));
881extern void (*create_breakpoint_hook) PARAMS ((struct breakpoint *b));
882extern void (*delete_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
326ae3e2 883extern void (*modify_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
b6d70e15 884extern void (*target_output_hook) PARAMS ((char *));
637b1661 885extern void (*interactive_hook) PARAMS ((void));
16041d53 886extern void (*registers_changed_hook) PARAMS ((void));
479f0f18
SG
887
888extern int (*target_wait_hook) PARAMS ((int pid,
889 struct target_waitstatus *status));
890
891extern void (*call_command_hook) PARAMS ((struct cmd_list_element *c,
892 char *cmd, int from_tty));
893
b6d70e15 894extern NORETURN void (*error_hook) PARAMS (()) ATTR_NORETURN;
45993f61
SC
895
896
897
754e5da2
SG
898/* Inhibit window interface if non-zero. */
899
c5197511 900extern int use_windows;
754e5da2 901
45993f61
SC
902/* Symbolic definitions of filename-related things. */
903/* FIXME, this doesn't work very well if host and executable
904 filesystems conventions are different. */
905
906#ifndef DIRNAME_SEPARATOR
907#define DIRNAME_SEPARATOR ':'
908#endif
909
910#ifndef SLASH_P
b6d70e15
SC
911#if defined(__GO32__)||defined(WIN32)
912#define SLASH_P(X) ((X)=='\\')
913#else
45993f61
SC
914#define SLASH_P(X) ((X)=='/')
915#endif
b6d70e15 916#endif
45993f61
SC
917
918#ifndef SLASH_CHAR
b6d70e15
SC
919#if defined(__GO32__)||defined(WIN32)
920#define SLASH_CHAR '\\'
921#else
45993f61
SC
922#define SLASH_CHAR '/'
923#endif
b6d70e15 924#endif
45993f61
SC
925
926#ifndef SLASH_STRING
b6d70e15
SC
927#if defined(__GO32__)||defined(WIN32)
928#define SLASH_STRING "\\"
929#else
45993f61
SC
930#define SLASH_STRING "/"
931#endif
b6d70e15 932#endif
45993f61
SC
933
934#ifndef ROOTED_P
935#define ROOTED_P(X) (SLASH_P((X)[0]))
936#endif
937
09722039 938#endif /* #ifndef DEFS_H */
This page took 0.255881 seconds and 4 git commands to generate.