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