1998-12-08 Philippe De Muyter <phdm@macqel.be>
[binutils-gdb.git] / gdb / defs.h
1 /* Basic, host-specific, and target-specific definitions for GDB.
2 Copyright (C) 1986, 89, 91, 92, 93, 94, 95, 96, 1998
3 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20
21 #ifndef DEFS_H
22 #define DEFS_H
23
24 #include "config.h" /* Generated by configure */
25 #include <stdio.h>
26 #include <errno.h> /* System call error return status */
27
28 #ifdef HAVE_STDDEF_H
29 # include <stddef.h>
30 #else
31 # include <sys/types.h> /* for size_t */
32 #endif
33
34 /* Just in case they're not defined in stdio.h. */
35
36 #ifndef SEEK_SET
37 #define SEEK_SET 0
38 #endif
39 #ifndef SEEK_CUR
40 #define SEEK_CUR 1
41 #endif
42
43 /* First include ansidecl.h so we can use the various macro definitions
44 here and in all subsequent file inclusions. */
45
46 #include "ansidecl.h"
47
48 #ifdef ANSI_PROTOTYPES
49 #include <stdarg.h>
50 #else
51 #include <varargs.h>
52 #endif
53
54 #include "libiberty.h"
55
56 /* libiberty.h can't declare this one, but evidently we can. */
57 extern char *strsignal PARAMS ((int));
58
59 #include "progress.h"
60
61 #ifdef USE_MMALLOC
62 #include "mmalloc.h"
63 #endif
64
65 /* For BFD64 and bfd_vma. */
66 #include "bfd.h"
67
68 /* An address in the program being debugged. Host byte order. Rather
69 than duplicate all the logic in BFD which figures out what type
70 this is (long, long long, etc.) and whether it needs to be 64
71 bits (the host/target interactions are subtle), we just use
72 bfd_vma. */
73
74 typedef bfd_vma CORE_ADDR;
75
76 #ifndef min
77 #define min(a, b) ((a) < (b) ? (a) : (b))
78 #endif
79 #ifndef max
80 #define max(a, b) ((a) > (b) ? (a) : (b))
81 #endif
82
83 /* Gdb does *lots* of string compares. Use macros to speed them up by
84 avoiding function calls if the first characters are not the same. */
85
86 #define STRCMP(a,b) (*(a) == *(b) ? strcmp ((a), (b)) : (int)*(a) - (int)*(b))
87 #define STREQ(a,b) (*(a) == *(b) ? !strcmp ((a), (b)) : 0)
88 #define STREQN(a,b,c) (*(a) == *(b) ? !strncmp ((a), (b), (c)) : 0)
89
90 /* The character GNU C++ uses to build identifiers that must be unique from
91 the program's identifiers (such as $this and $$vptr). */
92 #define CPLUS_MARKER '$' /* May be overridden to '.' for SysV */
93
94 /* Check if a character is one of the commonly used C++ marker characters. */
95 extern int is_cplus_marker PARAMS ((int));
96
97 extern int quit_flag;
98 extern int immediate_quit;
99 extern int sevenbit_strings;
100
101 extern void quit PARAMS ((void));
102
103 #ifdef QUIT
104 /* do twice to force compiler warning */
105 #define QUIT_FIXME "FIXME"
106 #define QUIT_FIXME "ignoring redefinition of QUIT"
107 #else
108 #define QUIT { \
109 if (quit_flag) quit (); \
110 if (interactive_hook) interactive_hook (); \
111 PROGRESS (1); \
112 }
113 #endif
114
115 /* Command classes are top-level categories into which commands are broken
116 down for "help" purposes.
117 Notes on classes: class_alias is for alias commands which are not
118 abbreviations of the original command. class-pseudo is for commands
119 which are not really commands nor help topics ("stop"). */
120
121 enum command_class
122 {
123 /* Special args to help_list */
124 all_classes = -2, all_commands = -1,
125 /* Classes of commands */
126 no_class = -1, class_run = 0, class_vars, class_stack,
127 class_files, class_support, class_info, class_breakpoint, class_trace,
128 class_alias, class_obscure, class_user, class_maintenance,
129 class_pseudo
130 };
131
132 /* Languages represented in the symbol table and elsewhere.
133 This should probably be in language.h, but since enum's can't
134 be forward declared to satisfy opaque references before their
135 actual definition, needs to be here. */
136
137 enum language
138 {
139 language_unknown, /* Language not known */
140 language_auto, /* Placeholder for automatic setting */
141 language_c, /* C */
142 language_cplus, /* C++ */
143 /* start-sanitize-java */
144 language_java, /* Java */
145 /* end-sanitize-java */
146 language_chill, /* Chill */
147 language_fortran, /* Fortran */
148 language_m2, /* Modula-2 */
149 language_asm, /* Assembly language */
150 language_scm /* Scheme / Guile */
151 };
152
153 /* the cleanup list records things that have to be undone
154 if an error happens (descriptors to be closed, memory to be freed, etc.)
155 Each link in the chain records a function to call and an
156 argument to give it.
157
158 Use make_cleanup to add an element to the cleanup chain.
159 Use do_cleanups to do all cleanup actions back to a given
160 point in the chain. Use discard_cleanups to remove cleanups
161 from the chain back to a given point, not doing them. */
162
163 struct cleanup
164 {
165 struct cleanup *next;
166 void (*function) PARAMS ((PTR));
167 PTR arg;
168 };
169
170
171 /* The ability to declare that a function never returns is useful, but
172 not really required to compile GDB successfully, so the NORETURN and
173 ATTR_NORETURN macros normally expand into nothing. */
174
175 /* If compiling with older versions of GCC, a function may be declared
176 "volatile" to indicate that it does not return. */
177
178 #ifndef NORETURN
179 # if defined(__GNUC__) \
180 && (__GNUC__ == 1 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7))
181 # define NORETURN volatile
182 # else
183 # define NORETURN /* nothing */
184 # endif
185 #endif
186
187 /* GCC 2.5 and later versions define a function attribute "noreturn",
188 which is the preferred way to declare that a function never returns.
189 However GCC 2.7 appears to be the first version in which this fully
190 works everywhere we use it. */
191
192 #ifndef ATTR_NORETURN
193 # if defined(__GNUC__) && __GNUC__ >= 2 && __GNUC_MINOR__ >= 7
194 # define ATTR_NORETURN __attribute__ ((noreturn))
195 # else
196 # define ATTR_NORETURN /* nothing */
197 # endif
198 #endif
199
200 #ifndef ATTR_FORMAT
201 # if defined(__GNUC__) && __GNUC__ >= 2 && __GNUC_MINOR__ >= 4 && defined (__ANSI_PROTOTYPES)
202 # define ATTR_FORMAT(type, x, y) __attribute__ ((format(type, x, y)))
203 # else
204 # define ATTR_FORMAT(type, x, y) /* nothing */
205 # endif
206 #endif
207
208 /* Needed for various prototypes */
209
210 #ifdef __STDC__
211 struct symtab;
212 struct breakpoint;
213 #endif
214
215 /* From blockframe.c */
216
217 extern int inside_entry_func PARAMS ((CORE_ADDR));
218
219 extern int inside_entry_file PARAMS ((CORE_ADDR addr));
220
221 extern int inside_main_func PARAMS ((CORE_ADDR pc));
222
223 /* From ch-lang.c, for the moment. (FIXME) */
224
225 extern char *chill_demangle PARAMS ((const char *));
226
227 /* From utils.c */
228
229 extern void notice_quit PARAMS ((void));
230
231 extern int strcmp_iw PARAMS ((const char *, const char *));
232
233 extern char *safe_strerror PARAMS ((int));
234
235 extern char *safe_strsignal PARAMS ((int));
236
237 extern void init_malloc PARAMS ((void *));
238
239 extern void request_quit PARAMS ((int));
240
241 extern void do_cleanups PARAMS ((struct cleanup *));
242 extern void do_final_cleanups PARAMS ((struct cleanup *));
243 extern void do_my_cleanups PARAMS ((struct cleanup **, struct cleanup *));
244 extern void do_run_cleanups PARAMS ((struct cleanup *));
245
246 extern void discard_cleanups PARAMS ((struct cleanup *));
247 extern void discard_final_cleanups PARAMS ((struct cleanup *));
248 extern void discard_my_cleanups PARAMS ((struct cleanup **, struct cleanup *));
249
250 typedef void (*make_cleanup_func) PARAMS ((void *));
251
252 extern struct cleanup *make_cleanup PARAMS ((make_cleanup_func, void *));
253
254 extern struct cleanup *make_final_cleanup PARAMS ((make_cleanup_func, void *));
255
256 extern struct cleanup *make_my_cleanup PARAMS ((struct cleanup **,
257 make_cleanup_func, void *));
258
259 extern struct cleanup *make_run_cleanup PARAMS ((make_cleanup_func, void *));
260
261 extern struct cleanup *save_cleanups PARAMS ((void));
262 extern struct cleanup *save_final_cleanups PARAMS ((void));
263 extern struct cleanup *save_my_cleanups PARAMS ((struct cleanup **));
264
265 extern void restore_cleanups PARAMS ((struct cleanup *));
266 extern void restore_final_cleanups PARAMS ((struct cleanup *));
267 extern void restore_my_cleanups PARAMS ((struct cleanup **, struct cleanup *));
268
269 extern void free_current_contents PARAMS ((char **));
270
271 extern void null_cleanup PARAMS ((PTR));
272
273 extern int myread PARAMS ((int, char *, int));
274
275 extern int query PARAMS((char *, ...))
276 ATTR_FORMAT(printf, 1, 2);
277
278 #if !defined (USE_MMALLOC)
279 extern PTR mmalloc PARAMS ((PTR, size_t));
280 extern PTR mrealloc PARAMS ((PTR, PTR, size_t));
281 extern void mfree PARAMS ((PTR, PTR));
282 #endif
283
284 /* From demangle.c */
285
286 extern void set_demangling_style PARAMS ((char *));
287
288 /* From tm.h */
289
290 struct type;
291 typedef int (use_struct_convention_fn) PARAMS ((int gcc_p, struct type *value_type));
292 extern use_struct_convention_fn generic_use_struct_convention;
293
294 typedef unsigned char *(breakpoint_from_pc_fn) PARAMS ((CORE_ADDR *pcptr, int *lenptr));
295
296
297 \f
298 /* Annotation stuff. */
299
300 extern int annotation_level; /* in stack.c */
301 \f
302 extern void begin_line PARAMS ((void));
303
304 extern void wrap_here PARAMS ((char *));
305
306 extern void reinitialize_more_filter PARAMS ((void));
307
308 typedef FILE GDB_FILE;
309 #define gdb_stdout stdout
310 #define gdb_stderr stderr
311
312 extern void gdb_flush PARAMS ((GDB_FILE *));
313
314 extern GDB_FILE *gdb_fopen PARAMS ((char * name, char * mode));
315
316 extern void fputs_filtered PARAMS ((const char *, GDB_FILE *));
317
318 extern void fputs_unfiltered PARAMS ((const char *, GDB_FILE *));
319
320 extern int fputc_filtered PARAMS ((int c, GDB_FILE *));
321
322 extern int fputc_unfiltered PARAMS ((int c, GDB_FILE *));
323
324 extern int putchar_unfiltered PARAMS ((int c));
325
326 extern void puts_filtered PARAMS ((const char *));
327
328 extern void puts_unfiltered PARAMS ((const char *));
329
330 extern void puts_debug PARAMS ((char *prefix, char *string, char *suffix));
331
332 extern void vprintf_filtered PARAMS ((const char *, va_list))
333 ATTR_FORMAT(printf, 1, 0);
334
335 extern void vfprintf_filtered PARAMS ((FILE *, const char *, va_list))
336 ATTR_FORMAT(printf, 2, 0);
337
338 extern void fprintf_filtered PARAMS ((FILE *, const char *, ...))
339 ATTR_FORMAT(printf, 2, 3);
340
341 extern void fprintfi_filtered PARAMS ((int, FILE *, const char *, ...))
342 ATTR_FORMAT(printf, 3, 4);
343
344 extern void printf_filtered PARAMS ((const char *, ...))
345 ATTR_FORMAT(printf, 1, 2);
346
347 extern void printfi_filtered PARAMS ((int, const char *, ...))
348 ATTR_FORMAT(printf, 2, 3);
349
350 extern void vprintf_unfiltered PARAMS ((const char *, va_list))
351 ATTR_FORMAT(printf, 1, 0);
352
353 extern void vfprintf_unfiltered PARAMS ((FILE *, const char *, va_list))
354 ATTR_FORMAT(printf, 2, 0);
355
356 extern void fprintf_unfiltered PARAMS ((FILE *, const char *, ...))
357 ATTR_FORMAT(printf, 2, 3);
358
359 extern void printf_unfiltered PARAMS ((const char *, ...))
360 ATTR_FORMAT(printf, 1, 2);
361
362 extern void print_spaces PARAMS ((int, GDB_FILE *));
363
364 extern void print_spaces_filtered PARAMS ((int, GDB_FILE *));
365
366 extern char *n_spaces PARAMS ((int));
367
368 extern void gdb_printchar PARAMS ((int, GDB_FILE *, int));
369
370 extern void gdb_print_address PARAMS ((void *, GDB_FILE *));
371
372 typedef bfd_vma t_addr;
373 typedef bfd_vma t_reg;
374 extern char* paddr PARAMS ((t_addr addr));
375
376 extern char* preg PARAMS ((t_reg reg));
377
378 extern char* paddr_nz PARAMS ((t_addr addr));
379
380 extern char* preg_nz PARAMS ((t_reg reg));
381
382 extern void fprintf_symbol_filtered PARAMS ((GDB_FILE *, char *,
383 enum language, int));
384
385 extern NORETURN void perror_with_name PARAMS ((char *)) ATTR_NORETURN;
386
387 extern void print_sys_errmsg PARAMS ((char *, int));
388
389 /* From regex.c or libc. BSD 4.4 declares this with the argument type as
390 "const char *" in unistd.h, so we can't declare the argument
391 as "char *". */
392
393 extern char *re_comp PARAMS ((const char *));
394
395 /* From symfile.c */
396
397 extern void symbol_file_command PARAMS ((char *, int));
398
399 /* From top.c */
400
401 extern char *skip_quoted PARAMS ((char *));
402
403 extern char *gdb_readline PARAMS ((char *));
404
405 extern char *command_line_input PARAMS ((char *, int, char *));
406
407 extern void print_prompt PARAMS ((void));
408
409 extern int input_from_terminal_p PARAMS ((void));
410
411 extern int info_verbose;
412
413 /* From printcmd.c */
414
415 extern void set_next_address PARAMS ((CORE_ADDR));
416
417 extern void print_address_symbolic PARAMS ((CORE_ADDR, GDB_FILE *, int,
418 char *));
419
420 extern void print_address_numeric PARAMS ((CORE_ADDR, int, GDB_FILE *));
421
422 extern void print_address PARAMS ((CORE_ADDR, GDB_FILE *));
423
424 /* From source.c */
425
426 extern int openp PARAMS ((char *, int, char *, int, int, char **));
427
428 extern void mod_path PARAMS ((char *, char **));
429
430 extern void directory_command PARAMS ((char *, int));
431
432 extern void init_source_path PARAMS ((void));
433
434 extern char *symtab_to_filename PARAMS ((struct symtab *));
435
436 /* From findvar.c */
437
438 extern int read_relative_register_raw_bytes PARAMS ((int, char *));
439
440 /* From readline (but not in any readline .h files). */
441
442 extern char *tilde_expand PARAMS ((char *));
443
444 /* Control types for commands */
445
446 enum misc_command_type
447 {
448 ok_command,
449 end_command,
450 else_command,
451 nop_command
452 };
453
454 enum command_control_type
455 {
456 simple_control,
457 break_control,
458 continue_control,
459 while_control,
460 if_control,
461 invalid_control
462 };
463
464 /* Structure for saved commands lines
465 (for breakpoints, defined commands, etc). */
466
467 struct command_line
468 {
469 struct command_line *next;
470 char *line;
471 enum command_control_type control_type;
472 int body_count;
473 struct command_line **body_list;
474 };
475
476 extern struct command_line *read_command_lines PARAMS ((char *, int));
477
478 extern void free_command_lines PARAMS ((struct command_line **));
479
480 /* String containing the current directory (what getwd would return). */
481
482 extern char *current_directory;
483
484 /* Default radixes for input and output. Only some values supported. */
485 extern unsigned input_radix;
486 extern unsigned output_radix;
487
488 /* Possibilities for prettyprint parameters to routines which print
489 things. Like enum language, this should be in value.h, but needs
490 to be here for the same reason. FIXME: If we can eliminate this
491 as an arg to LA_VAL_PRINT, then we can probably move it back to
492 value.h. */
493
494 enum val_prettyprint
495 {
496 Val_no_prettyprint = 0,
497 Val_prettyprint,
498 /* Use the default setting which the user has specified. */
499 Val_pretty_default
500 };
501
502 \f
503 /* Host machine definition. This will be a symlink to one of the
504 xm-*.h files, built by the `configure' script. */
505
506 #include "xm.h"
507
508 /* Native machine support. This will be a symlink to one of the
509 nm-*.h files, built by the `configure' script. */
510
511 #include "nm.h"
512
513 /* Target machine definition. This will be a symlink to one of the
514 tm-*.h files, built by the `configure' script. */
515
516 #include "tm.h"
517
518 /* If the xm.h file did not define the mode string used to open the
519 files, assume that binary files are opened the same way as text
520 files */
521 #ifndef FOPEN_RB
522 #include "fopen-same.h"
523 #endif
524
525 /* Microsoft C can't deal with const pointers */
526
527 #ifdef _MSC_VER
528 #define CONST_PTR
529 #else
530 #define CONST_PTR const
531 #endif
532
533 /*
534 * Allow things in gdb to be declared "volatile". If compiling ANSI, it
535 * just works. If compiling with gcc but non-ansi, redefine to __volatile__.
536 * If non-ansi, non-gcc, then eliminate "volatile" entirely, making those
537 * objects be read-write rather than read-only.
538 */
539
540 #ifndef volatile
541 #ifndef __STDC__
542 # ifdef __GNUC__
543 # define volatile __volatile__
544 # else
545 # define volatile /*nothing*/
546 # endif /* GNUC */
547 #endif /* STDC */
548 #endif /* volatile */
549
550 /* Defaults for system-wide constants (if not defined by xm.h, we fake it).
551 FIXME: Assumes 2's complement arithmetic */
552
553 #if !defined (UINT_MAX)
554 #define UINT_MAX ((unsigned int)(~0)) /* 0xFFFFFFFF for 32-bits */
555 #endif
556
557 #if !defined (INT_MAX)
558 #define INT_MAX ((int)(UINT_MAX >> 1)) /* 0x7FFFFFFF for 32-bits */
559 #endif
560
561 #if !defined (INT_MIN)
562 #define INT_MIN ((int)((int) ~0 ^ INT_MAX)) /* 0x80000000 for 32-bits */
563 #endif
564
565 #if !defined (ULONG_MAX)
566 #define ULONG_MAX ((unsigned long)(~0L)) /* 0xFFFFFFFF for 32-bits */
567 #endif
568
569 #if !defined (LONG_MAX)
570 #define LONG_MAX ((long)(ULONG_MAX >> 1)) /* 0x7FFFFFFF for 32-bits */
571 #endif
572
573 #ifndef LONGEST
574
575 #ifdef BFD64
576
577 /* This is to make sure that LONGEST is at least as big as CORE_ADDR. */
578
579 #define LONGEST BFD_HOST_64_BIT
580 #define ULONGEST BFD_HOST_U_64_BIT
581
582 #else /* No BFD64 */
583
584 # ifdef CC_HAS_LONG_LONG
585 # define LONGEST long long
586 # define ULONGEST unsigned long long
587 # else
588 /* BFD_HOST_64_BIT is defined for some hosts that don't have long long
589 (e.g. i386-windows) so try it. */
590 # ifdef BFD_HOST_64_BIT
591 # define LONGEST BFD_HOST_64_BIT
592 # define ULONGEST BFD_HOST_U_64_BIT
593 # else
594 # define LONGEST long
595 # define ULONGEST unsigned long
596 # endif
597 # endif
598
599 #endif /* No BFD64 */
600
601 #endif /* ! LONGEST */
602
603 /* Convert a LONGEST to an int. This is used in contexts (e.g. number of
604 arguments to a function, number in a value history, register number, etc.)
605 where the value must not be larger than can fit in an int. */
606
607 extern int longest_to_int PARAMS ((LONGEST));
608
609 /* Assorted functions we can declare, now that const and volatile are
610 defined. */
611
612 extern char *savestring PARAMS ((const char *, int));
613
614 extern char *msavestring PARAMS ((void *, const char *, int));
615
616 extern char *strsave PARAMS ((const char *));
617
618 extern char *mstrsave PARAMS ((void *, const char *));
619
620 #ifdef _MSC_VER /* FIXME; was long, but this causes compile errors in msvc if already defined */
621 extern PTR xmmalloc PARAMS ((PTR, size_t));
622
623 extern PTR xmrealloc PARAMS ((PTR, PTR, size_t));
624 #else
625 extern PTR xmmalloc PARAMS ((PTR, long));
626
627 extern PTR xmrealloc PARAMS ((PTR, PTR, long));
628 #endif
629
630 extern int parse_escape PARAMS ((char **));
631
632 extern char *reg_names[];
633
634 /* Message to be printed before the error message, when an error occurs. */
635
636 extern char *error_pre_print;
637
638 /* Message to be printed before the error message, when an error occurs. */
639
640 extern char *quit_pre_print;
641
642 /* Message to be printed before the warning message, when a warning occurs. */
643
644 extern char *warning_pre_print;
645
646 extern NORETURN void error PARAMS((const char *, ...)) ATTR_NORETURN;
647
648 extern void error_begin PARAMS ((void));
649
650 extern NORETURN void fatal PARAMS((char *, ...)) ATTR_NORETURN;
651
652 extern NORETURN void nomem PARAMS ((long)) ATTR_NORETURN;
653
654 /* Reasons for calling return_to_top_level. */
655 enum return_reason {
656 /* User interrupt. */
657 RETURN_QUIT,
658
659 /* Any other error. */
660 RETURN_ERROR
661 };
662
663 #define RETURN_MASK_QUIT (1 << (int)RETURN_QUIT)
664 #define RETURN_MASK_ERROR (1 << (int)RETURN_ERROR)
665 #define RETURN_MASK_ALL (RETURN_MASK_QUIT | RETURN_MASK_ERROR)
666 typedef int return_mask;
667
668 extern NORETURN void
669 return_to_top_level PARAMS ((enum return_reason)) ATTR_NORETURN;
670
671 extern int
672 catch_errors PARAMS ((int (*) (char *), void *, char *, return_mask));
673
674 extern void warning_begin PARAMS ((void));
675
676 extern void warning PARAMS ((const char *, ...))
677 ATTR_FORMAT(printf, 1, 2);
678
679 /* Global functions from other, non-gdb GNU thingies.
680 Libiberty thingies are no longer declared here. We include libiberty.h
681 above, instead. */
682
683 #ifndef GETENV_PROVIDED
684 extern char *getenv PARAMS ((const char *));
685 #endif
686
687 /* From other system libraries */
688
689 #ifdef HAVE_STDDEF_H
690 #include <stddef.h>
691 #endif
692
693 #ifdef HAVE_STDLIB_H
694 #if defined(_MSC_VER) && !defined(__cplusplus)
695 /* msvc defines these in stdlib.h for c code */
696 #undef min
697 #undef max
698 #endif
699 #include <stdlib.h>
700 #endif
701 #ifndef min
702 #define min(a, b) ((a) < (b) ? (a) : (b))
703 #endif
704 #ifndef max
705 #define max(a, b) ((a) > (b) ? (a) : (b))
706 #endif
707
708
709 /* We take the address of fclose later, but some stdio's forget
710 to declare this. We can't always declare it since there's
711 no way to declare the parameters without upsetting some compiler
712 somewhere. */
713
714 #ifndef FCLOSE_PROVIDED
715 extern int fclose PARAMS ((FILE *));
716 #endif
717
718 #ifndef atof
719 extern double atof PARAMS ((const char *)); /* X3.159-1989 4.10.1.1 */
720 #endif
721
722 #ifndef MALLOC_INCOMPATIBLE
723
724 #ifdef NEED_DECLARATION_MALLOC
725 extern PTR malloc ();
726 #endif
727
728 #ifdef NEED_DECLARATION_REALLOC
729 extern PTR realloc ();
730 #endif
731
732 #ifdef NEED_DECLARATION_FREE
733 extern void free ();
734 #endif
735
736 #endif /* MALLOC_INCOMPATIBLE */
737
738 /* Various possibilities for alloca. */
739 #ifndef alloca
740 # ifdef __GNUC__
741 # define alloca __builtin_alloca
742 # else /* Not GNU C */
743 # ifdef HAVE_ALLOCA_H
744 # include <alloca.h>
745 # else
746 # ifdef _AIX
747 #pragma alloca
748 # else
749
750 /* We need to be careful not to declare this in a way which conflicts with
751 bison. Bison never declares it as char *, but under various circumstances
752 (like __hpux) we need to use void *. */
753 # if defined (__STDC__) || defined (__hpux)
754 extern void *alloca ();
755 # else /* Don't use void *. */
756 extern char *alloca ();
757 # endif /* Don't use void *. */
758 # endif /* Not _AIX */
759 # endif /* Not HAVE_ALLOCA_H */
760 # endif /* Not GNU C */
761 #endif /* alloca not defined */
762
763 /* HOST_BYTE_ORDER must be defined to one of these. */
764
765 #ifdef HAVE_ENDIAN_H
766 #include <endian.h>
767 #endif
768
769 #if !defined (BIG_ENDIAN)
770 #define BIG_ENDIAN 4321
771 #endif
772
773 #if !defined (LITTLE_ENDIAN)
774 #define LITTLE_ENDIAN 1234
775 #endif
776
777 /* Target-system-dependent parameters for GDB. */
778
779 #ifdef TARGET_BYTE_ORDER_SELECTABLE
780 /* The target endianness is selectable at runtime. Define
781 TARGET_BYTE_ORDER to be a variable. The user can use the `set
782 endian' command to change it. */
783 #undef TARGET_BYTE_ORDER
784 #define TARGET_BYTE_ORDER target_byte_order
785 extern int target_byte_order;
786 /* Nonzero when target_byte_order auto-detected */
787 extern int target_byte_order_auto;
788 #endif
789
790 extern void set_endian_from_file PARAMS ((bfd *));
791
792 /* The target architecture can be set at run-time. */
793 extern int target_architecture_auto;
794 extern const bfd_arch_info_type *target_architecture;
795 extern void set_architecture_from_file PARAMS ((bfd *));
796 /* Notify target of a change to the selected architecture. Zero return
797 status indicates that the target did not like the change. */
798 extern int (*target_architecture_hook) PARAMS ((const bfd_arch_info_type *ap));
799 extern void set_architecture_from_arch_mach PARAMS ((enum bfd_architecture arch, unsigned long mach));
800
801 /* Number of bits in a char or unsigned char for the target machine.
802 Just like CHAR_BIT in <limits.h> but describes the target machine. */
803 #if !defined (TARGET_CHAR_BIT)
804 #define TARGET_CHAR_BIT 8
805 #endif
806
807 /* Number of bits in a short or unsigned short for the target machine. */
808 #if !defined (TARGET_SHORT_BIT)
809 #define TARGET_SHORT_BIT (2 * TARGET_CHAR_BIT)
810 #endif
811
812 /* Number of bits in an int or unsigned int for the target machine. */
813 #if !defined (TARGET_INT_BIT)
814 #define TARGET_INT_BIT (4 * TARGET_CHAR_BIT)
815 #endif
816
817 /* Number of bits in a long or unsigned long for the target machine. */
818 #if !defined (TARGET_LONG_BIT)
819 #define TARGET_LONG_BIT (4 * TARGET_CHAR_BIT)
820 #endif
821
822 /* Number of bits in a long long or unsigned long long for the target machine. */
823 #if !defined (TARGET_LONG_LONG_BIT)
824 #define TARGET_LONG_LONG_BIT (2 * TARGET_LONG_BIT)
825 #endif
826
827 /* Number of bits in a float for the target machine. */
828 #if !defined (TARGET_FLOAT_BIT)
829 #define TARGET_FLOAT_BIT (4 * TARGET_CHAR_BIT)
830 #endif
831
832 /* Number of bits in a double for the target machine. */
833 #if !defined (TARGET_DOUBLE_BIT)
834 #define TARGET_DOUBLE_BIT (8 * TARGET_CHAR_BIT)
835 #endif
836
837 /* Number of bits in a long double for the target machine. */
838 #if !defined (TARGET_LONG_DOUBLE_BIT)
839 #define TARGET_LONG_DOUBLE_BIT (2 * TARGET_DOUBLE_BIT)
840 #endif
841
842 /* Number of bits in a pointer for the target machine */
843 #if !defined (TARGET_PTR_BIT)
844 #define TARGET_PTR_BIT TARGET_INT_BIT
845 #endif
846
847 /* If we picked up a copy of CHAR_BIT from a configuration file
848 (which may get it by including <limits.h>) then use it to set
849 the number of bits in a host char. If not, use the same size
850 as the target. */
851
852 #if defined (CHAR_BIT)
853 #define HOST_CHAR_BIT CHAR_BIT
854 #else
855 #define HOST_CHAR_BIT TARGET_CHAR_BIT
856 #endif
857
858 /* The bit byte-order has to do just with numbering of bits in
859 debugging symbols and such. Conceptually, it's quite separate
860 from byte/word byte order. */
861
862 #if !defined (BITS_BIG_ENDIAN)
863 #ifndef TARGET_BYTE_ORDER_SELECTABLE
864
865 #if TARGET_BYTE_ORDER == BIG_ENDIAN
866 #define BITS_BIG_ENDIAN 1
867 #endif /* Big endian. */
868
869 #if TARGET_BYTE_ORDER == LITTLE_ENDIAN
870 #define BITS_BIG_ENDIAN 0
871 #endif /* Little endian. */
872
873 #else /* defined (TARGET_BYTE_ORDER_SELECTABLE) */
874
875 #define BITS_BIG_ENDIAN (TARGET_BYTE_ORDER == BIG_ENDIAN)
876
877 #endif /* defined (TARGET_BYTE_ORDER_SELECTABLE) */
878 #endif /* BITS_BIG_ENDIAN not defined. */
879
880 /* In findvar.c. */
881
882 extern LONGEST extract_signed_integer PARAMS ((void *, int));
883
884 extern ULONGEST extract_unsigned_integer PARAMS ((void *, int));
885
886 extern int extract_long_unsigned_integer PARAMS ((void *, int, LONGEST *));
887
888 extern CORE_ADDR extract_address PARAMS ((void *, int));
889
890 extern void store_signed_integer PARAMS ((void *, int, LONGEST));
891
892 extern void store_unsigned_integer PARAMS ((void *, int, ULONGEST));
893
894 extern void store_address PARAMS ((void *, int, CORE_ADDR));
895
896 /* Setup definitions for host and target floating point formats. We need to
897 consider the format for `float', `double', and `long double' for both target
898 and host. We need to do this so that we know what kind of conversions need
899 to be done when converting target numbers to and from the hosts DOUBLEST
900 data type. */
901
902 /* This is used to indicate that we don't know the format of the floating point
903 number. Typically, this is useful for native ports, where the actual format
904 is irrelevant, since no conversions will be taking place. */
905
906 extern const struct floatformat floatformat_unknown;
907
908 #if HOST_BYTE_ORDER == BIG_ENDIAN
909 # ifndef HOST_FLOAT_FORMAT
910 # define HOST_FLOAT_FORMAT &floatformat_ieee_single_big
911 # endif
912 # ifndef HOST_DOUBLE_FORMAT
913 # define HOST_DOUBLE_FORMAT &floatformat_ieee_double_big
914 # endif
915 #else /* LITTLE_ENDIAN */
916 # ifndef HOST_FLOAT_FORMAT
917 # define HOST_FLOAT_FORMAT &floatformat_ieee_single_little
918 # endif
919 # ifndef HOST_DOUBLE_FORMAT
920 # define HOST_DOUBLE_FORMAT &floatformat_ieee_double_little
921 # endif
922 #endif
923
924 #ifndef HOST_LONG_DOUBLE_FORMAT
925 #define HOST_LONG_DOUBLE_FORMAT &floatformat_unknown
926 #endif
927
928 #ifndef TARGET_BYTE_ORDER_SELECTABLE
929 # if TARGET_BYTE_ORDER == BIG_ENDIAN
930 # ifndef TARGET_FLOAT_FORMAT
931 # define TARGET_FLOAT_FORMAT &floatformat_ieee_single_big
932 # endif
933 # ifndef TARGET_DOUBLE_FORMAT
934 # define TARGET_DOUBLE_FORMAT &floatformat_ieee_double_big
935 # endif
936 # else /* LITTLE_ENDIAN */
937 # ifndef TARGET_FLOAT_FORMAT
938 # define TARGET_FLOAT_FORMAT &floatformat_ieee_single_little
939 # endif
940 # ifndef TARGET_DOUBLE_FORMAT
941 # define TARGET_DOUBLE_FORMAT &floatformat_ieee_double_little
942 # endif
943 # endif
944 #else /* TARGET_BYTE_ORDER_SELECTABLE */
945 # ifndef TARGET_FLOAT_FORMAT
946 # define TARGET_FLOAT_FORMAT (target_byte_order == BIG_ENDIAN \
947 ? &floatformat_ieee_single_big \
948 : &floatformat_ieee_single_little)
949 # endif
950 # ifndef TARGET_DOUBLE_FORMAT
951 # define TARGET_DOUBLE_FORMAT (target_byte_order == BIG_ENDIAN \
952 ? &floatformat_ieee_double_big \
953 : &floatformat_ieee_double_little)
954 # endif
955 #endif
956
957 #ifndef TARGET_LONG_DOUBLE_FORMAT
958 # define TARGET_LONG_DOUBLE_FORMAT &floatformat_unknown
959 #endif
960
961 /* Use `long double' if the host compiler supports it. (Note that this is not
962 necessarily any longer than `double'. On SunOS/gcc, it's the same as
963 double.) This is necessary because GDB internally converts all floating
964 point values to the widest type supported by the host.
965
966 There are problems however, when the target `long double' is longer than the
967 host's `long double'. In general, we'll probably reduce the precision of
968 any such values and print a warning. */
969
970 #ifdef HAVE_LONG_DOUBLE
971 typedef long double DOUBLEST;
972 #else
973 typedef double DOUBLEST;
974 #endif
975
976 extern void floatformat_to_doublest PARAMS ((const struct floatformat *,
977 char *, DOUBLEST *));
978 extern void floatformat_from_doublest PARAMS ((const struct floatformat *,
979 DOUBLEST *, char *));
980 extern DOUBLEST extract_floating PARAMS ((void *, int));
981
982 extern void store_floating PARAMS ((void *, int, DOUBLEST));
983 \f
984 /* On some machines there are bits in addresses which are not really
985 part of the address, but are used by the kernel, the hardware, etc.
986 for special purposes. ADDR_BITS_REMOVE takes out any such bits
987 so we get a "real" address such as one would find in a symbol
988 table. This is used only for addresses of instructions, and even then
989 I'm not sure it's used in all contexts. It exists to deal with there
990 being a few stray bits in the PC which would mislead us, not as some sort
991 of generic thing to handle alignment or segmentation (it's possible it
992 should be in TARGET_READ_PC instead). */
993 #if !defined (ADDR_BITS_REMOVE)
994 #define ADDR_BITS_REMOVE(addr) (addr)
995 #endif /* No ADDR_BITS_REMOVE. */
996
997 /* From valops.c */
998
999 extern CORE_ADDR push_bytes PARAMS ((CORE_ADDR, char *, int));
1000
1001 extern CORE_ADDR push_word PARAMS ((CORE_ADDR, ULONGEST));
1002
1003 /* Some parts of gdb might be considered optional, in the sense that they
1004 are not essential for being able to build a working, usable debugger
1005 for a specific environment. For example, the maintenance commands
1006 are there for the benefit of gdb maintainers. As another example,
1007 some environments really don't need gdb's that are able to read N
1008 different object file formats. In order to make it possible (but
1009 not necessarily recommended) to build "stripped down" versions of
1010 gdb, the following defines control selective compilation of those
1011 parts of gdb which can be safely left out when necessary. Note that
1012 the default is to include everything. */
1013
1014 #ifndef MAINTENANCE_CMDS
1015 #define MAINTENANCE_CMDS 1
1016 #endif
1017
1018 #ifdef MAINTENANCE_CMDS
1019 extern int watchdog;
1020 #endif
1021
1022 #include "dis-asm.h" /* Get defs for disassemble_info */
1023
1024 extern int dis_asm_read_memory PARAMS ((bfd_vma memaddr, bfd_byte *myaddr,
1025 int len, disassemble_info *info));
1026
1027 extern void dis_asm_memory_error PARAMS ((int status, bfd_vma memaddr,
1028 disassemble_info *info));
1029
1030 extern void dis_asm_print_address PARAMS ((bfd_vma addr,
1031 disassemble_info *info));
1032
1033 extern int (*tm_print_insn) PARAMS ((bfd_vma, disassemble_info*));
1034 extern disassemble_info tm_print_insn_info;
1035
1036 /* Hooks for alternate command interfaces. */
1037
1038 #ifdef __STDC__
1039 struct target_waitstatus;
1040 struct cmd_list_element;
1041 #endif
1042
1043 extern void (*init_ui_hook) PARAMS ((char *argv0));
1044 extern void (*command_loop_hook) PARAMS ((void));
1045 extern void (*fputs_unfiltered_hook) PARAMS ((const char *linebuffer,
1046 FILE *stream));
1047 extern void (*print_frame_info_listing_hook) PARAMS ((struct symtab *s,
1048 int line, int stopline,
1049 int noerror));
1050 extern int (*query_hook) PARAMS ((const char *, va_list));
1051 extern void (*warning_hook) PARAMS ((const char *, va_list));
1052 extern void (*flush_hook) PARAMS ((FILE *stream));
1053 extern void (*create_breakpoint_hook) PARAMS ((struct breakpoint *b));
1054 extern void (*delete_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
1055 extern void (*modify_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
1056 extern void (*target_output_hook) PARAMS ((char *));
1057 extern void (*interactive_hook) PARAMS ((void));
1058 extern void (*registers_changed_hook) PARAMS ((void));
1059 extern void (*readline_begin_hook) PARAMS ((char *, ...));
1060 extern char * (*readline_hook) PARAMS ((char *));
1061 extern void (*readline_end_hook) PARAMS ((void));
1062 extern void (*pc_changed_hook) PARAMS ((void));
1063 extern void (*context_hook) PARAMS ((int));
1064 extern int (*target_wait_hook) PARAMS ((int pid,
1065 struct target_waitstatus *status));
1066
1067 extern void (*call_command_hook) PARAMS ((struct cmd_list_element *c,
1068 char *cmd, int from_tty));
1069
1070 extern NORETURN void (*error_hook) PARAMS ((void)) ATTR_NORETURN;
1071
1072
1073
1074 /* Inhibit window interface if non-zero. */
1075
1076 extern int use_windows;
1077
1078 /* Symbolic definitions of filename-related things. */
1079 /* FIXME, this doesn't work very well if host and executable
1080 filesystems conventions are different. */
1081
1082 #ifndef DIRNAME_SEPARATOR
1083 #define DIRNAME_SEPARATOR ':'
1084 #endif
1085
1086 #ifndef SLASH_P
1087 #if defined(__GO32__)||defined(_WIN32)
1088 #define SLASH_P(X) ((X)=='\\')
1089 #else
1090 #define SLASH_P(X) ((X)=='/')
1091 #endif
1092 #endif
1093
1094 #ifndef SLASH_CHAR
1095 #if defined(__GO32__)||defined(_WIN32)
1096 #define SLASH_CHAR '\\'
1097 #else
1098 #define SLASH_CHAR '/'
1099 #endif
1100 #endif
1101
1102 #ifndef SLASH_STRING
1103 #if defined(__GO32__)||defined(_WIN32)
1104 #define SLASH_STRING "\\"
1105 #else
1106 #define SLASH_STRING "/"
1107 #endif
1108 #endif
1109
1110 #ifndef ROOTED_P
1111 #define ROOTED_P(X) (SLASH_P((X)[0]))
1112 #endif
1113
1114 /* On some systems, PIDGET is defined to extract the inferior pid from
1115 an internal pid that has the thread id and pid in seperate bit
1116 fields. If not defined, then just use the entire internal pid as
1117 the actual pid. */
1118
1119 #ifndef PIDGET
1120 #define PIDGET(pid) (pid)
1121 #endif
1122
1123 /* If under Cygwin, provide backwards compatibility with older
1124 Cygwin compilers that don't define the current cpp define. */
1125 #ifdef __CYGWIN32__
1126 #ifndef __CYGWIN__
1127 #define __CYGWIN__
1128 #endif
1129 #endif
1130
1131 #endif /* #ifndef DEFS_H */