]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/defs.h
Initial pass at Go language support.
[thirdparty/binutils-gdb.git] / gdb / defs.h
1 /* *INDENT-OFF* */ /* ATTRIBUTE_PRINTF confuses indent, avoid running it
2 for now. */
3 /* Basic, host-specific, and target-specific definitions for GDB.
4 Copyright (C) 1986, 1988-2005, 2007-2012 Free Software Foundation,
5 Inc.
6
7 This file is part of GDB.
8
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
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
13
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.
18
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21
22 #ifndef DEFS_H
23 #define DEFS_H
24
25 #ifdef GDBSERVER
26 # error gdbserver should not include gdb/defs.h
27 #endif
28
29 #include "config.h" /* Generated by configure. */
30
31 #include <sys/types.h>
32 #include <stdio.h>
33 #include <errno.h> /* System call error return status. */
34 #include <limits.h>
35 #include <stdint.h>
36
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
51 #ifdef HAVE_STDDEF_H
52 #include <stddef.h>
53 #endif
54
55 #ifdef HAVE_UNISTD_H
56 #include <unistd.h>
57 #endif
58
59 #include <fcntl.h>
60
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
66 #include "gdb_locale.h"
67
68 #include "gdb_wchar.h"
69
70 /* For ``enum target_signal''. */
71 #include "gdb/signals.h"
72
73 /* Just in case they're not defined in stdio.h. */
74
75 #ifndef SEEK_SET
76 #define SEEK_SET 0
77 #endif
78 #ifndef SEEK_CUR
79 #define SEEK_CUR 1
80 #endif
81
82 /* The O_BINARY flag is defined in fcntl.h on some non-Posix platforms.
83 It is used as an access modifier in calls to open(), where it acts
84 similarly to the "b" character in fopen()'s MODE argument. On Posix
85 platforms it should be a no-op, so it is defined as 0 here. This
86 ensures that the symbol may be used freely elsewhere in gdb. */
87
88 #ifndef O_BINARY
89 #define O_BINARY 0
90 #endif
91
92 #include <stdarg.h> /* For va_list. */
93
94 #include "libiberty.h"
95 #include "hashtab.h"
96
97 /* Rather than duplicate all the logic in BFD for figuring out what
98 types to use (which can be pretty complicated), symply define them
99 in terms of the corresponding type from BFD. */
100
101 #include "bfd.h"
102
103 /* A byte from the program being debugged. */
104 typedef bfd_byte gdb_byte;
105
106 /* An address in the program being debugged. Host byte order. */
107 typedef bfd_vma CORE_ADDR;
108
109 /* The largest CORE_ADDR value. */
110 #define CORE_ADDR_MAX (~ (CORE_ADDR) 0)
111
112 /* This is to make sure that LONGEST is at least as big as CORE_ADDR. */
113
114 #ifndef LONGEST
115
116 #ifdef BFD64
117
118 #define LONGEST BFD_HOST_64_BIT
119 #define ULONGEST BFD_HOST_U_64_BIT
120
121 #else /* No BFD64 */
122
123 #ifdef CC_HAS_LONG_LONG
124 #define LONGEST long long
125 #define ULONGEST unsigned long long
126 #else
127 #ifdef BFD_HOST_64_BIT
128 /* BFD_HOST_64_BIT is defined for some hosts that don't have long long
129 (e.g. i386-windows) so try it. */
130 #define LONGEST BFD_HOST_64_BIT
131 #define ULONGEST BFD_HOST_U_64_BIT
132 #else
133 #define LONGEST long
134 #define ULONGEST unsigned long
135 #endif
136 #endif
137
138 #endif /* No BFD64 */
139
140 #endif /* ! LONGEST */
141
142 #ifndef min
143 #define min(a, b) ((a) < (b) ? (a) : (b))
144 #endif
145 #ifndef max
146 #define max(a, b) ((a) > (b) ? (a) : (b))
147 #endif
148
149 #include "ptid.h"
150
151 /* Enable xdb commands if set. */
152 extern int xdb_commands;
153
154 /* Enable dbx commands if set. */
155 extern int dbx_commands;
156
157 /* System root path, used to find libraries etc. */
158 extern char *gdb_sysroot;
159
160 /* GDB datadir, used to store data files. */
161 extern char *gdb_datadir;
162
163 /* If non-NULL, the possibly relocated path to python's "lib" directory
164 specified with --with-python. */
165 extern char *python_libdir;
166
167 /* Search path for separate debug files. */
168 extern char *debug_file_directory;
169
170 extern int quit_flag;
171 extern int immediate_quit;
172 extern int sevenbit_strings;
173
174 extern void quit (void);
175
176 /* FIXME: cagney/2000-03-13: It has been suggested that the peformance
177 benefits of having a ``QUIT'' macro rather than a function are
178 marginal. If the overhead of a QUIT function call is proving
179 significant then its calling frequency should probably be reduced
180 [kingdon]. A profile analyzing the current situtation is
181 needed. */
182
183 #define QUIT { \
184 if (quit_flag) quit (); \
185 if (deprecated_interactive_hook) deprecated_interactive_hook (); \
186 }
187
188 /* Languages represented in the symbol table and elsewhere.
189 This should probably be in language.h, but since enum's can't
190 be forward declared to satisfy opaque references before their
191 actual definition, needs to be here. */
192
193 enum language
194 {
195 language_unknown, /* Language not known */
196 language_auto, /* Placeholder for automatic setting */
197 language_c, /* C */
198 language_cplus, /* C++ */
199 language_d, /* D */
200 language_go, /* Go */
201 language_objc, /* Objective-C */
202 language_java, /* Java */
203 language_fortran, /* Fortran */
204 language_m2, /* Modula-2 */
205 language_asm, /* Assembly language */
206 language_pascal, /* Pascal */
207 language_ada, /* Ada */
208 language_opencl, /* OpenCL */
209 language_minimal, /* All other languages, minimal support only */
210 nr_languages
211 };
212
213 enum precision_type
214 {
215 single_precision,
216 double_precision,
217 unspecified_precision
218 };
219
220 /* A generic, not quite boolean, enumeration. */
221 enum auto_boolean
222 {
223 AUTO_BOOLEAN_TRUE,
224 AUTO_BOOLEAN_FALSE,
225 AUTO_BOOLEAN_AUTO
226 };
227
228 /* Potential ways that a function can return a value of a given type. */
229 enum return_value_convention
230 {
231 /* Where the return value has been squeezed into one or more
232 registers. */
233 RETURN_VALUE_REGISTER_CONVENTION,
234 /* Commonly known as the "struct return convention". The caller
235 passes an additional hidden first parameter to the caller. That
236 parameter contains the address at which the value being returned
237 should be stored. While typically, and historically, used for
238 large structs, this is convention is applied to values of many
239 different types. */
240 RETURN_VALUE_STRUCT_CONVENTION,
241 /* Like the "struct return convention" above, but where the ABI
242 guarantees that the called function stores the address at which
243 the value being returned is stored in a well-defined location,
244 such as a register or memory slot in the stack frame. Don't use
245 this if the ABI doesn't explicitly guarantees this. */
246 RETURN_VALUE_ABI_RETURNS_ADDRESS,
247 /* Like the "struct return convention" above, but where the ABI
248 guarantees that the address at which the value being returned is
249 stored will be available in a well-defined location, such as a
250 register or memory slot in the stack frame. Don't use this if
251 the ABI doesn't explicitly guarantees this. */
252 RETURN_VALUE_ABI_PRESERVES_ADDRESS,
253 };
254
255 /* vec.h-style vectors of strings want a typedef for char * or const char *. */
256
257 typedef char * char_ptr;
258 typedef const char * const_char_ptr;
259
260 /* Needed for various prototypes */
261
262 struct symtab;
263 struct breakpoint;
264 struct frame_info;
265 struct gdbarch;
266 struct value;
267
268 /* From main.c. */
269
270 /* This really belong in utils.c (path-utils.c?), but it references some
271 globals that are currently only available to main.c. */
272 extern char *relocate_gdb_directory (const char *initial, int flag);
273
274 /* From utils.c */
275
276 extern void initialize_utils (void);
277
278 extern void notice_quit (void);
279
280 extern int strcmp_iw (const char *, const char *);
281
282 extern int strcmp_iw_ordered (const char *, const char *);
283
284 extern int streq (const char *, const char *);
285
286 extern int subset_compare (char *, char *);
287
288 extern char *safe_strerror (int);
289
290 extern void set_display_time (int);
291
292 extern void set_display_space (int);
293
294 /* Cleanup utilities. */
295
296 #include "cleanups.h"
297
298 extern struct cleanup *make_cleanup_freeargv (char **);
299
300 struct dyn_string;
301 extern struct cleanup *make_cleanup_dyn_string_delete (struct dyn_string *);
302
303 struct ui_file;
304 extern struct cleanup *make_cleanup_ui_file_delete (struct ui_file *);
305
306 struct ui_out;
307 extern struct cleanup *
308 make_cleanup_ui_out_redirect_pop (struct ui_out *uiout);
309
310 struct section_addr_info;
311 extern struct cleanup *(make_cleanup_free_section_addr_info
312 (struct section_addr_info *));
313
314 extern struct cleanup *make_cleanup_close (int fd);
315
316 extern struct cleanup *make_cleanup_fclose (FILE *file);
317
318 extern struct cleanup *make_cleanup_bfd_close (bfd *abfd);
319
320 struct obstack;
321 extern struct cleanup *make_cleanup_obstack_free (struct obstack *obstack);
322
323 extern struct cleanup *make_cleanup_restore_integer (int *variable);
324 extern struct cleanup *make_cleanup_restore_uinteger (unsigned int *variable);
325
326 struct target_ops;
327 extern struct cleanup *make_cleanup_unpush_target (struct target_ops *ops);
328
329 extern struct cleanup *
330 make_cleanup_restore_ui_file (struct ui_file **variable);
331
332 extern struct cleanup *make_cleanup_value_free_to_mark (struct value *);
333 extern struct cleanup *make_cleanup_value_free (struct value *);
334
335 struct so_list;
336 extern struct cleanup *make_cleanup_free_so (struct so_list *so);
337
338 extern struct cleanup *make_cleanup_htab_delete (htab_t htab);
339
340 extern void free_current_contents (void *);
341
342 extern struct cleanup *make_command_stats_cleanup (int);
343
344 extern int myread (int, char *, int);
345
346 extern int query (const char *, ...) ATTRIBUTE_PRINTF (1, 2);
347 extern int nquery (const char *, ...) ATTRIBUTE_PRINTF (1, 2);
348 extern int yquery (const char *, ...) ATTRIBUTE_PRINTF (1, 2);
349
350 extern void init_page_info (void);
351
352 extern struct cleanup *make_cleanup_restore_page_info (void);
353 extern struct cleanup *
354 set_batch_flag_and_make_cleanup_restore_page_info (void);
355
356 extern char *gdb_realpath (const char *);
357 extern char *xfullpath (const char *);
358
359 extern unsigned long gnu_debuglink_crc32 (unsigned long crc,
360 unsigned char *buf, size_t len);
361
362 ULONGEST strtoulst (const char *num, const char **trailer, int base);
363
364 char *ldirname (const char *filename);
365
366 char **gdb_buildargv (const char *);
367
368 int compare_positive_ints (const void *ap, const void *bp);
369 int compare_strings (const void *ap, const void *bp);
370
371 /* A wrapper for bfd_errmsg to produce a more helpful error message
372 in the case of bfd_error_file_ambiguously recognized.
373 MATCHING, if non-NULL, is the corresponding argument to
374 bfd_check_format_matches, and will be freed. */
375
376 extern const char *gdb_bfd_errmsg (bfd_error_type error_tag, char **matching);
377
378 extern int parse_pid_to_attach (char *args);
379
380 extern struct cleanup *make_bpstat_clear_actions_cleanup (void);
381
382 extern int producer_is_gcc_ge_4 (const char *producer);
383
384 #ifdef HAVE_WAITPID
385 extern pid_t wait_to_die_with_timeout (pid_t pid, int *status, int timeout);
386 #endif
387
388 \f
389 /* Annotation stuff. */
390
391 extern int annotation_level; /* in stack.c */
392 \f
393 extern void begin_line (void);
394
395 extern void wrap_here (char *);
396
397 extern void reinitialize_more_filter (void);
398
399 /* Normal results */
400 extern struct ui_file *gdb_stdout;
401 /* Input stream */
402 extern struct ui_file *gdb_stdin;
403 /* Serious error notifications */
404 extern struct ui_file *gdb_stderr;
405 /* Log/debug/trace messages that should bypass normal stdout/stderr
406 filtering. For moment, always call this stream using
407 *_unfiltered. In the very near future that restriction shall be
408 removed - either call shall be unfiltered. (cagney 1999-06-13). */
409 extern struct ui_file *gdb_stdlog;
410 /* Target output that should bypass normal stdout/stderr filtering.
411 For moment, always call this stream using *_unfiltered. In the
412 very near future that restriction shall be removed - either call
413 shall be unfiltered. (cagney 1999-07-02). */
414 extern struct ui_file *gdb_stdtarg;
415 extern struct ui_file *gdb_stdtargerr;
416 extern struct ui_file *gdb_stdtargin;
417
418 #include "ui-file.h"
419
420 /* More generic printf like operations. Filtered versions may return
421 non-locally on error. */
422
423 extern void fputs_filtered (const char *, struct ui_file *);
424
425 extern void fputs_unfiltered (const char *, struct ui_file *);
426
427 extern int fputc_filtered (int c, struct ui_file *);
428
429 extern int fputc_unfiltered (int c, struct ui_file *);
430
431 extern int putchar_filtered (int c);
432
433 extern int putchar_unfiltered (int c);
434
435 extern void puts_filtered (const char *);
436
437 extern void puts_unfiltered (const char *);
438
439 extern void puts_filtered_tabular (char *string, int width, int right);
440
441 extern void puts_debug (char *prefix, char *string, char *suffix);
442
443 extern void vprintf_filtered (const char *, va_list) ATTRIBUTE_PRINTF (1, 0);
444
445 extern void vfprintf_filtered (struct ui_file *, const char *, va_list)
446 ATTRIBUTE_PRINTF (2, 0);
447
448 extern void fprintf_filtered (struct ui_file *, const char *, ...)
449 ATTRIBUTE_PRINTF (2, 3);
450
451 extern void fprintfi_filtered (int, struct ui_file *, const char *, ...)
452 ATTRIBUTE_PRINTF (3, 4);
453
454 extern void printf_filtered (const char *, ...) ATTRIBUTE_PRINTF (1, 2);
455
456 extern void printfi_filtered (int, const char *, ...) ATTRIBUTE_PRINTF (2, 3);
457
458 extern void vprintf_unfiltered (const char *, va_list) ATTRIBUTE_PRINTF (1, 0);
459
460 extern void vfprintf_unfiltered (struct ui_file *, const char *, va_list)
461 ATTRIBUTE_PRINTF (2, 0);
462
463 extern void fprintf_unfiltered (struct ui_file *, const char *, ...)
464 ATTRIBUTE_PRINTF (2, 3);
465
466 extern void printf_unfiltered (const char *, ...) ATTRIBUTE_PRINTF (1, 2);
467
468 extern void print_spaces (int, struct ui_file *);
469
470 extern void print_spaces_filtered (int, struct ui_file *);
471
472 extern char *n_spaces (int);
473
474 extern void fputstr_filtered (const char *str, int quotr,
475 struct ui_file * stream);
476
477 extern void fputstr_unfiltered (const char *str, int quotr,
478 struct ui_file * stream);
479
480 extern void fputstrn_filtered (const char *str, int n, int quotr,
481 struct ui_file * stream);
482
483 extern void fputstrn_unfiltered (const char *str, int n, int quotr,
484 struct ui_file * stream);
485
486 /* Display the host ADDR on STREAM formatted as ``0x%x''. */
487 extern void gdb_print_host_address (const void *addr, struct ui_file *stream);
488
489 extern const char *host_address_to_string (const void *addr);
490
491 /* Convert CORE_ADDR to string in platform-specific manner.
492 This is usually formatted similar to 0x%lx. */
493 extern const char *paddress (struct gdbarch *gdbarch, CORE_ADDR addr);
494
495 /* Return a string representation in hexadecimal notation of ADDRESS,
496 which is suitable for printing. */
497
498 extern const char *print_core_address (struct gdbarch *gdbarch,
499 CORE_ADDR address);
500
501 /* Callback hash_f and eq_f for htab_create_alloc or htab_create_alloc_ex. */
502
503 extern hashval_t core_addr_hash (const void *ap);
504 extern int core_addr_eq (const void *ap, const void *bp);
505
506 /* %d for LONGEST */
507 extern char *plongest (LONGEST l);
508 /* %u for ULONGEST */
509 extern char *pulongest (ULONGEST l);
510
511 extern char *phex (ULONGEST l, int sizeof_l);
512 extern char *phex_nz (ULONGEST l, int sizeof_l);
513 extern char *int_string (LONGEST, int, int, int, int);
514
515 /* Convert a CORE_ADDR into a HEX string with leading zeros.
516 The output from core_addr_to_string() can be passed direct to
517 string_to_core_addr(). */
518 extern const char *core_addr_to_string (const CORE_ADDR addr);
519 extern const char *core_addr_to_string_nz (const CORE_ADDR addr);
520 extern CORE_ADDR string_to_core_addr (const char *my_string);
521
522 /* Return a string that contains a number formatted as a hex
523 string. */
524 extern char *hex_string (LONGEST);
525 extern char *hex_string_custom (LONGEST, int);
526
527 extern void fprintf_symbol_filtered (struct ui_file *, const char *,
528 enum language, int);
529
530 extern void perror_with_name (const char *) ATTRIBUTE_NORETURN;
531
532 extern void print_sys_errmsg (const char *, int);
533
534 /* From regex.c or libc. BSD 4.4 declares this with the argument type as
535 "const char *" in unistd.h, so we can't declare the argument
536 as "char *". */
537
538 extern char *re_comp (const char *);
539
540 /* From symfile.c */
541
542 extern void symbol_file_command (char *, int);
543
544 /* Remote targets may wish to use this as their load function. */
545 extern void generic_load (char *name, int from_tty);
546
547 /* Report on STREAM the performance of memory transfer operation,
548 such as 'load'.
549 DATA_COUNT is the number of bytes transferred.
550 WRITE_COUNT is the number of separate write operations, or 0,
551 if that information is not available.
552 START_TIME is the time at which an operation was started.
553 END_TIME is the time at which an operation ended. */
554 struct timeval;
555 extern void print_transfer_performance (struct ui_file *stream,
556 unsigned long data_count,
557 unsigned long write_count,
558 const struct timeval *start_time,
559 const struct timeval *end_time);
560
561 /* From top.c */
562
563 typedef void initialize_file_ftype (void);
564
565 extern char *skip_quoted (char *);
566
567 extern char *gdb_readline (char *);
568
569 extern char *gdb_readline_wrapper (char *);
570
571 extern char *command_line_input (char *, int, char *);
572
573 extern void print_prompt (void);
574
575 extern int input_from_terminal_p (void);
576
577 extern int info_verbose;
578
579 /* From printcmd.c */
580
581 extern void set_next_address (struct gdbarch *, CORE_ADDR);
582
583 extern void print_address_symbolic (struct gdbarch *, CORE_ADDR,
584 struct ui_file *, int, char *);
585
586 extern int build_address_symbolic (struct gdbarch *,
587 CORE_ADDR addr,
588 int do_demangle,
589 char **name,
590 int *offset,
591 char **filename,
592 int *line,
593 int *unmapped);
594
595 extern void print_address (struct gdbarch *, CORE_ADDR, struct ui_file *);
596 extern const char *pc_prefix (CORE_ADDR);
597
598 /* From source.c */
599
600 #define OPF_TRY_CWD_FIRST 0x01
601 #define OPF_SEARCH_IN_PATH 0x02
602
603 extern int openp (const char *, int, const char *, int, char **);
604
605 extern int source_full_path_of (const char *, char **);
606
607 extern void mod_path (char *, char **);
608
609 extern void add_path (char *, char **, int);
610
611 extern void directory_command (char *, int);
612
613 extern void directory_switch (char *, int);
614
615 extern char *source_path;
616
617 extern void init_source_path (void);
618
619 /* From exec.c */
620
621 typedef int (*find_memory_region_ftype) (CORE_ADDR addr, unsigned long size,
622 int read, int write, int exec,
623 void *data);
624
625 /* Take over the 'find_mapped_memory' vector from exec.c. */
626 extern void exec_set_find_memory_regions
627 (int (*func) (find_memory_region_ftype func, void *data));
628
629 /* Possible lvalue types. Like enum language, this should be in
630 value.h, but needs to be here for the same reason. */
631
632 enum lval_type
633 {
634 /* Not an lval. */
635 not_lval,
636 /* In memory. */
637 lval_memory,
638 /* In a register. Registers are relative to a frame. */
639 lval_register,
640 /* In a gdb internal variable. */
641 lval_internalvar,
642 /* Part of a gdb internal variable (structure field). */
643 lval_internalvar_component,
644 /* Value's bits are fetched and stored using functions provided by
645 its creator. */
646 lval_computed
647 };
648
649 /* Control types for commands */
650
651 enum misc_command_type
652 {
653 ok_command,
654 end_command,
655 else_command,
656 nop_command
657 };
658
659 enum command_control_type
660 {
661 simple_control,
662 break_control,
663 continue_control,
664 while_control,
665 if_control,
666 commands_control,
667 python_control,
668 while_stepping_control,
669 invalid_control
670 };
671
672 /* Structure for saved commands lines
673 (for breakpoints, defined commands, etc). */
674
675 struct command_line
676 {
677 struct command_line *next;
678 char *line;
679 enum command_control_type control_type;
680 /* The number of elements in body_list. */
681 int body_count;
682 /* For composite commands, the nested lists of commands. For
683 example, for "if" command this will contain the then branch and
684 the else branch, if that is available. */
685 struct command_line **body_list;
686 };
687
688 extern struct command_line *read_command_lines (char *, int, int,
689 void (*)(char *, void *),
690 void *);
691 extern struct command_line *read_command_lines_1 (char * (*) (void), int,
692 void (*)(char *, void *),
693 void *);
694
695 extern void free_command_lines (struct command_line **);
696
697 /* Parameters of the "info proc" command. */
698
699 enum info_proc_what
700 {
701 /* Display the default cmdline, cwd and exe outputs. */
702 IP_MINIMAL,
703
704 /* Display `info proc mappings'. */
705 IP_MAPPINGS,
706
707 /* Display `info proc status'. */
708 IP_STATUS,
709
710 /* Display `info proc stat'. */
711 IP_STAT,
712
713 /* Display `info proc cmdline'. */
714 IP_CMDLINE,
715
716 /* Display `info proc exe'. */
717 IP_EXE,
718
719 /* Display `info proc cwd'. */
720 IP_CWD,
721
722 /* Display all of the above. */
723 IP_ALL
724 };
725
726 /* String containing the current directory (what getwd would return). */
727
728 extern char *current_directory;
729
730 /* Default radixes for input and output. Only some values supported. */
731 extern unsigned input_radix;
732 extern unsigned output_radix;
733
734 /* Possibilities for prettyprint parameters to routines which print
735 things. Like enum language, this should be in value.h, but needs
736 to be here for the same reason. FIXME: If we can eliminate this
737 as an arg to LA_VAL_PRINT, then we can probably move it back to
738 value.h. */
739
740 enum val_prettyprint
741 {
742 Val_no_prettyprint = 0,
743 Val_prettyprint,
744 /* Use the default setting which the user has specified. */
745 Val_pretty_default
746 };
747
748 /* Optional native machine support. Non-native (and possibly pure
749 multi-arch) targets do not need a "nm.h" file. This will be a
750 symlink to one of the nm-*.h files, built by the `configure'
751 script. */
752
753 #ifdef GDB_NM_FILE
754 #include "nm.h"
755 #endif
756
757 /* Assume that fopen accepts the letter "b" in the mode string.
758 It is demanded by ISO C9X, and should be supported on all
759 platforms that claim to have a standard-conforming C library. On
760 true POSIX systems it will be ignored and have no effect. There
761 may still be systems without a standard-conforming C library where
762 an ISO C9X compiler (GCC) is available. Known examples are SunOS
763 4.x and 4.3BSD. This assumption means these systems are no longer
764 supported. */
765 #ifndef FOPEN_RB
766 # include "fopen-bin.h"
767 #endif
768
769 /* Defaults for system-wide constants (if not defined by xm.h, we fake it).
770 FIXME: Assumes 2's complement arithmetic. */
771
772 #if !defined (UINT_MAX)
773 #define UINT_MAX ((unsigned int)(~0)) /* 0xFFFFFFFF for 32-bits */
774 #endif
775
776 #if !defined (INT_MAX)
777 #define INT_MAX ((int)(UINT_MAX >> 1)) /* 0x7FFFFFFF for 32-bits */
778 #endif
779
780 #if !defined (INT_MIN)
781 #define INT_MIN ((int)((int) ~0 ^ INT_MAX)) /* 0x80000000 for 32-bits */
782 #endif
783
784 #if !defined (ULONG_MAX)
785 #define ULONG_MAX ((unsigned long)(~0L)) /* 0xFFFFFFFF for 32-bits */
786 #endif
787
788 #if !defined (LONG_MAX)
789 #define LONG_MAX ((long)(ULONG_MAX >> 1)) /* 0x7FFFFFFF for 32-bits */
790 #endif
791
792 #if !defined (ULONGEST_MAX)
793 #define ULONGEST_MAX (~(ULONGEST)0) /* 0xFFFFFFFFFFFFFFFF for 64-bits */
794 #endif
795
796 #if !defined (LONGEST_MAX) /* 0x7FFFFFFFFFFFFFFF for 64-bits */
797 #define LONGEST_MAX ((LONGEST)(ULONGEST_MAX >> 1))
798 #endif
799
800 /* Convert a LONGEST to an int. This is used in contexts (e.g. number of
801 arguments to a function, number in a value history, register number, etc.)
802 where the value must not be larger than can fit in an int. */
803
804 extern int longest_to_int (LONGEST);
805
806 /* Assorted functions we can declare, now that const and volatile are
807 defined. */
808
809 extern char *savestring (const char *, size_t);
810
811 /* Utility macros to allocate typed memory. Avoids errors like:
812 struct foo *foo = xmalloc (sizeof struct bar); and memset (foo,
813 sizeof (struct foo), 0). */
814 #define XZALLOC(TYPE) ((TYPE*) xzalloc (sizeof (TYPE)))
815 #define XMALLOC(TYPE) ((TYPE*) xmalloc (sizeof (TYPE)))
816 #define XCALLOC(NMEMB, TYPE) ((TYPE*) xcalloc ((NMEMB), sizeof (TYPE)))
817
818 #include "common-utils.h"
819
820 extern int parse_escape (struct gdbarch *, char **);
821
822 /* Message to be printed before the error message, when an error occurs. */
823
824 extern char *error_pre_print;
825
826 /* Message to be printed before the error message, when an error occurs. */
827
828 extern char *quit_pre_print;
829
830 /* Message to be printed before the warning message, when a warning occurs. */
831
832 extern char *warning_pre_print;
833
834 extern void verror (const char *fmt, va_list ap)
835 ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF (1, 0);
836
837 extern void error (const char *fmt, ...)
838 ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF (1, 2);
839
840 extern void error_stream (struct ui_file *) ATTRIBUTE_NORETURN;
841
842 extern void vfatal (const char *fmt, va_list ap)
843 ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF (1, 0);
844
845 extern void fatal (const char *fmt, ...)
846 ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF (1, 2);
847
848 extern void internal_verror (const char *file, int line, const char *,
849 va_list ap)
850 ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF (3, 0);
851
852 extern void internal_vwarning (const char *file, int line,
853 const char *, va_list ap)
854 ATTRIBUTE_PRINTF (3, 0);
855
856 extern void internal_warning (const char *file, int line,
857 const char *, ...) ATTRIBUTE_PRINTF (3, 4);
858
859 extern void warning (const char *, ...) ATTRIBUTE_PRINTF (1, 2);
860
861 extern void vwarning (const char *, va_list args) ATTRIBUTE_PRINTF (1, 0);
862
863 /* List of known OS ABIs. If you change this, make sure to update the
864 table in osabi.c. */
865 enum gdb_osabi
866 {
867 GDB_OSABI_UNINITIALIZED = -1, /* For struct gdbarch_info. */
868
869 GDB_OSABI_UNKNOWN = 0, /* keep this zero */
870
871 GDB_OSABI_SVR4,
872 GDB_OSABI_HURD,
873 GDB_OSABI_SOLARIS,
874 GDB_OSABI_OSF1,
875 GDB_OSABI_LINUX,
876 GDB_OSABI_FREEBSD_AOUT,
877 GDB_OSABI_FREEBSD_ELF,
878 GDB_OSABI_NETBSD_AOUT,
879 GDB_OSABI_NETBSD_ELF,
880 GDB_OSABI_OPENBSD_ELF,
881 GDB_OSABI_WINCE,
882 GDB_OSABI_GO32,
883 GDB_OSABI_IRIX,
884 GDB_OSABI_INTERIX,
885 GDB_OSABI_HPUX_ELF,
886 GDB_OSABI_HPUX_SOM,
887 GDB_OSABI_QNXNTO,
888 GDB_OSABI_CYGWIN,
889 GDB_OSABI_AIX,
890 GDB_OSABI_DICOS,
891 GDB_OSABI_DARWIN,
892 GDB_OSABI_SYMBIAN,
893 GDB_OSABI_OPENVMS,
894
895 GDB_OSABI_INVALID /* keep this last */
896 };
897
898 /* Global functions from other, non-gdb GNU thingies.
899 Libiberty thingies are no longer declared here. We include libiberty.h
900 above, instead. */
901
902 /* From other system libraries */
903
904 #ifdef HAVE_STDDEF_H
905 #include <stddef.h>
906 #endif
907
908 #ifdef HAVE_STDLIB_H
909 #include <stdlib.h>
910 #endif
911 #ifndef min
912 #define min(a, b) ((a) < (b) ? (a) : (b))
913 #endif
914 #ifndef max
915 #define max(a, b) ((a) > (b) ? (a) : (b))
916 #endif
917
918
919 #ifndef atof
920 extern double atof (const char *); /* X3.159-1989 4.10.1.1 */
921 #endif
922
923 /* Various possibilities for alloca. */
924 #ifndef alloca
925 #ifdef __GNUC__
926 #define alloca __builtin_alloca
927 #else /* Not GNU C */
928 #ifdef HAVE_ALLOCA_H
929 #include <alloca.h>
930 #else
931 #ifdef _AIX
932 #pragma alloca
933 #else
934
935 /* We need to be careful not to declare this in a way which conflicts with
936 bison. Bison never declares it as char *, but under various circumstances
937 (like __hpux) we need to use void *. */
938 extern void *alloca ();
939 #endif /* Not _AIX */
940 #endif /* Not HAVE_ALLOCA_H */
941 #endif /* Not GNU C */
942 #endif /* alloca not defined */
943
944 /* Dynamic target-system-dependent parameters for GDB. */
945 #include "gdbarch.h"
946
947 /* Maximum size of a register. Something small, but large enough for
948 all known ISAs. If it turns out to be too small, make it bigger. */
949
950 enum { MAX_REGISTER_SIZE = 64 };
951
952 /* Static target-system-dependent parameters for GDB. */
953
954 /* Number of bits in a char or unsigned char for the target machine.
955 Just like CHAR_BIT in <limits.h> but describes the target machine. */
956 #if !defined (TARGET_CHAR_BIT)
957 #define TARGET_CHAR_BIT 8
958 #endif
959
960 /* If we picked up a copy of CHAR_BIT from a configuration file
961 (which may get it by including <limits.h>) then use it to set
962 the number of bits in a host char. If not, use the same size
963 as the target. */
964
965 #if defined (CHAR_BIT)
966 #define HOST_CHAR_BIT CHAR_BIT
967 #else
968 #define HOST_CHAR_BIT TARGET_CHAR_BIT
969 #endif
970
971 /* In findvar.c. */
972
973 extern LONGEST extract_signed_integer (const gdb_byte *, int,
974 enum bfd_endian);
975
976 extern ULONGEST extract_unsigned_integer (const gdb_byte *, int,
977 enum bfd_endian);
978
979 extern int extract_long_unsigned_integer (const gdb_byte *, int,
980 enum bfd_endian, LONGEST *);
981
982 extern CORE_ADDR extract_typed_address (const gdb_byte *buf,
983 struct type *type);
984
985 extern void store_signed_integer (gdb_byte *, int,
986 enum bfd_endian, LONGEST);
987
988 extern void store_unsigned_integer (gdb_byte *, int,
989 enum bfd_endian, ULONGEST);
990
991 extern void store_typed_address (gdb_byte *buf, struct type *type,
992 CORE_ADDR addr);
993
994 \f
995 /* From valops.c */
996
997 extern int watchdog;
998
999 /* Hooks for alternate command interfaces. */
1000
1001 /* The name of the interpreter if specified on the command line. */
1002 extern char *interpreter_p;
1003
1004 /* If a given interpreter matches INTERPRETER_P then it should update
1005 deprecated_command_loop_hook and deprecated_init_ui_hook with the
1006 per-interpreter implementation. */
1007 /* FIXME: deprecated_command_loop_hook and deprecated_init_ui_hook
1008 should be moved here. */
1009
1010 struct target_waitstatus;
1011 struct cmd_list_element;
1012
1013 extern void (*deprecated_pre_add_symbol_hook) (const char *);
1014 extern void (*deprecated_post_add_symbol_hook) (void);
1015 extern void (*selected_frame_level_changed_hook) (int);
1016 extern int (*deprecated_ui_loop_hook) (int signo);
1017 extern void (*deprecated_init_ui_hook) (char *argv0);
1018 extern void (*deprecated_command_loop_hook) (void);
1019 extern void (*deprecated_show_load_progress) (const char *section,
1020 unsigned long section_sent,
1021 unsigned long section_size,
1022 unsigned long total_sent,
1023 unsigned long total_size);
1024 extern void (*deprecated_print_frame_info_listing_hook) (struct symtab * s,
1025 int line,
1026 int stopline,
1027 int noerror);
1028 extern int (*deprecated_query_hook) (const char *, va_list)
1029 ATTRIBUTE_FPTR_PRINTF(1,0);
1030 extern void (*deprecated_warning_hook) (const char *, va_list)
1031 ATTRIBUTE_FPTR_PRINTF(1,0);
1032 extern void (*deprecated_flush_hook) (struct ui_file * stream);
1033 extern void (*deprecated_interactive_hook) (void);
1034 extern void (*deprecated_readline_begin_hook) (char *, ...)
1035 ATTRIBUTE_FPTR_PRINTF_1;
1036 extern char *(*deprecated_readline_hook) (char *);
1037 extern void (*deprecated_readline_end_hook) (void);
1038 extern void (*deprecated_register_changed_hook) (int regno);
1039 extern void (*deprecated_context_hook) (int);
1040 extern ptid_t (*deprecated_target_wait_hook) (ptid_t ptid,
1041 struct target_waitstatus *status,
1042 int options);
1043
1044 extern void (*deprecated_attach_hook) (void);
1045 extern void (*deprecated_detach_hook) (void);
1046 extern void (*deprecated_call_command_hook) (struct cmd_list_element * c,
1047 char *cmd, int from_tty);
1048
1049 extern void (*deprecated_set_hook) (struct cmd_list_element * c);
1050
1051 extern void (*deprecated_error_begin_hook) (void);
1052
1053 extern int (*deprecated_ui_load_progress_hook) (const char *section,
1054 unsigned long num);
1055
1056
1057 /* Inhibit window interface if non-zero. */
1058
1059 extern int use_windows;
1060
1061 /* Definitions of filename-related things. */
1062
1063 /* Host specific things. */
1064
1065 #ifdef __MSDOS__
1066 # define CANT_FORK
1067 # define GLOBAL_CURDIR
1068 # define DIRNAME_SEPARATOR ';'
1069 #endif
1070
1071 #if !defined (__CYGWIN__) && defined (_WIN32)
1072 # define DIRNAME_SEPARATOR ';'
1073 #endif
1074
1075 #ifndef DIRNAME_SEPARATOR
1076 #define DIRNAME_SEPARATOR ':'
1077 #endif
1078
1079 #ifndef SLASH_STRING
1080 #define SLASH_STRING "/"
1081 #endif
1082
1083 /* Provide default definitions of PIDGET, TIDGET, and MERGEPID.
1084 The name ``TIDGET'' is a historical accident. Many uses of TIDGET
1085 in the code actually refer to a lightweight process id, i.e,
1086 something that can be considered a process id in its own right for
1087 certain purposes. */
1088
1089 #ifndef PIDGET
1090 #define PIDGET(PTID) (ptid_get_pid (PTID))
1091 #define TIDGET(PTID) (ptid_get_lwp (PTID))
1092 #define MERGEPID(PID, TID) ptid_build (PID, TID, 0)
1093 #endif
1094
1095 /* Define well known filenos if the system does not define them. */
1096 #ifndef STDIN_FILENO
1097 #define STDIN_FILENO 0
1098 #endif
1099 #ifndef STDOUT_FILENO
1100 #define STDOUT_FILENO 1
1101 #endif
1102 #ifndef STDERR_FILENO
1103 #define STDERR_FILENO 2
1104 #endif
1105
1106 /* If this definition isn't overridden by the header files, assume
1107 that isatty and fileno exist on this system. */
1108 #ifndef ISATTY
1109 #define ISATTY(FP) (isatty (fileno (FP)))
1110 #endif
1111
1112 /* Ensure that V is aligned to an N byte boundary (B's assumed to be a
1113 power of 2). Round up/down when necessary. Examples of correct
1114 use include:
1115
1116 addr = align_up (addr, 8); -- VALUE needs 8 byte alignment
1117 write_memory (addr, value, len);
1118 addr += len;
1119
1120 and:
1121
1122 sp = align_down (sp - len, 16); -- Keep SP 16 byte aligned
1123 write_memory (sp, value, len);
1124
1125 Note that uses such as:
1126
1127 write_memory (addr, value, len);
1128 addr += align_up (len, 8);
1129
1130 and:
1131
1132 sp -= align_up (len, 8);
1133 write_memory (sp, value, len);
1134
1135 are typically not correct as they don't ensure that the address (SP
1136 or ADDR) is correctly aligned (relying on previous alignment to
1137 keep things right). This is also why the methods are called
1138 "align_..." instead of "round_..." as the latter reads better with
1139 this incorrect coding style. */
1140
1141 extern ULONGEST align_up (ULONGEST v, int n);
1142 extern ULONGEST align_down (ULONGEST v, int n);
1143
1144 /* Allocation and deallocation functions for the libiberty hash table
1145 which use obstacks. */
1146 void *hashtab_obstack_allocate (void *data, size_t size, size_t count);
1147 void dummy_obstack_deallocate (void *object, void *data);
1148
1149 /* From progspace.c */
1150
1151 extern void initialize_progspace (void);
1152 extern void initialize_inferiors (void);
1153
1154 /* Special block numbers */
1155
1156 enum block_enum
1157 {
1158 GLOBAL_BLOCK = 0,
1159 STATIC_BLOCK = 1,
1160 FIRST_LOCAL_BLOCK = 2
1161 };
1162
1163 #endif /* #ifndef DEFS_H */