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