* defs.h (quit_flag): Don't declare.
[deliverable/binutils-gdb.git] / gdb / defs.h
CommitLineData
a0b31db1
JK
1/* *INDENT-OFF* */ /* ATTRIBUTE_PRINTF confuses indent, avoid running it
2 for now. */
c906108c 3/* Basic, host-specific, and target-specific definitions for GDB.
0b302171
JB
4 Copyright (C) 1986, 1988-2005, 2007-2012 Free Software Foundation,
5 Inc.
c906108c 6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
c5aa993b 12 (at your option) any later version.
c906108c 13
c5aa993b
JM
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
c906108c 18
c5aa993b 19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
21
22#ifndef DEFS_H
23#define DEFS_H
24
d26e3629
KY
25#ifdef GDBSERVER
26# error gdbserver should not include gdb/defs.h
27#endif
28
975ac915
MK
29#include "config.h" /* Generated by configure. */
30
8b04f8b6 31#include <sys/types.h>
c906108c 32#include <stdio.h>
975ac915 33#include <errno.h> /* System call error return status. */
c906108c 34#include <limits.h>
d5af19ba 35#include <stdint.h>
c906108c 36
06e476f5
JB
37/* The libdecnumber library, on which GDB depends, includes a header file
38 called gstdint.h instead of relying directly on stdint.h. GDB, on the
39 other hand, includes stdint.h directly, relying on the fact that gnulib
40 generates a copy if the system doesn't provide one or if it is missing
41 some features. Unfortunately, gstdint.h and stdint.h cannot be included
42 at the same time, which may happen when we include a file from
43 libdecnumber.
44
45 The following macro definition effectively prevents the inclusion of
46 gstdint.h, as all the definitions it provides are guarded against
47 the GCC_GENERATED_STDINT_H macro. We already have gnulib/stdint.h
48 included, so it's ok to blank out gstdint.h. */
49#define GCC_GENERATED_STDINT_H 1
50
c906108c 51#ifdef HAVE_STDDEF_H
917317f4 52#include <stddef.h>
c906108c
SS
53#endif
54
104c1213
JM
55#ifdef HAVE_UNISTD_H
56#include <unistd.h>
57#endif
58
637d6690
CW
59#include <fcntl.h>
60
167baebf
MK
61/* First include ansidecl.h so we can use the various macro definitions
62 here and in all subsequent file inclusions. */
63
64#include "ansidecl.h"
65
0fbb3da7
TT
66#include "gdb_locale.h"
67
6c7a06a3
TT
68#include "gdb_wchar.h"
69
2ea28649 70/* For ``enum gdb_signal''. */
dd7bf85e
DJ
71#include "gdb/signals.h"
72
48faced0
DE
73#include "ui-file.h"
74
75#include "host-defs.h"
76
975ac915 77/* Just in case they're not defined in stdio.h. */
c906108c
SS
78
79#ifndef SEEK_SET
80#define SEEK_SET 0
81#endif
82#ifndef SEEK_CUR
83#define SEEK_CUR 1
84#endif
85
637d6690
CW
86/* The O_BINARY flag is defined in fcntl.h on some non-Posix platforms.
87 It is used as an access modifier in calls to open(), where it acts
0963b4bd
MS
88 similarly to the "b" character in fopen()'s MODE argument. On Posix
89 platforms it should be a no-op, so it is defined as 0 here. This
90 ensures that the symbol may be used freely elsewhere in gdb. */
637d6690
CW
91
92#ifndef O_BINARY
93#define O_BINARY 0
94#endif
95
975ac915 96#include <stdarg.h> /* For va_list. */
c906108c
SS
97
98#include "libiberty.h"
8e3b41a9 99#include "hashtab.h"
c906108c 100
b57b6c2e
MK
101/* Rather than duplicate all the logic in BFD for figuring out what
102 types to use (which can be pretty complicated), symply define them
103 in terms of the corresponding type from BFD. */
104
c906108c
SS
105#include "bfd.h"
106
b57b6c2e
MK
107/* A byte from the program being debugged. */
108typedef bfd_byte gdb_byte;
c906108c 109
b57b6c2e 110/* An address in the program being debugged. Host byte order. */
c906108c
SS
111typedef bfd_vma CORE_ADDR;
112
801e3a5b
JB
113/* The largest CORE_ADDR value. */
114#define CORE_ADDR_MAX (~ (CORE_ADDR) 0)
115
104c1213
JM
116/* This is to make sure that LONGEST is at least as big as CORE_ADDR. */
117
118#ifndef LONGEST
119
120#ifdef BFD64
121
122#define LONGEST BFD_HOST_64_BIT
123#define ULONGEST BFD_HOST_U_64_BIT
124
125#else /* No BFD64 */
126
917317f4
JM
127#ifdef CC_HAS_LONG_LONG
128#define LONGEST long long
129#define ULONGEST unsigned long long
130#else
131#ifdef BFD_HOST_64_BIT
104c1213
JM
132/* BFD_HOST_64_BIT is defined for some hosts that don't have long long
133 (e.g. i386-windows) so try it. */
917317f4
JM
134#define LONGEST BFD_HOST_64_BIT
135#define ULONGEST BFD_HOST_U_64_BIT
136#else
137#define LONGEST long
138#define ULONGEST unsigned long
139#endif
140#endif
104c1213
JM
141
142#endif /* No BFD64 */
143
144#endif /* ! LONGEST */
145
c906108c
SS
146#ifndef min
147#define min(a, b) ((a) < (b) ? (a) : (b))
148#endif
149#ifndef max
150#define max(a, b) ((a) > (b) ? (a) : (b))
151#endif
152
d26e3629
KY
153#include "ptid.h"
154
0963b4bd 155/* Enable xdb commands if set. */
c906108c
SS
156extern int xdb_commands;
157
0963b4bd 158/* Enable dbx commands if set. */
c906108c
SS
159extern int dbx_commands;
160
030292b7
DJ
161/* System root path, used to find libraries etc. */
162extern char *gdb_sysroot;
163
b14b1491
TT
164/* GDB datadir, used to store data files. */
165extern char *gdb_datadir;
166
0c4a4063
DE
167/* If non-NULL, the possibly relocated path to python's "lib" directory
168 specified with --with-python. */
169extern char *python_libdir;
170
aa28a74e
DJ
171/* Search path for separate debug files. */
172extern char *debug_file_directory;
173
522002f9
TT
174/* GDB has two methods for handling SIGINT. When immediate_quit is
175 nonzero, a SIGINT results in an immediate longjmp out of the signal
176 handler. Otherwise, SIGINT simply sets a flag; code that might
177 take a long time, and which ought to be interruptible, checks this
178 flag using the QUIT macro.
179
180 If GDB is built with Python support, it uses Python's low-level
181 interface to implement the flag. This approach makes it possible
182 for Python and GDB SIGINT handling to coexist seamlessly.
183
184 If GDB is built without Python, it instead uses its traditional
185 variables. */
186
187/* Clear the quit flag. */
188extern void clear_quit_flag (void);
189/* Evaluate to non-zero if the quit flag is set, zero otherwise. This
190 will clear the quit flag as a side effect. */
191extern int check_quit_flag (void);
192/* Set the quit flag. */
193extern void set_quit_flag (void);
194
c906108c 195extern int immediate_quit;
c906108c 196
917317f4 197extern void quit (void);
c906108c 198
1a0559af
AC
199/* FIXME: cagney/2000-03-13: It has been suggested that the peformance
200 benefits of having a ``QUIT'' macro rather than a function are
201 marginal. If the overhead of a QUIT function call is proving
202 significant then its calling frequency should probably be reduced
203 [kingdon]. A profile analyzing the current situtation is
0963b4bd 204 needed. */
1a0559af 205
c906108c 206#define QUIT { \
522002f9 207 if (check_quit_flag ()) quit (); \
9a4105ab 208 if (deprecated_interactive_hook) deprecated_interactive_hook (); \
c906108c 209}
c906108c 210
c906108c
SS
211/* Languages represented in the symbol table and elsewhere.
212 This should probably be in language.h, but since enum's can't
213 be forward declared to satisfy opaque references before their
0963b4bd 214 actual definition, needs to be here. */
c906108c 215
917317f4
JM
216enum language
217 {
218 language_unknown, /* Language not known */
219 language_auto, /* Placeholder for automatic setting */
220 language_c, /* C */
221 language_cplus, /* C++ */
6aecb9c2 222 language_d, /* D */
a766d390 223 language_go, /* Go */
50f85cdf 224 language_objc, /* Objective-C */
917317f4 225 language_java, /* Java */
917317f4
JM
226 language_fortran, /* Fortran */
227 language_m2, /* Modula-2 */
228 language_asm, /* Assembly language */
20a0e81d 229 language_pascal, /* Pascal */
963a6417 230 language_ada, /* Ada */
f4b8a18d 231 language_opencl, /* OpenCL */
f290d38e
AC
232 language_minimal, /* All other languages, minimal support only */
233 nr_languages
917317f4 234 };
c906108c
SS
235
236enum precision_type
917317f4
JM
237 {
238 single_precision,
239 double_precision,
240 unspecified_precision
241 };
242
7f19b9a2
AC
243/* A generic, not quite boolean, enumeration. */
244enum auto_boolean
245{
246 AUTO_BOOLEAN_TRUE,
247 AUTO_BOOLEAN_FALSE,
248 AUTO_BOOLEAN_AUTO
249};
250
92ad9cd9
AC
251/* Potential ways that a function can return a value of a given type. */
252enum return_value_convention
253{
254 /* Where the return value has been squeezed into one or more
255 registers. */
256 RETURN_VALUE_REGISTER_CONVENTION,
257 /* Commonly known as the "struct return convention". The caller
258 passes an additional hidden first parameter to the caller. That
259 parameter contains the address at which the value being returned
260 should be stored. While typically, and historically, used for
261 large structs, this is convention is applied to values of many
262 different types. */
31db7b6c
MK
263 RETURN_VALUE_STRUCT_CONVENTION,
264 /* Like the "struct return convention" above, but where the ABI
265 guarantees that the called function stores the address at which
266 the value being returned is stored in a well-defined location,
267 such as a register or memory slot in the stack frame. Don't use
268 this if the ABI doesn't explicitly guarantees this. */
269 RETURN_VALUE_ABI_RETURNS_ADDRESS,
270 /* Like the "struct return convention" above, but where the ABI
271 guarantees that the address at which the value being returned is
272 stored will be available in a well-defined location, such as a
273 register or memory slot in the stack frame. Don't use this if
274 the ABI doesn't explicitly guarantees this. */
275 RETURN_VALUE_ABI_PRESERVES_ADDRESS,
92ad9cd9
AC
276};
277
c906108c
SS
278/* Needed for various prototypes */
279
c906108c
SS
280struct symtab;
281struct breakpoint;
6e4c6c91 282struct frame_info;
8b9b9e1a 283struct gdbarch;
028d0ed5 284struct value;
c906108c 285
478aac75
DE
286/* From main.c. */
287
288/* This really belong in utils.c (path-utils.c?), but it references some
289 globals that are currently only available to main.c. */
290extern char *relocate_gdb_directory (const char *initial, int flag);
291
c906108c
SS
292\f
293/* Annotation stuff. */
294
917317f4 295extern int annotation_level; /* in stack.c */
c906108c 296\f
c906108c
SS
297
298/* From regex.c or libc. BSD 4.4 declares this with the argument type as
299 "const char *" in unistd.h, so we can't declare the argument
300 as "char *". */
301
917317f4 302extern char *re_comp (const char *);
c906108c
SS
303
304/* From symfile.c */
305
917317f4
JM
306extern void symbol_file_command (char *, int);
307
308/* Remote targets may wish to use this as their load function. */
309extern void generic_load (char *name, int from_tty);
310
0152ebd7 311/* Report on STREAM the performance of memory transfer operation,
0963b4bd 312 such as 'load'.
0152ebd7
VP
313 DATA_COUNT is the number of bytes transferred.
314 WRITE_COUNT is the number of separate write operations, or 0,
315 if that information is not available.
316 START_TIME is the time at which an operation was started.
317 END_TIME is the time at which an operation ended. */
2b71414d 318struct timeval;
d9fcf2fb 319extern void print_transfer_performance (struct ui_file *stream,
917317f4
JM
320 unsigned long data_count,
321 unsigned long write_count,
2b71414d
DJ
322 const struct timeval *start_time,
323 const struct timeval *end_time);
c906108c
SS
324
325/* From top.c */
326
6426a772
JM
327typedef void initialize_file_ftype (void);
328
389e51db
AC
329extern char *skip_quoted (char *);
330
917317f4 331extern char *gdb_readline (char *);
c906108c 332
b4f5539f
TT
333extern char *gdb_readline_wrapper (char *);
334
917317f4 335extern char *command_line_input (char *, int, char *);
c906108c 336
917317f4 337extern void print_prompt (void);
c906108c 338
917317f4 339extern int input_from_terminal_p (void);
c906108c
SS
340
341extern int info_verbose;
342
343/* From printcmd.c */
344
8b9b9e1a 345extern void set_next_address (struct gdbarch *, CORE_ADDR);
c906108c 346
9cb709b6
TT
347extern int print_address_symbolic (struct gdbarch *, CORE_ADDR,
348 struct ui_file *, int, char *);
c906108c 349
22e722e1
DJ
350extern int build_address_symbolic (struct gdbarch *,
351 CORE_ADDR addr,
7b83ea04
AC
352 int do_demangle,
353 char **name,
354 int *offset,
355 char **filename,
356 int *line,
dfcd3bfb
JM
357 int *unmapped);
358
5af949e3 359extern void print_address (struct gdbarch *, CORE_ADDR, struct ui_file *);
2b28d209 360extern const char *pc_prefix (CORE_ADDR);
c906108c
SS
361
362/* From source.c */
363
014d698b
EZ
364#define OPF_TRY_CWD_FIRST 0x01
365#define OPF_SEARCH_IN_PATH 0x02
366
fbdebf46 367extern int openp (const char *, int, const char *, int, char **);
c906108c 368
24f81874 369extern int source_full_path_of (const char *, char **);
c906108c 370
917317f4 371extern void mod_path (char *, char **);
c906108c 372
c04e0a08
JJ
373extern void add_path (char *, char **, int);
374
917317f4 375extern void directory_command (char *, int);
c906108c 376
13d35ae5
AS
377extern void directory_switch (char *, int);
378
c04e0a08
JJ
379extern char *source_path;
380
917317f4 381extern void init_source_path (void);
c906108c 382
104c1213
JM
383/* From exec.c */
384
4f69f4c2
JK
385/* Process memory area starting at ADDR with length SIZE. Area is readable iff
386 READ is non-zero, writable if WRITE is non-zero, executable if EXEC is
387 non-zero. Area is possibly changed against its original file based copy if
388 MODIFIED is non-zero. DATA is passed without changes from a caller. */
389
b8edc417
JK
390typedef int (*find_memory_region_ftype) (CORE_ADDR addr, unsigned long size,
391 int read, int write, int exec,
4f69f4c2 392 int modified, void *data);
b8edc417 393
0963b4bd 394/* Take over the 'find_mapped_memory' vector from exec.c. */
b8edc417
JK
395extern void exec_set_find_memory_regions
396 (int (*func) (find_memory_region_ftype func, void *data));
be4d1333 397
53a5351d 398/* Possible lvalue types. Like enum language, this should be in
0963b4bd 399 value.h, but needs to be here for the same reason. */
53a5351d
JM
400
401enum lval_type
402 {
0963b4bd 403 /* Not an lval. */
53a5351d 404 not_lval,
25ae5d16 405 /* In memory. */
53a5351d 406 lval_memory,
25ae5d16 407 /* In a register. Registers are relative to a frame. */
53a5351d
JM
408 lval_register,
409 /* In a gdb internal variable. */
410 lval_internalvar,
411 /* Part of a gdb internal variable (structure field). */
5f5233d4
PA
412 lval_internalvar_component,
413 /* Value's bits are fetched and stored using functions provided by
414 its creator. */
415 lval_computed
53a5351d
JM
416 };
417
c906108c
SS
418/* Control types for commands */
419
420enum misc_command_type
917317f4
JM
421 {
422 ok_command,
423 end_command,
424 else_command,
425 nop_command
426 };
c906108c
SS
427
428enum command_control_type
917317f4
JM
429 {
430 simple_control,
431 break_control,
432 continue_control,
433 while_control,
434 if_control,
40c03ae8 435 commands_control,
d57a3c85 436 python_control,
a7bdde9e 437 while_stepping_control,
917317f4
JM
438 invalid_control
439 };
c906108c
SS
440
441/* Structure for saved commands lines
442 (for breakpoints, defined commands, etc). */
443
444struct command_line
917317f4
JM
445 {
446 struct command_line *next;
447 char *line;
448 enum command_control_type control_type;
a7bdde9e 449 /* The number of elements in body_list. */
917317f4 450 int body_count;
0963b4bd
MS
451 /* For composite commands, the nested lists of commands. For
452 example, for "if" command this will contain the then branch and
453 the else branch, if that is available. */
917317f4
JM
454 struct command_line **body_list;
455 };
c906108c 456
a7bdde9e
VP
457extern struct command_line *read_command_lines (char *, int, int,
458 void (*)(char *, void *),
459 void *);
460extern struct command_line *read_command_lines_1 (char * (*) (void), int,
461 void (*)(char *, void *),
462 void *);
c906108c 463
917317f4 464extern void free_command_lines (struct command_line **);
c906108c 465
145b16a9
UW
466/* Parameters of the "info proc" command. */
467
468enum info_proc_what
469 {
470 /* Display the default cmdline, cwd and exe outputs. */
471 IP_MINIMAL,
472
473 /* Display `info proc mappings'. */
474 IP_MAPPINGS,
475
476 /* Display `info proc status'. */
477 IP_STATUS,
478
479 /* Display `info proc stat'. */
480 IP_STAT,
481
482 /* Display `info proc cmdline'. */
483 IP_CMDLINE,
484
485 /* Display `info proc exe'. */
486 IP_EXE,
487
488 /* Display `info proc cwd'. */
489 IP_CWD,
490
491 /* Display all of the above. */
492 IP_ALL
493 };
494
c906108c
SS
495/* String containing the current directory (what getwd would return). */
496
497extern char *current_directory;
498
499/* Default radixes for input and output. Only some values supported. */
500extern unsigned input_radix;
501extern unsigned output_radix;
502
503/* Possibilities for prettyprint parameters to routines which print
504 things. Like enum language, this should be in value.h, but needs
505 to be here for the same reason. FIXME: If we can eliminate this
506 as an arg to LA_VAL_PRINT, then we can probably move it back to
0963b4bd 507 value.h. */
c906108c
SS
508
509enum val_prettyprint
917317f4
JM
510 {
511 Val_no_prettyprint = 0,
512 Val_prettyprint,
513 /* Use the default setting which the user has specified. */
514 Val_pretty_default
515 };
39f77062 516
5a2402b8
AC
517/* Optional native machine support. Non-native (and possibly pure
518 multi-arch) targets do not need a "nm.h" file. This will be a
519 symlink to one of the nm-*.h files, built by the `configure'
520 script. */
c906108c 521
5a2402b8 522#ifdef GDB_NM_FILE
c906108c 523#include "nm.h"
5a2402b8 524#endif
c906108c 525
06c2338d 526/* Assume that fopen accepts the letter "b" in the mode string.
a880ad57
EZ
527 It is demanded by ISO C9X, and should be supported on all
528 platforms that claim to have a standard-conforming C library. On
06c2338d 529 true POSIX systems it will be ignored and have no effect. There
a880ad57
EZ
530 may still be systems without a standard-conforming C library where
531 an ISO C9X compiler (GCC) is available. Known examples are SunOS
06c2338d
MK
532 4.x and 4.3BSD. This assumption means these systems are no longer
533 supported. */
c906108c 534#ifndef FOPEN_RB
06c2338d 535# include "fopen-bin.h"
c906108c
SS
536#endif
537
c906108c 538/* Defaults for system-wide constants (if not defined by xm.h, we fake it).
0963b4bd 539 FIXME: Assumes 2's complement arithmetic. */
c906108c
SS
540
541#if !defined (UINT_MAX)
0963b4bd 542#define UINT_MAX ((unsigned int)(~0)) /* 0xFFFFFFFF for 32-bits */
c906108c
SS
543#endif
544
545#if !defined (INT_MAX)
0963b4bd 546#define INT_MAX ((int)(UINT_MAX >> 1)) /* 0x7FFFFFFF for 32-bits */
c906108c
SS
547#endif
548
549#if !defined (INT_MIN)
0963b4bd 550#define INT_MIN ((int)((int) ~0 ^ INT_MAX)) /* 0x80000000 for 32-bits */
c906108c
SS
551#endif
552
553#if !defined (ULONG_MAX)
0963b4bd 554#define ULONG_MAX ((unsigned long)(~0L)) /* 0xFFFFFFFF for 32-bits */
c906108c
SS
555#endif
556
557#if !defined (LONG_MAX)
0963b4bd 558#define LONG_MAX ((long)(ULONG_MAX >> 1)) /* 0x7FFFFFFF for 32-bits */
c906108c
SS
559#endif
560
4ce44c66 561#if !defined (ULONGEST_MAX)
658d99ff 562#define ULONGEST_MAX (~(ULONGEST)0) /* 0xFFFFFFFFFFFFFFFF for 64-bits */
4ce44c66
JM
563#endif
564
658d99ff 565#if !defined (LONGEST_MAX) /* 0x7FFFFFFFFFFFFFFF for 64-bits */
4ce44c66
JM
566#define LONGEST_MAX ((LONGEST)(ULONGEST_MAX >> 1))
567#endif
568
c906108c
SS
569/* Convert a LONGEST to an int. This is used in contexts (e.g. number of
570 arguments to a function, number in a value history, register number, etc.)
571 where the value must not be larger than can fit in an int. */
572
917317f4 573extern int longest_to_int (LONGEST);
c906108c 574
bba2d28d
AC
575/* Utility macros to allocate typed memory. Avoids errors like:
576 struct foo *foo = xmalloc (sizeof struct bar); and memset (foo,
577 sizeof (struct foo), 0). */
5b90c7b5 578#define XZALLOC(TYPE) ((TYPE*) xzalloc (sizeof (TYPE)))
349c5d5f 579#define XMALLOC(TYPE) ((TYPE*) xmalloc (sizeof (TYPE)))
3fadccb3 580#define XCALLOC(NMEMB, TYPE) ((TYPE*) xcalloc ((NMEMB), sizeof (TYPE)))
349c5d5f 581
d26e3629 582#include "common-utils.h"
bde2058d 583
4be87837
DJ
584/* List of known OS ABIs. If you change this, make sure to update the
585 table in osabi.c. */
586enum gdb_osabi
587{
588 GDB_OSABI_UNINITIALIZED = -1, /* For struct gdbarch_info. */
589
590 GDB_OSABI_UNKNOWN = 0, /* keep this zero */
591
592 GDB_OSABI_SVR4,
593 GDB_OSABI_HURD,
594 GDB_OSABI_SOLARIS,
595 GDB_OSABI_OSF1,
596 GDB_OSABI_LINUX,
597 GDB_OSABI_FREEBSD_AOUT,
598 GDB_OSABI_FREEBSD_ELF,
599 GDB_OSABI_NETBSD_AOUT,
600 GDB_OSABI_NETBSD_ELF,
d33b9831 601 GDB_OSABI_OPENBSD_ELF,
4be87837
DJ
602 GDB_OSABI_WINCE,
603 GDB_OSABI_GO32,
4be87837 604 GDB_OSABI_IRIX,
4be87837
DJ
605 GDB_OSABI_INTERIX,
606 GDB_OSABI_HPUX_ELF,
607 GDB_OSABI_HPUX_SOM,
83461b86 608 GDB_OSABI_QNXNTO,
1762d96d 609 GDB_OSABI_CYGWIN,
1f82754b 610 GDB_OSABI_AIX,
a15c5c83 611 GDB_OSABI_DICOS,
a80b95ba 612 GDB_OSABI_DARWIN,
78664fa3 613 GDB_OSABI_SYMBIAN,
34864976 614 GDB_OSABI_OPENVMS,
1762d96d 615
4be87837
DJ
616 GDB_OSABI_INVALID /* keep this last */
617};
618
c906108c
SS
619/* Global functions from other, non-gdb GNU thingies.
620 Libiberty thingies are no longer declared here. We include libiberty.h
621 above, instead. */
622
c906108c
SS
623/* From other system libraries */
624
625#ifdef HAVE_STDDEF_H
626#include <stddef.h>
627#endif
628
629#ifdef HAVE_STDLIB_H
c906108c
SS
630#include <stdlib.h>
631#endif
632#ifndef min
633#define min(a, b) ((a) < (b) ? (a) : (b))
634#endif
635#ifndef max
636#define max(a, b) ((a) > (b) ? (a) : (b))
637#endif
638
639
c906108c 640#ifndef atof
917317f4 641extern double atof (const char *); /* X3.159-1989 4.10.1.1 */
c906108c
SS
642#endif
643
c906108c
SS
644/* Various possibilities for alloca. */
645#ifndef alloca
917317f4
JM
646#ifdef __GNUC__
647#define alloca __builtin_alloca
648#else /* Not GNU C */
649#ifdef HAVE_ALLOCA_H
650#include <alloca.h>
651#else
652#ifdef _AIX
653#pragma alloca
654#else
c906108c
SS
655
656/* We need to be careful not to declare this in a way which conflicts with
657 bison. Bison never declares it as char *, but under various circumstances
658 (like __hpux) we need to use void *. */
917317f4 659extern void *alloca ();
917317f4
JM
660#endif /* Not _AIX */
661#endif /* Not HAVE_ALLOCA_H */
662#endif /* Not GNU C */
c906108c
SS
663#endif /* alloca not defined */
664
0963b4bd 665/* Dynamic target-system-dependent parameters for GDB. */
c906108c
SS
666#include "gdbarch.h"
667
0c92afe8
AC
668/* Maximum size of a register. Something small, but large enough for
669 all known ISAs. If it turns out to be too small, make it bigger. */
670
a5916a62 671enum { MAX_REGISTER_SIZE = 64 };
0c92afe8 672
0963b4bd 673/* Static target-system-dependent parameters for GDB. */
c906108c
SS
674
675/* Number of bits in a char or unsigned char for the target machine.
676 Just like CHAR_BIT in <limits.h> but describes the target machine. */
677#if !defined (TARGET_CHAR_BIT)
678#define TARGET_CHAR_BIT 8
679#endif
680
c906108c
SS
681/* If we picked up a copy of CHAR_BIT from a configuration file
682 (which may get it by including <limits.h>) then use it to set
683 the number of bits in a host char. If not, use the same size
0963b4bd 684 as the target. */
c906108c
SS
685
686#if defined (CHAR_BIT)
687#define HOST_CHAR_BIT CHAR_BIT
688#else
689#define HOST_CHAR_BIT TARGET_CHAR_BIT
690#endif
691
c906108c
SS
692/* In findvar.c. */
693
e17a4113
UW
694extern LONGEST extract_signed_integer (const gdb_byte *, int,
695 enum bfd_endian);
c906108c 696
e17a4113
UW
697extern ULONGEST extract_unsigned_integer (const gdb_byte *, int,
698 enum bfd_endian);
c906108c 699
e17a4113
UW
700extern int extract_long_unsigned_integer (const gdb_byte *, int,
701 enum bfd_endian, LONGEST *);
c906108c 702
0d509538
AC
703extern CORE_ADDR extract_typed_address (const gdb_byte *buf,
704 struct type *type);
4478b372 705
e17a4113
UW
706extern void store_signed_integer (gdb_byte *, int,
707 enum bfd_endian, LONGEST);
c906108c 708
e17a4113
UW
709extern void store_unsigned_integer (gdb_byte *, int,
710 enum bfd_endian, ULONGEST);
c906108c 711
0d509538
AC
712extern void store_typed_address (gdb_byte *buf, struct type *type,
713 CORE_ADDR addr);
4478b372 714
c906108c 715\f
c906108c
SS
716/* From valops.c */
717
c906108c 718extern int watchdog;
c906108c
SS
719
720/* Hooks for alternate command interfaces. */
8b93c638 721
0963b4bd 722/* The name of the interpreter if specified on the command line. */
fb40c209 723extern char *interpreter_p;
fb40c209
AC
724
725/* If a given interpreter matches INTERPRETER_P then it should update
9a4105ab
AC
726 deprecated_command_loop_hook and deprecated_init_ui_hook with the
727 per-interpreter implementation. */
728/* FIXME: deprecated_command_loop_hook and deprecated_init_ui_hook
0963b4bd 729 should be moved here. */
fb40c209 730
c906108c
SS
731struct target_waitstatus;
732struct cmd_list_element;
c906108c 733
769d7dc4
AC
734extern void (*deprecated_pre_add_symbol_hook) (const char *);
735extern void (*deprecated_post_add_symbol_hook) (void);
11c949aa 736extern void (*selected_frame_level_changed_hook) (int);
98bbd631 737extern int (*deprecated_ui_loop_hook) (int signo);
9a4105ab
AC
738extern void (*deprecated_init_ui_hook) (char *argv0);
739extern void (*deprecated_command_loop_hook) (void);
740extern void (*deprecated_show_load_progress) (const char *section,
741 unsigned long section_sent,
742 unsigned long section_size,
743 unsigned long total_sent,
744 unsigned long total_size);
745extern void (*deprecated_print_frame_info_listing_hook) (struct symtab * s,
3e43a32a
MS
746 int line,
747 int stopline,
9a4105ab 748 int noerror);
bee0189a
DJ
749extern int (*deprecated_query_hook) (const char *, va_list)
750 ATTRIBUTE_FPTR_PRINTF(1,0);
751extern void (*deprecated_warning_hook) (const char *, va_list)
752 ATTRIBUTE_FPTR_PRINTF(1,0);
9a4105ab 753extern void (*deprecated_flush_hook) (struct ui_file * stream);
9a4105ab 754extern void (*deprecated_interactive_hook) (void);
bee0189a
DJ
755extern void (*deprecated_readline_begin_hook) (char *, ...)
756 ATTRIBUTE_FPTR_PRINTF_1;
9a4105ab
AC
757extern char *(*deprecated_readline_hook) (char *);
758extern void (*deprecated_readline_end_hook) (void);
759extern void (*deprecated_register_changed_hook) (int regno);
9a4105ab
AC
760extern void (*deprecated_context_hook) (int);
761extern ptid_t (*deprecated_target_wait_hook) (ptid_t ptid,
47608cb1
PA
762 struct target_waitstatus *status,
763 int options);
917317f4 764
9a4105ab
AC
765extern void (*deprecated_attach_hook) (void);
766extern void (*deprecated_detach_hook) (void);
767extern void (*deprecated_call_command_hook) (struct cmd_list_element * c,
768 char *cmd, int from_tty);
917317f4 769
9a4105ab 770extern void (*deprecated_set_hook) (struct cmd_list_element * c);
917317f4 771
9a4105ab
AC
772extern int (*deprecated_ui_load_progress_hook) (const char *section,
773 unsigned long num);
c906108c 774
0963b4bd 775/* Inhibit window interface if non-zero. */
c906108c
SS
776
777extern int use_windows;
778
ca6724c1
KB
779/* Provide default definitions of PIDGET, TIDGET, and MERGEPID.
780 The name ``TIDGET'' is a historical accident. Many uses of TIDGET
781 in the code actually refer to a lightweight process id, i.e,
782 something that can be considered a process id in its own right for
783 certain purposes. */
c906108c
SS
784
785#ifndef PIDGET
ca6724c1
KB
786#define PIDGET(PTID) (ptid_get_pid (PTID))
787#define TIDGET(PTID) (ptid_get_lwp (PTID))
788#define MERGEPID(PID, TID) ptid_build (PID, TID, 0)
c906108c
SS
789#endif
790
96baa820
JM
791/* Define well known filenos if the system does not define them. */
792#ifndef STDIN_FILENO
793#define STDIN_FILENO 0
794#endif
795#ifndef STDOUT_FILENO
796#define STDOUT_FILENO 1
797#endif
798#ifndef STDERR_FILENO
799#define STDERR_FILENO 2
800#endif
801
104c1213
JM
802/* If this definition isn't overridden by the header files, assume
803 that isatty and fileno exist on this system. */
804#ifndef ISATTY
805#define ISATTY(FP) (isatty (fileno (FP)))
806#endif
807
3347eb1a 808/* A width that can achieve a better legibility for GDB MI mode. */
809#define GDB_MI_MSG_WIDTH 80
810
6c95b8df
PA
811/* From progspace.c */
812
813extern void initialize_progspace (void);
814extern void initialize_inferiors (void);
815
8903c50d
TT
816/* Special block numbers */
817
818enum block_enum
819{
820 GLOBAL_BLOCK = 0,
821 STATIC_BLOCK = 1,
822 FIRST_LOCAL_BLOCK = 2
823};
824
48faced0
DE
825#include "utils.h"
826
c906108c 827#endif /* #ifndef DEFS_H */
This page took 0.86351 seconds and 4 git commands to generate.