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