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