Change extension language pretty-printers to use value API
[deliverable/binutils-gdb.git] / gdb / valprint.c
CommitLineData
c906108c 1/* Print values for GDB, the GNU debugger.
5c1c87f0 2
b811d2c2 3 Copyright (C) 1986-2020 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
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
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
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.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
19
20#include "defs.h"
c906108c
SS
21#include "symtab.h"
22#include "gdbtypes.h"
23#include "value.h"
24#include "gdbcore.h"
25#include "gdbcmd.h"
26#include "target.h"
c906108c 27#include "language.h"
c906108c
SS
28#include "annotate.h"
29#include "valprint.h"
f69fdf9b 30#include "target-float.h"
6dddc817 31#include "extension.h"
0c3acc09 32#include "ada-lang.h"
3b2b8fea
TT
33#include "gdb_obstack.h"
34#include "charset.h"
3f2f83dd 35#include "typeprint.h"
3b2b8fea 36#include <ctype.h>
325fac50 37#include <algorithm>
268a13a5 38#include "gdbsupport/byte-vector.h"
7d8062de 39#include "cli/cli-option.h"
0d12e84c 40#include "gdbarch.h"
7f6aba03 41#include "cli/cli-style.h"
edd45eb0 42#include "count-one-bits.h"
c906108c 43
0d63ecda
KS
44/* Maximum number of wchars returned from wchar_iterate. */
45#define MAX_WCHARS 4
46
47/* A convenience macro to compute the size of a wchar_t buffer containing X
48 characters. */
49#define WCHAR_BUFLEN(X) ((X) * sizeof (gdb_wchar_t))
50
51/* Character buffer size saved while iterating over wchars. */
52#define WCHAR_BUFLEN_MAX WCHAR_BUFLEN (MAX_WCHARS)
53
54/* A structure to encapsulate state information from iterated
55 character conversions. */
56struct converted_character
57{
58 /* The number of characters converted. */
59 int num_chars;
60
61 /* The result of the conversion. See charset.h for more. */
62 enum wchar_iterate_result result;
63
64 /* The (saved) converted character(s). */
65 gdb_wchar_t chars[WCHAR_BUFLEN_MAX];
66
67 /* The first converted target byte. */
68 const gdb_byte *buf;
69
70 /* The number of bytes converted. */
71 size_t buflen;
72
73 /* How many times this character(s) is repeated. */
74 int repeat_count;
75};
76
e7045703
DE
77/* Command lists for set/show print raw. */
78struct cmd_list_element *setprintrawlist;
79struct cmd_list_element *showprintrawlist;
0d63ecda 80
c906108c
SS
81/* Prototypes for local functions */
82
777ea8f1 83static int partial_memory_read (CORE_ADDR memaddr, gdb_byte *myaddr,
578d3588 84 int len, int *errptr);
917317f4 85
a14ed312 86static void set_input_radix_1 (int, unsigned);
c906108c 87
a14ed312 88static void set_output_radix_1 (int, unsigned);
c906108c 89
81516450 90static void val_print_type_code_flags (struct type *type,
65786af6
TT
91 struct value *original_value,
92 int embedded_offset,
81516450
DE
93 struct ui_file *stream);
94
581e13c1 95#define PRINT_MAX_DEFAULT 200 /* Start print_max off at this value. */
2e62ab40 96#define PRINT_MAX_DEPTH_DEFAULT 20 /* Start print_max_depth off at this value. */
79a45b7d
TT
97
98struct value_print_options user_print_options =
99{
2a998fc0
DE
100 Val_prettyformat_default, /* prettyformat */
101 0, /* prettyformat_arrays */
102 0, /* prettyformat_structs */
79a45b7d
TT
103 0, /* vtblprint */
104 1, /* unionprint */
105 1, /* addressprint */
106 0, /* objectprint */
107 PRINT_MAX_DEFAULT, /* print_max */
108 10, /* repeat_count_threshold */
109 0, /* output_format */
110 0, /* format */
111 0, /* stop_print_at_null */
79a45b7d
TT
112 0, /* print_array_indexes */
113 0, /* deref_ref */
114 1, /* static_field_print */
a6bac58e
TT
115 1, /* pascal_static_field_print */
116 0, /* raw */
9cb709b6 117 0, /* summary */
2e62ab40 118 1, /* symbol_print */
000439d5
TT
119 PRINT_MAX_DEPTH_DEFAULT, /* max_depth */
120 1 /* finish_print */
79a45b7d
TT
121};
122
123/* Initialize *OPTS to be a copy of the user print options. */
124void
125get_user_print_options (struct value_print_options *opts)
126{
127 *opts = user_print_options;
128}
129
130/* Initialize *OPTS to be a copy of the user print options, but with
2a998fc0 131 pretty-formatting disabled. */
79a45b7d 132void
2a998fc0 133get_no_prettyformat_print_options (struct value_print_options *opts)
79a45b7d
TT
134{
135 *opts = user_print_options;
2a998fc0 136 opts->prettyformat = Val_no_prettyformat;
79a45b7d
TT
137}
138
139/* Initialize *OPTS to be a copy of the user print options, but using
140 FORMAT as the formatting option. */
141void
142get_formatted_print_options (struct value_print_options *opts,
143 char format)
144{
145 *opts = user_print_options;
146 opts->format = format;
147}
148
920d2a44
AC
149static void
150show_print_max (struct ui_file *file, int from_tty,
151 struct cmd_list_element *c, const char *value)
152{
3e43a32a
MS
153 fprintf_filtered (file,
154 _("Limit on string chars or array "
155 "elements to print is %s.\n"),
920d2a44
AC
156 value);
157}
158
c906108c
SS
159
160/* Default input and output radixes, and output format letter. */
161
162unsigned input_radix = 10;
920d2a44
AC
163static void
164show_input_radix (struct ui_file *file, int from_tty,
165 struct cmd_list_element *c, const char *value)
166{
3e43a32a
MS
167 fprintf_filtered (file,
168 _("Default input radix for entering numbers is %s.\n"),
920d2a44
AC
169 value);
170}
171
c906108c 172unsigned output_radix = 10;
920d2a44
AC
173static void
174show_output_radix (struct ui_file *file, int from_tty,
175 struct cmd_list_element *c, const char *value)
176{
3e43a32a
MS
177 fprintf_filtered (file,
178 _("Default output radix for printing of values is %s.\n"),
920d2a44
AC
179 value);
180}
c906108c 181
e79af960
JB
182/* By default we print arrays without printing the index of each element in
183 the array. This behavior can be changed by setting PRINT_ARRAY_INDEXES. */
184
e79af960
JB
185static void
186show_print_array_indexes (struct ui_file *file, int from_tty,
187 struct cmd_list_element *c, const char *value)
188{
189 fprintf_filtered (file, _("Printing of array indexes is %s.\n"), value);
190}
191
c906108c
SS
192/* Print repeat counts if there are more than this many repetitions of an
193 element in an array. Referenced by the low level language dependent
581e13c1 194 print routines. */
c906108c 195
920d2a44
AC
196static void
197show_repeat_count_threshold (struct ui_file *file, int from_tty,
198 struct cmd_list_element *c, const char *value)
199{
200 fprintf_filtered (file, _("Threshold for repeated print elements is %s.\n"),
201 value);
202}
c906108c 203
581e13c1 204/* If nonzero, stops printing of char arrays at first null. */
c906108c 205
920d2a44
AC
206static void
207show_stop_print_at_null (struct ui_file *file, int from_tty,
208 struct cmd_list_element *c, const char *value)
209{
3e43a32a
MS
210 fprintf_filtered (file,
211 _("Printing of char arrays to stop "
212 "at first null char is %s.\n"),
920d2a44
AC
213 value);
214}
c906108c 215
581e13c1 216/* Controls pretty printing of structures. */
c906108c 217
920d2a44 218static void
2a998fc0 219show_prettyformat_structs (struct ui_file *file, int from_tty,
920d2a44
AC
220 struct cmd_list_element *c, const char *value)
221{
2a998fc0 222 fprintf_filtered (file, _("Pretty formatting of structures is %s.\n"), value);
920d2a44 223}
c906108c
SS
224
225/* Controls pretty printing of arrays. */
226
920d2a44 227static void
2a998fc0 228show_prettyformat_arrays (struct ui_file *file, int from_tty,
920d2a44
AC
229 struct cmd_list_element *c, const char *value)
230{
2a998fc0 231 fprintf_filtered (file, _("Pretty formatting of arrays is %s.\n"), value);
920d2a44 232}
c906108c
SS
233
234/* If nonzero, causes unions inside structures or other unions to be
581e13c1 235 printed. */
c906108c 236
920d2a44
AC
237static void
238show_unionprint (struct ui_file *file, int from_tty,
239 struct cmd_list_element *c, const char *value)
240{
3e43a32a
MS
241 fprintf_filtered (file,
242 _("Printing of unions interior to structures is %s.\n"),
920d2a44
AC
243 value);
244}
c906108c 245
581e13c1 246/* If nonzero, causes machine addresses to be printed in certain contexts. */
c906108c 247
920d2a44
AC
248static void
249show_addressprint (struct ui_file *file, int from_tty,
250 struct cmd_list_element *c, const char *value)
251{
252 fprintf_filtered (file, _("Printing of addresses is %s.\n"), value);
253}
9cb709b6
TT
254
255static void
256show_symbol_print (struct ui_file *file, int from_tty,
257 struct cmd_list_element *c, const char *value)
258{
259 fprintf_filtered (file,
260 _("Printing of symbols when printing pointers is %s.\n"),
261 value);
262}
263
c906108c 264\f
c5aa993b 265
a6bac58e
TT
266/* A helper function for val_print. When printing in "summary" mode,
267 we want to print scalar arguments, but not aggregate arguments.
268 This function distinguishes between the two. */
269
6211c335
YQ
270int
271val_print_scalar_type_p (struct type *type)
a6bac58e 272{
f168693b 273 type = check_typedef (type);
aa006118 274 while (TYPE_IS_REFERENCE (type))
a6bac58e
TT
275 {
276 type = TYPE_TARGET_TYPE (type);
f168693b 277 type = check_typedef (type);
a6bac58e
TT
278 }
279 switch (TYPE_CODE (type))
280 {
281 case TYPE_CODE_ARRAY:
282 case TYPE_CODE_STRUCT:
283 case TYPE_CODE_UNION:
284 case TYPE_CODE_SET:
285 case TYPE_CODE_STRING:
a6bac58e
TT
286 return 0;
287 default:
288 return 1;
289 }
290}
291
2e62ab40
AB
292/* A helper function for val_print. When printing with limited depth we
293 want to print string and scalar arguments, but not aggregate arguments.
294 This function distinguishes between the two. */
295
296static bool
297val_print_scalar_or_string_type_p (struct type *type,
298 const struct language_defn *language)
299{
300 return (val_print_scalar_type_p (type)
301 || language->la_is_string_type_p (type));
302}
303
a72c8f6a 304/* See its definition in value.h. */
0e03807e 305
a72c8f6a 306int
0e03807e
TT
307valprint_check_validity (struct ui_file *stream,
308 struct type *type,
6b850546 309 LONGEST embedded_offset,
0e03807e
TT
310 const struct value *val)
311{
f168693b 312 type = check_typedef (type);
0e03807e 313
3f2f83dd
KB
314 if (type_not_associated (type))
315 {
316 val_print_not_associated (stream);
317 return 0;
318 }
319
320 if (type_not_allocated (type))
321 {
322 val_print_not_allocated (stream);
323 return 0;
324 }
325
0e03807e
TT
326 if (TYPE_CODE (type) != TYPE_CODE_UNION
327 && TYPE_CODE (type) != TYPE_CODE_STRUCT
328 && TYPE_CODE (type) != TYPE_CODE_ARRAY)
329 {
9a0dc9e3
PA
330 if (value_bits_any_optimized_out (val,
331 TARGET_CHAR_BIT * embedded_offset,
332 TARGET_CHAR_BIT * TYPE_LENGTH (type)))
0e03807e 333 {
901461f8 334 val_print_optimized_out (val, stream);
0e03807e
TT
335 return 0;
336 }
8cf6f0b1 337
4e07d55f 338 if (value_bits_synthetic_pointer (val, TARGET_CHAR_BIT * embedded_offset,
8cf6f0b1
TT
339 TARGET_CHAR_BIT * TYPE_LENGTH (type)))
340 {
3326303b
MG
341 const int is_ref = TYPE_CODE (type) == TYPE_CODE_REF;
342 int ref_is_addressable = 0;
343
344 if (is_ref)
345 {
346 const struct value *deref_val = coerce_ref_if_computed (val);
347
348 if (deref_val != NULL)
349 ref_is_addressable = value_lval_const (deref_val) == lval_memory;
350 }
351
352 if (!is_ref || !ref_is_addressable)
7f6aba03
TT
353 fputs_styled (_("<synthetic pointer>"), metadata_style.style (),
354 stream);
3326303b
MG
355
356 /* C++ references should be valid even if they're synthetic. */
357 return is_ref;
8cf6f0b1 358 }
4e07d55f
PA
359
360 if (!value_bytes_available (val, embedded_offset, TYPE_LENGTH (type)))
361 {
362 val_print_unavailable (stream);
363 return 0;
364 }
0e03807e
TT
365 }
366
367 return 1;
368}
369
585fdaa1 370void
901461f8 371val_print_optimized_out (const struct value *val, struct ui_file *stream)
585fdaa1 372{
901461f8 373 if (val != NULL && value_lval_const (val) == lval_register)
782d47df 374 val_print_not_saved (stream);
901461f8 375 else
7f6aba03 376 fprintf_styled (stream, metadata_style.style (), _("<optimized out>"));
585fdaa1
PA
377}
378
782d47df
PA
379void
380val_print_not_saved (struct ui_file *stream)
381{
7f6aba03 382 fprintf_styled (stream, metadata_style.style (), _("<not saved>"));
782d47df
PA
383}
384
4e07d55f
PA
385void
386val_print_unavailable (struct ui_file *stream)
387{
7f6aba03 388 fprintf_styled (stream, metadata_style.style (), _("<unavailable>"));
4e07d55f
PA
389}
390
8af8e3bc
PA
391void
392val_print_invalid_address (struct ui_file *stream)
393{
7f6aba03 394 fprintf_styled (stream, metadata_style.style (), _("<invalid address>"));
8af8e3bc
PA
395}
396
9f436164
SM
397/* Print a pointer based on the type of its target.
398
399 Arguments to this functions are roughly the same as those in
400 generic_val_print. A difference is that ADDRESS is the address to print,
401 with embedded_offset already added. ELTTYPE represents
402 the pointed type after check_typedef. */
403
404static void
405print_unpacked_pointer (struct type *type, struct type *elttype,
406 CORE_ADDR address, struct ui_file *stream,
407 const struct value_print_options *options)
408{
409 struct gdbarch *gdbarch = get_type_arch (type);
410
411 if (TYPE_CODE (elttype) == TYPE_CODE_FUNC)
412 {
413 /* Try to print what function it points to. */
414 print_function_pointer_address (options, gdbarch, address, stream);
415 return;
416 }
417
418 if (options->symbol_print)
419 print_address_demangle (options, gdbarch, address, stream, demangle);
420 else if (options->addressprint)
421 fputs_filtered (paddress (gdbarch, address), stream);
422}
423
557dbe8a
SM
424/* generic_val_print helper for TYPE_CODE_ARRAY. */
425
426static void
e8b24d9f 427generic_val_print_array (struct type *type,
00272ec4
TT
428 int embedded_offset, CORE_ADDR address,
429 struct ui_file *stream, int recurse,
e8b24d9f 430 struct value *original_value,
00272ec4
TT
431 const struct value_print_options *options,
432 const struct
433 generic_val_print_decorations *decorations)
557dbe8a
SM
434{
435 struct type *unresolved_elttype = TYPE_TARGET_TYPE (type);
436 struct type *elttype = check_typedef (unresolved_elttype);
437
438 if (TYPE_LENGTH (type) > 0 && TYPE_LENGTH (unresolved_elttype) > 0)
439 {
440 LONGEST low_bound, high_bound;
441
442 if (!get_array_bounds (type, &low_bound, &high_bound))
443 error (_("Could not determine the array high bound"));
444
445 if (options->prettyformat_arrays)
446 {
447 print_spaces_filtered (2 + 2 * recurse, stream);
448 }
449
00272ec4 450 fputs_filtered (decorations->array_start, stream);
e8b24d9f 451 val_print_array_elements (type, embedded_offset,
557dbe8a
SM
452 address, stream,
453 recurse, original_value, options, 0);
00272ec4 454 fputs_filtered (decorations->array_end, stream);
557dbe8a
SM
455 }
456 else
457 {
458 /* Array of unspecified length: treat like pointer to first elt. */
459 print_unpacked_pointer (type, elttype, address + embedded_offset, stream,
460 options);
461 }
462
463}
464
81eb921a
SM
465/* generic_val_print helper for TYPE_CODE_PTR. */
466
467static void
e8b24d9f 468generic_val_print_ptr (struct type *type,
81eb921a 469 int embedded_offset, struct ui_file *stream,
e8b24d9f 470 struct value *original_value,
81eb921a
SM
471 const struct value_print_options *options)
472{
3ae385af
SM
473 struct gdbarch *gdbarch = get_type_arch (type);
474 int unit_size = gdbarch_addressable_memory_unit_size (gdbarch);
475
81eb921a
SM
476 if (options->format && options->format != 's')
477 {
e8b24d9f 478 val_print_scalar_formatted (type, embedded_offset,
81eb921a
SM
479 original_value, options, 0, stream);
480 }
481 else
482 {
483 struct type *unresolved_elttype = TYPE_TARGET_TYPE(type);
484 struct type *elttype = check_typedef (unresolved_elttype);
e8b24d9f 485 const gdb_byte *valaddr = value_contents_for_printing (original_value);
3ae385af
SM
486 CORE_ADDR addr = unpack_pointer (type,
487 valaddr + embedded_offset * unit_size);
81eb921a
SM
488
489 print_unpacked_pointer (type, elttype, addr, stream, options);
490 }
491}
492
2a5b130b
TT
493/* generic_value_print helper for TYPE_CODE_PTR. */
494
495static void
496generic_value_print_ptr (struct value *val, struct ui_file *stream,
497 const struct value_print_options *options)
498{
499
500 if (options->format && options->format != 's')
501 value_print_scalar_formatted (val, options, 0, stream);
502 else
503 {
504 struct type *type = check_typedef (value_type (val));
505 struct type *elttype = check_typedef (TYPE_TARGET_TYPE (type));
506 const gdb_byte *valaddr = value_contents_for_printing (val);
507 CORE_ADDR addr = unpack_pointer (type, valaddr);
508
509 print_unpacked_pointer (type, elttype, addr, stream, options);
510 }
511}
512
45000ea2
SM
513
514/* generic_val_print helper for TYPE_CODE_MEMBERPTR. */
515
516static void
e8b24d9f 517generic_val_print_memberptr (struct type *type,
45000ea2 518 int embedded_offset, struct ui_file *stream,
e8b24d9f 519 struct value *original_value,
45000ea2
SM
520 const struct value_print_options *options)
521{
e8b24d9f 522 val_print_scalar_formatted (type, embedded_offset,
45000ea2
SM
523 original_value, options, 0, stream);
524}
525
3326303b
MG
526/* Print '@' followed by the address contained in ADDRESS_BUFFER. */
527
528static void
529print_ref_address (struct type *type, const gdb_byte *address_buffer,
530 int embedded_offset, struct ui_file *stream)
531{
532 struct gdbarch *gdbarch = get_type_arch (type);
533
534 if (address_buffer != NULL)
535 {
536 CORE_ADDR address
537 = extract_typed_address (address_buffer + embedded_offset, type);
538
539 fprintf_filtered (stream, "@");
540 fputs_filtered (paddress (gdbarch, address), stream);
541 }
542 /* Else: we have a non-addressable value, such as a DW_AT_const_value. */
543}
544
545/* If VAL is addressable, return the value contents buffer of a value that
546 represents a pointer to VAL. Otherwise return NULL. */
547
548static const gdb_byte *
549get_value_addr_contents (struct value *deref_val)
550{
551 gdb_assert (deref_val != NULL);
552
553 if (value_lval_const (deref_val) == lval_memory)
554 return value_contents_for_printing_const (value_addr (deref_val));
555 else
556 {
557 /* We have a non-addressable value, such as a DW_AT_const_value. */
558 return NULL;
559 }
560}
561
aa006118 562/* generic_val_print helper for TYPE_CODE_{RVALUE_,}REF. */
fe43fede
SM
563
564static void
e8b24d9f 565generic_val_print_ref (struct type *type,
fe43fede 566 int embedded_offset, struct ui_file *stream, int recurse,
e8b24d9f 567 struct value *original_value,
fe43fede
SM
568 const struct value_print_options *options)
569{
fe43fede 570 struct type *elttype = check_typedef (TYPE_TARGET_TYPE (type));
3326303b
MG
571 struct value *deref_val = NULL;
572 const int value_is_synthetic
573 = value_bits_synthetic_pointer (original_value,
574 TARGET_CHAR_BIT * embedded_offset,
575 TARGET_CHAR_BIT * TYPE_LENGTH (type));
576 const int must_coerce_ref = ((options->addressprint && value_is_synthetic)
577 || options->deref_ref);
578 const int type_is_defined = TYPE_CODE (elttype) != TYPE_CODE_UNDEF;
e8b24d9f 579 const gdb_byte *valaddr = value_contents_for_printing (original_value);
3326303b
MG
580
581 if (must_coerce_ref && type_is_defined)
582 {
583 deref_val = coerce_ref_if_computed (original_value);
584
585 if (deref_val != NULL)
586 {
587 /* More complicated computed references are not supported. */
588 gdb_assert (embedded_offset == 0);
589 }
590 else
591 deref_val = value_at (TYPE_TARGET_TYPE (type),
592 unpack_pointer (type, valaddr + embedded_offset));
593 }
594 /* Else, original_value isn't a synthetic reference or we don't have to print
595 the reference's contents.
596
597 Notice that for references to TYPE_CODE_STRUCT, 'set print object on' will
598 cause original_value to be a not_lval instead of an lval_computed,
599 which will make value_bits_synthetic_pointer return false.
600 This happens because if options->objectprint is true, c_value_print will
601 overwrite original_value's contents with the result of coercing
602 the reference through value_addr, and then set its type back to
603 TYPE_CODE_REF. In that case we don't have to coerce the reference again;
604 we can simply treat it as non-synthetic and move on. */
fe43fede
SM
605
606 if (options->addressprint)
607 {
3326303b
MG
608 const gdb_byte *address = (value_is_synthetic && type_is_defined
609 ? get_value_addr_contents (deref_val)
610 : valaddr);
611
612 print_ref_address (type, address, embedded_offset, stream);
fe43fede 613
fe43fede
SM
614 if (options->deref_ref)
615 fputs_filtered (": ", stream);
616 }
3326303b 617
fe43fede
SM
618 if (options->deref_ref)
619 {
3326303b
MG
620 if (type_is_defined)
621 common_val_print (deref_val, stream, recurse, options,
622 current_language);
fe43fede
SM
623 else
624 fputs_filtered ("???", stream);
625 }
626}
627
81516450
DE
628/* Helper function for generic_val_print_enum.
629 This is also used to print enums in TYPE_CODE_FLAGS values. */
ef0bc0dd
SM
630
631static void
81516450
DE
632generic_val_print_enum_1 (struct type *type, LONGEST val,
633 struct ui_file *stream)
ef0bc0dd
SM
634{
635 unsigned int i;
636 unsigned int len;
ef0bc0dd 637
ef0bc0dd 638 len = TYPE_NFIELDS (type);
ef0bc0dd
SM
639 for (i = 0; i < len; i++)
640 {
641 QUIT;
642 if (val == TYPE_FIELD_ENUMVAL (type, i))
643 {
644 break;
645 }
646 }
647 if (i < len)
648 {
3f0cbb04
TT
649 fputs_styled (TYPE_FIELD_NAME (type, i), variable_name_style.style (),
650 stream);
ef0bc0dd
SM
651 }
652 else if (TYPE_FLAG_ENUM (type))
653 {
654 int first = 1;
655
6740f0cc
SM
656 /* We have a "flag" enum, so we try to decompose it into pieces as
657 appropriate. The enum may have multiple enumerators representing
658 the same bit, in which case we choose to only print the first one
659 we find. */
ef0bc0dd
SM
660 for (i = 0; i < len; ++i)
661 {
662 QUIT;
663
edd45eb0
SM
664 ULONGEST enumval = TYPE_FIELD_ENUMVAL (type, i);
665 int nbits = count_one_bits_ll (enumval);
666
667 gdb_assert (nbits == 0 || nbits == 1);
668
669 if ((val & enumval) != 0)
ef0bc0dd 670 {
373d7ac0
SM
671 if (first)
672 {
673 fputs_filtered ("(", stream);
674 first = 0;
675 }
676 else
ef0bc0dd 677 fputs_filtered (" | ", stream);
ef0bc0dd
SM
678
679 val &= ~TYPE_FIELD_ENUMVAL (type, i);
3f0cbb04
TT
680 fputs_styled (TYPE_FIELD_NAME (type, i),
681 variable_name_style.style (), stream);
ef0bc0dd
SM
682 }
683 }
684
373d7ac0 685 if (val != 0)
ef0bc0dd 686 {
373d7ac0
SM
687 /* There are leftover bits, print them. */
688 if (first)
689 fputs_filtered ("(", stream);
690 else
ef0bc0dd 691 fputs_filtered (" | ", stream);
373d7ac0 692
b29a2df0
SM
693 fputs_filtered ("unknown: 0x", stream);
694 print_longest (stream, 'x', 0, val);
373d7ac0
SM
695 fputs_filtered (")", stream);
696 }
697 else if (first)
698 {
699 /* Nothing has been printed and the value is 0, the enum value must
700 have been 0. */
701 fputs_filtered ("0", stream);
702 }
703 else
704 {
705 /* Something has been printed, close the parenthesis. */
706 fputs_filtered (")", stream);
ef0bc0dd 707 }
ef0bc0dd
SM
708 }
709 else
710 print_longest (stream, 'd', 0, val);
711}
712
81516450
DE
713/* generic_val_print helper for TYPE_CODE_ENUM. */
714
715static void
e8b24d9f 716generic_val_print_enum (struct type *type,
81516450 717 int embedded_offset, struct ui_file *stream,
e8b24d9f 718 struct value *original_value,
81516450
DE
719 const struct value_print_options *options)
720{
721 LONGEST val;
722 struct gdbarch *gdbarch = get_type_arch (type);
723 int unit_size = gdbarch_addressable_memory_unit_size (gdbarch);
724
40f3ce18 725 gdb_assert (!options->format);
e8b24d9f 726
40f3ce18 727 const gdb_byte *valaddr = value_contents_for_printing (original_value);
81516450 728
40f3ce18
TT
729 val = unpack_long (type, valaddr + embedded_offset * unit_size);
730
731 generic_val_print_enum_1 (type, val, stream);
81516450
DE
732}
733
4a8c372f
SM
734/* generic_val_print helper for TYPE_CODE_FUNC and TYPE_CODE_METHOD. */
735
736static void
e8b24d9f 737generic_val_print_func (struct type *type,
4a8c372f
SM
738 int embedded_offset, CORE_ADDR address,
739 struct ui_file *stream,
e8b24d9f 740 struct value *original_value,
4a8c372f
SM
741 const struct value_print_options *options)
742{
743 struct gdbarch *gdbarch = get_type_arch (type);
744
4112d2e6
TT
745 gdb_assert (!options->format);
746
747 /* FIXME, we should consider, at least for ANSI C language,
748 eliminating the distinction made between FUNCs and POINTERs to
749 FUNCs. */
750 fprintf_filtered (stream, "{");
751 type_print (type, "", stream, -1);
752 fprintf_filtered (stream, "} ");
753 /* Try to print what function it points to, and its address. */
754 print_address_demangle (options, gdbarch, address, stream, demangle);
4a8c372f
SM
755}
756
e5bead4b
SM
757/* generic_val_print helper for TYPE_CODE_BOOL. */
758
759static void
e8b24d9f 760generic_val_print_bool (struct type *type,
e5bead4b 761 int embedded_offset, struct ui_file *stream,
e8b24d9f 762 struct value *original_value,
e5bead4b
SM
763 const struct value_print_options *options,
764 const struct generic_val_print_decorations *decorations)
765{
766 LONGEST val;
3ae385af
SM
767 struct gdbarch *gdbarch = get_type_arch (type);
768 int unit_size = gdbarch_addressable_memory_unit_size (gdbarch);
e5bead4b
SM
769
770 if (options->format || options->output_format)
771 {
772 struct value_print_options opts = *options;
773 opts.format = (options->format ? options->format
774 : options->output_format);
e8b24d9f 775 val_print_scalar_formatted (type, embedded_offset,
e5bead4b
SM
776 original_value, &opts, 0, stream);
777 }
778 else
779 {
e8b24d9f
YQ
780 const gdb_byte *valaddr = value_contents_for_printing (original_value);
781
3ae385af 782 val = unpack_long (type, valaddr + embedded_offset * unit_size);
e5bead4b
SM
783 if (val == 0)
784 fputs_filtered (decorations->false_name, stream);
785 else if (val == 1)
786 fputs_filtered (decorations->true_name, stream);
787 else
788 print_longest (stream, 'd', 0, val);
789 }
790}
791
6dde7521
TT
792/* generic_value_print helper for TYPE_CODE_BOOL. */
793
794static void
795generic_value_print_bool
796 (struct value *value, struct ui_file *stream,
797 const struct value_print_options *options,
798 const struct generic_val_print_decorations *decorations)
799{
800 if (options->format || options->output_format)
801 {
802 struct value_print_options opts = *options;
803 opts.format = (options->format ? options->format
804 : options->output_format);
805 value_print_scalar_formatted (value, &opts, 0, stream);
806 }
807 else
808 {
809 const gdb_byte *valaddr = value_contents_for_printing (value);
810 struct type *type = check_typedef (value_type (value));
811 LONGEST val = unpack_long (type, valaddr);
812 if (val == 0)
813 fputs_filtered (decorations->false_name, stream);
814 else if (val == 1)
815 fputs_filtered (decorations->true_name, stream);
816 else
817 print_longest (stream, 'd', 0, val);
818 }
819}
820
b21b6342
SM
821/* generic_val_print helper for TYPE_CODE_INT. */
822
823static void
e8b24d9f 824generic_val_print_int (struct type *type,
b21b6342 825 int embedded_offset, struct ui_file *stream,
e8b24d9f 826 struct value *original_value,
b21b6342
SM
827 const struct value_print_options *options)
828{
f12f6bad 829 struct value_print_options opts = *options;
3ae385af 830
f12f6bad
TT
831 opts.format = (options->format ? options->format
832 : options->output_format);
833 val_print_scalar_formatted (type, embedded_offset,
834 original_value, &opts, 0, stream);
b21b6342
SM
835}
836
fdddfccb
TT
837/* generic_value_print helper for TYPE_CODE_INT. */
838
839static void
840generic_value_print_int (struct value *val, struct ui_file *stream,
841 const struct value_print_options *options)
842{
843 struct value_print_options opts = *options;
844
845 opts.format = (options->format ? options->format
846 : options->output_format);
847 value_print_scalar_formatted (val, &opts, 0, stream);
848}
849
385f5aff
SM
850/* generic_val_print helper for TYPE_CODE_CHAR. */
851
852static void
853generic_val_print_char (struct type *type, struct type *unresolved_type,
e8b24d9f 854 int embedded_offset,
385f5aff 855 struct ui_file *stream,
e8b24d9f 856 struct value *original_value,
385f5aff
SM
857 const struct value_print_options *options)
858{
859 LONGEST val;
3ae385af
SM
860 struct gdbarch *gdbarch = get_type_arch (type);
861 int unit_size = gdbarch_addressable_memory_unit_size (gdbarch);
385f5aff
SM
862
863 if (options->format || options->output_format)
864 {
865 struct value_print_options opts = *options;
866
867 opts.format = (options->format ? options->format
868 : options->output_format);
e8b24d9f 869 val_print_scalar_formatted (type, embedded_offset,
385f5aff
SM
870 original_value, &opts, 0, stream);
871 }
872 else
873 {
e8b24d9f
YQ
874 const gdb_byte *valaddr = value_contents_for_printing (original_value);
875
3ae385af 876 val = unpack_long (type, valaddr + embedded_offset * unit_size);
385f5aff
SM
877 if (TYPE_UNSIGNED (type))
878 fprintf_filtered (stream, "%u", (unsigned int) val);
879 else
880 fprintf_filtered (stream, "%d", (int) val);
881 fputs_filtered (" ", stream);
882 LA_PRINT_CHAR (val, unresolved_type, stream);
883 }
884}
885
3eec3b05
TT
886/* generic_value_print helper for TYPE_CODE_CHAR. */
887
888static void
889generic_value_print_char (struct value *value, struct ui_file *stream,
890 const struct value_print_options *options)
891{
892 if (options->format || options->output_format)
893 {
894 struct value_print_options opts = *options;
895
896 opts.format = (options->format ? options->format
897 : options->output_format);
898 value_print_scalar_formatted (value, &opts, 0, stream);
899 }
900 else
901 {
902 struct type *unresolved_type = value_type (value);
903 struct type *type = check_typedef (unresolved_type);
904 const gdb_byte *valaddr = value_contents_for_printing (value);
905
906 LONGEST val = unpack_long (type, valaddr);
907 if (TYPE_UNSIGNED (type))
908 fprintf_filtered (stream, "%u", (unsigned int) val);
909 else
910 fprintf_filtered (stream, "%d", (int) val);
911 fputs_filtered (" ", stream);
912 LA_PRINT_CHAR (val, unresolved_type, stream);
913 }
914}
915
fdf0cbc2 916/* generic_val_print helper for TYPE_CODE_FLT and TYPE_CODE_DECFLOAT. */
7784724b
SM
917
918static void
e8b24d9f 919generic_val_print_float (struct type *type,
7784724b 920 int embedded_offset, struct ui_file *stream,
e8b24d9f 921 struct value *original_value,
7784724b
SM
922 const struct value_print_options *options)
923{
3ae385af
SM
924 struct gdbarch *gdbarch = get_type_arch (type);
925 int unit_size = gdbarch_addressable_memory_unit_size (gdbarch);
926
f5354008 927 gdb_assert (!options->format);
e8b24d9f 928
f5354008
TT
929 const gdb_byte *valaddr = value_contents_for_printing (original_value);
930
931 print_floating (valaddr + embedded_offset * unit_size, type, stream);
7784724b
SM
932}
933
0c87c0bf
SM
934/* generic_val_print helper for TYPE_CODE_COMPLEX. */
935
936static void
e8b24d9f 937generic_val_print_complex (struct type *type,
0c87c0bf 938 int embedded_offset, struct ui_file *stream,
e8b24d9f 939 struct value *original_value,
0c87c0bf
SM
940 const struct value_print_options *options,
941 const struct generic_val_print_decorations
942 *decorations)
943{
3ae385af
SM
944 struct gdbarch *gdbarch = get_type_arch (type);
945 int unit_size = gdbarch_addressable_memory_unit_size (gdbarch);
e8b24d9f 946 const gdb_byte *valaddr = value_contents_for_printing (original_value);
3ae385af 947
0c87c0bf
SM
948 fprintf_filtered (stream, "%s", decorations->complex_prefix);
949 if (options->format)
e8b24d9f 950 val_print_scalar_formatted (TYPE_TARGET_TYPE (type),
0c87c0bf
SM
951 embedded_offset, original_value, options, 0,
952 stream);
953 else
3ae385af
SM
954 print_floating (valaddr + embedded_offset * unit_size,
955 TYPE_TARGET_TYPE (type), stream);
0c87c0bf
SM
956 fprintf_filtered (stream, "%s", decorations->complex_infix);
957 if (options->format)
e8b24d9f 958 val_print_scalar_formatted (TYPE_TARGET_TYPE (type),
0c87c0bf 959 embedded_offset
3ae385af 960 + type_length_units (TYPE_TARGET_TYPE (type)),
0c87c0bf
SM
961 original_value, options, 0, stream);
962 else
3ae385af 963 print_floating (valaddr + embedded_offset * unit_size
0c87c0bf
SM
964 + TYPE_LENGTH (TYPE_TARGET_TYPE (type)),
965 TYPE_TARGET_TYPE (type), stream);
966 fprintf_filtered (stream, "%s", decorations->complex_suffix);
967}
968
4f412b6e
TT
969/* generic_value_print helper for TYPE_CODE_COMPLEX. */
970
971static void
972generic_value_print_complex (struct value *val, struct ui_file *stream,
973 const struct value_print_options *options,
974 const struct generic_val_print_decorations
975 *decorations)
976{
977 fprintf_filtered (stream, "%s", decorations->complex_prefix);
978
979 struct type *type = check_typedef (value_type (val));
980 struct value *real_part
981 = value_from_component (val, TYPE_TARGET_TYPE (type), 0);
982 value_print_scalar_formatted (real_part, options, 0, stream);
983 fprintf_filtered (stream, "%s", decorations->complex_infix);
984
985 struct value *imag_part
986 = value_from_component (val, TYPE_TARGET_TYPE (type),
987 TYPE_LENGTH (TYPE_TARGET_TYPE (type)));
988
989 value_print_scalar_formatted (imag_part, options, 0, stream);
990 fprintf_filtered (stream, "%s", decorations->complex_suffix);
991}
992
e88acd96
TT
993/* A generic val_print that is suitable for use by language
994 implementations of the la_val_print method. This function can
995 handle most type codes, though not all, notably exception
996 TYPE_CODE_UNION and TYPE_CODE_STRUCT, which must be implemented by
997 the caller.
998
999 Most arguments are as to val_print.
1000
1001 The additional DECORATIONS argument can be used to customize the
1002 output in some small, language-specific ways. */
1003
1004void
e8b24d9f 1005generic_val_print (struct type *type,
e88acd96
TT
1006 int embedded_offset, CORE_ADDR address,
1007 struct ui_file *stream, int recurse,
e8b24d9f 1008 struct value *original_value,
e88acd96
TT
1009 const struct value_print_options *options,
1010 const struct generic_val_print_decorations *decorations)
1011{
e88acd96 1012 struct type *unresolved_type = type;
e88acd96 1013
f168693b 1014 type = check_typedef (type);
e88acd96
TT
1015 switch (TYPE_CODE (type))
1016 {
1017 case TYPE_CODE_ARRAY:
e8b24d9f 1018 generic_val_print_array (type, embedded_offset, address, stream,
00272ec4 1019 recurse, original_value, options, decorations);
9f436164 1020 break;
e88acd96
TT
1021
1022 case TYPE_CODE_MEMBERPTR:
e8b24d9f 1023 generic_val_print_memberptr (type, embedded_offset, stream,
45000ea2 1024 original_value, options);
e88acd96
TT
1025 break;
1026
1027 case TYPE_CODE_PTR:
e8b24d9f 1028 generic_val_print_ptr (type, embedded_offset, stream,
81eb921a 1029 original_value, options);
e88acd96
TT
1030 break;
1031
1032 case TYPE_CODE_REF:
aa006118 1033 case TYPE_CODE_RVALUE_REF:
e8b24d9f 1034 generic_val_print_ref (type, embedded_offset, stream, recurse,
fe43fede 1035 original_value, options);
e88acd96
TT
1036 break;
1037
1038 case TYPE_CODE_ENUM:
40f3ce18
TT
1039 if (options->format)
1040 val_print_scalar_formatted (type, embedded_offset,
1041 original_value, options, 0, stream);
1042 else
1043 generic_val_print_enum (type, embedded_offset, stream,
1044 original_value, options);
e88acd96
TT
1045 break;
1046
1047 case TYPE_CODE_FLAGS:
65786af6
TT
1048 if (options->format)
1049 val_print_scalar_formatted (type, embedded_offset,
1050 original_value, options, 0, stream);
1051 else
1052 val_print_type_code_flags (type, original_value, embedded_offset,
1053 stream);
e88acd96
TT
1054 break;
1055
1056 case TYPE_CODE_FUNC:
1057 case TYPE_CODE_METHOD:
4112d2e6
TT
1058 if (options->format)
1059 val_print_scalar_formatted (type, embedded_offset,
1060 original_value, options, 0, stream);
1061 else
1062 generic_val_print_func (type, embedded_offset, address, stream,
1063 original_value, options);
e88acd96
TT
1064 break;
1065
1066 case TYPE_CODE_BOOL:
e8b24d9f 1067 generic_val_print_bool (type, embedded_offset, stream,
e5bead4b 1068 original_value, options, decorations);
e88acd96
TT
1069 break;
1070
1071 case TYPE_CODE_RANGE:
0c9c3474 1072 /* FIXME: create_static_range_type does not set the unsigned bit in a
e88acd96
TT
1073 range type (I think it probably should copy it from the
1074 target type), so we won't print values which are too large to
1075 fit in a signed integer correctly. */
1076 /* FIXME: Doesn't handle ranges of enums correctly. (Can't just
1077 print with the target type, though, because the size of our
1078 type and the target type might differ). */
1079
1080 /* FALLTHROUGH */
1081
1082 case TYPE_CODE_INT:
e8b24d9f 1083 generic_val_print_int (type, embedded_offset, stream,
b21b6342 1084 original_value, options);
e88acd96
TT
1085 break;
1086
1087 case TYPE_CODE_CHAR:
e8b24d9f 1088 generic_val_print_char (type, unresolved_type, embedded_offset,
385f5aff 1089 stream, original_value, options);
e88acd96
TT
1090 break;
1091
1092 case TYPE_CODE_FLT:
fdf0cbc2 1093 case TYPE_CODE_DECFLOAT:
f5354008
TT
1094 if (options->format)
1095 val_print_scalar_formatted (type, embedded_offset,
1096 original_value, options, 0, stream);
1097 else
1098 generic_val_print_float (type, embedded_offset, stream,
1099 original_value, options);
e88acd96
TT
1100 break;
1101
e88acd96
TT
1102 case TYPE_CODE_VOID:
1103 fputs_filtered (decorations->void_name, stream);
1104 break;
1105
1106 case TYPE_CODE_ERROR:
1107 fprintf_filtered (stream, "%s", TYPE_ERROR_NAME (type));
1108 break;
1109
1110 case TYPE_CODE_UNDEF:
a9ff5f12
UW
1111 /* This happens (without TYPE_STUB set) on systems which don't use
1112 dbx xrefs (NO_DBX_XREFS in gcc) if a file has a "struct foo *bar"
1113 and no complete type for struct foo in that file. */
7f6aba03 1114 fprintf_styled (stream, metadata_style.style (), _("<incomplete type>"));
e88acd96
TT
1115 break;
1116
1117 case TYPE_CODE_COMPLEX:
e8b24d9f 1118 generic_val_print_complex (type, embedded_offset, stream,
0c87c0bf 1119 original_value, options, decorations);
e88acd96
TT
1120 break;
1121
1122 case TYPE_CODE_UNION:
1123 case TYPE_CODE_STRUCT:
1124 case TYPE_CODE_METHODPTR:
1125 default:
1126 error (_("Unhandled type code %d in symbol table."),
1127 TYPE_CODE (type));
1128 }
e88acd96
TT
1129}
1130
156bfec9
TT
1131/* See valprint.h. */
1132
1133void
1134generic_value_print (struct value *val, struct ui_file *stream, int recurse,
1135 const struct value_print_options *options,
1136 const struct generic_val_print_decorations *decorations)
1137{
abc66ce9 1138 struct type *type = value_type (val);
abc66ce9
TT
1139
1140 type = check_typedef (type);
1141 switch (TYPE_CODE (type))
1142 {
1143 case TYPE_CODE_ARRAY:
1144 generic_val_print_array (type, 0, value_address (val), stream,
1145 recurse, val, options, decorations);
1146 break;
1147
1148 case TYPE_CODE_MEMBERPTR:
2a5b130b 1149 value_print_scalar_formatted (val, options, 0, stream);
abc66ce9
TT
1150 break;
1151
1152 case TYPE_CODE_PTR:
2a5b130b 1153 generic_value_print_ptr (val, stream, options);
abc66ce9
TT
1154 break;
1155
1156 case TYPE_CODE_REF:
1157 case TYPE_CODE_RVALUE_REF:
1158 generic_val_print_ref (type, 0, stream, recurse,
1159 val, options);
1160 break;
1161
1162 case TYPE_CODE_ENUM:
40f3ce18
TT
1163 if (options->format)
1164 value_print_scalar_formatted (val, options, 0, stream);
1165 else
1166 generic_val_print_enum (type, 0, stream, val, options);
abc66ce9
TT
1167 break;
1168
1169 case TYPE_CODE_FLAGS:
65786af6
TT
1170 if (options->format)
1171 value_print_scalar_formatted (val, options, 0, stream);
1172 else
1173 val_print_type_code_flags (type, val, 0, stream);
abc66ce9
TT
1174 break;
1175
1176 case TYPE_CODE_FUNC:
1177 case TYPE_CODE_METHOD:
4112d2e6
TT
1178 if (options->format)
1179 value_print_scalar_formatted (val, options, 0, stream);
1180 else
1181 generic_val_print_func (type, 0, value_address (val), stream,
1182 val, options);
abc66ce9
TT
1183 break;
1184
1185 case TYPE_CODE_BOOL:
6dde7521 1186 generic_value_print_bool (val, stream, options, decorations);
abc66ce9
TT
1187 break;
1188
1189 case TYPE_CODE_RANGE:
1190 /* FIXME: create_static_range_type does not set the unsigned bit in a
1191 range type (I think it probably should copy it from the
1192 target type), so we won't print values which are too large to
1193 fit in a signed integer correctly. */
1194 /* FIXME: Doesn't handle ranges of enums correctly. (Can't just
1195 print with the target type, though, because the size of our
1196 type and the target type might differ). */
1197
1198 /* FALLTHROUGH */
1199
1200 case TYPE_CODE_INT:
fdddfccb 1201 generic_value_print_int (val, stream, options);
abc66ce9
TT
1202 break;
1203
1204 case TYPE_CODE_CHAR:
3eec3b05 1205 generic_value_print_char (val, stream, options);
abc66ce9
TT
1206 break;
1207
1208 case TYPE_CODE_FLT:
1209 case TYPE_CODE_DECFLOAT:
f5354008
TT
1210 if (options->format)
1211 value_print_scalar_formatted (val, options, 0, stream);
1212 else
1213 generic_val_print_float (type, 0, stream,
1214 val, options);
abc66ce9
TT
1215 break;
1216
1217 case TYPE_CODE_VOID:
1218 fputs_filtered (decorations->void_name, stream);
1219 break;
1220
1221 case TYPE_CODE_ERROR:
1222 fprintf_filtered (stream, "%s", TYPE_ERROR_NAME (type));
1223 break;
1224
1225 case TYPE_CODE_UNDEF:
1226 /* This happens (without TYPE_STUB set) on systems which don't use
1227 dbx xrefs (NO_DBX_XREFS in gcc) if a file has a "struct foo *bar"
1228 and no complete type for struct foo in that file. */
1229 fprintf_styled (stream, metadata_style.style (), _("<incomplete type>"));
1230 break;
1231
1232 case TYPE_CODE_COMPLEX:
4f412b6e 1233 generic_value_print_complex (val, stream, options, decorations);
abc66ce9
TT
1234 break;
1235
1236 case TYPE_CODE_UNION:
1237 case TYPE_CODE_STRUCT:
1238 case TYPE_CODE_METHODPTR:
1239 default:
1240 error (_("Unhandled type code %d in symbol table."),
1241 TYPE_CODE (type));
1242 }
156bfec9
TT
1243}
1244
b0c26e99
TT
1245/* Helper function for val_print and common_val_print that does the
1246 work. Arguments are as to val_print, but FULL_VALUE, if given, is
1247 the value to be printed. */
32b72a42 1248
b0c26e99
TT
1249static void
1250do_val_print (struct value *full_value,
1251 struct type *type, LONGEST embedded_offset,
1252 CORE_ADDR address, struct ui_file *stream, int recurse,
1253 struct value *val,
1254 const struct value_print_options *options,
1255 const struct language_defn *language)
c906108c 1256{
19ca80ba 1257 int ret = 0;
79a45b7d 1258 struct value_print_options local_opts = *options;
c906108c 1259 struct type *real_type = check_typedef (type);
79a45b7d 1260
2a998fc0
DE
1261 if (local_opts.prettyformat == Val_prettyformat_default)
1262 local_opts.prettyformat = (local_opts.prettyformat_structs
1263 ? Val_prettyformat : Val_no_prettyformat);
c5aa993b 1264
c906108c
SS
1265 QUIT;
1266
1267 /* Ensure that the type is complete and not just a stub. If the type is
1268 only a stub and we can't find and substitute its complete type, then
1269 print appropriate string and return. */
1270
74a9bb82 1271 if (TYPE_STUB (real_type))
c906108c 1272 {
7f6aba03 1273 fprintf_styled (stream, metadata_style.style (), _("<incomplete type>"));
35c0084b 1274 return;
c906108c 1275 }
c5aa993b 1276
0e03807e 1277 if (!valprint_check_validity (stream, real_type, embedded_offset, val))
35c0084b 1278 return;
0e03807e 1279
a6bac58e
TT
1280 if (!options->raw)
1281 {
42331a1e
TT
1282 struct value *v = full_value;
1283
1284 if (v == nullptr)
1285 v = value_from_component (val, type, embedded_offset);
1286
1287 ret = apply_ext_lang_val_pretty_printer (v, stream, recurse, options,
1288 language);
a6bac58e 1289 if (ret)
35c0084b 1290 return;
a6bac58e
TT
1291 }
1292
1293 /* Handle summary mode. If the value is a scalar, print it;
1294 otherwise, print an ellipsis. */
6211c335 1295 if (options->summary && !val_print_scalar_type_p (type))
a6bac58e
TT
1296 {
1297 fprintf_filtered (stream, "...");
35c0084b 1298 return;
a6bac58e
TT
1299 }
1300
2e62ab40
AB
1301 /* If this value is too deep then don't print it. */
1302 if (!val_print_scalar_or_string_type_p (type, language)
1303 && val_print_check_max_depth (stream, recurse, options, language))
1304 return;
1305
a70b8144 1306 try
19ca80ba 1307 {
2b4e573d
TT
1308 if (full_value != nullptr && language->la_value_print_inner != nullptr)
1309 language->la_value_print_inner (full_value, stream, recurse,
1310 &local_opts);
1311 else
1312 language->la_val_print (type, embedded_offset, address,
1313 stream, recurse, val,
1314 &local_opts);
19ca80ba 1315 }
230d2906 1316 catch (const gdb_exception_error &except)
492d29ea 1317 {
7f6aba03
TT
1318 fprintf_styled (stream, metadata_style.style (),
1319 _("<error reading variable>"));
492d29ea 1320 }
c906108c
SS
1321}
1322
b0c26e99
TT
1323/* Print using the given LANGUAGE the data of type TYPE located at
1324 VAL's contents buffer + EMBEDDED_OFFSET (within GDB), which came
1325 from the inferior at address ADDRESS + EMBEDDED_OFFSET, onto
1326 stdio stream STREAM according to OPTIONS. VAL is the whole object
1327 that came from ADDRESS.
1328
1329 The language printers will pass down an adjusted EMBEDDED_OFFSET to
1330 further helper subroutines as subfields of TYPE are printed. In
1331 such cases, VAL is passed down unadjusted, so
1332 that VAL can be queried for metadata about the contents data being
1333 printed, using EMBEDDED_OFFSET as an offset into VAL's contents
1334 buffer. For example: "has this field been optimized out", or "I'm
1335 printing an object while inspecting a traceframe; has this
1336 particular piece of data been collected?".
1337
1338 RECURSE indicates the amount of indentation to supply before
1339 continuation lines; this amount is roughly twice the value of
1340 RECURSE. */
1341
1342void
1343val_print (struct type *type, LONGEST embedded_offset,
1344 CORE_ADDR address, struct ui_file *stream, int recurse,
1345 struct value *val,
1346 const struct value_print_options *options,
1347 const struct language_defn *language)
1348{
1349 do_val_print (nullptr, type, embedded_offset, address, stream,
1350 recurse, val, options, language);
1351}
1352
2e62ab40
AB
1353/* See valprint.h. */
1354
1355bool
1356val_print_check_max_depth (struct ui_file *stream, int recurse,
1357 const struct value_print_options *options,
1358 const struct language_defn *language)
1359{
1360 if (options->max_depth > -1 && recurse >= options->max_depth)
1361 {
1362 gdb_assert (language->la_struct_too_deep_ellipsis != NULL);
1363 fputs_filtered (language->la_struct_too_deep_ellipsis, stream);
1364 return true;
1365 }
1366
1367 return false;
1368}
1369
806048c6 1370/* Check whether the value VAL is printable. Return 1 if it is;
6501578c
YQ
1371 return 0 and print an appropriate error message to STREAM according to
1372 OPTIONS if it is not. */
c906108c 1373
806048c6 1374static int
6501578c
YQ
1375value_check_printable (struct value *val, struct ui_file *stream,
1376 const struct value_print_options *options)
c906108c
SS
1377{
1378 if (val == 0)
1379 {
7f6aba03
TT
1380 fprintf_styled (stream, metadata_style.style (),
1381 _("<address of value unknown>"));
c906108c
SS
1382 return 0;
1383 }
806048c6 1384
0e03807e 1385 if (value_entirely_optimized_out (val))
c906108c 1386 {
6211c335 1387 if (options->summary && !val_print_scalar_type_p (value_type (val)))
6501578c
YQ
1388 fprintf_filtered (stream, "...");
1389 else
901461f8 1390 val_print_optimized_out (val, stream);
c906108c
SS
1391 return 0;
1392 }
806048c6 1393
eebc056c
AB
1394 if (value_entirely_unavailable (val))
1395 {
1396 if (options->summary && !val_print_scalar_type_p (value_type (val)))
1397 fprintf_filtered (stream, "...");
1398 else
1399 val_print_unavailable (stream);
1400 return 0;
1401 }
1402
bc3b79fd
TJB
1403 if (TYPE_CODE (value_type (val)) == TYPE_CODE_INTERNAL_FUNCTION)
1404 {
7f6aba03
TT
1405 fprintf_styled (stream, metadata_style.style (),
1406 _("<internal function %s>"),
1407 value_internal_function_name (val));
bc3b79fd
TJB
1408 return 0;
1409 }
1410
3f2f83dd
KB
1411 if (type_not_associated (value_type (val)))
1412 {
1413 val_print_not_associated (stream);
1414 return 0;
1415 }
1416
1417 if (type_not_allocated (value_type (val)))
1418 {
1419 val_print_not_allocated (stream);
1420 return 0;
1421 }
1422
806048c6
DJ
1423 return 1;
1424}
1425
d8ca156b 1426/* Print using the given LANGUAGE the value VAL onto stream STREAM according
79a45b7d 1427 to OPTIONS.
806048c6 1428
806048c6
DJ
1429 This is a preferable interface to val_print, above, because it uses
1430 GDB's value mechanism. */
1431
a1f5dd1b 1432void
79a45b7d
TT
1433common_val_print (struct value *val, struct ui_file *stream, int recurse,
1434 const struct value_print_options *options,
d8ca156b 1435 const struct language_defn *language)
806048c6 1436{
6501578c 1437 if (!value_check_printable (val, stream, options))
a1f5dd1b 1438 return;
806048c6 1439
0c3acc09
JB
1440 if (language->la_language == language_ada)
1441 /* The value might have a dynamic type, which would cause trouble
1442 below when trying to extract the value contents (since the value
1443 size is determined from the type size which is unknown). So
1444 get a fixed representation of our value. */
1445 val = ada_to_fixed_value (val);
1446
7d45f3df
YQ
1447 if (value_lazy (val))
1448 value_fetch_lazy (val);
1449
b0c26e99
TT
1450 do_val_print (val, value_type (val),
1451 value_embedded_offset (val), value_address (val),
1452 stream, recurse,
1453 val, options, language);
806048c6
DJ
1454}
1455
c2a44efe
TT
1456/* See valprint.h. */
1457
1458void
1459common_val_print_checked (struct value *val, struct ui_file *stream,
1460 int recurse,
1461 const struct value_print_options *options,
1462 const struct language_defn *language)
1463{
1464 if (!value_check_printable (val, stream, options))
1465 return;
1466 common_val_print (val, stream, recurse, options, language);
1467}
1468
7348c5e1 1469/* Print on stream STREAM the value VAL according to OPTIONS. The value
8e069a98 1470 is printed using the current_language syntax. */
7348c5e1 1471
8e069a98 1472void
79a45b7d
TT
1473value_print (struct value *val, struct ui_file *stream,
1474 const struct value_print_options *options)
806048c6 1475{
ce3acbe9
TT
1476 scoped_value_mark free_values;
1477
6501578c 1478 if (!value_check_printable (val, stream, options))
8e069a98 1479 return;
806048c6 1480
a6bac58e
TT
1481 if (!options->raw)
1482 {
6dddc817 1483 int r
42331a1e
TT
1484 = apply_ext_lang_val_pretty_printer (val, stream, 0, options,
1485 current_language);
a109c7c1 1486
a6bac58e 1487 if (r)
8e069a98 1488 return;
a6bac58e
TT
1489 }
1490
8e069a98 1491 LA_VALUE_PRINT (val, stream, options);
c906108c
SS
1492}
1493
81516450 1494static void
65786af6
TT
1495val_print_type_code_flags (struct type *type, struct value *original_value,
1496 int embedded_offset, struct ui_file *stream)
4f2aea11 1497{
65786af6
TT
1498 const gdb_byte *valaddr = (value_contents_for_printing (original_value)
1499 + embedded_offset);
befae759 1500 ULONGEST val = unpack_long (type, valaddr);
81516450
DE
1501 int field, nfields = TYPE_NFIELDS (type);
1502 struct gdbarch *gdbarch = get_type_arch (type);
1503 struct type *bool_type = builtin_type (gdbarch)->builtin_bool;
4f2aea11 1504
81516450
DE
1505 fputs_filtered ("[", stream);
1506 for (field = 0; field < nfields; field++)
4f2aea11 1507 {
81516450 1508 if (TYPE_FIELD_NAME (type, field)[0] != '\0')
4f2aea11 1509 {
81516450
DE
1510 struct type *field_type = TYPE_FIELD_TYPE (type, field);
1511
1512 if (field_type == bool_type
1513 /* We require boolean types here to be one bit wide. This is a
1514 problematic place to notify the user of an internal error
1515 though. Instead just fall through and print the field as an
1516 int. */
1517 && TYPE_FIELD_BITSIZE (type, field) == 1)
1518 {
1519 if (val & ((ULONGEST)1 << TYPE_FIELD_BITPOS (type, field)))
3f0cbb04
TT
1520 fprintf_filtered
1521 (stream, " %ps",
1522 styled_string (variable_name_style.style (),
1523 TYPE_FIELD_NAME (type, field)));
81516450 1524 }
4f2aea11 1525 else
81516450
DE
1526 {
1527 unsigned field_len = TYPE_FIELD_BITSIZE (type, field);
1528 ULONGEST field_val
1529 = val >> (TYPE_FIELD_BITPOS (type, field) - field_len + 1);
1530
1531 if (field_len < sizeof (ULONGEST) * TARGET_CHAR_BIT)
1532 field_val &= ((ULONGEST) 1 << field_len) - 1;
3f0cbb04
TT
1533 fprintf_filtered (stream, " %ps=",
1534 styled_string (variable_name_style.style (),
1535 TYPE_FIELD_NAME (type, field)));
81516450
DE
1536 if (TYPE_CODE (field_type) == TYPE_CODE_ENUM)
1537 generic_val_print_enum_1 (field_type, field_val, stream);
1538 else
1539 print_longest (stream, 'd', 0, field_val);
1540 }
4f2aea11
MK
1541 }
1542 }
81516450 1543 fputs_filtered (" ]", stream);
19c37f24 1544}
ab2188aa
PA
1545
1546/* Print a scalar of data of type TYPE, pointed to in GDB by VALADDR,
1547 according to OPTIONS and SIZE on STREAM. Format i is not supported
1548 at this level.
1549
1550 This is how the elements of an array or structure are printed
1551 with a format. */
ab2188aa
PA
1552
1553void
1554val_print_scalar_formatted (struct type *type,
e8b24d9f
YQ
1555 LONGEST embedded_offset,
1556 struct value *val,
ab2188aa
PA
1557 const struct value_print_options *options,
1558 int size,
1559 struct ui_file *stream)
1560{
3ae385af
SM
1561 struct gdbarch *arch = get_type_arch (type);
1562 int unit_size = gdbarch_addressable_memory_unit_size (arch);
1563
ab2188aa 1564 gdb_assert (val != NULL);
ab2188aa
PA
1565
1566 /* If we get here with a string format, try again without it. Go
1567 all the way back to the language printers, which may call us
1568 again. */
1569 if (options->format == 's')
1570 {
1571 struct value_print_options opts = *options;
1572 opts.format = 0;
1573 opts.deref_ref = 0;
e8b24d9f 1574 val_print (type, embedded_offset, 0, stream, 0, val, &opts,
ab2188aa
PA
1575 current_language);
1576 return;
1577 }
1578
e8b24d9f
YQ
1579 /* value_contents_for_printing fetches all VAL's contents. They are
1580 needed to check whether VAL is optimized-out or unavailable
1581 below. */
1582 const gdb_byte *valaddr = value_contents_for_printing (val);
1583
ab2188aa
PA
1584 /* A scalar object that does not have all bits available can't be
1585 printed, because all bits contribute to its representation. */
9a0dc9e3
PA
1586 if (value_bits_any_optimized_out (val,
1587 TARGET_CHAR_BIT * embedded_offset,
1588 TARGET_CHAR_BIT * TYPE_LENGTH (type)))
901461f8 1589 val_print_optimized_out (val, stream);
4e07d55f
PA
1590 else if (!value_bytes_available (val, embedded_offset, TYPE_LENGTH (type)))
1591 val_print_unavailable (stream);
ab2188aa 1592 else
3ae385af 1593 print_scalar_formatted (valaddr + embedded_offset * unit_size, type,
ab2188aa 1594 options, size, stream);
4f2aea11
MK
1595}
1596
4f9ae810
TT
1597/* See valprint.h. */
1598
1599void
1600value_print_scalar_formatted (struct value *val,
1601 const struct value_print_options *options,
1602 int size,
1603 struct ui_file *stream)
1604{
1605 struct type *type = check_typedef (value_type (val));
1606
1607 gdb_assert (val != NULL);
1608
1609 /* If we get here with a string format, try again without it. Go
1610 all the way back to the language printers, which may call us
1611 again. */
1612 if (options->format == 's')
1613 {
1614 struct value_print_options opts = *options;
1615 opts.format = 0;
1616 opts.deref_ref = 0;
1617 common_val_print (val, stream, 0, &opts, current_language);
1618 return;
1619 }
1620
1621 /* value_contents_for_printing fetches all VAL's contents. They are
1622 needed to check whether VAL is optimized-out or unavailable
1623 below. */
1624 const gdb_byte *valaddr = value_contents_for_printing (val);
1625
1626 /* A scalar object that does not have all bits available can't be
1627 printed, because all bits contribute to its representation. */
1628 if (value_bits_any_optimized_out (val, 0,
1629 TARGET_CHAR_BIT * TYPE_LENGTH (type)))
1630 val_print_optimized_out (val, stream);
1631 else if (!value_bytes_available (val, 0, TYPE_LENGTH (type)))
1632 val_print_unavailable (stream);
1633 else
1634 print_scalar_formatted (valaddr, type, options, size, stream);
1635}
1636
c906108c
SS
1637/* Print a number according to FORMAT which is one of d,u,x,o,b,h,w,g.
1638 The raison d'etre of this function is to consolidate printing of
581e13c1 1639 LONG_LONG's into this one function. The format chars b,h,w,g are
bb599908 1640 from print_scalar_formatted(). Numbers are printed using C
581e13c1 1641 format.
bb599908
PH
1642
1643 USE_C_FORMAT means to use C format in all cases. Without it,
1644 'o' and 'x' format do not include the standard C radix prefix
1645 (leading 0 or 0x).
1646
1647 Hilfinger/2004-09-09: USE_C_FORMAT was originally called USE_LOCAL
85102364 1648 and was intended to request formatting according to the current
bb599908
PH
1649 language and would be used for most integers that GDB prints. The
1650 exceptional cases were things like protocols where the format of
1651 the integer is a protocol thing, not a user-visible thing). The
1652 parameter remains to preserve the information of what things might
1653 be printed with language-specific format, should we ever resurrect
581e13c1 1654 that capability. */
c906108c
SS
1655
1656void
bb599908 1657print_longest (struct ui_file *stream, int format, int use_c_format,
fba45db2 1658 LONGEST val_long)
c906108c 1659{
2bfb72ee
AC
1660 const char *val;
1661
c906108c
SS
1662 switch (format)
1663 {
1664 case 'd':
bb599908 1665 val = int_string (val_long, 10, 1, 0, 1); break;
c906108c 1666 case 'u':
bb599908 1667 val = int_string (val_long, 10, 0, 0, 1); break;
c906108c 1668 case 'x':
bb599908 1669 val = int_string (val_long, 16, 0, 0, use_c_format); break;
c906108c 1670 case 'b':
bb599908 1671 val = int_string (val_long, 16, 0, 2, 1); break;
c906108c 1672 case 'h':
bb599908 1673 val = int_string (val_long, 16, 0, 4, 1); break;
c906108c 1674 case 'w':
bb599908 1675 val = int_string (val_long, 16, 0, 8, 1); break;
c906108c 1676 case 'g':
bb599908 1677 val = int_string (val_long, 16, 0, 16, 1); break;
c906108c
SS
1678 break;
1679 case 'o':
bb599908 1680 val = int_string (val_long, 8, 0, 0, use_c_format); break;
c906108c 1681 default:
3e43a32a
MS
1682 internal_error (__FILE__, __LINE__,
1683 _("failed internal consistency check"));
bb599908 1684 }
2bfb72ee 1685 fputs_filtered (val, stream);
c906108c
SS
1686}
1687
c906108c
SS
1688/* This used to be a macro, but I don't think it is called often enough
1689 to merit such treatment. */
1690/* Convert a LONGEST to an int. This is used in contexts (e.g. number of
1691 arguments to a function, number in a value history, register number, etc.)
1692 where the value must not be larger than can fit in an int. */
1693
1694int
fba45db2 1695longest_to_int (LONGEST arg)
c906108c 1696{
581e13c1 1697 /* Let the compiler do the work. */
c906108c
SS
1698 int rtnval = (int) arg;
1699
581e13c1 1700 /* Check for overflows or underflows. */
c906108c
SS
1701 if (sizeof (LONGEST) > sizeof (int))
1702 {
1703 if (rtnval != arg)
1704 {
8a3fe4f8 1705 error (_("Value out of range."));
c906108c
SS
1706 }
1707 }
1708 return (rtnval);
1709}
1710
fdf0cbc2
UW
1711/* Print a floating point value of floating-point type TYPE,
1712 pointed to in GDB by VALADDR, on STREAM. */
c906108c
SS
1713
1714void
fc1a4b47 1715print_floating (const gdb_byte *valaddr, struct type *type,
c84141d6 1716 struct ui_file *stream)
c906108c 1717{
f69fdf9b 1718 std::string str = target_float_to_string (valaddr, type);
3b4b2f16 1719 fputs_filtered (str.c_str (), stream);
7678ef8f
TJB
1720}
1721
c5aa993b 1722void
fc1a4b47 1723print_binary_chars (struct ui_file *stream, const gdb_byte *valaddr,
30a25466 1724 unsigned len, enum bfd_endian byte_order, bool zero_pad)
c906108c 1725{
fc1a4b47 1726 const gdb_byte *p;
745b8ca0 1727 unsigned int i;
c5aa993b 1728 int b;
30a25466 1729 bool seen_a_one = false;
c906108c
SS
1730
1731 /* Declared "int" so it will be signed.
581e13c1
MS
1732 This ensures that right shift will shift in zeros. */
1733
c5aa993b 1734 const int mask = 0x080;
c906108c 1735
d44e8473 1736 if (byte_order == BFD_ENDIAN_BIG)
c906108c
SS
1737 {
1738 for (p = valaddr;
1739 p < valaddr + len;
1740 p++)
1741 {
c5aa993b 1742 /* Every byte has 8 binary characters; peel off
581e13c1
MS
1743 and print from the MSB end. */
1744
d3abe1c8 1745 for (i = 0; i < (HOST_CHAR_BIT * sizeof (*p)); i++)
c5aa993b
JM
1746 {
1747 if (*p & (mask >> i))
30a25466 1748 b = '1';
c5aa993b 1749 else
30a25466 1750 b = '0';
c5aa993b 1751
30a25466
TT
1752 if (zero_pad || seen_a_one || b == '1')
1753 fputc_filtered (b, stream);
1754 if (b == '1')
1755 seen_a_one = true;
c5aa993b 1756 }
c906108c
SS
1757 }
1758 }
1759 else
1760 {
1761 for (p = valaddr + len - 1;
1762 p >= valaddr;
1763 p--)
1764 {
d3abe1c8 1765 for (i = 0; i < (HOST_CHAR_BIT * sizeof (*p)); i++)
c5aa993b
JM
1766 {
1767 if (*p & (mask >> i))
30a25466 1768 b = '1';
c5aa993b 1769 else
30a25466 1770 b = '0';
c5aa993b 1771
30a25466
TT
1772 if (zero_pad || seen_a_one || b == '1')
1773 fputc_filtered (b, stream);
1774 if (b == '1')
1775 seen_a_one = true;
c5aa993b 1776 }
c906108c
SS
1777 }
1778 }
30a25466
TT
1779
1780 /* When not zero-padding, ensure that something is printed when the
1781 input is 0. */
1782 if (!zero_pad && !seen_a_one)
1783 fputc_filtered ('0', stream);
1784}
1785
1786/* A helper for print_octal_chars that emits a single octal digit,
1787 optionally suppressing it if is zero and updating SEEN_A_ONE. */
1788
1789static void
1790emit_octal_digit (struct ui_file *stream, bool *seen_a_one, int digit)
1791{
1792 if (*seen_a_one || digit != 0)
1793 fprintf_filtered (stream, "%o", digit);
1794 if (digit != 0)
1795 *seen_a_one = true;
c906108c
SS
1796}
1797
1798/* VALADDR points to an integer of LEN bytes.
581e13c1
MS
1799 Print it in octal on stream or format it in buf. */
1800
c906108c 1801void
fc1a4b47 1802print_octal_chars (struct ui_file *stream, const gdb_byte *valaddr,
d44e8473 1803 unsigned len, enum bfd_endian byte_order)
c906108c 1804{
fc1a4b47 1805 const gdb_byte *p;
c906108c 1806 unsigned char octa1, octa2, octa3, carry;
c5aa993b
JM
1807 int cycle;
1808
c906108c
SS
1809 /* Octal is 3 bits, which doesn't fit. Yuk. So we have to track
1810 * the extra bits, which cycle every three bytes:
1811 *
1812 * Byte side: 0 1 2 3
1813 * | | | |
1814 * bit number 123 456 78 | 9 012 345 6 | 78 901 234 | 567 890 12 |
1815 *
1816 * Octal side: 0 1 carry 3 4 carry ...
1817 *
1818 * Cycle number: 0 1 2
1819 *
1820 * But of course we are printing from the high side, so we have to
1821 * figure out where in the cycle we are so that we end up with no
1822 * left over bits at the end.
1823 */
1824#define BITS_IN_OCTAL 3
1825#define HIGH_ZERO 0340
d6382fff 1826#define LOW_ZERO 0034
c906108c 1827#define CARRY_ZERO 0003
d6382fff
TT
1828 static_assert (HIGH_ZERO + LOW_ZERO + CARRY_ZERO == 0xff,
1829 "cycle zero constants are wrong");
c906108c
SS
1830#define HIGH_ONE 0200
1831#define MID_ONE 0160
1832#define LOW_ONE 0016
1833#define CARRY_ONE 0001
d6382fff
TT
1834 static_assert (HIGH_ONE + MID_ONE + LOW_ONE + CARRY_ONE == 0xff,
1835 "cycle one constants are wrong");
c906108c
SS
1836#define HIGH_TWO 0300
1837#define MID_TWO 0070
1838#define LOW_TWO 0007
d6382fff
TT
1839 static_assert (HIGH_TWO + MID_TWO + LOW_TWO == 0xff,
1840 "cycle two constants are wrong");
c906108c
SS
1841
1842 /* For 32 we start in cycle 2, with two bits and one bit carry;
581e13c1
MS
1843 for 64 in cycle in cycle 1, with one bit and a two bit carry. */
1844
d3abe1c8 1845 cycle = (len * HOST_CHAR_BIT) % BITS_IN_OCTAL;
c906108c 1846 carry = 0;
c5aa993b 1847
bb599908 1848 fputs_filtered ("0", stream);
30a25466 1849 bool seen_a_one = false;
d44e8473 1850 if (byte_order == BFD_ENDIAN_BIG)
c906108c
SS
1851 {
1852 for (p = valaddr;
1853 p < valaddr + len;
1854 p++)
1855 {
c5aa993b
JM
1856 switch (cycle)
1857 {
1858 case 0:
581e13c1
MS
1859 /* No carry in, carry out two bits. */
1860
c5aa993b
JM
1861 octa1 = (HIGH_ZERO & *p) >> 5;
1862 octa2 = (LOW_ZERO & *p) >> 2;
1863 carry = (CARRY_ZERO & *p);
30a25466
TT
1864 emit_octal_digit (stream, &seen_a_one, octa1);
1865 emit_octal_digit (stream, &seen_a_one, octa2);
c5aa993b
JM
1866 break;
1867
1868 case 1:
581e13c1
MS
1869 /* Carry in two bits, carry out one bit. */
1870
c5aa993b
JM
1871 octa1 = (carry << 1) | ((HIGH_ONE & *p) >> 7);
1872 octa2 = (MID_ONE & *p) >> 4;
1873 octa3 = (LOW_ONE & *p) >> 1;
1874 carry = (CARRY_ONE & *p);
30a25466
TT
1875 emit_octal_digit (stream, &seen_a_one, octa1);
1876 emit_octal_digit (stream, &seen_a_one, octa2);
1877 emit_octal_digit (stream, &seen_a_one, octa3);
c5aa993b
JM
1878 break;
1879
1880 case 2:
581e13c1
MS
1881 /* Carry in one bit, no carry out. */
1882
c5aa993b
JM
1883 octa1 = (carry << 2) | ((HIGH_TWO & *p) >> 6);
1884 octa2 = (MID_TWO & *p) >> 3;
1885 octa3 = (LOW_TWO & *p);
1886 carry = 0;
30a25466
TT
1887 emit_octal_digit (stream, &seen_a_one, octa1);
1888 emit_octal_digit (stream, &seen_a_one, octa2);
1889 emit_octal_digit (stream, &seen_a_one, octa3);
c5aa993b
JM
1890 break;
1891
1892 default:
8a3fe4f8 1893 error (_("Internal error in octal conversion;"));
c5aa993b
JM
1894 }
1895
1896 cycle++;
1897 cycle = cycle % BITS_IN_OCTAL;
c906108c
SS
1898 }
1899 }
1900 else
1901 {
1902 for (p = valaddr + len - 1;
1903 p >= valaddr;
1904 p--)
1905 {
c5aa993b
JM
1906 switch (cycle)
1907 {
1908 case 0:
1909 /* Carry out, no carry in */
581e13c1 1910
c5aa993b
JM
1911 octa1 = (HIGH_ZERO & *p) >> 5;
1912 octa2 = (LOW_ZERO & *p) >> 2;
1913 carry = (CARRY_ZERO & *p);
30a25466
TT
1914 emit_octal_digit (stream, &seen_a_one, octa1);
1915 emit_octal_digit (stream, &seen_a_one, octa2);
c5aa993b
JM
1916 break;
1917
1918 case 1:
1919 /* Carry in, carry out */
581e13c1 1920
c5aa993b
JM
1921 octa1 = (carry << 1) | ((HIGH_ONE & *p) >> 7);
1922 octa2 = (MID_ONE & *p) >> 4;
1923 octa3 = (LOW_ONE & *p) >> 1;
1924 carry = (CARRY_ONE & *p);
30a25466
TT
1925 emit_octal_digit (stream, &seen_a_one, octa1);
1926 emit_octal_digit (stream, &seen_a_one, octa2);
1927 emit_octal_digit (stream, &seen_a_one, octa3);
c5aa993b
JM
1928 break;
1929
1930 case 2:
1931 /* Carry in, no carry out */
581e13c1 1932
c5aa993b
JM
1933 octa1 = (carry << 2) | ((HIGH_TWO & *p) >> 6);
1934 octa2 = (MID_TWO & *p) >> 3;
1935 octa3 = (LOW_TWO & *p);
1936 carry = 0;
30a25466
TT
1937 emit_octal_digit (stream, &seen_a_one, octa1);
1938 emit_octal_digit (stream, &seen_a_one, octa2);
1939 emit_octal_digit (stream, &seen_a_one, octa3);
c5aa993b
JM
1940 break;
1941
1942 default:
8a3fe4f8 1943 error (_("Internal error in octal conversion;"));
c5aa993b
JM
1944 }
1945
1946 cycle++;
1947 cycle = cycle % BITS_IN_OCTAL;
c906108c
SS
1948 }
1949 }
1950
c906108c
SS
1951}
1952
4ac0cb1c
TT
1953/* Possibly negate the integer represented by BYTES. It contains LEN
1954 bytes in the specified byte order. If the integer is negative,
1955 copy it into OUT_VEC, negate it, and return true. Otherwise, do
1956 nothing and return false. */
1957
1958static bool
1959maybe_negate_by_bytes (const gdb_byte *bytes, unsigned len,
1960 enum bfd_endian byte_order,
d5722aa2 1961 gdb::byte_vector *out_vec)
4ac0cb1c
TT
1962{
1963 gdb_byte sign_byte;
eb77c9df 1964 gdb_assert (len > 0);
4ac0cb1c
TT
1965 if (byte_order == BFD_ENDIAN_BIG)
1966 sign_byte = bytes[0];
1967 else
1968 sign_byte = bytes[len - 1];
1969 if ((sign_byte & 0x80) == 0)
1970 return false;
1971
1972 out_vec->resize (len);
1973
1974 /* Compute -x == 1 + ~x. */
1975 if (byte_order == BFD_ENDIAN_LITTLE)
1976 {
1977 unsigned carry = 1;
1978 for (unsigned i = 0; i < len; ++i)
1979 {
1980 unsigned tem = (0xff & ~bytes[i]) + carry;
1981 (*out_vec)[i] = tem & 0xff;
1982 carry = tem / 256;
1983 }
1984 }
1985 else
1986 {
1987 unsigned carry = 1;
1988 for (unsigned i = len; i > 0; --i)
1989 {
1990 unsigned tem = (0xff & ~bytes[i - 1]) + carry;
1991 (*out_vec)[i - 1] = tem & 0xff;
1992 carry = tem / 256;
1993 }
1994 }
1995
1996 return true;
1997}
1998
c906108c 1999/* VALADDR points to an integer of LEN bytes.
581e13c1
MS
2000 Print it in decimal on stream or format it in buf. */
2001
c906108c 2002void
fc1a4b47 2003print_decimal_chars (struct ui_file *stream, const gdb_byte *valaddr,
4ac0cb1c
TT
2004 unsigned len, bool is_signed,
2005 enum bfd_endian byte_order)
c906108c
SS
2006{
2007#define TEN 10
c5aa993b 2008#define CARRY_OUT( x ) ((x) / TEN) /* extend char to int */
c906108c
SS
2009#define CARRY_LEFT( x ) ((x) % TEN)
2010#define SHIFT( x ) ((x) << 4)
c906108c
SS
2011#define LOW_NIBBLE( x ) ( (x) & 0x00F)
2012#define HIGH_NIBBLE( x ) (((x) & 0x0F0) >> 4)
2013
fc1a4b47 2014 const gdb_byte *p;
c5aa993b
JM
2015 int carry;
2016 int decimal_len;
2017 int i, j, decimal_digits;
2018 int dummy;
2019 int flip;
2020
d5722aa2 2021 gdb::byte_vector negated_bytes;
4ac0cb1c
TT
2022 if (is_signed
2023 && maybe_negate_by_bytes (valaddr, len, byte_order, &negated_bytes))
2024 {
2025 fputs_filtered ("-", stream);
2026 valaddr = negated_bytes.data ();
2027 }
2028
c906108c 2029 /* Base-ten number is less than twice as many digits
581e13c1
MS
2030 as the base 16 number, which is 2 digits per byte. */
2031
c906108c 2032 decimal_len = len * 2 * 2;
30a25466 2033 std::vector<unsigned char> digits (decimal_len, 0);
c906108c 2034
c906108c
SS
2035 /* Ok, we have an unknown number of bytes of data to be printed in
2036 * decimal.
2037 *
2038 * Given a hex number (in nibbles) as XYZ, we start by taking X and
30baf67b 2039 * decimalizing it as "x1 x2" in two decimal nibbles. Then we multiply
c906108c
SS
2040 * the nibbles by 16, add Y and re-decimalize. Repeat with Z.
2041 *
2042 * The trick is that "digits" holds a base-10 number, but sometimes
581e13c1 2043 * the individual digits are > 10.
c906108c
SS
2044 *
2045 * Outer loop is per nibble (hex digit) of input, from MSD end to
2046 * LSD end.
2047 */
c5aa993b 2048 decimal_digits = 0; /* Number of decimal digits so far */
d44e8473 2049 p = (byte_order == BFD_ENDIAN_BIG) ? valaddr : valaddr + len - 1;
c906108c 2050 flip = 0;
d44e8473 2051 while ((byte_order == BFD_ENDIAN_BIG) ? (p < valaddr + len) : (p >= valaddr))
c5aa993b 2052 {
c906108c
SS
2053 /*
2054 * Multiply current base-ten number by 16 in place.
2055 * Each digit was between 0 and 9, now is between
2056 * 0 and 144.
2057 */
c5aa993b
JM
2058 for (j = 0; j < decimal_digits; j++)
2059 {
2060 digits[j] = SHIFT (digits[j]);
2061 }
2062
c906108c
SS
2063 /* Take the next nibble off the input and add it to what
2064 * we've got in the LSB position. Bottom 'digit' is now
2065 * between 0 and 159.
2066 *
2067 * "flip" is used to run this loop twice for each byte.
2068 */
c5aa993b
JM
2069 if (flip == 0)
2070 {
581e13c1
MS
2071 /* Take top nibble. */
2072
c5aa993b
JM
2073 digits[0] += HIGH_NIBBLE (*p);
2074 flip = 1;
2075 }
2076 else
2077 {
581e13c1
MS
2078 /* Take low nibble and bump our pointer "p". */
2079
c5aa993b 2080 digits[0] += LOW_NIBBLE (*p);
d44e8473
MD
2081 if (byte_order == BFD_ENDIAN_BIG)
2082 p++;
2083 else
2084 p--;
c5aa993b
JM
2085 flip = 0;
2086 }
c906108c
SS
2087
2088 /* Re-decimalize. We have to do this often enough
2089 * that we don't overflow, but once per nibble is
2090 * overkill. Easier this way, though. Note that the
2091 * carry is often larger than 10 (e.g. max initial
2092 * carry out of lowest nibble is 15, could bubble all
2093 * the way up greater than 10). So we have to do
2094 * the carrying beyond the last current digit.
2095 */
2096 carry = 0;
c5aa993b
JM
2097 for (j = 0; j < decimal_len - 1; j++)
2098 {
2099 digits[j] += carry;
2100
2101 /* "/" won't handle an unsigned char with
2102 * a value that if signed would be negative.
2103 * So extend to longword int via "dummy".
2104 */
2105 dummy = digits[j];
2106 carry = CARRY_OUT (dummy);
2107 digits[j] = CARRY_LEFT (dummy);
2108
2109 if (j >= decimal_digits && carry == 0)
2110 {
2111 /*
2112 * All higher digits are 0 and we
2113 * no longer have a carry.
2114 *
2115 * Note: "j" is 0-based, "decimal_digits" is
2116 * 1-based.
2117 */
2118 decimal_digits = j + 1;
2119 break;
2120 }
2121 }
2122 }
c906108c
SS
2123
2124 /* Ok, now "digits" is the decimal representation, with
581e13c1
MS
2125 the "decimal_digits" actual digits. Print! */
2126
30a25466
TT
2127 for (i = decimal_digits - 1; i > 0 && digits[i] == 0; --i)
2128 ;
2129
2130 for (; i >= 0; i--)
c5aa993b
JM
2131 {
2132 fprintf_filtered (stream, "%1d", digits[i]);
2133 }
c906108c
SS
2134}
2135
2136/* VALADDR points to an integer of LEN bytes. Print it in hex on stream. */
2137
6b9acc27 2138void
fc1a4b47 2139print_hex_chars (struct ui_file *stream, const gdb_byte *valaddr,
30a25466
TT
2140 unsigned len, enum bfd_endian byte_order,
2141 bool zero_pad)
c906108c 2142{
fc1a4b47 2143 const gdb_byte *p;
c906108c 2144
bb599908 2145 fputs_filtered ("0x", stream);
d44e8473 2146 if (byte_order == BFD_ENDIAN_BIG)
c906108c 2147 {
30a25466
TT
2148 p = valaddr;
2149
2150 if (!zero_pad)
2151 {
2152 /* Strip leading 0 bytes, but be sure to leave at least a
2153 single byte at the end. */
2154 for (; p < valaddr + len - 1 && !*p; ++p)
2155 ;
2156 }
2157
2158 const gdb_byte *first = p;
2159 for (;
c906108c
SS
2160 p < valaddr + len;
2161 p++)
2162 {
30a25466
TT
2163 /* When not zero-padding, use a different format for the
2164 very first byte printed. */
2165 if (!zero_pad && p == first)
2166 fprintf_filtered (stream, "%x", *p);
2167 else
2168 fprintf_filtered (stream, "%02x", *p);
c906108c
SS
2169 }
2170 }
2171 else
2172 {
30a25466
TT
2173 p = valaddr + len - 1;
2174
2175 if (!zero_pad)
2176 {
2177 /* Strip leading 0 bytes, but be sure to leave at least a
2178 single byte at the end. */
2179 for (; p >= valaddr + 1 && !*p; --p)
2180 ;
2181 }
2182
2183 const gdb_byte *first = p;
2184 for (;
c906108c
SS
2185 p >= valaddr;
2186 p--)
2187 {
30a25466
TT
2188 /* When not zero-padding, use a different format for the
2189 very first byte printed. */
2190 if (!zero_pad && p == first)
2191 fprintf_filtered (stream, "%x", *p);
2192 else
2193 fprintf_filtered (stream, "%02x", *p);
c906108c
SS
2194 }
2195 }
c906108c
SS
2196}
2197
3e43a32a 2198/* VALADDR points to a char integer of LEN bytes.
581e13c1 2199 Print it out in appropriate language form on stream.
6b9acc27
JJ
2200 Omit any leading zero chars. */
2201
2202void
6c7a06a3
TT
2203print_char_chars (struct ui_file *stream, struct type *type,
2204 const gdb_byte *valaddr,
d44e8473 2205 unsigned len, enum bfd_endian byte_order)
6b9acc27 2206{
fc1a4b47 2207 const gdb_byte *p;
6b9acc27 2208
d44e8473 2209 if (byte_order == BFD_ENDIAN_BIG)
6b9acc27
JJ
2210 {
2211 p = valaddr;
2212 while (p < valaddr + len - 1 && *p == 0)
2213 ++p;
2214
2215 while (p < valaddr + len)
2216 {
6c7a06a3 2217 LA_EMIT_CHAR (*p, type, stream, '\'');
6b9acc27
JJ
2218 ++p;
2219 }
2220 }
2221 else
2222 {
2223 p = valaddr + len - 1;
2224 while (p > valaddr && *p == 0)
2225 --p;
2226
2227 while (p >= valaddr)
2228 {
6c7a06a3 2229 LA_EMIT_CHAR (*p, type, stream, '\'');
6b9acc27
JJ
2230 --p;
2231 }
2232 }
2233}
2234
132c57b4
TT
2235/* Print function pointer with inferior address ADDRESS onto stdio
2236 stream STREAM. */
2237
2238void
edf0c1b7
TT
2239print_function_pointer_address (const struct value_print_options *options,
2240 struct gdbarch *gdbarch,
132c57b4 2241 CORE_ADDR address,
edf0c1b7 2242 struct ui_file *stream)
132c57b4
TT
2243{
2244 CORE_ADDR func_addr
2245 = gdbarch_convert_from_func_ptr_addr (gdbarch, address,
8b88a78e 2246 current_top_target ());
132c57b4
TT
2247
2248 /* If the function pointer is represented by a description, print
2249 the address of the description. */
edf0c1b7 2250 if (options->addressprint && func_addr != address)
132c57b4
TT
2251 {
2252 fputs_filtered ("@", stream);
2253 fputs_filtered (paddress (gdbarch, address), stream);
2254 fputs_filtered (": ", stream);
2255 }
edf0c1b7 2256 print_address_demangle (options, gdbarch, func_addr, stream, demangle);
132c57b4
TT
2257}
2258
2259
79a45b7d 2260/* Print on STREAM using the given OPTIONS the index for the element
e79af960
JB
2261 at INDEX of an array whose index type is INDEX_TYPE. */
2262
2263void
2264maybe_print_array_index (struct type *index_type, LONGEST index,
79a45b7d
TT
2265 struct ui_file *stream,
2266 const struct value_print_options *options)
e79af960
JB
2267{
2268 struct value *index_value;
2269
79a45b7d 2270 if (!options->print_array_indexes)
e79af960
JB
2271 return;
2272
2273 index_value = value_from_longest (index_type, index);
2274
79a45b7d
TT
2275 LA_PRINT_ARRAY_INDEX (index_value, stream, options);
2276}
e79af960 2277
c906108c 2278/* Called by various <lang>_val_print routines to print elements of an
c5aa993b 2279 array in the form "<elem1>, <elem2>, <elem3>, ...".
c906108c 2280
c5aa993b
JM
2281 (FIXME?) Assumes array element separator is a comma, which is correct
2282 for all languages currently handled.
2283 (FIXME?) Some languages have a notation for repeated array elements,
581e13c1 2284 perhaps we should try to use that notation when appropriate. */
c906108c
SS
2285
2286void
490f124f 2287val_print_array_elements (struct type *type,
e8b24d9f 2288 LONGEST embedded_offset,
a2bd3dcd 2289 CORE_ADDR address, struct ui_file *stream,
79a45b7d 2290 int recurse,
e8b24d9f 2291 struct value *val,
79a45b7d 2292 const struct value_print_options *options,
fba45db2 2293 unsigned int i)
c906108c
SS
2294{
2295 unsigned int things_printed = 0;
2296 unsigned len;
aa715135 2297 struct type *elttype, *index_type, *base_index_type;
c906108c
SS
2298 unsigned eltlen;
2299 /* Position of the array element we are examining to see
2300 whether it is repeated. */
2301 unsigned int rep1;
2302 /* Number of repetitions we have detected so far. */
2303 unsigned int reps;
dbc98a8b 2304 LONGEST low_bound, high_bound;
aa715135 2305 LONGEST low_pos, high_pos;
c5aa993b 2306
c906108c 2307 elttype = TYPE_TARGET_TYPE (type);
3ae385af 2308 eltlen = type_length_units (check_typedef (elttype));
e79af960 2309 index_type = TYPE_INDEX_TYPE (type);
c906108c 2310
dbc98a8b 2311 if (get_array_bounds (type, &low_bound, &high_bound))
75be741b 2312 {
aa715135
JG
2313 if (TYPE_CODE (index_type) == TYPE_CODE_RANGE)
2314 base_index_type = TYPE_TARGET_TYPE (index_type);
2315 else
2316 base_index_type = index_type;
2317
2318 /* Non-contiguous enumerations types can by used as index types
2319 in some languages (e.g. Ada). In this case, the array length
2320 shall be computed from the positions of the first and last
2321 literal in the enumeration type, and not from the values
2322 of these literals. */
2323 if (!discrete_position (base_index_type, low_bound, &low_pos)
2324 || !discrete_position (base_index_type, high_bound, &high_pos))
2325 {
2326 warning (_("unable to get positions in array, use bounds instead"));
2327 low_pos = low_bound;
2328 high_pos = high_bound;
2329 }
2330
2331 /* The array length should normally be HIGH_POS - LOW_POS + 1.
75be741b 2332 But we have to be a little extra careful, because some languages
aa715135 2333 such as Ada allow LOW_POS to be greater than HIGH_POS for
75be741b
JB
2334 empty arrays. In that situation, the array length is just zero,
2335 not negative! */
aa715135 2336 if (low_pos > high_pos)
75be741b
JB
2337 len = 0;
2338 else
aa715135 2339 len = high_pos - low_pos + 1;
75be741b 2340 }
e936309c
JB
2341 else
2342 {
dbc98a8b
KW
2343 warning (_("unable to get bounds of array, assuming null array"));
2344 low_bound = 0;
2345 len = 0;
168de233
JB
2346 }
2347
c906108c
SS
2348 annotate_array_section_begin (i, elttype);
2349
79a45b7d 2350 for (; i < len && things_printed < options->print_max; i++)
c906108c
SS
2351 {
2352 if (i != 0)
2353 {
2a998fc0 2354 if (options->prettyformat_arrays)
c906108c
SS
2355 {
2356 fprintf_filtered (stream, ",\n");
2357 print_spaces_filtered (2 + 2 * recurse, stream);
2358 }
2359 else
2360 {
2361 fprintf_filtered (stream, ", ");
2362 }
2363 }
2364 wrap_here (n_spaces (2 + 2 * recurse));
dbc98a8b 2365 maybe_print_array_index (index_type, i + low_bound,
79a45b7d 2366 stream, options);
c906108c
SS
2367
2368 rep1 = i + 1;
2369 reps = 1;
35bef4fd
TT
2370 /* Only check for reps if repeat_count_threshold is not set to
2371 UINT_MAX (unlimited). */
2372 if (options->repeat_count_threshold < UINT_MAX)
c906108c 2373 {
35bef4fd 2374 while (rep1 < len
9a0dc9e3
PA
2375 && value_contents_eq (val,
2376 embedded_offset + i * eltlen,
2377 val,
2378 (embedded_offset
2379 + rep1 * eltlen),
2380 eltlen))
35bef4fd
TT
2381 {
2382 ++reps;
2383 ++rep1;
2384 }
c906108c
SS
2385 }
2386
79a45b7d 2387 if (reps > options->repeat_count_threshold)
c906108c 2388 {
e8b24d9f 2389 val_print (elttype, embedded_offset + i * eltlen,
490f124f
PA
2390 address, stream, recurse + 1, val, options,
2391 current_language);
c906108c 2392 annotate_elt_rep (reps);
7f6aba03
TT
2393 fprintf_filtered (stream, " %p[<repeats %u times>%p]",
2394 metadata_style.style ().ptr (), reps, nullptr);
c906108c
SS
2395 annotate_elt_rep_end ();
2396
2397 i = rep1 - 1;
79a45b7d 2398 things_printed += options->repeat_count_threshold;
c906108c
SS
2399 }
2400 else
2401 {
e8b24d9f 2402 val_print (elttype, embedded_offset + i * eltlen,
490f124f 2403 address,
0e03807e 2404 stream, recurse + 1, val, options, current_language);
c906108c
SS
2405 annotate_elt ();
2406 things_printed++;
2407 }
2408 }
2409 annotate_array_section_end ();
2410 if (i < len)
2411 {
2412 fprintf_filtered (stream, "...");
2413 }
2414}
2415
d121c6ce
TT
2416/* See valprint.h. */
2417
2418void
2419value_print_array_elements (struct value *val, struct ui_file *stream,
2420 int recurse,
2421 const struct value_print_options *options,
2422 unsigned int i)
2423{
2424 unsigned int things_printed = 0;
2425 unsigned len;
2426 struct type *elttype, *index_type, *base_index_type;
2427 unsigned eltlen;
2428 /* Position of the array element we are examining to see
2429 whether it is repeated. */
2430 unsigned int rep1;
2431 /* Number of repetitions we have detected so far. */
2432 unsigned int reps;
2433 LONGEST low_bound, high_bound;
2434 LONGEST low_pos, high_pos;
2435
2436 struct type *type = check_typedef (value_type (val));
2437
2438 elttype = TYPE_TARGET_TYPE (type);
2439 eltlen = type_length_units (check_typedef (elttype));
2440 index_type = TYPE_INDEX_TYPE (type);
2441
2442 if (get_array_bounds (type, &low_bound, &high_bound))
2443 {
2444 if (TYPE_CODE (index_type) == TYPE_CODE_RANGE)
2445 base_index_type = TYPE_TARGET_TYPE (index_type);
2446 else
2447 base_index_type = index_type;
2448
2449 /* Non-contiguous enumerations types can by used as index types
2450 in some languages (e.g. Ada). In this case, the array length
2451 shall be computed from the positions of the first and last
2452 literal in the enumeration type, and not from the values
2453 of these literals. */
2454 if (!discrete_position (base_index_type, low_bound, &low_pos)
2455 || !discrete_position (base_index_type, high_bound, &high_pos))
2456 {
2457 warning (_("unable to get positions in array, use bounds instead"));
2458 low_pos = low_bound;
2459 high_pos = high_bound;
2460 }
2461
2462 /* The array length should normally be HIGH_POS - LOW_POS + 1.
2463 But we have to be a little extra careful, because some languages
2464 such as Ada allow LOW_POS to be greater than HIGH_POS for
2465 empty arrays. In that situation, the array length is just zero,
2466 not negative! */
2467 if (low_pos > high_pos)
2468 len = 0;
2469 else
2470 len = high_pos - low_pos + 1;
2471 }
2472 else
2473 {
2474 warning (_("unable to get bounds of array, assuming null array"));
2475 low_bound = 0;
2476 len = 0;
2477 }
2478
2479 annotate_array_section_begin (i, elttype);
2480
2481 for (; i < len && things_printed < options->print_max; i++)
2482 {
2483 scoped_value_mark free_values;
2484
2485 if (i != 0)
2486 {
2487 if (options->prettyformat_arrays)
2488 {
2489 fprintf_filtered (stream, ",\n");
2490 print_spaces_filtered (2 + 2 * recurse, stream);
2491 }
2492 else
2493 fprintf_filtered (stream, ", ");
2494 }
2495 wrap_here (n_spaces (2 + 2 * recurse));
2496 maybe_print_array_index (index_type, i + low_bound,
2497 stream, options);
2498
2499 rep1 = i + 1;
2500 reps = 1;
2501 /* Only check for reps if repeat_count_threshold is not set to
2502 UINT_MAX (unlimited). */
2503 if (options->repeat_count_threshold < UINT_MAX)
2504 {
2505 while (rep1 < len
2506 && value_contents_eq (val, i * eltlen,
2507 val, rep1 * eltlen,
2508 eltlen))
2509 {
2510 ++reps;
2511 ++rep1;
2512 }
2513 }
2514
2515 struct value *element = value_from_component (val, elttype, eltlen * i);
2516 common_val_print (element, stream, recurse + 1, options,
2517 current_language);
2518
2519 if (reps > options->repeat_count_threshold)
2520 {
2521 annotate_elt_rep (reps);
2522 fprintf_filtered (stream, " %p[<repeats %u times>%p]",
2523 metadata_style.style ().ptr (), reps, nullptr);
2524 annotate_elt_rep_end ();
2525
2526 i = rep1 - 1;
2527 things_printed += options->repeat_count_threshold;
2528 }
2529 else
2530 {
2531 annotate_elt ();
2532 things_printed++;
2533 }
2534 }
2535 annotate_array_section_end ();
2536 if (i < len)
2537 fprintf_filtered (stream, "...");
2538}
2539
917317f4
JM
2540/* Read LEN bytes of target memory at address MEMADDR, placing the
2541 results in GDB's memory at MYADDR. Returns a count of the bytes
9b409511 2542 actually read, and optionally a target_xfer_status value in the
578d3588 2543 location pointed to by ERRPTR if ERRPTR is non-null. */
917317f4
JM
2544
2545/* FIXME: cagney/1999-10-14: Only used by val_print_string. Can this
2546 function be eliminated. */
2547
2548static int
3e43a32a 2549partial_memory_read (CORE_ADDR memaddr, gdb_byte *myaddr,
578d3588 2550 int len, int *errptr)
917317f4 2551{
581e13c1
MS
2552 int nread; /* Number of bytes actually read. */
2553 int errcode; /* Error from last read. */
917317f4 2554
581e13c1 2555 /* First try a complete read. */
917317f4
JM
2556 errcode = target_read_memory (memaddr, myaddr, len);
2557 if (errcode == 0)
2558 {
581e13c1 2559 /* Got it all. */
917317f4
JM
2560 nread = len;
2561 }
2562 else
2563 {
581e13c1 2564 /* Loop, reading one byte at a time until we get as much as we can. */
917317f4
JM
2565 for (errcode = 0, nread = 0; len > 0 && errcode == 0; nread++, len--)
2566 {
2567 errcode = target_read_memory (memaddr++, myaddr++, 1);
2568 }
581e13c1 2569 /* If an error, the last read was unsuccessful, so adjust count. */
917317f4
JM
2570 if (errcode != 0)
2571 {
2572 nread--;
2573 }
2574 }
578d3588 2575 if (errptr != NULL)
917317f4 2576 {
578d3588 2577 *errptr = errcode;
917317f4
JM
2578 }
2579 return (nread);
2580}
2581
b4be9fad
TT
2582/* Read a string from the inferior, at ADDR, with LEN characters of
2583 WIDTH bytes each. Fetch at most FETCHLIMIT characters. BUFFER
2584 will be set to a newly allocated buffer containing the string, and
2585 BYTES_READ will be set to the number of bytes read. Returns 0 on
9b409511 2586 success, or a target_xfer_status on failure.
ae6a3a4c 2587
f380848e
SA
2588 If LEN > 0, reads the lesser of LEN or FETCHLIMIT characters
2589 (including eventual NULs in the middle or end of the string).
2590
2591 If LEN is -1, stops at the first null character (not necessarily
2592 the first null byte) up to a maximum of FETCHLIMIT characters. Set
2593 FETCHLIMIT to UINT_MAX to read as many characters as possible from
2594 the string.
ae6a3a4c
TJB
2595
2596 Unless an exception is thrown, BUFFER will always be allocated, even on
2597 failure. In this case, some characters might have been read before the
2598 failure happened. Check BYTES_READ to recognize this situation.
2599
2600 Note: There was a FIXME asking to make this code use target_read_string,
2601 but this function is more general (can read past null characters, up to
581e13c1 2602 given LEN). Besides, it is used much more often than target_read_string
ae6a3a4c
TJB
2603 so it is more tested. Perhaps callers of target_read_string should use
2604 this function instead? */
c906108c
SS
2605
2606int
ae6a3a4c 2607read_string (CORE_ADDR addr, int len, int width, unsigned int fetchlimit,
b4be9fad
TT
2608 enum bfd_endian byte_order, gdb::unique_xmalloc_ptr<gdb_byte> *buffer,
2609 int *bytes_read)
c906108c 2610{
ae6a3a4c
TJB
2611 int errcode; /* Errno returned from bad reads. */
2612 unsigned int nfetch; /* Chars to fetch / chars fetched. */
3e43a32a
MS
2613 gdb_byte *bufptr; /* Pointer to next available byte in
2614 buffer. */
ae6a3a4c 2615
ae6a3a4c
TJB
2616 /* Loop until we either have all the characters, or we encounter
2617 some error, such as bumping into the end of the address space. */
c906108c 2618
b4be9fad 2619 buffer->reset (nullptr);
c906108c
SS
2620
2621 if (len > 0)
2622 {
88db67ef
YQ
2623 /* We want fetchlimit chars, so we might as well read them all in
2624 one operation. */
325fac50 2625 unsigned int fetchlen = std::min ((unsigned) len, fetchlimit);
f380848e 2626
b4be9fad
TT
2627 buffer->reset ((gdb_byte *) xmalloc (fetchlen * width));
2628 bufptr = buffer->get ();
c906108c 2629
f380848e 2630 nfetch = partial_memory_read (addr, bufptr, fetchlen * width, &errcode)
c906108c
SS
2631 / width;
2632 addr += nfetch * width;
2633 bufptr += nfetch * width;
2634 }
2635 else if (len == -1)
2636 {
2637 unsigned long bufsize = 0;
88db67ef
YQ
2638 unsigned int chunksize; /* Size of each fetch, in chars. */
2639 int found_nul; /* Non-zero if we found the nul char. */
2640 gdb_byte *limit; /* First location past end of fetch buffer. */
2641
2642 found_nul = 0;
2643 /* We are looking for a NUL terminator to end the fetching, so we
2644 might as well read in blocks that are large enough to be efficient,
2645 but not so large as to be slow if fetchlimit happens to be large.
2646 So we choose the minimum of 8 and fetchlimit. We used to use 200
2647 instead of 8 but 200 is way too big for remote debugging over a
2648 serial line. */
325fac50 2649 chunksize = std::min (8u, fetchlimit);
ae6a3a4c 2650
c906108c
SS
2651 do
2652 {
2653 QUIT;
325fac50 2654 nfetch = std::min ((unsigned long) chunksize, fetchlimit - bufsize);
c906108c 2655
ae6a3a4c 2656 if (*buffer == NULL)
b4be9fad 2657 buffer->reset ((gdb_byte *) xmalloc (nfetch * width));
c906108c 2658 else
b4be9fad
TT
2659 buffer->reset ((gdb_byte *) xrealloc (buffer->release (),
2660 (nfetch + bufsize) * width));
c906108c 2661
b4be9fad 2662 bufptr = buffer->get () + bufsize * width;
c906108c
SS
2663 bufsize += nfetch;
2664
ae6a3a4c 2665 /* Read as much as we can. */
917317f4 2666 nfetch = partial_memory_read (addr, bufptr, nfetch * width, &errcode)
ae6a3a4c 2667 / width;
c906108c 2668
ae6a3a4c 2669 /* Scan this chunk for the null character that terminates the string
c906108c
SS
2670 to print. If found, we don't need to fetch any more. Note
2671 that bufptr is explicitly left pointing at the next character
ae6a3a4c
TJB
2672 after the null character, or at the next character after the end
2673 of the buffer. */
c906108c
SS
2674
2675 limit = bufptr + nfetch * width;
2676 while (bufptr < limit)
2677 {
2678 unsigned long c;
2679
e17a4113 2680 c = extract_unsigned_integer (bufptr, width, byte_order);
c906108c
SS
2681 addr += width;
2682 bufptr += width;
2683 if (c == 0)
2684 {
2685 /* We don't care about any error which happened after
ae6a3a4c 2686 the NUL terminator. */
c906108c
SS
2687 errcode = 0;
2688 found_nul = 1;
2689 break;
2690 }
2691 }
2692 }
c5aa993b 2693 while (errcode == 0 /* no error */
b4be9fad 2694 && bufptr - buffer->get () < fetchlimit * width /* no overrun */
ae6a3a4c 2695 && !found_nul); /* haven't found NUL yet */
c906108c
SS
2696 }
2697 else
ae6a3a4c
TJB
2698 { /* Length of string is really 0! */
2699 /* We always allocate *buffer. */
b4be9fad
TT
2700 buffer->reset ((gdb_byte *) xmalloc (1));
2701 bufptr = buffer->get ();
c906108c
SS
2702 errcode = 0;
2703 }
2704
2705 /* bufptr and addr now point immediately beyond the last byte which we
2706 consider part of the string (including a '\0' which ends the string). */
b4be9fad 2707 *bytes_read = bufptr - buffer->get ();
ae6a3a4c
TJB
2708
2709 QUIT;
2710
ae6a3a4c
TJB
2711 return errcode;
2712}
2713
3b2b8fea
TT
2714/* Return true if print_wchar can display W without resorting to a
2715 numeric escape, false otherwise. */
2716
2717static int
2718wchar_printable (gdb_wchar_t w)
2719{
2720 return (gdb_iswprint (w)
2721 || w == LCST ('\a') || w == LCST ('\b')
2722 || w == LCST ('\f') || w == LCST ('\n')
2723 || w == LCST ('\r') || w == LCST ('\t')
2724 || w == LCST ('\v'));
2725}
2726
2727/* A helper function that converts the contents of STRING to wide
2728 characters and then appends them to OUTPUT. */
2729
2730static void
2731append_string_as_wide (const char *string,
2732 struct obstack *output)
2733{
2734 for (; *string; ++string)
2735 {
2736 gdb_wchar_t w = gdb_btowc (*string);
2737 obstack_grow (output, &w, sizeof (gdb_wchar_t));
2738 }
2739}
2740
2741/* Print a wide character W to OUTPUT. ORIG is a pointer to the
2742 original (target) bytes representing the character, ORIG_LEN is the
2743 number of valid bytes. WIDTH is the number of bytes in a base
2744 characters of the type. OUTPUT is an obstack to which wide
2745 characters are emitted. QUOTER is a (narrow) character indicating
2746 the style of quotes surrounding the character to be printed.
2747 NEED_ESCAPE is an in/out flag which is used to track numeric
2748 escapes across calls. */
2749
2750static void
2751print_wchar (gdb_wint_t w, const gdb_byte *orig,
2752 int orig_len, int width,
2753 enum bfd_endian byte_order,
2754 struct obstack *output,
2755 int quoter, int *need_escapep)
2756{
2757 int need_escape = *need_escapep;
2758
2759 *need_escapep = 0;
3b2b8fea 2760
95c64f92
YQ
2761 /* iswprint implementation on Windows returns 1 for tab character.
2762 In order to avoid different printout on this host, we explicitly
2763 use wchar_printable function. */
2764 switch (w)
3b2b8fea 2765 {
95c64f92
YQ
2766 case LCST ('\a'):
2767 obstack_grow_wstr (output, LCST ("\\a"));
2768 break;
2769 case LCST ('\b'):
2770 obstack_grow_wstr (output, LCST ("\\b"));
2771 break;
2772 case LCST ('\f'):
2773 obstack_grow_wstr (output, LCST ("\\f"));
2774 break;
2775 case LCST ('\n'):
2776 obstack_grow_wstr (output, LCST ("\\n"));
2777 break;
2778 case LCST ('\r'):
2779 obstack_grow_wstr (output, LCST ("\\r"));
2780 break;
2781 case LCST ('\t'):
2782 obstack_grow_wstr (output, LCST ("\\t"));
2783 break;
2784 case LCST ('\v'):
2785 obstack_grow_wstr (output, LCST ("\\v"));
2786 break;
2787 default:
3b2b8fea 2788 {
95c64f92
YQ
2789 if (wchar_printable (w) && (!need_escape || (!gdb_iswdigit (w)
2790 && w != LCST ('8')
2791 && w != LCST ('9'))))
2792 {
2793 gdb_wchar_t wchar = w;
3b2b8fea 2794
95c64f92
YQ
2795 if (w == gdb_btowc (quoter) || w == LCST ('\\'))
2796 obstack_grow_wstr (output, LCST ("\\"));
2797 obstack_grow (output, &wchar, sizeof (gdb_wchar_t));
2798 }
2799 else
2800 {
2801 int i;
3b2b8fea 2802
95c64f92
YQ
2803 for (i = 0; i + width <= orig_len; i += width)
2804 {
2805 char octal[30];
2806 ULONGEST value;
2807
2808 value = extract_unsigned_integer (&orig[i], width,
3b2b8fea 2809 byte_order);
95c64f92
YQ
2810 /* If the value fits in 3 octal digits, print it that
2811 way. Otherwise, print it as a hex escape. */
2812 if (value <= 0777)
2813 xsnprintf (octal, sizeof (octal), "\\%.3o",
2814 (int) (value & 0777));
2815 else
2816 xsnprintf (octal, sizeof (octal), "\\x%lx", (long) value);
2817 append_string_as_wide (octal, output);
2818 }
2819 /* If we somehow have extra bytes, print them now. */
2820 while (i < orig_len)
2821 {
2822 char octal[5];
2823
2824 xsnprintf (octal, sizeof (octal), "\\%.3o", orig[i] & 0xff);
2825 append_string_as_wide (octal, output);
2826 ++i;
2827 }
2828
2829 *need_escapep = 1;
2830 }
3b2b8fea
TT
2831 break;
2832 }
2833 }
2834}
2835
2836/* Print the character C on STREAM as part of the contents of a
2837 literal string whose delimiter is QUOTER. ENCODING names the
2838 encoding of C. */
2839
2840void
2841generic_emit_char (int c, struct type *type, struct ui_file *stream,
2842 int quoter, const char *encoding)
2843{
2844 enum bfd_endian byte_order
34877895 2845 = type_byte_order (type);
b926417a 2846 gdb_byte *c_buf;
3b2b8fea
TT
2847 int need_escape = 0;
2848
b926417a
TT
2849 c_buf = (gdb_byte *) alloca (TYPE_LENGTH (type));
2850 pack_long (c_buf, type, c);
3b2b8fea 2851
b926417a 2852 wchar_iterator iter (c_buf, TYPE_LENGTH (type), encoding, TYPE_LENGTH (type));
3b2b8fea
TT
2853
2854 /* This holds the printable form of the wchar_t data. */
8268c778 2855 auto_obstack wchar_buf;
3b2b8fea
TT
2856
2857 while (1)
2858 {
2859 int num_chars;
2860 gdb_wchar_t *chars;
2861 const gdb_byte *buf;
2862 size_t buflen;
2863 int print_escape = 1;
2864 enum wchar_iterate_result result;
2865
cda6c55b 2866 num_chars = iter.iterate (&result, &chars, &buf, &buflen);
3b2b8fea
TT
2867 if (num_chars < 0)
2868 break;
2869 if (num_chars > 0)
2870 {
2871 /* If all characters are printable, print them. Otherwise,
2872 we're going to have to print an escape sequence. We
2873 check all characters because we want to print the target
2874 bytes in the escape sequence, and we don't know character
2875 boundaries there. */
2876 int i;
2877
2878 print_escape = 0;
2879 for (i = 0; i < num_chars; ++i)
2880 if (!wchar_printable (chars[i]))
2881 {
2882 print_escape = 1;
2883 break;
2884 }
2885
2886 if (!print_escape)
2887 {
2888 for (i = 0; i < num_chars; ++i)
2889 print_wchar (chars[i], buf, buflen,
2890 TYPE_LENGTH (type), byte_order,
2891 &wchar_buf, quoter, &need_escape);
2892 }
2893 }
2894
2895 /* This handles the NUM_CHARS == 0 case as well. */
2896 if (print_escape)
2897 print_wchar (gdb_WEOF, buf, buflen, TYPE_LENGTH (type),
2898 byte_order, &wchar_buf, quoter, &need_escape);
2899 }
2900
2901 /* The output in the host encoding. */
8268c778 2902 auto_obstack output;
3b2b8fea
TT
2903
2904 convert_between_encodings (INTERMEDIATE_ENCODING, host_charset (),
ac91cd70 2905 (gdb_byte *) obstack_base (&wchar_buf),
3b2b8fea 2906 obstack_object_size (&wchar_buf),
fff10684 2907 sizeof (gdb_wchar_t), &output, translit_char);
3b2b8fea
TT
2908 obstack_1grow (&output, '\0');
2909
79f33898 2910 fputs_filtered ((const char *) obstack_base (&output), stream);
3b2b8fea
TT
2911}
2912
0d63ecda
KS
2913/* Return the repeat count of the next character/byte in ITER,
2914 storing the result in VEC. */
2915
2916static int
cda6c55b 2917count_next_character (wchar_iterator *iter,
b01ba14d 2918 std::vector<converted_character> *vec)
0d63ecda
KS
2919{
2920 struct converted_character *current;
2921
b01ba14d 2922 if (vec->empty ())
0d63ecda
KS
2923 {
2924 struct converted_character tmp;
2925 gdb_wchar_t *chars;
2926
2927 tmp.num_chars
cda6c55b 2928 = iter->iterate (&tmp.result, &chars, &tmp.buf, &tmp.buflen);
0d63ecda
KS
2929 if (tmp.num_chars > 0)
2930 {
2931 gdb_assert (tmp.num_chars < MAX_WCHARS);
2932 memcpy (tmp.chars, chars, tmp.num_chars * sizeof (gdb_wchar_t));
2933 }
b01ba14d 2934 vec->push_back (tmp);
0d63ecda
KS
2935 }
2936
b01ba14d 2937 current = &vec->back ();
0d63ecda
KS
2938
2939 /* Count repeated characters or bytes. */
2940 current->repeat_count = 1;
2941 if (current->num_chars == -1)
2942 {
2943 /* EOF */
2944 return -1;
2945 }
2946 else
2947 {
2948 gdb_wchar_t *chars;
2949 struct converted_character d;
2950 int repeat;
2951
2952 d.repeat_count = 0;
2953
2954 while (1)
2955 {
2956 /* Get the next character. */
cda6c55b 2957 d.num_chars = iter->iterate (&d.result, &chars, &d.buf, &d.buflen);
0d63ecda
KS
2958
2959 /* If a character was successfully converted, save the character
2960 into the converted character. */
2961 if (d.num_chars > 0)
2962 {
2963 gdb_assert (d.num_chars < MAX_WCHARS);
2964 memcpy (d.chars, chars, WCHAR_BUFLEN (d.num_chars));
2965 }
2966
2967 /* Determine if the current character is the same as this
2968 new character. */
2969 if (d.num_chars == current->num_chars && d.result == current->result)
2970 {
2971 /* There are two cases to consider:
2972
2973 1) Equality of converted character (num_chars > 0)
2974 2) Equality of non-converted character (num_chars == 0) */
2975 if ((current->num_chars > 0
2976 && memcmp (current->chars, d.chars,
2977 WCHAR_BUFLEN (current->num_chars)) == 0)
2978 || (current->num_chars == 0
2979 && current->buflen == d.buflen
2980 && memcmp (current->buf, d.buf, current->buflen) == 0))
2981 ++current->repeat_count;
2982 else
2983 break;
2984 }
2985 else
2986 break;
2987 }
2988
2989 /* Push this next converted character onto the result vector. */
2990 repeat = current->repeat_count;
b01ba14d 2991 vec->push_back (d);
0d63ecda
KS
2992 return repeat;
2993 }
2994}
2995
2996/* Print the characters in CHARS to the OBSTACK. QUOTE_CHAR is the quote
2997 character to use with string output. WIDTH is the size of the output
6471e7d2 2998 character type. BYTE_ORDER is the target byte order. OPTIONS
0d63ecda
KS
2999 is the user's print options. */
3000
3001static void
3002print_converted_chars_to_obstack (struct obstack *obstack,
b01ba14d 3003 const std::vector<converted_character> &chars,
0d63ecda
KS
3004 int quote_char, int width,
3005 enum bfd_endian byte_order,
3006 const struct value_print_options *options)
3007{
3008 unsigned int idx;
b01ba14d 3009 const converted_character *elem;
0d63ecda
KS
3010 enum {START, SINGLE, REPEAT, INCOMPLETE, FINISH} state, last;
3011 gdb_wchar_t wide_quote_char = gdb_btowc (quote_char);
3012 int need_escape = 0;
3013
3014 /* Set the start state. */
3015 idx = 0;
3016 last = state = START;
3017 elem = NULL;
3018
3019 while (1)
3020 {
3021 switch (state)
3022 {
3023 case START:
3024 /* Nothing to do. */
3025 break;
3026
3027 case SINGLE:
3028 {
3029 int j;
3030
3031 /* We are outputting a single character
3032 (< options->repeat_count_threshold). */
3033
3034 if (last != SINGLE)
3035 {
3036 /* We were outputting some other type of content, so we
3037 must output and a comma and a quote. */
3038 if (last != START)
3039 obstack_grow_wstr (obstack, LCST (", "));
0d63ecda
KS
3040 obstack_grow (obstack, &wide_quote_char, sizeof (gdb_wchar_t));
3041 }
3042 /* Output the character. */
3043 for (j = 0; j < elem->repeat_count; ++j)
3044 {
3045 if (elem->result == wchar_iterate_ok)
3046 print_wchar (elem->chars[0], elem->buf, elem->buflen, width,
3047 byte_order, obstack, quote_char, &need_escape);
3048 else
3049 print_wchar (gdb_WEOF, elem->buf, elem->buflen, width,
3050 byte_order, obstack, quote_char, &need_escape);
3051 }
3052 }
3053 break;
3054
3055 case REPEAT:
3056 {
3057 int j;
0d63ecda
KS
3058
3059 /* We are outputting a character with a repeat count
3060 greater than options->repeat_count_threshold. */
3061
3062 if (last == SINGLE)
3063 {
3064 /* We were outputting a single string. Terminate the
3065 string. */
0d63ecda
KS
3066 obstack_grow (obstack, &wide_quote_char, sizeof (gdb_wchar_t));
3067 }
3068 if (last != START)
3069 obstack_grow_wstr (obstack, LCST (", "));
3070
3071 /* Output the character and repeat string. */
3072 obstack_grow_wstr (obstack, LCST ("'"));
3073 if (elem->result == wchar_iterate_ok)
3074 print_wchar (elem->chars[0], elem->buf, elem->buflen, width,
3075 byte_order, obstack, quote_char, &need_escape);
3076 else
3077 print_wchar (gdb_WEOF, elem->buf, elem->buflen, width,
3078 byte_order, obstack, quote_char, &need_escape);
3079 obstack_grow_wstr (obstack, LCST ("'"));
528e1572
SM
3080 std::string s = string_printf (_(" <repeats %u times>"),
3081 elem->repeat_count);
0d63ecda
KS
3082 for (j = 0; s[j]; ++j)
3083 {
3084 gdb_wchar_t w = gdb_btowc (s[j]);
3085 obstack_grow (obstack, &w, sizeof (gdb_wchar_t));
3086 }
0d63ecda
KS
3087 }
3088 break;
3089
3090 case INCOMPLETE:
3091 /* We are outputting an incomplete sequence. */
3092 if (last == SINGLE)
3093 {
3094 /* If we were outputting a string of SINGLE characters,
3095 terminate the quote. */
0d63ecda
KS
3096 obstack_grow (obstack, &wide_quote_char, sizeof (gdb_wchar_t));
3097 }
3098 if (last != START)
3099 obstack_grow_wstr (obstack, LCST (", "));
3100
3101 /* Output the incomplete sequence string. */
3102 obstack_grow_wstr (obstack, LCST ("<incomplete sequence "));
3103 print_wchar (gdb_WEOF, elem->buf, elem->buflen, width, byte_order,
3104 obstack, 0, &need_escape);
3105 obstack_grow_wstr (obstack, LCST (">"));
3106
85102364 3107 /* We do not attempt to output anything after this. */
0d63ecda
KS
3108 state = FINISH;
3109 break;
3110
3111 case FINISH:
3112 /* All done. If we were outputting a string of SINGLE
3113 characters, the string must be terminated. Otherwise,
3114 REPEAT and INCOMPLETE are always left properly terminated. */
3115 if (last == SINGLE)
e93a8774 3116 obstack_grow (obstack, &wide_quote_char, sizeof (gdb_wchar_t));
0d63ecda
KS
3117
3118 return;
3119 }
3120
3121 /* Get the next element and state. */
3122 last = state;
3123 if (state != FINISH)
3124 {
b01ba14d 3125 elem = &chars[idx++];
0d63ecda
KS
3126 switch (elem->result)
3127 {
3128 case wchar_iterate_ok:
3129 case wchar_iterate_invalid:
3130 if (elem->repeat_count > options->repeat_count_threshold)
3131 state = REPEAT;
3132 else
3133 state = SINGLE;
3134 break;
3135
3136 case wchar_iterate_incomplete:
3137 state = INCOMPLETE;
3138 break;
3139
3140 case wchar_iterate_eof:
3141 state = FINISH;
3142 break;
3143 }
3144 }
3145 }
3146}
3147
3b2b8fea
TT
3148/* Print the character string STRING, printing at most LENGTH
3149 characters. LENGTH is -1 if the string is nul terminated. TYPE is
3150 the type of each character. OPTIONS holds the printing options;
3151 printing stops early if the number hits print_max; repeat counts
3152 are printed as appropriate. Print ellipses at the end if we had to
3153 stop before printing LENGTH characters, or if FORCE_ELLIPSES.
3154 QUOTE_CHAR is the character to print at each end of the string. If
3155 C_STYLE_TERMINATOR is true, and the last character is 0, then it is
3156 omitted. */
3157
3158void
3159generic_printstr (struct ui_file *stream, struct type *type,
3160 const gdb_byte *string, unsigned int length,
3161 const char *encoding, int force_ellipses,
3162 int quote_char, int c_style_terminator,
3163 const struct value_print_options *options)
3164{
34877895 3165 enum bfd_endian byte_order = type_byte_order (type);
3b2b8fea 3166 unsigned int i;
3b2b8fea 3167 int width = TYPE_LENGTH (type);
3b2b8fea 3168 int finished = 0;
0d63ecda 3169 struct converted_character *last;
3b2b8fea
TT
3170
3171 if (length == -1)
3172 {
3173 unsigned long current_char = 1;
3174
3175 for (i = 0; current_char; ++i)
3176 {
3177 QUIT;
3178 current_char = extract_unsigned_integer (string + i * width,
3179 width, byte_order);
3180 }
3181 length = i;
3182 }
3183
3184 /* If the string was not truncated due to `set print elements', and
3185 the last byte of it is a null, we don't print that, in
3186 traditional C style. */
3187 if (c_style_terminator
3188 && !force_ellipses
3189 && length > 0
3190 && (extract_unsigned_integer (string + (length - 1) * width,
3191 width, byte_order) == 0))
3192 length--;
3193
3194 if (length == 0)
3195 {
3196 fputs_filtered ("\"\"", stream);
3197 return;
3198 }
3199
3200 /* Arrange to iterate over the characters, in wchar_t form. */
cda6c55b 3201 wchar_iterator iter (string, length * width, encoding, width);
b01ba14d 3202 std::vector<converted_character> converted_chars;
3b2b8fea 3203
0d63ecda
KS
3204 /* Convert characters until the string is over or the maximum
3205 number of printed characters has been reached. */
3206 i = 0;
3207 while (i < options->print_max)
3b2b8fea 3208 {
0d63ecda 3209 int r;
3b2b8fea
TT
3210
3211 QUIT;
3212
0d63ecda 3213 /* Grab the next character and repeat count. */
cda6c55b 3214 r = count_next_character (&iter, &converted_chars);
3b2b8fea 3215
0d63ecda
KS
3216 /* If less than zero, the end of the input string was reached. */
3217 if (r < 0)
3218 break;
3b2b8fea 3219
0d63ecda
KS
3220 /* Otherwise, add the count to the total print count and get
3221 the next character. */
3222 i += r;
3223 }
3b2b8fea 3224
0d63ecda
KS
3225 /* Get the last element and determine if the entire string was
3226 processed. */
b01ba14d 3227 last = &converted_chars.back ();
0d63ecda 3228 finished = (last->result == wchar_iterate_eof);
3b2b8fea 3229
0d63ecda
KS
3230 /* Ensure that CONVERTED_CHARS is terminated. */
3231 last->result = wchar_iterate_eof;
3b2b8fea 3232
0d63ecda
KS
3233 /* WCHAR_BUF is the obstack we use to represent the string in
3234 wchar_t form. */
8268c778 3235 auto_obstack wchar_buf;
3b2b8fea 3236
0d63ecda
KS
3237 /* Print the output string to the obstack. */
3238 print_converted_chars_to_obstack (&wchar_buf, converted_chars, quote_char,
3239 width, byte_order, options);
3b2b8fea
TT
3240
3241 if (force_ellipses || !finished)
3242 obstack_grow_wstr (&wchar_buf, LCST ("..."));
3243
3244 /* OUTPUT is where we collect `char's for printing. */
8268c778 3245 auto_obstack output;
3b2b8fea
TT
3246
3247 convert_between_encodings (INTERMEDIATE_ENCODING, host_charset (),
ac91cd70 3248 (gdb_byte *) obstack_base (&wchar_buf),
3b2b8fea 3249 obstack_object_size (&wchar_buf),
fff10684 3250 sizeof (gdb_wchar_t), &output, translit_char);
3b2b8fea
TT
3251 obstack_1grow (&output, '\0');
3252
79f33898 3253 fputs_filtered ((const char *) obstack_base (&output), stream);
3b2b8fea
TT
3254}
3255
ae6a3a4c
TJB
3256/* Print a string from the inferior, starting at ADDR and printing up to LEN
3257 characters, of WIDTH bytes a piece, to STREAM. If LEN is -1, printing
3258 stops at the first null byte, otherwise printing proceeds (including null
3259 bytes) until either print_max or LEN characters have been printed,
09ca9e2e
TT
3260 whichever is smaller. ENCODING is the name of the string's
3261 encoding. It can be NULL, in which case the target encoding is
3262 assumed. */
ae6a3a4c
TJB
3263
3264int
09ca9e2e
TT
3265val_print_string (struct type *elttype, const char *encoding,
3266 CORE_ADDR addr, int len,
6c7a06a3 3267 struct ui_file *stream,
ae6a3a4c
TJB
3268 const struct value_print_options *options)
3269{
3270 int force_ellipsis = 0; /* Force ellipsis to be printed if nonzero. */
d09f2c3f 3271 int err; /* Non-zero if we got a bad read. */
581e13c1 3272 int found_nul; /* Non-zero if we found the nul char. */
ae6a3a4c
TJB
3273 unsigned int fetchlimit; /* Maximum number of chars to print. */
3274 int bytes_read;
b4be9fad 3275 gdb::unique_xmalloc_ptr<gdb_byte> buffer; /* Dynamically growable fetch buffer. */
5af949e3 3276 struct gdbarch *gdbarch = get_type_arch (elttype);
34877895 3277 enum bfd_endian byte_order = type_byte_order (elttype);
6c7a06a3 3278 int width = TYPE_LENGTH (elttype);
ae6a3a4c
TJB
3279
3280 /* First we need to figure out the limit on the number of characters we are
3281 going to attempt to fetch and print. This is actually pretty simple. If
3282 LEN >= zero, then the limit is the minimum of LEN and print_max. If
3283 LEN is -1, then the limit is print_max. This is true regardless of
3284 whether print_max is zero, UINT_MAX (unlimited), or something in between,
3285 because finding the null byte (or available memory) is what actually
3286 limits the fetch. */
3287
325fac50
PA
3288 fetchlimit = (len == -1 ? options->print_max : std::min ((unsigned) len,
3289 options->print_max));
ae6a3a4c 3290
d09f2c3f
PA
3291 err = read_string (addr, len, width, fetchlimit, byte_order,
3292 &buffer, &bytes_read);
ae6a3a4c
TJB
3293
3294 addr += bytes_read;
c906108c 3295
3e43a32a
MS
3296 /* We now have either successfully filled the buffer to fetchlimit,
3297 or terminated early due to an error or finding a null char when
3298 LEN is -1. */
ae6a3a4c
TJB
3299
3300 /* Determine found_nul by looking at the last character read. */
6694c411
JK
3301 found_nul = 0;
3302 if (bytes_read >= width)
b4be9fad
TT
3303 found_nul = extract_unsigned_integer (buffer.get () + bytes_read - width,
3304 width, byte_order) == 0;
c906108c
SS
3305 if (len == -1 && !found_nul)
3306 {
777ea8f1 3307 gdb_byte *peekbuf;
c906108c 3308
ae6a3a4c 3309 /* We didn't find a NUL terminator we were looking for. Attempt
c5aa993b
JM
3310 to peek at the next character. If not successful, or it is not
3311 a null byte, then force ellipsis to be printed. */
c906108c 3312
777ea8f1 3313 peekbuf = (gdb_byte *) alloca (width);
c906108c
SS
3314
3315 if (target_read_memory (addr, peekbuf, width) == 0
e17a4113 3316 && extract_unsigned_integer (peekbuf, width, byte_order) != 0)
c906108c
SS
3317 force_ellipsis = 1;
3318 }
d09f2c3f 3319 else if ((len >= 0 && err != 0) || (len > bytes_read / width))
c906108c
SS
3320 {
3321 /* Getting an error when we have a requested length, or fetching less
c5aa993b 3322 than the number of characters actually requested, always make us
ae6a3a4c 3323 print ellipsis. */
c906108c
SS
3324 force_ellipsis = 1;
3325 }
3326
c906108c
SS
3327 /* If we get an error before fetching anything, don't print a string.
3328 But if we fetch something and then get an error, print the string
3329 and then the error message. */
d09f2c3f 3330 if (err == 0 || bytes_read > 0)
c906108c 3331 {
b4be9fad 3332 LA_PRINT_STRING (stream, elttype, buffer.get (), bytes_read / width,
3a772aa4 3333 encoding, force_ellipsis, options);
c906108c
SS
3334 }
3335
d09f2c3f 3336 if (err != 0)
c906108c 3337 {
1ccbe998 3338 std::string str = memory_error_message (TARGET_XFER_E_IO, gdbarch, addr);
578d3588 3339
2dbc041e
TT
3340 fprintf_filtered (stream, _("<error: %ps>"),
3341 styled_string (metadata_style.style (),
3342 str.c_str ()));
c906108c 3343 }
ae6a3a4c 3344
ae6a3a4c 3345 return (bytes_read / width);
c906108c 3346}
2e62ab40
AB
3347
3348/* Handle 'show print max-depth'. */
3349
3350static void
3351show_print_max_depth (struct ui_file *file, int from_tty,
3352 struct cmd_list_element *c, const char *value)
3353{
3354 fprintf_filtered (file, _("Maximum print depth is %s.\n"), value);
3355}
c906108c 3356\f
c5aa993b 3357
09e6485f
PA
3358/* The 'set input-radix' command writes to this auxiliary variable.
3359 If the requested radix is valid, INPUT_RADIX is updated; otherwise,
3360 it is left unchanged. */
3361
3362static unsigned input_radix_1 = 10;
3363
c906108c
SS
3364/* Validate an input or output radix setting, and make sure the user
3365 knows what they really did here. Radix setting is confusing, e.g.
3366 setting the input radix to "10" never changes it! */
3367
c906108c 3368static void
eb4c3f4a 3369set_input_radix (const char *args, int from_tty, struct cmd_list_element *c)
c906108c 3370{
09e6485f 3371 set_input_radix_1 (from_tty, input_radix_1);
c906108c
SS
3372}
3373
c906108c 3374static void
fba45db2 3375set_input_radix_1 (int from_tty, unsigned radix)
c906108c
SS
3376{
3377 /* We don't currently disallow any input radix except 0 or 1, which don't
3378 make any mathematical sense. In theory, we can deal with any input
3379 radix greater than 1, even if we don't have unique digits for every
3380 value from 0 to radix-1, but in practice we lose on large radix values.
3381 We should either fix the lossage or restrict the radix range more.
581e13c1 3382 (FIXME). */
c906108c
SS
3383
3384 if (radix < 2)
3385 {
09e6485f 3386 input_radix_1 = input_radix;
8a3fe4f8 3387 error (_("Nonsense input radix ``decimal %u''; input radix unchanged."),
c906108c
SS
3388 radix);
3389 }
09e6485f 3390 input_radix_1 = input_radix = radix;
c906108c
SS
3391 if (from_tty)
3392 {
3e43a32a
MS
3393 printf_filtered (_("Input radix now set to "
3394 "decimal %u, hex %x, octal %o.\n"),
c906108c
SS
3395 radix, radix, radix);
3396 }
3397}
3398
09e6485f
PA
3399/* The 'set output-radix' command writes to this auxiliary variable.
3400 If the requested radix is valid, OUTPUT_RADIX is updated,
3401 otherwise, it is left unchanged. */
3402
3403static unsigned output_radix_1 = 10;
3404
c906108c 3405static void
eb4c3f4a 3406set_output_radix (const char *args, int from_tty, struct cmd_list_element *c)
c906108c 3407{
09e6485f 3408 set_output_radix_1 (from_tty, output_radix_1);
c906108c
SS
3409}
3410
3411static void
fba45db2 3412set_output_radix_1 (int from_tty, unsigned radix)
c906108c
SS
3413{
3414 /* Validate the radix and disallow ones that we aren't prepared to
581e13c1 3415 handle correctly, leaving the radix unchanged. */
c906108c
SS
3416 switch (radix)
3417 {
3418 case 16:
79a45b7d 3419 user_print_options.output_format = 'x'; /* hex */
c906108c
SS
3420 break;
3421 case 10:
79a45b7d 3422 user_print_options.output_format = 0; /* decimal */
c906108c
SS
3423 break;
3424 case 8:
79a45b7d 3425 user_print_options.output_format = 'o'; /* octal */
c906108c
SS
3426 break;
3427 default:
09e6485f 3428 output_radix_1 = output_radix;
3e43a32a
MS
3429 error (_("Unsupported output radix ``decimal %u''; "
3430 "output radix unchanged."),
c906108c
SS
3431 radix);
3432 }
09e6485f 3433 output_radix_1 = output_radix = radix;
c906108c
SS
3434 if (from_tty)
3435 {
3e43a32a
MS
3436 printf_filtered (_("Output radix now set to "
3437 "decimal %u, hex %x, octal %o.\n"),
c906108c
SS
3438 radix, radix, radix);
3439 }
3440}
3441
3442/* Set both the input and output radix at once. Try to set the output radix
3443 first, since it has the most restrictive range. An radix that is valid as
3444 an output radix is also valid as an input radix.
3445
3446 It may be useful to have an unusual input radix. If the user wishes to
3447 set an input radix that is not valid as an output radix, he needs to use
581e13c1 3448 the 'set input-radix' command. */
c906108c
SS
3449
3450static void
b0a8e6c4 3451set_radix (const char *arg, int from_tty)
c906108c
SS
3452{
3453 unsigned radix;
3454
bb518678 3455 radix = (arg == NULL) ? 10 : parse_and_eval_long (arg);
c906108c
SS
3456 set_output_radix_1 (0, radix);
3457 set_input_radix_1 (0, radix);
3458 if (from_tty)
3459 {
3e43a32a
MS
3460 printf_filtered (_("Input and output radices now set to "
3461 "decimal %u, hex %x, octal %o.\n"),
c906108c
SS
3462 radix, radix, radix);
3463 }
3464}
3465
581e13c1 3466/* Show both the input and output radices. */
c906108c 3467
c906108c 3468static void
b0a8e6c4 3469show_radix (const char *arg, int from_tty)
c906108c
SS
3470{
3471 if (from_tty)
3472 {
3473 if (input_radix == output_radix)
3474 {
3e43a32a
MS
3475 printf_filtered (_("Input and output radices set to "
3476 "decimal %u, hex %x, octal %o.\n"),
c906108c
SS
3477 input_radix, input_radix, input_radix);
3478 }
3479 else
3480 {
3e43a32a
MS
3481 printf_filtered (_("Input radix set to decimal "
3482 "%u, hex %x, octal %o.\n"),
c906108c 3483 input_radix, input_radix, input_radix);
3e43a32a
MS
3484 printf_filtered (_("Output radix set to decimal "
3485 "%u, hex %x, octal %o.\n"),
c906108c
SS
3486 output_radix, output_radix, output_radix);
3487 }
3488 }
3489}
c906108c 3490\f
c5aa993b 3491
c906108c 3492static void
981a3fb3 3493set_print (const char *arg, int from_tty)
c906108c
SS
3494{
3495 printf_unfiltered (
c5aa993b 3496 "\"set print\" must be followed by the name of a print subcommand.\n");
635c7e8a 3497 help_list (setprintlist, "set print ", all_commands, gdb_stdout);
c906108c
SS
3498}
3499
c906108c 3500static void
981a3fb3 3501show_print (const char *args, int from_tty)
c906108c
SS
3502{
3503 cmd_show_list (showprintlist, from_tty, "");
3504}
e7045703
DE
3505
3506static void
981a3fb3 3507set_print_raw (const char *arg, int from_tty)
e7045703
DE
3508{
3509 printf_unfiltered (
3510 "\"set print raw\" must be followed by the name of a \"print raw\" subcommand.\n");
635c7e8a 3511 help_list (setprintrawlist, "set print raw ", all_commands, gdb_stdout);
e7045703
DE
3512}
3513
3514static void
981a3fb3 3515show_print_raw (const char *args, int from_tty)
e7045703
DE
3516{
3517 cmd_show_list (showprintrawlist, from_tty, "");
3518}
3519
7d8062de
PA
3520/* Controls printing of vtbl's. */
3521static void
3522show_vtblprint (struct ui_file *file, int from_tty,
3523 struct cmd_list_element *c, const char *value)
3524{
3525 fprintf_filtered (file, _("\
3526Printing of C++ virtual function tables is %s.\n"),
3527 value);
3528}
3529
3530/* Controls looking up an object's derived type using what we find in
3531 its vtables. */
3532static void
3533show_objectprint (struct ui_file *file, int from_tty,
3534 struct cmd_list_element *c,
3535 const char *value)
3536{
3537 fprintf_filtered (file, _("\
3538Printing of object's derived type based on vtable info is %s.\n"),
3539 value);
3540}
3541
3542static void
3543show_static_field_print (struct ui_file *file, int from_tty,
3544 struct cmd_list_element *c,
3545 const char *value)
3546{
3547 fprintf_filtered (file,
3548 _("Printing of C++ static members is %s.\n"),
3549 value);
3550}
3551
c906108c 3552\f
7d8062de
PA
3553
3554/* A couple typedefs to make writing the options a bit more
3555 convenient. */
3556using boolean_option_def
3557 = gdb::option::boolean_option_def<value_print_options>;
3558using uinteger_option_def
3559 = gdb::option::uinteger_option_def<value_print_options>;
3560using zuinteger_unlimited_option_def
3561 = gdb::option::zuinteger_unlimited_option_def<value_print_options>;
3562
85102364 3563/* Definitions of options for the "print" and "compile print"
7d8062de
PA
3564 commands. */
3565static const gdb::option::option_def value_print_option_defs[] = {
3566
3567 boolean_option_def {
3568 "address",
3569 [] (value_print_options *opt) { return &opt->addressprint; },
3570 show_addressprint, /* show_cmd_cb */
3571 N_("Set printing of addresses."),
3572 N_("Show printing of addresses."),
3573 NULL, /* help_doc */
3574 },
3575
3576 boolean_option_def {
3577 "array",
3578 [] (value_print_options *opt) { return &opt->prettyformat_arrays; },
3579 show_prettyformat_arrays, /* show_cmd_cb */
3580 N_("Set pretty formatting of arrays."),
3581 N_("Show pretty formatting of arrays."),
3582 NULL, /* help_doc */
3583 },
3584
3585 boolean_option_def {
3586 "array-indexes",
3587 [] (value_print_options *opt) { return &opt->print_array_indexes; },
3588 show_print_array_indexes, /* show_cmd_cb */
3589 N_("Set printing of array indexes."),
590042fc 3590 N_("Show printing of array indexes."),
7d8062de
PA
3591 NULL, /* help_doc */
3592 },
3593
3594 uinteger_option_def {
3595 "elements",
3596 [] (value_print_options *opt) { return &opt->print_max; },
3597 show_print_max, /* show_cmd_cb */
3598 N_("Set limit on string chars or array elements to print."),
3599 N_("Show limit on string chars or array elements to print."),
3600 N_("\"unlimited\" causes there to be no limit."),
3601 },
3602
3603 zuinteger_unlimited_option_def {
3604 "max-depth",
3605 [] (value_print_options *opt) { return &opt->max_depth; },
3606 show_print_max_depth, /* show_cmd_cb */
3607 N_("Set maximum print depth for nested structures, unions and arrays."),
3608 N_("Show maximum print depth for nested structures, unions, and arrays."),
3609 N_("When structures, unions, or arrays are nested beyond this depth then they\n\
3610will be replaced with either '{...}' or '(...)' depending on the language.\n\
3611Use \"unlimited\" to print the complete structure.")
3612 },
3613
3614 boolean_option_def {
3615 "null-stop",
3616 [] (value_print_options *opt) { return &opt->stop_print_at_null; },
3617 show_stop_print_at_null, /* show_cmd_cb */
3618 N_("Set printing of char arrays to stop at first null char."),
3619 N_("Show printing of char arrays to stop at first null char."),
3620 NULL, /* help_doc */
3621 },
3622
3623 boolean_option_def {
3624 "object",
3625 [] (value_print_options *opt) { return &opt->objectprint; },
3626 show_objectprint, /* show_cmd_cb */
3627 _("Set printing of C++ virtual function tables."),
3628 _("Show printing of C++ virtual function tables."),
3629 NULL, /* help_doc */
3630 },
3631
3632 boolean_option_def {
3633 "pretty",
3634 [] (value_print_options *opt) { return &opt->prettyformat_structs; },
3635 show_prettyformat_structs, /* show_cmd_cb */
3636 N_("Set pretty formatting of structures."),
3637 N_("Show pretty formatting of structures."),
3638 NULL, /* help_doc */
3639 },
3640
d8edc8b7
PW
3641 boolean_option_def {
3642 "raw-values",
3643 [] (value_print_options *opt) { return &opt->raw; },
3644 NULL, /* show_cmd_cb */
3645 N_("Set whether to print values in raw form."),
3646 N_("Show whether to print values in raw form."),
3647 N_("If set, values are printed in raw form, bypassing any\n\
3648pretty-printers for that value.")
3649 },
3650
7d8062de
PA
3651 uinteger_option_def {
3652 "repeats",
3653 [] (value_print_options *opt) { return &opt->repeat_count_threshold; },
3654 show_repeat_count_threshold, /* show_cmd_cb */
3655 N_("Set threshold for repeated print elements."),
3656 N_("Show threshold for repeated print elements."),
3657 N_("\"unlimited\" causes all elements to be individually printed."),
3658 },
3659
3660 boolean_option_def {
3661 "static-members",
3662 [] (value_print_options *opt) { return &opt->static_field_print; },
3663 show_static_field_print, /* show_cmd_cb */
3664 N_("Set printing of C++ static members."),
3665 N_("Show printing of C++ static members."),
3666 NULL, /* help_doc */
3667 },
3668
3669 boolean_option_def {
3670 "symbol",
3671 [] (value_print_options *opt) { return &opt->symbol_print; },
3672 show_symbol_print, /* show_cmd_cb */
3673 N_("Set printing of symbol names when printing pointers."),
3674 N_("Show printing of symbol names when printing pointers."),
3675 NULL, /* help_doc */
3676 },
3677
3678 boolean_option_def {
3679 "union",
3680 [] (value_print_options *opt) { return &opt->unionprint; },
3681 show_unionprint, /* show_cmd_cb */
3682 N_("Set printing of unions interior to structures."),
3683 N_("Show printing of unions interior to structures."),
3684 NULL, /* help_doc */
3685 },
3686
3687 boolean_option_def {
3688 "vtbl",
3689 [] (value_print_options *opt) { return &opt->vtblprint; },
3690 show_vtblprint, /* show_cmd_cb */
3691 N_("Set printing of C++ virtual function tables."),
3692 N_("Show printing of C++ virtual function tables."),
3693 NULL, /* help_doc */
3694 },
3695};
3696
3697/* See valprint.h. */
3698
3699gdb::option::option_def_group
3700make_value_print_options_def_group (value_print_options *opts)
3701{
3702 return {{value_print_option_defs}, opts};
3703}
3704
6c265988 3705void _initialize_valprint ();
c906108c 3706void
6c265988 3707_initialize_valprint ()
c906108c 3708{
2daf894e
PA
3709 cmd_list_element *cmd;
3710
c906108c 3711 add_prefix_cmd ("print", no_class, set_print,
1bedd215 3712 _("Generic command for setting how things print."),
c906108c 3713 &setprintlist, "set print ", 0, &setlist);
c5aa993b 3714 add_alias_cmd ("p", "print", no_class, 1, &setlist);
581e13c1 3715 /* Prefer set print to set prompt. */
c906108c
SS
3716 add_alias_cmd ("pr", "print", no_class, 1, &setlist);
3717
3718 add_prefix_cmd ("print", no_class, show_print,
1bedd215 3719 _("Generic command for showing print settings."),
c906108c 3720 &showprintlist, "show print ", 0, &showlist);
c5aa993b
JM
3721 add_alias_cmd ("p", "print", no_class, 1, &showlist);
3722 add_alias_cmd ("pr", "print", no_class, 1, &showlist);
c906108c 3723
2daf894e
PA
3724 cmd = add_prefix_cmd ("raw", no_class, set_print_raw,
3725 _("\
e7045703 3726Generic command for setting what things to print in \"raw\" mode."),
2daf894e
PA
3727 &setprintrawlist, "set print raw ", 0,
3728 &setprintlist);
3729 deprecate_cmd (cmd, nullptr);
3730
3731 cmd = add_prefix_cmd ("raw", no_class, show_print_raw,
3732 _("Generic command for showing \"print raw\" settings."),
3733 &showprintrawlist, "show print raw ", 0,
3734 &showprintlist);
3735 deprecate_cmd (cmd, nullptr);
e7045703 3736
7d8062de
PA
3737 gdb::option::add_setshow_cmds_for_options
3738 (class_support, &user_print_options, value_print_option_defs,
3739 &setprintlist, &showprintlist);
9cb709b6 3740
1e8fb976
PA
3741 add_setshow_zuinteger_cmd ("input-radix", class_support, &input_radix_1,
3742 _("\
35096d9d
AC
3743Set default input radix for entering numbers."), _("\
3744Show default input radix for entering numbers."), NULL,
1e8fb976
PA
3745 set_input_radix,
3746 show_input_radix,
3747 &setlist, &showlist);
35096d9d 3748
1e8fb976
PA
3749 add_setshow_zuinteger_cmd ("output-radix", class_support, &output_radix_1,
3750 _("\
35096d9d
AC
3751Set default output radix for printing of values."), _("\
3752Show default output radix for printing of values."), NULL,
1e8fb976
PA
3753 set_output_radix,
3754 show_output_radix,
3755 &setlist, &showlist);
c906108c 3756
cb1a6d5f
AC
3757 /* The "set radix" and "show radix" commands are special in that
3758 they are like normal set and show commands but allow two normally
3759 independent variables to be either set or shown with a single
b66df561 3760 command. So the usual deprecated_add_set_cmd() and [deleted]
581e13c1 3761 add_show_from_set() commands aren't really appropriate. */
b66df561
AC
3762 /* FIXME: i18n: With the new add_setshow_integer command, that is no
3763 longer true - show can display anything. */
1a966eab
AC
3764 add_cmd ("radix", class_support, set_radix, _("\
3765Set default input and output number radices.\n\
c906108c 3766Use 'set input-radix' or 'set output-radix' to independently set each.\n\
1a966eab 3767Without an argument, sets both radices back to the default value of 10."),
c906108c 3768 &setlist);
1a966eab
AC
3769 add_cmd ("radix", class_support, show_radix, _("\
3770Show the default input and output number radices.\n\
3771Use 'show input-radix' or 'show output-radix' to independently show each."),
c906108c 3772 &showlist);
c906108c 3773}
This page took 2.465604 seconds and 4 git commands to generate.