ld x86_64 tests: Accept x86-64-v3 as a needed ISA
[binutils-gdb.git] / gdb / valprint.h
blob0a8878055d76979137e6a474041eead870d7b724
1 /* Declarations for value printing routines for GDB, the GNU debugger.
3 Copyright (C) 1986-2023 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #ifndef VALPRINT_H
21 #define VALPRINT_H
23 #include "cli/cli-option.h"
25 /* Possibilities for prettyformat parameters to routines which print
26 things. */
28 enum val_prettyformat
30 Val_no_prettyformat = 0,
31 Val_prettyformat,
32 /* * Use the default setting which the user has specified. */
33 Val_prettyformat_default
36 /* This is used to pass formatting options to various value-printing
37 functions. */
38 struct value_print_options
40 /* Pretty-formatting control. */
41 enum val_prettyformat prettyformat;
43 /* Controls pretty formatting of arrays. */
44 bool prettyformat_arrays;
46 /* Controls pretty formatting of structures. */
47 bool prettyformat_structs;
49 /* Controls printing of virtual tables. */
50 bool vtblprint;
52 /* Controls printing of nested unions. */
53 bool unionprint;
55 /* Controls printing of addresses. */
56 bool addressprint;
58 /* Controls printing of nibbles. */
59 bool nibblesprint;
61 /* Controls looking up an object's derived type using what we find
62 in its vtables. */
63 bool objectprint;
65 /* Maximum number of elements to print for vector contents, or UINT_MAX
66 for no limit. Note that "set print elements 0" stores UINT_MAX in
67 print_max, which displays in a show command as "unlimited". */
68 unsigned int print_max;
70 /* Maximum number of string chars to print for a string pointer value,
71 zero if to follow the value of print_max, or UINT_MAX for no limit. */
72 unsigned int print_max_chars;
74 /* Print repeat counts if there are more than this many repetitions
75 of an element in an array. */
76 unsigned int repeat_count_threshold;
78 /* The global output format letter. */
79 int output_format;
81 /* The current format letter. This is set locally for a given call,
82 e.g. when the user passes a format to "print". */
83 int format;
85 /* Print memory tag violations for pointers. */
86 bool memory_tag_violations;
88 /* Stop printing at null character? */
89 bool stop_print_at_null;
91 /* True if we should print the index of each element when printing
92 an array. */
93 bool print_array_indexes;
95 /* If true, then dereference references, otherwise just print
96 them like pointers. */
97 bool deref_ref;
99 /* If true, print static fields. */
100 bool static_field_print;
102 /* If true, print static fields for Pascal. FIXME: C++ has a
103 flag, why not share with Pascal too? */
104 bool pascal_static_field_print;
106 /* If true, don't do Python pretty-printing. */
107 bool raw;
109 /* If true, print the value in "summary" form.
110 If raw and summary are both true, don't print non-scalar values
111 ("..." is printed instead). */
112 bool summary;
114 /* If true, when printing a pointer, print the symbol to which it
115 points, if any. */
116 bool symbol_print;
118 /* Maximum print depth when printing nested aggregates. */
119 int max_depth;
122 /* The value to use for `print_max_chars' to follow `print_max'. */
123 #define PRINT_MAX_CHARS_ELEMENTS 0
125 /* The value to use for `print_max_chars' for no limit. */
126 #define PRINT_MAX_CHARS_UNLIMITED UINT_MAX
128 /* Return the character count limit for printing strings. */
130 static inline unsigned int
131 get_print_max_chars (const struct value_print_options *options)
133 return (options->print_max_chars != PRINT_MAX_CHARS_ELEMENTS
134 ? options->print_max_chars : options->print_max);
137 /* Create an option_def_group for the value_print options, with OPTS
138 as context. */
139 extern gdb::option::option_def_group make_value_print_options_def_group
140 (value_print_options *opts);
142 /* The global print options set by the user. In general this should
143 not be directly accessed, except by set/show commands. Ordinary
144 code should call get_user_print_options instead. */
145 extern struct value_print_options user_print_options;
147 /* Initialize *OPTS to be a copy of the user print options. */
148 extern void get_user_print_options (struct value_print_options *opts);
150 /* Initialize *OPTS to be a copy of the user print options, but with
151 pretty-formatting disabled. */
152 extern void get_no_prettyformat_print_options (struct value_print_options *);
154 /* Initialize *OPTS to be a copy of the user print options, but using
155 FORMAT as the formatting option. */
156 extern void get_formatted_print_options (struct value_print_options *opts,
157 char format);
159 extern void maybe_print_array_index (struct type *index_type, LONGEST index,
160 struct ui_file *stream,
161 const struct value_print_options *);
164 /* Print elements of an array. */
166 extern void value_print_array_elements (struct value *, struct ui_file *, int,
167 const struct value_print_options *,
168 unsigned int);
170 /* Print a scalar according to OPTIONS and SIZE on STREAM. Format 'i'
171 is not supported at this level.
173 This is how the elements of an array or structure are printed
174 with a format. */
176 extern void value_print_scalar_formatted
177 (struct value *val, const struct value_print_options *options,
178 int size, struct ui_file *stream);
180 extern void print_binary_chars (struct ui_file *, const gdb_byte *,
181 unsigned int, enum bfd_endian, bool,
182 const struct value_print_options *options);
184 extern void print_octal_chars (struct ui_file *, const gdb_byte *,
185 unsigned int, enum bfd_endian);
187 extern void print_decimal_chars (struct ui_file *, const gdb_byte *,
188 unsigned int, bool, enum bfd_endian);
190 extern void print_hex_chars (struct ui_file *, const gdb_byte *,
191 unsigned int, enum bfd_endian, bool);
193 extern void print_function_pointer_address (const struct value_print_options *options,
194 struct gdbarch *gdbarch,
195 CORE_ADDR address,
196 struct ui_file *stream);
198 /* Helper function to check the validity of some bits of a value.
200 If TYPE represents some aggregate type (e.g., a structure), return 1.
202 Otherwise, any of the bytes starting at OFFSET and extending for
203 TYPE->length () bytes are invalid, print a message to STREAM and
204 return 0. The checking is done using FUNCS.
206 Otherwise, return 1. */
208 extern int valprint_check_validity (struct ui_file *stream, struct type *type,
209 LONGEST embedded_offset,
210 const struct value *val);
212 extern void val_print_optimized_out (const struct value *val,
213 struct ui_file *stream);
215 /* Prints "<not saved>" to STREAM. */
216 extern void val_print_not_saved (struct ui_file *stream);
218 extern void val_print_unavailable (struct ui_file *stream);
220 extern void val_print_invalid_address (struct ui_file *stream);
222 /* An instance of this is passed to generic_val_print and describes
223 some language-specific ways to print things. */
225 struct generic_val_print_decorations
227 /* Printing complex numbers: what to print before, between the
228 elements, and after. */
230 const char *complex_prefix;
231 const char *complex_infix;
232 const char *complex_suffix;
234 /* Boolean true and false. */
236 const char *true_name;
237 const char *false_name;
239 /* What to print when we see TYPE_CODE_VOID. */
241 const char *void_name;
243 /* Array start and end strings. */
244 const char *array_start;
245 const char *array_end;
249 /* Print a value in a generic way. VAL is the value, STREAM is where
250 to print it, RECURSE is the recursion depth, OPTIONS describe how
251 the printing should be done, and D is the language-specific
252 decorations object. Note that structs and unions cannot be printed
253 by this function. */
255 extern void generic_value_print (struct value *val, struct ui_file *stream,
256 int recurse,
257 const struct value_print_options *options,
258 const struct generic_val_print_decorations *d);
260 extern void generic_emit_char (int c, struct type *type, struct ui_file *stream,
261 int quoter, const char *encoding);
263 extern void generic_printstr (struct ui_file *stream, struct type *type,
264 const gdb_byte *string, unsigned int length,
265 const char *encoding, int force_ellipses,
266 int quote_char, int c_style_terminator,
267 const struct value_print_options *options);
269 /* Run the "output" command. ARGS and FROM_TTY are the usual
270 arguments passed to all command implementations, except ARGS is
271 const. */
273 extern void output_command (const char *args, int from_tty);
275 extern int val_print_scalar_type_p (struct type *type);
277 struct format_data
279 int count;
280 char format;
281 char size;
282 bool print_tags;
284 /* True if the value should be printed raw -- that is, bypassing
285 python-based formatters. */
286 unsigned char raw;
289 extern void print_command_parse_format (const char **expp, const char *cmdname,
290 value_print_options *opts);
292 /* Print VAL to console according to OPTS, including recording it to
293 the history. */
294 extern void print_value (value *val, const value_print_options &opts);
296 /* Completer for the "print", "call", and "compile print"
297 commands. */
298 extern void print_command_completer (struct cmd_list_element *ignore,
299 completion_tracker &tracker,
300 const char *text, const char *word);
302 /* Given an address ADDR return all the elements needed to print the
303 address in a symbolic form. NAME can be mangled or not depending
304 on DO_DEMANGLE (and also on the asm_demangle global variable,
305 manipulated via ''set print asm-demangle''). When
306 PREFER_SYM_OVER_MINSYM is true, names (and offsets) from minimal
307 symbols won't be used except in instances where no symbol was
308 found; otherwise, a minsym might be used in some instances (mostly
309 involving function with non-contiguous address ranges). Return
310 0 in case of success, when all the info in the OUT parameters is
311 valid. Return 1 otherwise. */
313 extern int build_address_symbolic (struct gdbarch *,
314 CORE_ADDR addr,
315 bool do_demangle,
316 bool prefer_sym_over_minsym,
317 std::string *name,
318 int *offset,
319 std::string *filename,
320 int *line,
321 int *unmapped);
323 /* Check to see if RECURSE is greater than or equal to the allowed
324 printing max-depth (see 'set print max-depth'). If it is then print an
325 ellipsis expression to STREAM and return true, otherwise return false.
326 LANGUAGE determines what type of ellipsis expression is printed. */
328 extern bool val_print_check_max_depth (struct ui_file *stream, int recurse,
329 const struct value_print_options *opts,
330 const struct language_defn *language);
332 /* Like common_val_print, but call value_check_printable first. */
334 extern void common_val_print_checked
335 (struct value *val,
336 struct ui_file *stream, int recurse,
337 const struct value_print_options *options,
338 const struct language_defn *language);
340 #endif