include/elf/ChangeLog:
[deliverable/binutils-gdb.git] / gdb / valprint.h
... / ...
CommitLineData
1/* Declarations for value printing routines for GDB, the GNU debugger.
2
3 Copyright (C) 1986, 1988, 1989, 1991, 1992, 1993, 1994, 2000, 2005 Free
4 Software Foundation, Inc.
5
6 This file is part of GDB.
7
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.
12
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.
17
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., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
22
23#ifndef VALPRINT_H
24#define VALPRINT_H
25
26extern int prettyprint_arrays; /* Controls pretty printing of arrays. */
27extern int prettyprint_structs; /* Controls pretty printing of structures */
28extern int prettyprint_arrays; /* Controls pretty printing of arrays. */
29
30extern int vtblprint; /* Controls printing of vtbl's */
31extern int unionprint; /* Controls printing of nested unions. */
32extern int addressprint; /* Controls pretty printing of addresses. */
33extern int objectprint; /* Controls looking up an object's derived type
34 using what we find in its vtables. */
35
36extern unsigned int print_max; /* Max # of chars for strings/vectors */
37
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. */
42extern int inspect_it;
43
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. */
47extern unsigned int repeat_count_threshold;
48
49extern int output_format;
50
51extern int stop_print_at_null; /* Stop printing at null char? */
52
53extern int print_array_indexes_p (void);
54
55extern int get_array_low_bound (struct type *type, long *low_bound);
56
57extern void maybe_print_array_index (struct type *index_type, LONGEST index,
58 struct ui_file *stream, int format,
59 enum val_prettyprint pretty);
60
61extern void val_print_array_elements (struct type *, const gdb_byte *,
62 CORE_ADDR, struct ui_file *, int,
63 int, int, enum val_prettyprint,
64 unsigned int);
65
66extern void val_print_type_code_int (struct type *, const gdb_byte *,
67 struct ui_file *);
68
69extern void print_binary_chars (struct ui_file *, const gdb_byte *,
70 unsigned int);
71
72extern void print_octal_chars (struct ui_file *, const gdb_byte *,
73 unsigned int);
74
75extern void print_decimal_chars (struct ui_file *, const gdb_byte *,
76 unsigned int);
77
78extern void print_hex_chars (struct ui_file *, const gdb_byte *,
79 unsigned int);
80
81extern void print_char_chars (struct ui_file *, const gdb_byte *,
82 unsigned int);
83#endif
This page took 0.031988 seconds and 4 git commands to generate.