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.
5 This file is part of GDB.
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.
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.
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. */
24 #include "config.h" /* Generated by configure */
26 #include <errno.h> /* System call error return status */
32 # include <sys/types.h> /* for size_t */
35 /* Just in case they're not defined in stdio.h. */
44 /* First include ansidecl.h so we can use the various macro definitions
45 here and in all subsequent file inclusions. */
49 #ifdef ANSI_PROTOTYPES
55 #include "libiberty.h"
57 /* libiberty.h can't declare this one, but evidently we can. */
58 extern char *strsignal PARAMS ((int));
66 /* For BFD64 and bfd_vma. */
69 /* An address in the program being debugged. Host byte order. Rather
70 than duplicate all the logic in BFD which figures out what type
71 this is (long, long long, etc.) and whether it needs to be 64
72 bits (the host/target interactions are subtle), we just use
75 typedef bfd_vma CORE_ADDR;
77 extern int core_addr_lessthan PARAMS ((CORE_ADDR lhs, CORE_ADDR rhs));
78 extern int core_addr_greaterthan PARAMS ((CORE_ADDR lhs, CORE_ADDR rhs));
82 #define min(a, b) ((a) < (b) ? (a) : (b))
85 #define max(a, b) ((a) > (b) ? (a) : (b))
88 /* Gdb does *lots* of string compares. Use macros to speed them up by
89 avoiding function calls if the first characters are not the same. */
91 #define STRCMP(a,b) (*(a) == *(b) ? strcmp ((a), (b)) : (int)*(a) - (int)*(b))
92 #define STREQ(a,b) (*(a) == *(b) ? !strcmp ((a), (b)) : 0)
93 #define STREQN(a,b,c) (*(a) == *(b) ? !strncmp ((a), (b), (c)) : 0)
95 /* The character GNU C++ uses to build identifiers that must be unique from
96 the program's identifiers (such as $this and $$vptr). */
97 #define CPLUS_MARKER '$' /* May be overridden to '.' for SysV */
99 /* Check if a character is one of the commonly used C++ marker characters. */
100 extern int is_cplus_marker PARAMS ((int));
102 /* use tui interface if non-zero */
103 extern int tui_version;
106 /* all invocations of TUIDO should have two sets of parens */
107 #define TUIDO(x) tuiDo x
112 /* enable xdb commands if set */
113 extern int xdb_commands;
115 /* enable dbx commands if set */
116 extern int dbx_commands;
118 extern int quit_flag;
119 extern int immediate_quit;
120 extern int sevenbit_strings;
122 extern void quit PARAMS ((void));
125 /* do twice to force compiler warning */
126 #define QUIT_FIXME "FIXME"
127 #define QUIT_FIXME "ignoring redefinition of QUIT"
130 if (quit_flag) quit (); \
131 if (interactive_hook) interactive_hook (); \
136 /* Command classes are top-level categories into which commands are broken
137 down for "help" purposes.
138 Notes on classes: class_alias is for alias commands which are not
139 abbreviations of the original command. class-pseudo is for commands
140 which are not really commands nor help topics ("stop"). */
144 /* Special args to help_list */
145 all_classes = -2, all_commands = -1,
146 /* Classes of commands */
147 no_class = -1, class_run = 0, class_vars, class_stack,
148 class_files, class_support, class_info, class_breakpoint, class_trace,
149 class_alias, class_obscure, class_user, class_maintenance,
150 class_pseudo, class_tui, class_xdb
153 /* Languages represented in the symbol table and elsewhere.
154 This should probably be in language.h, but since enum's can't
155 be forward declared to satisfy opaque references before their
156 actual definition, needs to be here. */
160 language_unknown, /* Language not known */
161 language_auto, /* Placeholder for automatic setting */
163 language_cplus, /* C++ */
164 language_java, /* Java */
165 language_chill, /* Chill */
166 language_fortran, /* Fortran */
167 language_m2, /* Modula-2 */
168 language_asm, /* Assembly language */
169 language_scm /* Scheme / Guile */
176 unspecified_precision
179 /* the cleanup list records things that have to be undone
180 if an error happens (descriptors to be closed, memory to be freed, etc.)
181 Each link in the chain records a function to call and an
184 Use make_cleanup to add an element to the cleanup chain.
185 Use do_cleanups to do all cleanup actions back to a given
186 point in the chain. Use discard_cleanups to remove cleanups
187 from the chain back to a given point, not doing them. */
191 struct cleanup *next;
192 void (*function) PARAMS ((PTR));
197 /* The ability to declare that a function never returns is useful, but
198 not really required to compile GDB successfully, so the NORETURN and
199 ATTR_NORETURN macros normally expand into nothing. */
201 /* If compiling with older versions of GCC, a function may be declared
202 "volatile" to indicate that it does not return. */
205 # if defined(__GNUC__) \
206 && (__GNUC__ == 1 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7))
207 # define NORETURN volatile
209 # define NORETURN /* nothing */
213 /* GCC 2.5 and later versions define a function attribute "noreturn",
214 which is the preferred way to declare that a function never returns.
215 However GCC 2.7 appears to be the first version in which this fully
216 works everywhere we use it. */
218 #ifndef ATTR_NORETURN
219 # if defined(__GNUC__) && __GNUC__ >= 2 && __GNUC_MINOR__ >= 7
220 # define ATTR_NORETURN __attribute__ ((noreturn))
222 # define ATTR_NORETURN /* nothing */
227 # if defined(__GNUC__) && __GNUC__ >= 2 && __GNUC_MINOR__ >= 4 && defined (__ANSI_PROTOTYPES)
228 # define ATTR_FORMAT(type, x, y) __attribute__ ((format(type, x, y)))
230 # define ATTR_FORMAT(type, x, y) /* nothing */
234 /* Needed for various prototypes */
241 /* From blockframe.c */
243 extern int inside_entry_func PARAMS ((CORE_ADDR));
245 extern int inside_entry_file PARAMS ((CORE_ADDR addr));
247 extern int inside_main_func PARAMS ((CORE_ADDR pc));
249 /* From ch-lang.c, for the moment. (FIXME) */
251 extern char *chill_demangle PARAMS ((const char *));
255 extern void initialize_utils PARAMS ((void));
257 extern void notice_quit PARAMS ((void));
259 extern int strcmp_iw PARAMS ((const char *, const char *));
261 extern int subset_compare PARAMS ((char *, char *));
263 extern char *safe_strerror PARAMS ((int));
265 extern char *safe_strsignal PARAMS ((int));
267 extern void init_malloc PARAMS ((void *));
269 extern void request_quit PARAMS ((int));
271 extern void do_cleanups PARAMS ((struct cleanup *));
272 extern void do_final_cleanups PARAMS ((struct cleanup *));
273 extern void do_my_cleanups PARAMS ((struct cleanup **, struct cleanup *));
274 extern void do_run_cleanups PARAMS ((struct cleanup *));
276 extern void discard_cleanups PARAMS ((struct cleanup *));
277 extern void discard_final_cleanups PARAMS ((struct cleanup *));
278 extern void discard_my_cleanups PARAMS ((struct cleanup **, struct cleanup *));
280 typedef void (*make_cleanup_func) PARAMS ((void *));
282 extern struct cleanup *make_cleanup PARAMS ((make_cleanup_func, void *));
284 extern struct cleanup *make_cleanup_freeargv PARAMS ((char **));
286 extern struct cleanup *make_final_cleanup PARAMS ((make_cleanup_func, void *));
288 extern struct cleanup *make_my_cleanup PARAMS ((struct cleanup **,
289 make_cleanup_func, void *));
291 extern struct cleanup *make_run_cleanup PARAMS ((make_cleanup_func, void *));
293 extern struct cleanup *save_cleanups PARAMS ((void));
294 extern struct cleanup *save_final_cleanups PARAMS ((void));
295 extern struct cleanup *save_my_cleanups PARAMS ((struct cleanup **));
297 extern void restore_cleanups PARAMS ((struct cleanup *));
298 extern void restore_final_cleanups PARAMS ((struct cleanup *));
299 extern void restore_my_cleanups PARAMS ((struct cleanup **, struct cleanup *));
301 extern void free_current_contents PARAMS ((char **));
303 extern void null_cleanup PARAMS ((PTR));
305 extern int myread PARAMS ((int, char *, int));
307 extern int query PARAMS((char *, ...))
308 ATTR_FORMAT(printf, 1, 2);
310 #if !defined (USE_MMALLOC)
311 extern PTR mmalloc PARAMS ((PTR, size_t));
312 extern PTR mrealloc PARAMS ((PTR, PTR, size_t));
313 extern void mfree PARAMS ((PTR, PTR));
316 extern void init_page_info PARAMS ((void));
318 /* From demangle.c */
320 extern void set_demangling_style PARAMS ((char *));
325 typedef int (use_struct_convention_fn) PARAMS ((int gcc_p, struct type *value_type));
326 extern use_struct_convention_fn generic_use_struct_convention;
328 typedef unsigned char *(breakpoint_from_pc_fn) PARAMS ((CORE_ADDR *pcptr, int *lenptr));
332 /* Annotation stuff. */
334 extern int annotation_level; /* in stack.c */
336 extern void begin_line PARAMS ((void));
338 extern void wrap_here PARAMS ((char *));
340 extern void reinitialize_more_filter PARAMS ((void));
350 typedef struct tui_stream
352 enum streamtype ts_streamtype;
358 extern GDB_FILE *gdb_stdout;
359 extern GDB_FILE *gdb_stderr;
362 typedef FILE GDB_FILE;
363 #define gdb_stdout stdout
364 #define gdb_stderr stderr
369 #include "tuiCommand.h"
372 #include "tuiLayout.h"
376 extern void gdb_fclose PARAMS ((GDB_FILE **));
378 extern void gdb_flush PARAMS ((GDB_FILE *));
380 extern GDB_FILE *gdb_fopen PARAMS ((char * name, char * mode));
382 extern void fputs_filtered PARAMS ((const char *, GDB_FILE *));
384 extern void fputs_unfiltered PARAMS ((const char *, GDB_FILE *));
386 extern int fputc_filtered PARAMS ((int c, GDB_FILE *));
388 extern int fputc_unfiltered PARAMS ((int c, GDB_FILE *));
390 extern int putchar_unfiltered PARAMS ((int c));
392 extern void puts_filtered PARAMS ((const char *));
394 extern void puts_unfiltered PARAMS ((const char *));
396 extern void puts_debug PARAMS ((char *prefix, char *string, char *suffix));
398 extern void vprintf_filtered PARAMS ((const char *, va_list))
399 ATTR_FORMAT(printf, 1, 0);
401 extern void vfprintf_filtered PARAMS ((GDB_FILE *, const char *, va_list))
402 ATTR_FORMAT(printf, 2, 0);
404 extern void fprintf_filtered PARAMS ((GDB_FILE *, const char *, ...))
405 ATTR_FORMAT(printf, 2, 3);
407 extern void fprintfi_filtered PARAMS ((int, GDB_FILE *, const char *, ...))
408 ATTR_FORMAT(printf, 3, 4);
410 extern void printf_filtered PARAMS ((const char *, ...))
411 ATTR_FORMAT(printf, 1, 2);
413 extern void printfi_filtered PARAMS ((int, const char *, ...))
414 ATTR_FORMAT(printf, 2, 3);
416 extern void vprintf_unfiltered PARAMS ((const char *, va_list))
417 ATTR_FORMAT(printf, 1, 0);
419 extern void vfprintf_unfiltered PARAMS ((GDB_FILE *, const char *, va_list))
420 ATTR_FORMAT(printf, 2, 0);
422 extern void fprintf_unfiltered PARAMS ((GDB_FILE *, const char *, ...))
423 ATTR_FORMAT(printf, 2, 3);
425 extern void printf_unfiltered PARAMS ((const char *, ...))
426 ATTR_FORMAT(printf, 1, 2);
428 extern int gdb_file_isatty PARAMS ((GDB_FILE *));
430 extern GDB_FILE *gdb_file_init_astring PARAMS ((int));
432 extern void gdb_file_deallocate PARAMS ((GDB_FILE **));
434 extern char *gdb_file_get_strbuf PARAMS ((GDB_FILE *));
436 extern void gdb_file_adjust_strbuf PARAMS ((int, GDB_FILE *));
438 extern void print_spaces PARAMS ((int, GDB_FILE *));
440 extern void print_spaces_filtered PARAMS ((int, GDB_FILE *));
442 extern char *n_spaces PARAMS ((int));
444 extern void gdb_printchar PARAMS ((int, GDB_FILE *, int));
446 extern void gdb_print_address PARAMS ((void *, GDB_FILE *));
448 typedef bfd_vma t_addr;
449 typedef bfd_vma t_reg;
450 extern char* paddr PARAMS ((t_addr addr));
452 extern char* preg PARAMS ((t_reg reg));
454 extern char* paddr_nz PARAMS ((t_addr addr));
456 extern char* preg_nz PARAMS ((t_reg reg));
458 extern void fprintf_symbol_filtered PARAMS ((GDB_FILE *, char *,
459 enum language, int));
461 extern NORETURN void perror_with_name PARAMS ((char *)) ATTR_NORETURN;
463 extern void print_sys_errmsg PARAMS ((char *, int));
465 /* From regex.c or libc. BSD 4.4 declares this with the argument type as
466 "const char *" in unistd.h, so we can't declare the argument
469 extern char *re_comp PARAMS ((const char *));
473 extern void symbol_file_command PARAMS ((char *, int));
477 extern char *skip_quoted PARAMS ((char *));
479 extern char *gdb_readline PARAMS ((char *));
481 extern char *command_line_input PARAMS ((char *, int, char *));
483 extern void print_prompt PARAMS ((void));
485 extern int input_from_terminal_p PARAMS ((void));
487 extern int info_verbose;
489 /* From printcmd.c */
491 extern void set_next_address PARAMS ((CORE_ADDR));
493 extern void print_address_symbolic PARAMS ((CORE_ADDR, GDB_FILE *, int,
496 extern void print_address_numeric PARAMS ((CORE_ADDR, int, GDB_FILE *));
498 extern void print_address PARAMS ((CORE_ADDR, GDB_FILE *));
502 extern int openp PARAMS ((char *, int, char *, int, int, char **));
504 extern int source_full_path_of PARAMS ((char *, char **));
506 extern void mod_path PARAMS ((char *, char **));
508 extern void directory_command PARAMS ((char *, int));
510 extern void init_source_path PARAMS ((void));
512 extern char *symtab_to_filename PARAMS ((struct symtab *));
516 extern int read_relative_register_raw_bytes PARAMS ((int, char *));
522 void default_get_saved_register PARAMS ((char *raw_buffer, int *optimized,
524 struct frame_info *frame, int regnum,
525 enum lval_type *lval));
527 /* From readline (but not in any readline .h files). */
529 extern char *tilde_expand PARAMS ((char *));
531 /* Control types for commands */
533 enum misc_command_type
541 enum command_control_type
551 /* Structure for saved commands lines
552 (for breakpoints, defined commands, etc). */
556 struct command_line *next;
558 enum command_control_type control_type;
560 struct command_line **body_list;
563 extern struct command_line *read_command_lines PARAMS ((char *, int));
565 extern void free_command_lines PARAMS ((struct command_line **));
567 /* String containing the current directory (what getwd would return). */
569 extern char *current_directory;
571 /* Default radixes for input and output. Only some values supported. */
572 extern unsigned input_radix;
573 extern unsigned output_radix;
575 /* Possibilities for prettyprint parameters to routines which print
576 things. Like enum language, this should be in value.h, but needs
577 to be here for the same reason. FIXME: If we can eliminate this
578 as an arg to LA_VAL_PRINT, then we can probably move it back to
583 Val_no_prettyprint = 0,
585 /* Use the default setting which the user has specified. */
590 /* Host machine definition. This will be a symlink to one of the
591 xm-*.h files, built by the `configure' script. */
595 /* Native machine support. This will be a symlink to one of the
596 nm-*.h files, built by the `configure' script. */
600 /* Target machine definition. This will be a symlink to one of the
601 tm-*.h files, built by the `configure' script. */
605 /* If the xm.h file did not define the mode string used to open the
606 files, assume that binary files are opened the same way as text
609 #include "fopen-same.h"
612 /* Microsoft C can't deal with const pointers */
617 #define CONST_PTR const
621 * Allow things in gdb to be declared "volatile". If compiling ANSI, it
622 * just works. If compiling with gcc but non-ansi, redefine to __volatile__.
623 * If non-ansi, non-gcc, then eliminate "volatile" entirely, making those
624 * objects be read-write rather than read-only.
630 # define volatile __volatile__
632 # define volatile /*nothing*/
635 #endif /* volatile */
637 /* Defaults for system-wide constants (if not defined by xm.h, we fake it).
638 FIXME: Assumes 2's complement arithmetic */
640 #if !defined (UINT_MAX)
641 #define UINT_MAX ((unsigned int)(~0)) /* 0xFFFFFFFF for 32-bits */
644 #if !defined (INT_MAX)
645 #define INT_MAX ((int)(UINT_MAX >> 1)) /* 0x7FFFFFFF for 32-bits */
648 #if !defined (INT_MIN)
649 #define INT_MIN ((int)((int) ~0 ^ INT_MAX)) /* 0x80000000 for 32-bits */
652 #if !defined (ULONG_MAX)
653 #define ULONG_MAX ((unsigned long)(~0L)) /* 0xFFFFFFFF for 32-bits */
656 #if !defined (LONG_MAX)
657 #define LONG_MAX ((long)(ULONG_MAX >> 1)) /* 0x7FFFFFFF for 32-bits */
664 /* This is to make sure that LONGEST is at least as big as CORE_ADDR. */
666 #define LONGEST BFD_HOST_64_BIT
667 #define ULONGEST BFD_HOST_U_64_BIT
671 # ifdef CC_HAS_LONG_LONG
672 # define LONGEST long long
673 # define ULONGEST unsigned long long
675 /* BFD_HOST_64_BIT is defined for some hosts that don't have long long
676 (e.g. i386-windows) so try it. */
677 # ifdef BFD_HOST_64_BIT
678 # define LONGEST BFD_HOST_64_BIT
679 # define ULONGEST BFD_HOST_U_64_BIT
681 # define LONGEST long
682 # define ULONGEST unsigned long
686 #endif /* No BFD64 */
688 #endif /* ! LONGEST */
690 /* Convert a LONGEST to an int. This is used in contexts (e.g. number of
691 arguments to a function, number in a value history, register number, etc.)
692 where the value must not be larger than can fit in an int. */
694 extern int longest_to_int PARAMS ((LONGEST));
696 /* Assorted functions we can declare, now that const and volatile are
699 extern char *savestring PARAMS ((const char *, int));
701 extern char *msavestring PARAMS ((void *, const char *, int));
703 extern char *strsave PARAMS ((const char *));
705 extern char *mstrsave PARAMS ((void *, const char *));
707 #ifdef _MSC_VER /* FIXME; was long, but this causes compile errors in msvc if already defined */
708 extern PTR xmmalloc PARAMS ((PTR, size_t));
710 extern PTR xmrealloc PARAMS ((PTR, PTR, size_t));
712 extern PTR xmmalloc PARAMS ((PTR, long));
714 extern PTR xmrealloc PARAMS ((PTR, PTR, long));
717 extern int parse_escape PARAMS ((char **));
719 /* compat - handle old targets that just define REGISTER_NAMES */
720 #ifndef REGISTER_NAME
721 extern char *gdb_register_names[];
722 #define REGISTER_NAME(i) gdb_register_names[i]
725 /* Message to be printed before the error message, when an error occurs. */
727 extern char *error_pre_print;
729 /* Message to be printed before the error message, when an error occurs. */
731 extern char *quit_pre_print;
733 /* Message to be printed before the warning message, when a warning occurs. */
735 extern char *warning_pre_print;
737 extern NORETURN void error PARAMS((const char *, ...)) ATTR_NORETURN;
739 extern void error_begin PARAMS ((void));
741 extern NORETURN void fatal PARAMS((char *, ...)) ATTR_NORETURN;
743 extern NORETURN void nomem PARAMS ((long)) ATTR_NORETURN;
745 /* Reasons for calling return_to_top_level. */
747 /* User interrupt. */
750 /* Any other error. */
754 #define RETURN_MASK_QUIT (1 << (int)RETURN_QUIT)
755 #define RETURN_MASK_ERROR (1 << (int)RETURN_ERROR)
756 #define RETURN_MASK_ALL (RETURN_MASK_QUIT | RETURN_MASK_ERROR)
757 typedef int return_mask;
760 return_to_top_level PARAMS ((enum return_reason)) ATTR_NORETURN;
762 typedef int (catch_errors_ftype) PARAMS ((PTR));
763 extern int catch_errors PARAMS ((catch_errors_ftype *, PTR, char *, return_mask));
765 extern void warning_begin PARAMS ((void));
767 extern void warning PARAMS ((const char *, ...))
768 ATTR_FORMAT(printf, 1, 2);
770 /* Global functions from other, non-gdb GNU thingies.
771 Libiberty thingies are no longer declared here. We include libiberty.h
774 #ifndef GETENV_PROVIDED
775 extern char *getenv PARAMS ((const char *));
778 /* From other system libraries */
785 #if defined(_MSC_VER) && !defined(__cplusplus)
786 /* msvc defines these in stdlib.h for c code */
793 #define min(a, b) ((a) < (b) ? (a) : (b))
796 #define max(a, b) ((a) > (b) ? (a) : (b))
800 /* We take the address of fclose later, but some stdio's forget
801 to declare this. We can't always declare it since there's
802 no way to declare the parameters without upsetting some compiler
805 #ifndef FCLOSE_PROVIDED
806 extern int fclose PARAMS ((FILE *));
810 extern double atof PARAMS ((const char *)); /* X3.159-1989 4.10.1.1 */
813 #ifndef MALLOC_INCOMPATIBLE
815 #ifdef NEED_DECLARATION_MALLOC
816 extern PTR malloc ();
819 #ifdef NEED_DECLARATION_REALLOC
820 extern PTR realloc ();
823 #ifdef NEED_DECLARATION_FREE
827 #endif /* MALLOC_INCOMPATIBLE */
829 /* Various possibilities for alloca. */
832 # define alloca __builtin_alloca
833 # else /* Not GNU C */
834 # ifdef HAVE_ALLOCA_H
841 /* We need to be careful not to declare this in a way which conflicts with
842 bison. Bison never declares it as char *, but under various circumstances
843 (like __hpux) we need to use void *. */
844 # if defined (__STDC__) || defined (__hpux)
845 extern void *alloca ();
846 # else /* Don't use void *. */
847 extern char *alloca ();
848 # endif /* Don't use void *. */
849 # endif /* Not _AIX */
850 # endif /* Not HAVE_ALLOCA_H */
851 # endif /* Not GNU C */
852 #endif /* alloca not defined */
854 /* HOST_BYTE_ORDER must be defined to one of these. */
860 #if !defined (BIG_ENDIAN)
861 #define BIG_ENDIAN 4321
864 #if !defined (LITTLE_ENDIAN)
865 #define LITTLE_ENDIAN 1234
868 /* Dynamic target-system-dependent parameters for GDB. */
871 /* Static target-system-dependent parameters for GDB. */
873 /* Number of bits in a char or unsigned char for the target machine.
874 Just like CHAR_BIT in <limits.h> but describes the target machine. */
875 #if !defined (TARGET_CHAR_BIT)
876 #define TARGET_CHAR_BIT 8
879 /* Number of bits in a short or unsigned short for the target machine. */
880 #if !defined (TARGET_SHORT_BIT)
881 #define TARGET_SHORT_BIT (2 * TARGET_CHAR_BIT)
884 /* Number of bits in an int or unsigned int for the target machine. */
885 #if !defined (TARGET_INT_BIT)
886 #define TARGET_INT_BIT (4 * TARGET_CHAR_BIT)
889 /* Number of bits in a long or unsigned long for the target machine. */
890 #if !defined (TARGET_LONG_BIT)
891 #define TARGET_LONG_BIT (4 * TARGET_CHAR_BIT)
894 /* Number of bits in a long long or unsigned long long for the target machine. */
895 #if !defined (TARGET_LONG_LONG_BIT)
896 #define TARGET_LONG_LONG_BIT (2 * TARGET_LONG_BIT)
899 /* Number of bits in a float for the target machine. */
900 #if !defined (TARGET_FLOAT_BIT)
901 #define TARGET_FLOAT_BIT (4 * TARGET_CHAR_BIT)
904 /* Number of bits in a double for the target machine. */
905 #if !defined (TARGET_DOUBLE_BIT)
906 #define TARGET_DOUBLE_BIT (8 * TARGET_CHAR_BIT)
909 /* Number of bits in a long double for the target machine. */
910 #if !defined (TARGET_LONG_DOUBLE_BIT)
911 #define TARGET_LONG_DOUBLE_BIT (2 * TARGET_DOUBLE_BIT)
914 /* Number of bits in a pointer for the target machine */
915 #if !defined (TARGET_PTR_BIT)
916 #define TARGET_PTR_BIT TARGET_INT_BIT
919 /* If we picked up a copy of CHAR_BIT from a configuration file
920 (which may get it by including <limits.h>) then use it to set
921 the number of bits in a host char. If not, use the same size
924 #if defined (CHAR_BIT)
925 #define HOST_CHAR_BIT CHAR_BIT
927 #define HOST_CHAR_BIT TARGET_CHAR_BIT
930 /* The bit byte-order has to do just with numbering of bits in
931 debugging symbols and such. Conceptually, it's quite separate
932 from byte/word byte order. */
934 #if !defined (BITS_BIG_ENDIAN)
935 #define BITS_BIG_ENDIAN (TARGET_BYTE_ORDER == BIG_ENDIAN)
940 extern LONGEST extract_signed_integer PARAMS ((void *, int));
942 extern ULONGEST extract_unsigned_integer PARAMS ((void *, int));
944 extern int extract_long_unsigned_integer PARAMS ((void *, int, LONGEST *));
946 extern CORE_ADDR extract_address PARAMS ((void *, int));
948 extern void store_signed_integer PARAMS ((PTR, int, LONGEST));
950 extern void store_unsigned_integer PARAMS ((PTR, int, ULONGEST));
952 extern void store_address PARAMS ((PTR, int, LONGEST));
954 /* Setup definitions for host and target floating point formats. We need to
955 consider the format for `float', `double', and `long double' for both target
956 and host. We need to do this so that we know what kind of conversions need
957 to be done when converting target numbers to and from the hosts DOUBLEST
960 /* This is used to indicate that we don't know the format of the floating point
961 number. Typically, this is useful for native ports, where the actual format
962 is irrelevant, since no conversions will be taking place. */
964 extern const struct floatformat floatformat_unknown;
966 #if HOST_BYTE_ORDER == BIG_ENDIAN
967 # ifndef HOST_FLOAT_FORMAT
968 # define HOST_FLOAT_FORMAT &floatformat_ieee_single_big
970 # ifndef HOST_DOUBLE_FORMAT
971 # define HOST_DOUBLE_FORMAT &floatformat_ieee_double_big
973 #else /* LITTLE_ENDIAN */
974 # ifndef HOST_FLOAT_FORMAT
975 # define HOST_FLOAT_FORMAT &floatformat_ieee_single_little
977 # ifndef HOST_DOUBLE_FORMAT
978 # define HOST_DOUBLE_FORMAT &floatformat_ieee_double_little
982 #ifndef HOST_LONG_DOUBLE_FORMAT
983 #define HOST_LONG_DOUBLE_FORMAT &floatformat_unknown
986 #ifndef TARGET_FLOAT_FORMAT
987 #define TARGET_FLOAT_FORMAT (TARGET_BYTE_ORDER == BIG_ENDIAN \
988 ? &floatformat_ieee_single_big \
989 : &floatformat_ieee_single_little)
991 #ifndef TARGET_DOUBLE_FORMAT
992 #define TARGET_DOUBLE_FORMAT (TARGET_BYTE_ORDER == BIG_ENDIAN \
993 ? &floatformat_ieee_double_big \
994 : &floatformat_ieee_double_little)
997 #ifndef TARGET_LONG_DOUBLE_FORMAT
998 # define TARGET_LONG_DOUBLE_FORMAT &floatformat_unknown
1001 /* Use `long double' if the host compiler supports it. (Note that this is not
1002 necessarily any longer than `double'. On SunOS/gcc, it's the same as
1003 double.) This is necessary because GDB internally converts all floating
1004 point values to the widest type supported by the host.
1006 There are problems however, when the target `long double' is longer than the
1007 host's `long double'. In general, we'll probably reduce the precision of
1008 any such values and print a warning. */
1010 #ifdef HAVE_LONG_DOUBLE
1011 typedef long double DOUBLEST;
1013 typedef double DOUBLEST;
1016 extern void floatformat_to_doublest PARAMS ((const struct floatformat *,
1017 char *, DOUBLEST *));
1018 extern void floatformat_from_doublest PARAMS ((const struct floatformat *,
1019 DOUBLEST *, char *));
1020 extern DOUBLEST extract_floating PARAMS ((void *, int));
1022 extern void store_floating PARAMS ((void *, int, DOUBLEST));
1024 /* On some machines there are bits in addresses which are not really
1025 part of the address, but are used by the kernel, the hardware, etc.
1026 for special purposes. ADDR_BITS_REMOVE takes out any such bits
1027 so we get a "real" address such as one would find in a symbol
1028 table. This is used only for addresses of instructions, and even then
1029 I'm not sure it's used in all contexts. It exists to deal with there
1030 being a few stray bits in the PC which would mislead us, not as some sort
1031 of generic thing to handle alignment or segmentation (it's possible it
1032 should be in TARGET_READ_PC instead). */
1033 #if !defined (ADDR_BITS_REMOVE)
1034 #define ADDR_BITS_REMOVE(addr) (addr)
1035 #endif /* No ADDR_BITS_REMOVE. */
1039 extern CORE_ADDR push_bytes PARAMS ((CORE_ADDR, char *, int));
1041 extern CORE_ADDR push_word PARAMS ((CORE_ADDR, ULONGEST));
1043 extern int watchdog;
1045 /* Hooks for alternate command interfaces. */
1048 struct target_waitstatus;
1049 struct cmd_list_element;
1052 extern void (*async_hook) PARAMS ((void));
1053 extern void (*init_ui_hook) PARAMS ((char *argv0));
1054 extern void (*command_loop_hook) PARAMS ((void));
1055 extern void (*fputs_unfiltered_hook) PARAMS ((const char *linebuffer,
1057 extern void (*print_frame_info_listing_hook) PARAMS ((struct symtab *s,
1058 int line, int stopline,
1060 extern struct frame_info *parse_frame_specification PARAMS ((char *frame_exp));
1061 extern int (*query_hook) PARAMS ((const char *, va_list));
1062 extern void (*warning_hook) PARAMS ((const char *, va_list));
1063 extern void (*flush_hook) PARAMS ((GDB_FILE *stream));
1064 extern void (*create_breakpoint_hook) PARAMS ((struct breakpoint *b));
1065 extern void (*delete_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
1066 extern void (*modify_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
1067 extern void (*target_output_hook) PARAMS ((char *));
1068 extern void (*interactive_hook) PARAMS ((void));
1069 extern void (*registers_changed_hook) PARAMS ((void));
1070 extern void (*readline_begin_hook) PARAMS ((char *, ...));
1071 extern char * (*readline_hook) PARAMS ((char *));
1072 extern void (*readline_end_hook) PARAMS ((void));
1073 extern void (*register_changed_hook) PARAMS ((int regno));
1074 extern void (*memory_changed_hook) PARAMS ((CORE_ADDR addr, int len));
1075 extern void (*context_hook) PARAMS ((int));
1076 extern int (*target_wait_hook) PARAMS ((int pid,
1077 struct target_waitstatus *status));
1079 extern void (*call_command_hook) PARAMS ((struct cmd_list_element *c,
1080 char *cmd, int from_tty));
1082 extern NORETURN void (*error_hook) PARAMS ((void)) ATTR_NORETURN;
1084 extern void (*error_begin_hook) PARAMS ((void));
1087 /* Inhibit window interface if non-zero. */
1089 extern int use_windows;
1091 /* Symbolic definitions of filename-related things. */
1092 /* FIXME, this doesn't work very well if host and executable
1093 filesystems conventions are different. */
1095 #ifndef DIRNAME_SEPARATOR
1096 #define DIRNAME_SEPARATOR ':'
1100 #if defined(__GO32__)||defined(_WIN32)
1101 #define SLASH_P(X) ((X)=='\\')
1103 #define SLASH_P(X) ((X)=='/')
1108 #if defined(__GO32__)||defined(_WIN32)
1109 #define SLASH_CHAR '\\'
1111 #define SLASH_CHAR '/'
1115 #ifndef SLASH_STRING
1116 #if defined(__GO32__)||defined(_WIN32)
1117 #define SLASH_STRING "\\"
1119 #define SLASH_STRING "/"
1124 #define ROOTED_P(X) (SLASH_P((X)[0]))
1127 /* On some systems, PIDGET is defined to extract the inferior pid from
1128 an internal pid that has the thread id and pid in seperate bit
1129 fields. If not defined, then just use the entire internal pid as
1133 #define PIDGET(pid) (pid)
1136 /* If under Cygwin, provide backwards compatibility with older
1137 Cygwin compilers that don't define the current cpp define. */
1144 #endif /* #ifndef DEFS_H */