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