Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Declarations for value printing routines for GDB, the GNU debugger. |
acf0f27f AC |
2 | |
3 | Copyright 1986, 1988, 1989, 1991, 1992, 1993, 1994, 2000, 2005 Free | |
4 | Software Foundation, Inc. | |
c906108c | 5 | |
c5aa993b | 6 | This file is part of GDB. |
c906108c | 7 | |
c5aa993b JM |
8 | This program is free software; you can redistribute it and/or modify |
9 | it under the terms of the GNU General Public License as published by | |
10 | the Free Software Foundation; either version 2 of the License, or | |
11 | (at your option) any later version. | |
c906108c | 12 | |
c5aa993b JM |
13 | This program is distributed in the hope that it will be useful, |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | GNU General Public License for more details. | |
c906108c | 17 | |
c5aa993b JM |
18 | You should have received a copy of the GNU General Public License |
19 | along with this program; if not, write to the Free Software | |
20 | Foundation, Inc., 59 Temple Place - Suite 330, | |
21 | Boston, MA 02111-1307, USA. */ | |
c906108c | 22 | |
17732724 AC |
23 | #ifndef VALPRINT_H |
24 | #define VALPRINT_H | |
c906108c SS |
25 | |
26 | extern int prettyprint_arrays; /* Controls pretty printing of arrays. */ | |
27 | extern int prettyprint_structs; /* Controls pretty printing of structures */ | |
28 | extern int prettyprint_arrays; /* Controls pretty printing of arrays. */ | |
29 | ||
30 | extern int vtblprint; /* Controls printing of vtbl's */ | |
31 | extern int unionprint; /* Controls printing of nested unions. */ | |
32 | extern int addressprint; /* Controls pretty printing of addresses. */ | |
33 | extern int objectprint; /* Controls looking up an object's derived type | |
34 | using what we find in its vtables. */ | |
35 | ||
36 | extern unsigned int print_max; /* Max # of chars for strings/vectors */ | |
37 | ||
5e488a7b AC |
38 | /* Flag to low-level print routines that this value is being printed |
39 | in an epoch window. We'd like to pass this as a parameter, but | |
40 | every routine would need to take it. Perhaps we can encapsulate | |
41 | this in the I/O stream once we have GNU stdio. */ | |
42 | extern int inspect_it; | |
43 | ||
745b8ca0 JK |
44 | /* Print repeat counts if there are more than this many repetitions of an |
45 | element in an array. Referenced by the low level language dependent | |
46 | print routines. */ | |
47 | extern unsigned int repeat_count_threshold; | |
48 | ||
c906108c SS |
49 | extern int output_format; |
50 | ||
c5aa993b | 51 | extern int stop_print_at_null; /* Stop printing at null char? */ |
c906108c | 52 | |
a2bd3dcd AC |
53 | extern void val_print_array_elements (struct type *, const bfd_byte *, |
54 | CORE_ADDR, struct ui_file *, int, | |
55 | int, int, enum val_prettyprint, | |
56 | unsigned int); | |
c906108c | 57 | |
5f547748 | 58 | extern void val_print_type_code_int (struct type *, const bfd_byte *, |
d9fcf2fb | 59 | struct ui_file *); |
c906108c | 60 | |
6c403953 | 61 | extern void print_binary_chars (struct ui_file *, const bfd_byte *, |
d9fcf2fb | 62 | unsigned int); |
c5aa993b | 63 | |
6c403953 | 64 | extern void print_octal_chars (struct ui_file *, const bfd_byte *, |
d9fcf2fb | 65 | unsigned int); |
c5aa993b | 66 | |
6c403953 | 67 | extern void print_decimal_chars (struct ui_file *, const bfd_byte *, |
d9fcf2fb | 68 | unsigned int); |
6b9acc27 | 69 | |
6c403953 | 70 | extern void print_hex_chars (struct ui_file *, const bfd_byte *, |
6b9acc27 JJ |
71 | unsigned int); |
72 | ||
6c403953 | 73 | extern void print_char_chars (struct ui_file *, const bfd_byte *, |
6b9acc27 | 74 | unsigned int); |
17732724 | 75 | #endif |