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