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