1 |
1181 |
sfurman |
/* Declarations for value printing routines for GDB, the GNU debugger.
|
2 |
|
|
Copyright 1986, 1988, 1989, 1991-1994, 2000 Free Software Foundation, Inc.
|
3 |
|
|
|
4 |
|
|
This file is part of GDB.
|
5 |
|
|
|
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.
|
10 |
|
|
|
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.
|
15 |
|
|
|
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. */
|
20 |
|
|
|
21 |
|
|
#ifndef VALPRINT_H
|
22 |
|
|
#define VALPRINT_H
|
23 |
|
|
|
24 |
|
|
extern int prettyprint_arrays; /* Controls pretty printing of arrays. */
|
25 |
|
|
extern int prettyprint_structs; /* Controls pretty printing of structures */
|
26 |
|
|
extern int prettyprint_arrays; /* Controls pretty printing of arrays. */
|
27 |
|
|
|
28 |
|
|
extern int vtblprint; /* Controls printing of vtbl's */
|
29 |
|
|
extern int unionprint; /* Controls printing of nested unions. */
|
30 |
|
|
extern int addressprint; /* Controls pretty printing of addresses. */
|
31 |
|
|
extern int objectprint; /* Controls looking up an object's derived type
|
32 |
|
|
using what we find in its vtables. */
|
33 |
|
|
|
34 |
|
|
extern unsigned int print_max; /* Max # of chars for strings/vectors */
|
35 |
|
|
|
36 |
|
|
/* Print repeat counts if there are more than this many repetitions of an
|
37 |
|
|
element in an array. Referenced by the low level language dependent
|
38 |
|
|
print routines. */
|
39 |
|
|
extern unsigned int repeat_count_threshold;
|
40 |
|
|
|
41 |
|
|
extern int output_format;
|
42 |
|
|
|
43 |
|
|
extern int stop_print_at_null; /* Stop printing at null char? */
|
44 |
|
|
|
45 |
|
|
extern void val_print_array_elements (struct type *, char *, CORE_ADDR,
|
46 |
|
|
struct ui_file *, int, int, int,
|
47 |
|
|
enum val_prettyprint, unsigned int);
|
48 |
|
|
|
49 |
|
|
extern void val_print_type_code_int (struct type *, char *,
|
50 |
|
|
struct ui_file *);
|
51 |
|
|
|
52 |
|
|
extern void print_binary_chars (struct ui_file *, unsigned char *,
|
53 |
|
|
unsigned int);
|
54 |
|
|
|
55 |
|
|
extern void print_octal_chars (struct ui_file *, unsigned char *,
|
56 |
|
|
unsigned int);
|
57 |
|
|
|
58 |
|
|
extern void print_decimal_chars (struct ui_file *, unsigned char *,
|
59 |
|
|
unsigned int);
|
60 |
|
|
#endif
|