1 /* Print values for GDB, the GNU debugger.
3 Copyright (C) 1986-2019 Free Software Foundation, Inc.
5 This file is part of GDB.
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
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
30 #include "target-float.h"
31 #include "extension.h"
33 #include "gdb_obstack.h"
35 #include "typeprint.h"
38 #include "gdbsupport/byte-vector.h"
39 #include "cli/cli-option.h"
41 #include "cli/cli-style.h"
43 /* Maximum number of wchars returned from wchar_iterate. */
46 /* A convenience macro to compute the size of a wchar_t buffer containing X
48 #define WCHAR_BUFLEN(X) ((X) * sizeof (gdb_wchar_t))
50 /* Character buffer size saved while iterating over wchars. */
51 #define WCHAR_BUFLEN_MAX WCHAR_BUFLEN (MAX_WCHARS)
53 /* A structure to encapsulate state information from iterated
54 character conversions. */
55 struct converted_character
57 /* The number of characters converted. */
60 /* The result of the conversion. See charset.h for more. */
61 enum wchar_iterate_result result
;
63 /* The (saved) converted character(s). */
64 gdb_wchar_t chars
[WCHAR_BUFLEN_MAX
];
66 /* The first converted target byte. */
69 /* The number of bytes converted. */
72 /* How many times this character(s) is repeated. */
76 /* Command lists for set/show print raw. */
77 struct cmd_list_element
*setprintrawlist
;
78 struct cmd_list_element
*showprintrawlist
;
80 /* Prototypes for local functions */
82 static int partial_memory_read (CORE_ADDR memaddr
, gdb_byte
*myaddr
,
83 int len
, int *errptr
);
85 static void set_input_radix_1 (int, unsigned);
87 static void set_output_radix_1 (int, unsigned);
89 static void val_print_type_code_flags (struct type
*type
,
90 const gdb_byte
*valaddr
,
91 struct ui_file
*stream
);
93 #define PRINT_MAX_DEFAULT 200 /* Start print_max off at this value. */
94 #define PRINT_MAX_DEPTH_DEFAULT 20 /* Start print_max_depth off at this value. */
96 struct value_print_options user_print_options
=
98 Val_prettyformat_default
, /* prettyformat */
99 0, /* prettyformat_arrays */
100 0, /* prettyformat_structs */
103 1, /* addressprint */
105 PRINT_MAX_DEFAULT
, /* print_max */
106 10, /* repeat_count_threshold */
107 0, /* output_format */
109 0, /* stop_print_at_null */
110 0, /* print_array_indexes */
112 1, /* static_field_print */
113 1, /* pascal_static_field_print */
116 1, /* symbol_print */
117 PRINT_MAX_DEPTH_DEFAULT
, /* max_depth */
121 /* Initialize *OPTS to be a copy of the user print options. */
123 get_user_print_options (struct value_print_options
*opts
)
125 *opts
= user_print_options
;
128 /* Initialize *OPTS to be a copy of the user print options, but with
129 pretty-formatting disabled. */
131 get_no_prettyformat_print_options (struct value_print_options
*opts
)
133 *opts
= user_print_options
;
134 opts
->prettyformat
= Val_no_prettyformat
;
137 /* Initialize *OPTS to be a copy of the user print options, but using
138 FORMAT as the formatting option. */
140 get_formatted_print_options (struct value_print_options
*opts
,
143 *opts
= user_print_options
;
144 opts
->format
= format
;
148 show_print_max (struct ui_file
*file
, int from_tty
,
149 struct cmd_list_element
*c
, const char *value
)
151 fprintf_filtered (file
,
152 _("Limit on string chars or array "
153 "elements to print is %s.\n"),
158 /* Default input and output radixes, and output format letter. */
160 unsigned input_radix
= 10;
162 show_input_radix (struct ui_file
*file
, int from_tty
,
163 struct cmd_list_element
*c
, const char *value
)
165 fprintf_filtered (file
,
166 _("Default input radix for entering numbers is %s.\n"),
170 unsigned output_radix
= 10;
172 show_output_radix (struct ui_file
*file
, int from_tty
,
173 struct cmd_list_element
*c
, const char *value
)
175 fprintf_filtered (file
,
176 _("Default output radix for printing of values is %s.\n"),
180 /* By default we print arrays without printing the index of each element in
181 the array. This behavior can be changed by setting PRINT_ARRAY_INDEXES. */
184 show_print_array_indexes (struct ui_file
*file
, int from_tty
,
185 struct cmd_list_element
*c
, const char *value
)
187 fprintf_filtered (file
, _("Printing of array indexes is %s.\n"), value
);
190 /* Print repeat counts if there are more than this many repetitions of an
191 element in an array. Referenced by the low level language dependent
195 show_repeat_count_threshold (struct ui_file
*file
, int from_tty
,
196 struct cmd_list_element
*c
, const char *value
)
198 fprintf_filtered (file
, _("Threshold for repeated print elements is %s.\n"),
202 /* If nonzero, stops printing of char arrays at first null. */
205 show_stop_print_at_null (struct ui_file
*file
, int from_tty
,
206 struct cmd_list_element
*c
, const char *value
)
208 fprintf_filtered (file
,
209 _("Printing of char arrays to stop "
210 "at first null char is %s.\n"),
214 /* Controls pretty printing of structures. */
217 show_prettyformat_structs (struct ui_file
*file
, int from_tty
,
218 struct cmd_list_element
*c
, const char *value
)
220 fprintf_filtered (file
, _("Pretty formatting of structures is %s.\n"), value
);
223 /* Controls pretty printing of arrays. */
226 show_prettyformat_arrays (struct ui_file
*file
, int from_tty
,
227 struct cmd_list_element
*c
, const char *value
)
229 fprintf_filtered (file
, _("Pretty formatting of arrays is %s.\n"), value
);
232 /* If nonzero, causes unions inside structures or other unions to be
236 show_unionprint (struct ui_file
*file
, int from_tty
,
237 struct cmd_list_element
*c
, const char *value
)
239 fprintf_filtered (file
,
240 _("Printing of unions interior to structures is %s.\n"),
244 /* If nonzero, causes machine addresses to be printed in certain contexts. */
247 show_addressprint (struct ui_file
*file
, int from_tty
,
248 struct cmd_list_element
*c
, const char *value
)
250 fprintf_filtered (file
, _("Printing of addresses is %s.\n"), value
);
254 show_symbol_print (struct ui_file
*file
, int from_tty
,
255 struct cmd_list_element
*c
, const char *value
)
257 fprintf_filtered (file
,
258 _("Printing of symbols when printing pointers is %s.\n"),
264 /* A helper function for val_print. When printing in "summary" mode,
265 we want to print scalar arguments, but not aggregate arguments.
266 This function distinguishes between the two. */
269 val_print_scalar_type_p (struct type
*type
)
271 type
= check_typedef (type
);
272 while (TYPE_IS_REFERENCE (type
))
274 type
= TYPE_TARGET_TYPE (type
);
275 type
= check_typedef (type
);
277 switch (TYPE_CODE (type
))
279 case TYPE_CODE_ARRAY
:
280 case TYPE_CODE_STRUCT
:
281 case TYPE_CODE_UNION
:
283 case TYPE_CODE_STRING
:
290 /* A helper function for val_print. When printing with limited depth we
291 want to print string and scalar arguments, but not aggregate arguments.
292 This function distinguishes between the two. */
295 val_print_scalar_or_string_type_p (struct type
*type
,
296 const struct language_defn
*language
)
298 return (val_print_scalar_type_p (type
)
299 || language
->la_is_string_type_p (type
));
302 /* See its definition in value.h. */
305 valprint_check_validity (struct ui_file
*stream
,
307 LONGEST embedded_offset
,
308 const struct value
*val
)
310 type
= check_typedef (type
);
312 if (type_not_associated (type
))
314 val_print_not_associated (stream
);
318 if (type_not_allocated (type
))
320 val_print_not_allocated (stream
);
324 if (TYPE_CODE (type
) != TYPE_CODE_UNION
325 && TYPE_CODE (type
) != TYPE_CODE_STRUCT
326 && TYPE_CODE (type
) != TYPE_CODE_ARRAY
)
328 if (value_bits_any_optimized_out (val
,
329 TARGET_CHAR_BIT
* embedded_offset
,
330 TARGET_CHAR_BIT
* TYPE_LENGTH (type
)))
332 val_print_optimized_out (val
, stream
);
336 if (value_bits_synthetic_pointer (val
, TARGET_CHAR_BIT
* embedded_offset
,
337 TARGET_CHAR_BIT
* TYPE_LENGTH (type
)))
339 const int is_ref
= TYPE_CODE (type
) == TYPE_CODE_REF
;
340 int ref_is_addressable
= 0;
344 const struct value
*deref_val
= coerce_ref_if_computed (val
);
346 if (deref_val
!= NULL
)
347 ref_is_addressable
= value_lval_const (deref_val
) == lval_memory
;
350 if (!is_ref
|| !ref_is_addressable
)
351 fputs_styled (_("<synthetic pointer>"), metadata_style
.style (),
354 /* C++ references should be valid even if they're synthetic. */
358 if (!value_bytes_available (val
, embedded_offset
, TYPE_LENGTH (type
)))
360 val_print_unavailable (stream
);
369 val_print_optimized_out (const struct value
*val
, struct ui_file
*stream
)
371 if (val
!= NULL
&& value_lval_const (val
) == lval_register
)
372 val_print_not_saved (stream
);
374 fprintf_styled (stream
, metadata_style
.style (), _("<optimized out>"));
378 val_print_not_saved (struct ui_file
*stream
)
380 fprintf_styled (stream
, metadata_style
.style (), _("<not saved>"));
384 val_print_unavailable (struct ui_file
*stream
)
386 fprintf_styled (stream
, metadata_style
.style (), _("<unavailable>"));
390 val_print_invalid_address (struct ui_file
*stream
)
392 fprintf_styled (stream
, metadata_style
.style (), _("<invalid address>"));
395 /* Print a pointer based on the type of its target.
397 Arguments to this functions are roughly the same as those in
398 generic_val_print. A difference is that ADDRESS is the address to print,
399 with embedded_offset already added. ELTTYPE represents
400 the pointed type after check_typedef. */
403 print_unpacked_pointer (struct type
*type
, struct type
*elttype
,
404 CORE_ADDR address
, struct ui_file
*stream
,
405 const struct value_print_options
*options
)
407 struct gdbarch
*gdbarch
= get_type_arch (type
);
409 if (TYPE_CODE (elttype
) == TYPE_CODE_FUNC
)
411 /* Try to print what function it points to. */
412 print_function_pointer_address (options
, gdbarch
, address
, stream
);
416 if (options
->symbol_print
)
417 print_address_demangle (options
, gdbarch
, address
, stream
, demangle
);
418 else if (options
->addressprint
)
419 fputs_filtered (paddress (gdbarch
, address
), stream
);
422 /* generic_val_print helper for TYPE_CODE_ARRAY. */
425 generic_val_print_array (struct type
*type
,
426 int embedded_offset
, CORE_ADDR address
,
427 struct ui_file
*stream
, int recurse
,
428 struct value
*original_value
,
429 const struct value_print_options
*options
,
431 generic_val_print_decorations
*decorations
)
433 struct type
*unresolved_elttype
= TYPE_TARGET_TYPE (type
);
434 struct type
*elttype
= check_typedef (unresolved_elttype
);
436 if (TYPE_LENGTH (type
) > 0 && TYPE_LENGTH (unresolved_elttype
) > 0)
438 LONGEST low_bound
, high_bound
;
440 if (!get_array_bounds (type
, &low_bound
, &high_bound
))
441 error (_("Could not determine the array high bound"));
443 if (options
->prettyformat_arrays
)
445 print_spaces_filtered (2 + 2 * recurse
, stream
);
448 fputs_filtered (decorations
->array_start
, stream
);
449 val_print_array_elements (type
, embedded_offset
,
451 recurse
, original_value
, options
, 0);
452 fputs_filtered (decorations
->array_end
, stream
);
456 /* Array of unspecified length: treat like pointer to first elt. */
457 print_unpacked_pointer (type
, elttype
, address
+ embedded_offset
, stream
,
463 /* generic_val_print helper for TYPE_CODE_PTR. */
466 generic_val_print_ptr (struct type
*type
,
467 int embedded_offset
, struct ui_file
*stream
,
468 struct value
*original_value
,
469 const struct value_print_options
*options
)
471 struct gdbarch
*gdbarch
= get_type_arch (type
);
472 int unit_size
= gdbarch_addressable_memory_unit_size (gdbarch
);
474 if (options
->format
&& options
->format
!= 's')
476 val_print_scalar_formatted (type
, embedded_offset
,
477 original_value
, options
, 0, stream
);
481 struct type
*unresolved_elttype
= TYPE_TARGET_TYPE(type
);
482 struct type
*elttype
= check_typedef (unresolved_elttype
);
483 const gdb_byte
*valaddr
= value_contents_for_printing (original_value
);
484 CORE_ADDR addr
= unpack_pointer (type
,
485 valaddr
+ embedded_offset
* unit_size
);
487 print_unpacked_pointer (type
, elttype
, addr
, stream
, options
);
492 /* generic_val_print helper for TYPE_CODE_MEMBERPTR. */
495 generic_val_print_memberptr (struct type
*type
,
496 int embedded_offset
, struct ui_file
*stream
,
497 struct value
*original_value
,
498 const struct value_print_options
*options
)
500 val_print_scalar_formatted (type
, embedded_offset
,
501 original_value
, options
, 0, stream
);
504 /* Print '@' followed by the address contained in ADDRESS_BUFFER. */
507 print_ref_address (struct type
*type
, const gdb_byte
*address_buffer
,
508 int embedded_offset
, struct ui_file
*stream
)
510 struct gdbarch
*gdbarch
= get_type_arch (type
);
512 if (address_buffer
!= NULL
)
515 = extract_typed_address (address_buffer
+ embedded_offset
, type
);
517 fprintf_filtered (stream
, "@");
518 fputs_filtered (paddress (gdbarch
, address
), stream
);
520 /* Else: we have a non-addressable value, such as a DW_AT_const_value. */
523 /* If VAL is addressable, return the value contents buffer of a value that
524 represents a pointer to VAL. Otherwise return NULL. */
526 static const gdb_byte
*
527 get_value_addr_contents (struct value
*deref_val
)
529 gdb_assert (deref_val
!= NULL
);
531 if (value_lval_const (deref_val
) == lval_memory
)
532 return value_contents_for_printing_const (value_addr (deref_val
));
535 /* We have a non-addressable value, such as a DW_AT_const_value. */
540 /* generic_val_print helper for TYPE_CODE_{RVALUE_,}REF. */
543 generic_val_print_ref (struct type
*type
,
544 int embedded_offset
, struct ui_file
*stream
, int recurse
,
545 struct value
*original_value
,
546 const struct value_print_options
*options
)
548 struct type
*elttype
= check_typedef (TYPE_TARGET_TYPE (type
));
549 struct value
*deref_val
= NULL
;
550 const int value_is_synthetic
551 = value_bits_synthetic_pointer (original_value
,
552 TARGET_CHAR_BIT
* embedded_offset
,
553 TARGET_CHAR_BIT
* TYPE_LENGTH (type
));
554 const int must_coerce_ref
= ((options
->addressprint
&& value_is_synthetic
)
555 || options
->deref_ref
);
556 const int type_is_defined
= TYPE_CODE (elttype
) != TYPE_CODE_UNDEF
;
557 const gdb_byte
*valaddr
= value_contents_for_printing (original_value
);
559 if (must_coerce_ref
&& type_is_defined
)
561 deref_val
= coerce_ref_if_computed (original_value
);
563 if (deref_val
!= NULL
)
565 /* More complicated computed references are not supported. */
566 gdb_assert (embedded_offset
== 0);
569 deref_val
= value_at (TYPE_TARGET_TYPE (type
),
570 unpack_pointer (type
, valaddr
+ embedded_offset
));
572 /* Else, original_value isn't a synthetic reference or we don't have to print
573 the reference's contents.
575 Notice that for references to TYPE_CODE_STRUCT, 'set print object on' will
576 cause original_value to be a not_lval instead of an lval_computed,
577 which will make value_bits_synthetic_pointer return false.
578 This happens because if options->objectprint is true, c_value_print will
579 overwrite original_value's contents with the result of coercing
580 the reference through value_addr, and then set its type back to
581 TYPE_CODE_REF. In that case we don't have to coerce the reference again;
582 we can simply treat it as non-synthetic and move on. */
584 if (options
->addressprint
)
586 const gdb_byte
*address
= (value_is_synthetic
&& type_is_defined
587 ? get_value_addr_contents (deref_val
)
590 print_ref_address (type
, address
, embedded_offset
, stream
);
592 if (options
->deref_ref
)
593 fputs_filtered (": ", stream
);
596 if (options
->deref_ref
)
599 common_val_print (deref_val
, stream
, recurse
, options
,
602 fputs_filtered ("???", stream
);
606 /* Helper function for generic_val_print_enum.
607 This is also used to print enums in TYPE_CODE_FLAGS values. */
610 generic_val_print_enum_1 (struct type
*type
, LONGEST val
,
611 struct ui_file
*stream
)
616 len
= TYPE_NFIELDS (type
);
617 for (i
= 0; i
< len
; i
++)
620 if (val
== TYPE_FIELD_ENUMVAL (type
, i
))
627 fputs_filtered (TYPE_FIELD_NAME (type
, i
), stream
);
629 else if (TYPE_FLAG_ENUM (type
))
633 /* We have a "flag" enum, so we try to decompose it into
634 pieces as appropriate. A flag enum has disjoint
635 constants by definition. */
636 fputs_filtered ("(", stream
);
637 for (i
= 0; i
< len
; ++i
)
641 if ((val
& TYPE_FIELD_ENUMVAL (type
, i
)) != 0)
644 fputs_filtered (" | ", stream
);
647 val
&= ~TYPE_FIELD_ENUMVAL (type
, i
);
648 fputs_filtered (TYPE_FIELD_NAME (type
, i
), stream
);
652 if (first
|| val
!= 0)
655 fputs_filtered (" | ", stream
);
656 fputs_filtered ("unknown: ", stream
);
657 print_longest (stream
, 'd', 0, val
);
660 fputs_filtered (")", stream
);
663 print_longest (stream
, 'd', 0, val
);
666 /* generic_val_print helper for TYPE_CODE_ENUM. */
669 generic_val_print_enum (struct type
*type
,
670 int embedded_offset
, struct ui_file
*stream
,
671 struct value
*original_value
,
672 const struct value_print_options
*options
)
675 struct gdbarch
*gdbarch
= get_type_arch (type
);
676 int unit_size
= gdbarch_addressable_memory_unit_size (gdbarch
);
680 val_print_scalar_formatted (type
, embedded_offset
,
681 original_value
, options
, 0, stream
);
685 const gdb_byte
*valaddr
= value_contents_for_printing (original_value
);
687 val
= unpack_long (type
, valaddr
+ embedded_offset
* unit_size
);
689 generic_val_print_enum_1 (type
, val
, stream
);
693 /* generic_val_print helper for TYPE_CODE_FLAGS. */
696 generic_val_print_flags (struct type
*type
,
697 int embedded_offset
, struct ui_file
*stream
,
698 struct value
*original_value
,
699 const struct value_print_options
*options
)
703 val_print_scalar_formatted (type
, embedded_offset
, original_value
,
707 const gdb_byte
*valaddr
= value_contents_for_printing (original_value
);
709 val_print_type_code_flags (type
, valaddr
+ embedded_offset
, stream
);
713 /* generic_val_print helper for TYPE_CODE_FUNC and TYPE_CODE_METHOD. */
716 generic_val_print_func (struct type
*type
,
717 int embedded_offset
, CORE_ADDR address
,
718 struct ui_file
*stream
,
719 struct value
*original_value
,
720 const struct value_print_options
*options
)
722 struct gdbarch
*gdbarch
= get_type_arch (type
);
726 val_print_scalar_formatted (type
, embedded_offset
,
727 original_value
, options
, 0, stream
);
731 /* FIXME, we should consider, at least for ANSI C language,
732 eliminating the distinction made between FUNCs and POINTERs
734 fprintf_filtered (stream
, "{");
735 type_print (type
, "", stream
, -1);
736 fprintf_filtered (stream
, "} ");
737 /* Try to print what function it points to, and its address. */
738 print_address_demangle (options
, gdbarch
, address
, stream
, demangle
);
742 /* generic_val_print helper for TYPE_CODE_BOOL. */
745 generic_val_print_bool (struct type
*type
,
746 int embedded_offset
, struct ui_file
*stream
,
747 struct value
*original_value
,
748 const struct value_print_options
*options
,
749 const struct generic_val_print_decorations
*decorations
)
752 struct gdbarch
*gdbarch
= get_type_arch (type
);
753 int unit_size
= gdbarch_addressable_memory_unit_size (gdbarch
);
755 if (options
->format
|| options
->output_format
)
757 struct value_print_options opts
= *options
;
758 opts
.format
= (options
->format
? options
->format
759 : options
->output_format
);
760 val_print_scalar_formatted (type
, embedded_offset
,
761 original_value
, &opts
, 0, stream
);
765 const gdb_byte
*valaddr
= value_contents_for_printing (original_value
);
767 val
= unpack_long (type
, valaddr
+ embedded_offset
* unit_size
);
769 fputs_filtered (decorations
->false_name
, stream
);
771 fputs_filtered (decorations
->true_name
, stream
);
773 print_longest (stream
, 'd', 0, val
);
777 /* generic_val_print helper for TYPE_CODE_INT. */
780 generic_val_print_int (struct type
*type
,
781 int embedded_offset
, struct ui_file
*stream
,
782 struct value
*original_value
,
783 const struct value_print_options
*options
)
785 struct value_print_options opts
= *options
;
787 opts
.format
= (options
->format
? options
->format
788 : options
->output_format
);
789 val_print_scalar_formatted (type
, embedded_offset
,
790 original_value
, &opts
, 0, stream
);
793 /* generic_val_print helper for TYPE_CODE_CHAR. */
796 generic_val_print_char (struct type
*type
, struct type
*unresolved_type
,
798 struct ui_file
*stream
,
799 struct value
*original_value
,
800 const struct value_print_options
*options
)
803 struct gdbarch
*gdbarch
= get_type_arch (type
);
804 int unit_size
= gdbarch_addressable_memory_unit_size (gdbarch
);
806 if (options
->format
|| options
->output_format
)
808 struct value_print_options opts
= *options
;
810 opts
.format
= (options
->format
? options
->format
811 : options
->output_format
);
812 val_print_scalar_formatted (type
, embedded_offset
,
813 original_value
, &opts
, 0, stream
);
817 const gdb_byte
*valaddr
= value_contents_for_printing (original_value
);
819 val
= unpack_long (type
, valaddr
+ embedded_offset
* unit_size
);
820 if (TYPE_UNSIGNED (type
))
821 fprintf_filtered (stream
, "%u", (unsigned int) val
);
823 fprintf_filtered (stream
, "%d", (int) val
);
824 fputs_filtered (" ", stream
);
825 LA_PRINT_CHAR (val
, unresolved_type
, stream
);
829 /* generic_val_print helper for TYPE_CODE_FLT and TYPE_CODE_DECFLOAT. */
832 generic_val_print_float (struct type
*type
,
833 int embedded_offset
, struct ui_file
*stream
,
834 struct value
*original_value
,
835 const struct value_print_options
*options
)
837 struct gdbarch
*gdbarch
= get_type_arch (type
);
838 int unit_size
= gdbarch_addressable_memory_unit_size (gdbarch
);
842 val_print_scalar_formatted (type
, embedded_offset
,
843 original_value
, options
, 0, stream
);
847 const gdb_byte
*valaddr
= value_contents_for_printing (original_value
);
849 print_floating (valaddr
+ embedded_offset
* unit_size
, type
, stream
);
853 /* generic_val_print helper for TYPE_CODE_COMPLEX. */
856 generic_val_print_complex (struct type
*type
,
857 int embedded_offset
, struct ui_file
*stream
,
858 struct value
*original_value
,
859 const struct value_print_options
*options
,
860 const struct generic_val_print_decorations
863 struct gdbarch
*gdbarch
= get_type_arch (type
);
864 int unit_size
= gdbarch_addressable_memory_unit_size (gdbarch
);
865 const gdb_byte
*valaddr
= value_contents_for_printing (original_value
);
867 fprintf_filtered (stream
, "%s", decorations
->complex_prefix
);
869 val_print_scalar_formatted (TYPE_TARGET_TYPE (type
),
870 embedded_offset
, original_value
, options
, 0,
873 print_floating (valaddr
+ embedded_offset
* unit_size
,
874 TYPE_TARGET_TYPE (type
), stream
);
875 fprintf_filtered (stream
, "%s", decorations
->complex_infix
);
877 val_print_scalar_formatted (TYPE_TARGET_TYPE (type
),
879 + type_length_units (TYPE_TARGET_TYPE (type
)),
880 original_value
, options
, 0, stream
);
882 print_floating (valaddr
+ embedded_offset
* unit_size
883 + TYPE_LENGTH (TYPE_TARGET_TYPE (type
)),
884 TYPE_TARGET_TYPE (type
), stream
);
885 fprintf_filtered (stream
, "%s", decorations
->complex_suffix
);
888 /* A generic val_print that is suitable for use by language
889 implementations of the la_val_print method. This function can
890 handle most type codes, though not all, notably exception
891 TYPE_CODE_UNION and TYPE_CODE_STRUCT, which must be implemented by
894 Most arguments are as to val_print.
896 The additional DECORATIONS argument can be used to customize the
897 output in some small, language-specific ways. */
900 generic_val_print (struct type
*type
,
901 int embedded_offset
, CORE_ADDR address
,
902 struct ui_file
*stream
, int recurse
,
903 struct value
*original_value
,
904 const struct value_print_options
*options
,
905 const struct generic_val_print_decorations
*decorations
)
907 struct type
*unresolved_type
= type
;
909 type
= check_typedef (type
);
910 switch (TYPE_CODE (type
))
912 case TYPE_CODE_ARRAY
:
913 generic_val_print_array (type
, embedded_offset
, address
, stream
,
914 recurse
, original_value
, options
, decorations
);
917 case TYPE_CODE_MEMBERPTR
:
918 generic_val_print_memberptr (type
, embedded_offset
, stream
,
919 original_value
, options
);
923 generic_val_print_ptr (type
, embedded_offset
, stream
,
924 original_value
, options
);
928 case TYPE_CODE_RVALUE_REF
:
929 generic_val_print_ref (type
, embedded_offset
, stream
, recurse
,
930 original_value
, options
);
934 generic_val_print_enum (type
, embedded_offset
, stream
,
935 original_value
, options
);
938 case TYPE_CODE_FLAGS
:
939 generic_val_print_flags (type
, embedded_offset
, stream
,
940 original_value
, options
);
944 case TYPE_CODE_METHOD
:
945 generic_val_print_func (type
, embedded_offset
, address
, stream
,
946 original_value
, options
);
950 generic_val_print_bool (type
, embedded_offset
, stream
,
951 original_value
, options
, decorations
);
954 case TYPE_CODE_RANGE
:
955 /* FIXME: create_static_range_type does not set the unsigned bit in a
956 range type (I think it probably should copy it from the
957 target type), so we won't print values which are too large to
958 fit in a signed integer correctly. */
959 /* FIXME: Doesn't handle ranges of enums correctly. (Can't just
960 print with the target type, though, because the size of our
961 type and the target type might differ). */
966 generic_val_print_int (type
, embedded_offset
, stream
,
967 original_value
, options
);
971 generic_val_print_char (type
, unresolved_type
, embedded_offset
,
972 stream
, original_value
, options
);
976 case TYPE_CODE_DECFLOAT
:
977 generic_val_print_float (type
, embedded_offset
, stream
,
978 original_value
, options
);
982 fputs_filtered (decorations
->void_name
, stream
);
985 case TYPE_CODE_ERROR
:
986 fprintf_filtered (stream
, "%s", TYPE_ERROR_NAME (type
));
989 case TYPE_CODE_UNDEF
:
990 /* This happens (without TYPE_STUB set) on systems which don't use
991 dbx xrefs (NO_DBX_XREFS in gcc) if a file has a "struct foo *bar"
992 and no complete type for struct foo in that file. */
993 fprintf_styled (stream
, metadata_style
.style (), _("<incomplete type>"));
996 case TYPE_CODE_COMPLEX
:
997 generic_val_print_complex (type
, embedded_offset
, stream
,
998 original_value
, options
, decorations
);
1001 case TYPE_CODE_UNION
:
1002 case TYPE_CODE_STRUCT
:
1003 case TYPE_CODE_METHODPTR
:
1005 error (_("Unhandled type code %d in symbol table."),
1010 /* Print using the given LANGUAGE the data of type TYPE located at
1011 VAL's contents buffer + EMBEDDED_OFFSET (within GDB), which came
1012 from the inferior at address ADDRESS + EMBEDDED_OFFSET, onto
1013 stdio stream STREAM according to OPTIONS. VAL is the whole object
1014 that came from ADDRESS.
1016 The language printers will pass down an adjusted EMBEDDED_OFFSET to
1017 further helper subroutines as subfields of TYPE are printed. In
1018 such cases, VAL is passed down unadjusted, so
1019 that VAL can be queried for metadata about the contents data being
1020 printed, using EMBEDDED_OFFSET as an offset into VAL's contents
1021 buffer. For example: "has this field been optimized out", or "I'm
1022 printing an object while inspecting a traceframe; has this
1023 particular piece of data been collected?".
1025 RECURSE indicates the amount of indentation to supply before
1026 continuation lines; this amount is roughly twice the value of
1030 val_print (struct type
*type
, LONGEST embedded_offset
,
1031 CORE_ADDR address
, struct ui_file
*stream
, int recurse
,
1033 const struct value_print_options
*options
,
1034 const struct language_defn
*language
)
1037 struct value_print_options local_opts
= *options
;
1038 struct type
*real_type
= check_typedef (type
);
1040 if (local_opts
.prettyformat
== Val_prettyformat_default
)
1041 local_opts
.prettyformat
= (local_opts
.prettyformat_structs
1042 ? Val_prettyformat
: Val_no_prettyformat
);
1046 /* Ensure that the type is complete and not just a stub. If the type is
1047 only a stub and we can't find and substitute its complete type, then
1048 print appropriate string and return. */
1050 if (TYPE_STUB (real_type
))
1052 fprintf_styled (stream
, metadata_style
.style (), _("<incomplete type>"));
1056 if (!valprint_check_validity (stream
, real_type
, embedded_offset
, val
))
1061 ret
= apply_ext_lang_val_pretty_printer (type
, embedded_offset
,
1062 address
, stream
, recurse
,
1063 val
, options
, language
);
1068 /* Handle summary mode. If the value is a scalar, print it;
1069 otherwise, print an ellipsis. */
1070 if (options
->summary
&& !val_print_scalar_type_p (type
))
1072 fprintf_filtered (stream
, "...");
1076 /* If this value is too deep then don't print it. */
1077 if (!val_print_scalar_or_string_type_p (type
, language
)
1078 && val_print_check_max_depth (stream
, recurse
, options
, language
))
1083 language
->la_val_print (type
, embedded_offset
, address
,
1084 stream
, recurse
, val
,
1087 catch (const gdb_exception_error
&except
)
1089 fprintf_styled (stream
, metadata_style
.style (),
1090 _("<error reading variable>"));
1094 /* See valprint.h. */
1097 val_print_check_max_depth (struct ui_file
*stream
, int recurse
,
1098 const struct value_print_options
*options
,
1099 const struct language_defn
*language
)
1101 if (options
->max_depth
> -1 && recurse
>= options
->max_depth
)
1103 gdb_assert (language
->la_struct_too_deep_ellipsis
!= NULL
);
1104 fputs_filtered (language
->la_struct_too_deep_ellipsis
, stream
);
1111 /* Check whether the value VAL is printable. Return 1 if it is;
1112 return 0 and print an appropriate error message to STREAM according to
1113 OPTIONS if it is not. */
1116 value_check_printable (struct value
*val
, struct ui_file
*stream
,
1117 const struct value_print_options
*options
)
1121 fprintf_styled (stream
, metadata_style
.style (),
1122 _("<address of value unknown>"));
1126 if (value_entirely_optimized_out (val
))
1128 if (options
->summary
&& !val_print_scalar_type_p (value_type (val
)))
1129 fprintf_filtered (stream
, "...");
1131 val_print_optimized_out (val
, stream
);
1135 if (value_entirely_unavailable (val
))
1137 if (options
->summary
&& !val_print_scalar_type_p (value_type (val
)))
1138 fprintf_filtered (stream
, "...");
1140 val_print_unavailable (stream
);
1144 if (TYPE_CODE (value_type (val
)) == TYPE_CODE_INTERNAL_FUNCTION
)
1146 fprintf_styled (stream
, metadata_style
.style (),
1147 _("<internal function %s>"),
1148 value_internal_function_name (val
));
1152 if (type_not_associated (value_type (val
)))
1154 val_print_not_associated (stream
);
1158 if (type_not_allocated (value_type (val
)))
1160 val_print_not_allocated (stream
);
1167 /* Print using the given LANGUAGE the value VAL onto stream STREAM according
1170 This is a preferable interface to val_print, above, because it uses
1171 GDB's value mechanism. */
1174 common_val_print (struct value
*val
, struct ui_file
*stream
, int recurse
,
1175 const struct value_print_options
*options
,
1176 const struct language_defn
*language
)
1178 if (!value_check_printable (val
, stream
, options
))
1181 if (language
->la_language
== language_ada
)
1182 /* The value might have a dynamic type, which would cause trouble
1183 below when trying to extract the value contents (since the value
1184 size is determined from the type size which is unknown). So
1185 get a fixed representation of our value. */
1186 val
= ada_to_fixed_value (val
);
1188 if (value_lazy (val
))
1189 value_fetch_lazy (val
);
1191 val_print (value_type (val
),
1192 value_embedded_offset (val
), value_address (val
),
1194 val
, options
, language
);
1197 /* Print on stream STREAM the value VAL according to OPTIONS. The value
1198 is printed using the current_language syntax. */
1201 value_print (struct value
*val
, struct ui_file
*stream
,
1202 const struct value_print_options
*options
)
1204 if (!value_check_printable (val
, stream
, options
))
1210 = apply_ext_lang_val_pretty_printer (value_type (val
),
1211 value_embedded_offset (val
),
1212 value_address (val
),
1214 val
, options
, current_language
);
1220 LA_VALUE_PRINT (val
, stream
, options
);
1224 val_print_type_code_flags (struct type
*type
, const gdb_byte
*valaddr
,
1225 struct ui_file
*stream
)
1227 ULONGEST val
= unpack_long (type
, valaddr
);
1228 int field
, nfields
= TYPE_NFIELDS (type
);
1229 struct gdbarch
*gdbarch
= get_type_arch (type
);
1230 struct type
*bool_type
= builtin_type (gdbarch
)->builtin_bool
;
1232 fputs_filtered ("[", stream
);
1233 for (field
= 0; field
< nfields
; field
++)
1235 if (TYPE_FIELD_NAME (type
, field
)[0] != '\0')
1237 struct type
*field_type
= TYPE_FIELD_TYPE (type
, field
);
1239 if (field_type
== bool_type
1240 /* We require boolean types here to be one bit wide. This is a
1241 problematic place to notify the user of an internal error
1242 though. Instead just fall through and print the field as an
1244 && TYPE_FIELD_BITSIZE (type
, field
) == 1)
1246 if (val
& ((ULONGEST
)1 << TYPE_FIELD_BITPOS (type
, field
)))
1247 fprintf_filtered (stream
, " %s",
1248 TYPE_FIELD_NAME (type
, field
));
1252 unsigned field_len
= TYPE_FIELD_BITSIZE (type
, field
);
1254 = val
>> (TYPE_FIELD_BITPOS (type
, field
) - field_len
+ 1);
1256 if (field_len
< sizeof (ULONGEST
) * TARGET_CHAR_BIT
)
1257 field_val
&= ((ULONGEST
) 1 << field_len
) - 1;
1258 fprintf_filtered (stream
, " %s=",
1259 TYPE_FIELD_NAME (type
, field
));
1260 if (TYPE_CODE (field_type
) == TYPE_CODE_ENUM
)
1261 generic_val_print_enum_1 (field_type
, field_val
, stream
);
1263 print_longest (stream
, 'd', 0, field_val
);
1267 fputs_filtered (" ]", stream
);
1270 /* Print a scalar of data of type TYPE, pointed to in GDB by VALADDR,
1271 according to OPTIONS and SIZE on STREAM. Format i is not supported
1274 This is how the elements of an array or structure are printed
1278 val_print_scalar_formatted (struct type
*type
,
1279 LONGEST embedded_offset
,
1281 const struct value_print_options
*options
,
1283 struct ui_file
*stream
)
1285 struct gdbarch
*arch
= get_type_arch (type
);
1286 int unit_size
= gdbarch_addressable_memory_unit_size (arch
);
1288 gdb_assert (val
!= NULL
);
1290 /* If we get here with a string format, try again without it. Go
1291 all the way back to the language printers, which may call us
1293 if (options
->format
== 's')
1295 struct value_print_options opts
= *options
;
1298 val_print (type
, embedded_offset
, 0, stream
, 0, val
, &opts
,
1303 /* value_contents_for_printing fetches all VAL's contents. They are
1304 needed to check whether VAL is optimized-out or unavailable
1306 const gdb_byte
*valaddr
= value_contents_for_printing (val
);
1308 /* A scalar object that does not have all bits available can't be
1309 printed, because all bits contribute to its representation. */
1310 if (value_bits_any_optimized_out (val
,
1311 TARGET_CHAR_BIT
* embedded_offset
,
1312 TARGET_CHAR_BIT
* TYPE_LENGTH (type
)))
1313 val_print_optimized_out (val
, stream
);
1314 else if (!value_bytes_available (val
, embedded_offset
, TYPE_LENGTH (type
)))
1315 val_print_unavailable (stream
);
1317 print_scalar_formatted (valaddr
+ embedded_offset
* unit_size
, type
,
1318 options
, size
, stream
);
1321 /* Print a number according to FORMAT which is one of d,u,x,o,b,h,w,g.
1322 The raison d'etre of this function is to consolidate printing of
1323 LONG_LONG's into this one function. The format chars b,h,w,g are
1324 from print_scalar_formatted(). Numbers are printed using C
1327 USE_C_FORMAT means to use C format in all cases. Without it,
1328 'o' and 'x' format do not include the standard C radix prefix
1331 Hilfinger/2004-09-09: USE_C_FORMAT was originally called USE_LOCAL
1332 and was intended to request formatting according to the current
1333 language and would be used for most integers that GDB prints. The
1334 exceptional cases were things like protocols where the format of
1335 the integer is a protocol thing, not a user-visible thing). The
1336 parameter remains to preserve the information of what things might
1337 be printed with language-specific format, should we ever resurrect
1341 print_longest (struct ui_file
*stream
, int format
, int use_c_format
,
1349 val
= int_string (val_long
, 10, 1, 0, 1); break;
1351 val
= int_string (val_long
, 10, 0, 0, 1); break;
1353 val
= int_string (val_long
, 16, 0, 0, use_c_format
); break;
1355 val
= int_string (val_long
, 16, 0, 2, 1); break;
1357 val
= int_string (val_long
, 16, 0, 4, 1); break;
1359 val
= int_string (val_long
, 16, 0, 8, 1); break;
1361 val
= int_string (val_long
, 16, 0, 16, 1); break;
1364 val
= int_string (val_long
, 8, 0, 0, use_c_format
); break;
1366 internal_error (__FILE__
, __LINE__
,
1367 _("failed internal consistency check"));
1369 fputs_filtered (val
, stream
);
1372 /* This used to be a macro, but I don't think it is called often enough
1373 to merit such treatment. */
1374 /* Convert a LONGEST to an int. This is used in contexts (e.g. number of
1375 arguments to a function, number in a value history, register number, etc.)
1376 where the value must not be larger than can fit in an int. */
1379 longest_to_int (LONGEST arg
)
1381 /* Let the compiler do the work. */
1382 int rtnval
= (int) arg
;
1384 /* Check for overflows or underflows. */
1385 if (sizeof (LONGEST
) > sizeof (int))
1389 error (_("Value out of range."));
1395 /* Print a floating point value of floating-point type TYPE,
1396 pointed to in GDB by VALADDR, on STREAM. */
1399 print_floating (const gdb_byte
*valaddr
, struct type
*type
,
1400 struct ui_file
*stream
)
1402 std::string str
= target_float_to_string (valaddr
, type
);
1403 fputs_filtered (str
.c_str (), stream
);
1407 print_binary_chars (struct ui_file
*stream
, const gdb_byte
*valaddr
,
1408 unsigned len
, enum bfd_endian byte_order
, bool zero_pad
)
1413 bool seen_a_one
= false;
1415 /* Declared "int" so it will be signed.
1416 This ensures that right shift will shift in zeros. */
1418 const int mask
= 0x080;
1420 if (byte_order
== BFD_ENDIAN_BIG
)
1426 /* Every byte has 8 binary characters; peel off
1427 and print from the MSB end. */
1429 for (i
= 0; i
< (HOST_CHAR_BIT
* sizeof (*p
)); i
++)
1431 if (*p
& (mask
>> i
))
1436 if (zero_pad
|| seen_a_one
|| b
== '1')
1437 fputc_filtered (b
, stream
);
1445 for (p
= valaddr
+ len
- 1;
1449 for (i
= 0; i
< (HOST_CHAR_BIT
* sizeof (*p
)); i
++)
1451 if (*p
& (mask
>> i
))
1456 if (zero_pad
|| seen_a_one
|| b
== '1')
1457 fputc_filtered (b
, stream
);
1464 /* When not zero-padding, ensure that something is printed when the
1466 if (!zero_pad
&& !seen_a_one
)
1467 fputc_filtered ('0', stream
);
1470 /* A helper for print_octal_chars that emits a single octal digit,
1471 optionally suppressing it if is zero and updating SEEN_A_ONE. */
1474 emit_octal_digit (struct ui_file
*stream
, bool *seen_a_one
, int digit
)
1476 if (*seen_a_one
|| digit
!= 0)
1477 fprintf_filtered (stream
, "%o", digit
);
1482 /* VALADDR points to an integer of LEN bytes.
1483 Print it in octal on stream or format it in buf. */
1486 print_octal_chars (struct ui_file
*stream
, const gdb_byte
*valaddr
,
1487 unsigned len
, enum bfd_endian byte_order
)
1490 unsigned char octa1
, octa2
, octa3
, carry
;
1493 /* Octal is 3 bits, which doesn't fit. Yuk. So we have to track
1494 * the extra bits, which cycle every three bytes:
1496 * Byte side: 0 1 2 3
1498 * bit number 123 456 78 | 9 012 345 6 | 78 901 234 | 567 890 12 |
1500 * Octal side: 0 1 carry 3 4 carry ...
1502 * Cycle number: 0 1 2
1504 * But of course we are printing from the high side, so we have to
1505 * figure out where in the cycle we are so that we end up with no
1506 * left over bits at the end.
1508 #define BITS_IN_OCTAL 3
1509 #define HIGH_ZERO 0340
1510 #define LOW_ZERO 0034
1511 #define CARRY_ZERO 0003
1512 static_assert (HIGH_ZERO
+ LOW_ZERO
+ CARRY_ZERO
== 0xff,
1513 "cycle zero constants are wrong");
1514 #define HIGH_ONE 0200
1515 #define MID_ONE 0160
1516 #define LOW_ONE 0016
1517 #define CARRY_ONE 0001
1518 static_assert (HIGH_ONE
+ MID_ONE
+ LOW_ONE
+ CARRY_ONE
== 0xff,
1519 "cycle one constants are wrong");
1520 #define HIGH_TWO 0300
1521 #define MID_TWO 0070
1522 #define LOW_TWO 0007
1523 static_assert (HIGH_TWO
+ MID_TWO
+ LOW_TWO
== 0xff,
1524 "cycle two constants are wrong");
1526 /* For 32 we start in cycle 2, with two bits and one bit carry;
1527 for 64 in cycle in cycle 1, with one bit and a two bit carry. */
1529 cycle
= (len
* HOST_CHAR_BIT
) % BITS_IN_OCTAL
;
1532 fputs_filtered ("0", stream
);
1533 bool seen_a_one
= false;
1534 if (byte_order
== BFD_ENDIAN_BIG
)
1543 /* No carry in, carry out two bits. */
1545 octa1
= (HIGH_ZERO
& *p
) >> 5;
1546 octa2
= (LOW_ZERO
& *p
) >> 2;
1547 carry
= (CARRY_ZERO
& *p
);
1548 emit_octal_digit (stream
, &seen_a_one
, octa1
);
1549 emit_octal_digit (stream
, &seen_a_one
, octa2
);
1553 /* Carry in two bits, carry out one bit. */
1555 octa1
= (carry
<< 1) | ((HIGH_ONE
& *p
) >> 7);
1556 octa2
= (MID_ONE
& *p
) >> 4;
1557 octa3
= (LOW_ONE
& *p
) >> 1;
1558 carry
= (CARRY_ONE
& *p
);
1559 emit_octal_digit (stream
, &seen_a_one
, octa1
);
1560 emit_octal_digit (stream
, &seen_a_one
, octa2
);
1561 emit_octal_digit (stream
, &seen_a_one
, octa3
);
1565 /* Carry in one bit, no carry out. */
1567 octa1
= (carry
<< 2) | ((HIGH_TWO
& *p
) >> 6);
1568 octa2
= (MID_TWO
& *p
) >> 3;
1569 octa3
= (LOW_TWO
& *p
);
1571 emit_octal_digit (stream
, &seen_a_one
, octa1
);
1572 emit_octal_digit (stream
, &seen_a_one
, octa2
);
1573 emit_octal_digit (stream
, &seen_a_one
, octa3
);
1577 error (_("Internal error in octal conversion;"));
1581 cycle
= cycle
% BITS_IN_OCTAL
;
1586 for (p
= valaddr
+ len
- 1;
1593 /* Carry out, no carry in */
1595 octa1
= (HIGH_ZERO
& *p
) >> 5;
1596 octa2
= (LOW_ZERO
& *p
) >> 2;
1597 carry
= (CARRY_ZERO
& *p
);
1598 emit_octal_digit (stream
, &seen_a_one
, octa1
);
1599 emit_octal_digit (stream
, &seen_a_one
, octa2
);
1603 /* Carry in, carry out */
1605 octa1
= (carry
<< 1) | ((HIGH_ONE
& *p
) >> 7);
1606 octa2
= (MID_ONE
& *p
) >> 4;
1607 octa3
= (LOW_ONE
& *p
) >> 1;
1608 carry
= (CARRY_ONE
& *p
);
1609 emit_octal_digit (stream
, &seen_a_one
, octa1
);
1610 emit_octal_digit (stream
, &seen_a_one
, octa2
);
1611 emit_octal_digit (stream
, &seen_a_one
, octa3
);
1615 /* Carry in, no carry out */
1617 octa1
= (carry
<< 2) | ((HIGH_TWO
& *p
) >> 6);
1618 octa2
= (MID_TWO
& *p
) >> 3;
1619 octa3
= (LOW_TWO
& *p
);
1621 emit_octal_digit (stream
, &seen_a_one
, octa1
);
1622 emit_octal_digit (stream
, &seen_a_one
, octa2
);
1623 emit_octal_digit (stream
, &seen_a_one
, octa3
);
1627 error (_("Internal error in octal conversion;"));
1631 cycle
= cycle
% BITS_IN_OCTAL
;
1637 /* Possibly negate the integer represented by BYTES. It contains LEN
1638 bytes in the specified byte order. If the integer is negative,
1639 copy it into OUT_VEC, negate it, and return true. Otherwise, do
1640 nothing and return false. */
1643 maybe_negate_by_bytes (const gdb_byte
*bytes
, unsigned len
,
1644 enum bfd_endian byte_order
,
1645 gdb::byte_vector
*out_vec
)
1648 gdb_assert (len
> 0);
1649 if (byte_order
== BFD_ENDIAN_BIG
)
1650 sign_byte
= bytes
[0];
1652 sign_byte
= bytes
[len
- 1];
1653 if ((sign_byte
& 0x80) == 0)
1656 out_vec
->resize (len
);
1658 /* Compute -x == 1 + ~x. */
1659 if (byte_order
== BFD_ENDIAN_LITTLE
)
1662 for (unsigned i
= 0; i
< len
; ++i
)
1664 unsigned tem
= (0xff & ~bytes
[i
]) + carry
;
1665 (*out_vec
)[i
] = tem
& 0xff;
1672 for (unsigned i
= len
; i
> 0; --i
)
1674 unsigned tem
= (0xff & ~bytes
[i
- 1]) + carry
;
1675 (*out_vec
)[i
- 1] = tem
& 0xff;
1683 /* VALADDR points to an integer of LEN bytes.
1684 Print it in decimal on stream or format it in buf. */
1687 print_decimal_chars (struct ui_file
*stream
, const gdb_byte
*valaddr
,
1688 unsigned len
, bool is_signed
,
1689 enum bfd_endian byte_order
)
1692 #define CARRY_OUT( x ) ((x) / TEN) /* extend char to int */
1693 #define CARRY_LEFT( x ) ((x) % TEN)
1694 #define SHIFT( x ) ((x) << 4)
1695 #define LOW_NIBBLE( x ) ( (x) & 0x00F)
1696 #define HIGH_NIBBLE( x ) (((x) & 0x0F0) >> 4)
1701 int i
, j
, decimal_digits
;
1705 gdb::byte_vector negated_bytes
;
1707 && maybe_negate_by_bytes (valaddr
, len
, byte_order
, &negated_bytes
))
1709 fputs_filtered ("-", stream
);
1710 valaddr
= negated_bytes
.data ();
1713 /* Base-ten number is less than twice as many digits
1714 as the base 16 number, which is 2 digits per byte. */
1716 decimal_len
= len
* 2 * 2;
1717 std::vector
<unsigned char> digits (decimal_len
, 0);
1719 /* Ok, we have an unknown number of bytes of data to be printed in
1722 * Given a hex number (in nibbles) as XYZ, we start by taking X and
1723 * decimalizing it as "x1 x2" in two decimal nibbles. Then we multiply
1724 * the nibbles by 16, add Y and re-decimalize. Repeat with Z.
1726 * The trick is that "digits" holds a base-10 number, but sometimes
1727 * the individual digits are > 10.
1729 * Outer loop is per nibble (hex digit) of input, from MSD end to
1732 decimal_digits
= 0; /* Number of decimal digits so far */
1733 p
= (byte_order
== BFD_ENDIAN_BIG
) ? valaddr
: valaddr
+ len
- 1;
1735 while ((byte_order
== BFD_ENDIAN_BIG
) ? (p
< valaddr
+ len
) : (p
>= valaddr
))
1738 * Multiply current base-ten number by 16 in place.
1739 * Each digit was between 0 and 9, now is between
1742 for (j
= 0; j
< decimal_digits
; j
++)
1744 digits
[j
] = SHIFT (digits
[j
]);
1747 /* Take the next nibble off the input and add it to what
1748 * we've got in the LSB position. Bottom 'digit' is now
1749 * between 0 and 159.
1751 * "flip" is used to run this loop twice for each byte.
1755 /* Take top nibble. */
1757 digits
[0] += HIGH_NIBBLE (*p
);
1762 /* Take low nibble and bump our pointer "p". */
1764 digits
[0] += LOW_NIBBLE (*p
);
1765 if (byte_order
== BFD_ENDIAN_BIG
)
1772 /* Re-decimalize. We have to do this often enough
1773 * that we don't overflow, but once per nibble is
1774 * overkill. Easier this way, though. Note that the
1775 * carry is often larger than 10 (e.g. max initial
1776 * carry out of lowest nibble is 15, could bubble all
1777 * the way up greater than 10). So we have to do
1778 * the carrying beyond the last current digit.
1781 for (j
= 0; j
< decimal_len
- 1; j
++)
1785 /* "/" won't handle an unsigned char with
1786 * a value that if signed would be negative.
1787 * So extend to longword int via "dummy".
1790 carry
= CARRY_OUT (dummy
);
1791 digits
[j
] = CARRY_LEFT (dummy
);
1793 if (j
>= decimal_digits
&& carry
== 0)
1796 * All higher digits are 0 and we
1797 * no longer have a carry.
1799 * Note: "j" is 0-based, "decimal_digits" is
1802 decimal_digits
= j
+ 1;
1808 /* Ok, now "digits" is the decimal representation, with
1809 the "decimal_digits" actual digits. Print! */
1811 for (i
= decimal_digits
- 1; i
> 0 && digits
[i
] == 0; --i
)
1816 fprintf_filtered (stream
, "%1d", digits
[i
]);
1820 /* VALADDR points to an integer of LEN bytes. Print it in hex on stream. */
1823 print_hex_chars (struct ui_file
*stream
, const gdb_byte
*valaddr
,
1824 unsigned len
, enum bfd_endian byte_order
,
1829 fputs_filtered ("0x", stream
);
1830 if (byte_order
== BFD_ENDIAN_BIG
)
1836 /* Strip leading 0 bytes, but be sure to leave at least a
1837 single byte at the end. */
1838 for (; p
< valaddr
+ len
- 1 && !*p
; ++p
)
1842 const gdb_byte
*first
= p
;
1847 /* When not zero-padding, use a different format for the
1848 very first byte printed. */
1849 if (!zero_pad
&& p
== first
)
1850 fprintf_filtered (stream
, "%x", *p
);
1852 fprintf_filtered (stream
, "%02x", *p
);
1857 p
= valaddr
+ len
- 1;
1861 /* Strip leading 0 bytes, but be sure to leave at least a
1862 single byte at the end. */
1863 for (; p
>= valaddr
+ 1 && !*p
; --p
)
1867 const gdb_byte
*first
= p
;
1872 /* When not zero-padding, use a different format for the
1873 very first byte printed. */
1874 if (!zero_pad
&& p
== first
)
1875 fprintf_filtered (stream
, "%x", *p
);
1877 fprintf_filtered (stream
, "%02x", *p
);
1882 /* VALADDR points to a char integer of LEN bytes.
1883 Print it out in appropriate language form on stream.
1884 Omit any leading zero chars. */
1887 print_char_chars (struct ui_file
*stream
, struct type
*type
,
1888 const gdb_byte
*valaddr
,
1889 unsigned len
, enum bfd_endian byte_order
)
1893 if (byte_order
== BFD_ENDIAN_BIG
)
1896 while (p
< valaddr
+ len
- 1 && *p
== 0)
1899 while (p
< valaddr
+ len
)
1901 LA_EMIT_CHAR (*p
, type
, stream
, '\'');
1907 p
= valaddr
+ len
- 1;
1908 while (p
> valaddr
&& *p
== 0)
1911 while (p
>= valaddr
)
1913 LA_EMIT_CHAR (*p
, type
, stream
, '\'');
1919 /* Print function pointer with inferior address ADDRESS onto stdio
1923 print_function_pointer_address (const struct value_print_options
*options
,
1924 struct gdbarch
*gdbarch
,
1926 struct ui_file
*stream
)
1929 = gdbarch_convert_from_func_ptr_addr (gdbarch
, address
,
1930 current_top_target ());
1932 /* If the function pointer is represented by a description, print
1933 the address of the description. */
1934 if (options
->addressprint
&& func_addr
!= address
)
1936 fputs_filtered ("@", stream
);
1937 fputs_filtered (paddress (gdbarch
, address
), stream
);
1938 fputs_filtered (": ", stream
);
1940 print_address_demangle (options
, gdbarch
, func_addr
, stream
, demangle
);
1944 /* Print on STREAM using the given OPTIONS the index for the element
1945 at INDEX of an array whose index type is INDEX_TYPE. */
1948 maybe_print_array_index (struct type
*index_type
, LONGEST index
,
1949 struct ui_file
*stream
,
1950 const struct value_print_options
*options
)
1952 struct value
*index_value
;
1954 if (!options
->print_array_indexes
)
1957 index_value
= value_from_longest (index_type
, index
);
1959 LA_PRINT_ARRAY_INDEX (index_value
, stream
, options
);
1962 /* Called by various <lang>_val_print routines to print elements of an
1963 array in the form "<elem1>, <elem2>, <elem3>, ...".
1965 (FIXME?) Assumes array element separator is a comma, which is correct
1966 for all languages currently handled.
1967 (FIXME?) Some languages have a notation for repeated array elements,
1968 perhaps we should try to use that notation when appropriate. */
1971 val_print_array_elements (struct type
*type
,
1972 LONGEST embedded_offset
,
1973 CORE_ADDR address
, struct ui_file
*stream
,
1976 const struct value_print_options
*options
,
1979 unsigned int things_printed
= 0;
1981 struct type
*elttype
, *index_type
, *base_index_type
;
1983 /* Position of the array element we are examining to see
1984 whether it is repeated. */
1986 /* Number of repetitions we have detected so far. */
1988 LONGEST low_bound
, high_bound
;
1989 LONGEST low_pos
, high_pos
;
1991 elttype
= TYPE_TARGET_TYPE (type
);
1992 eltlen
= type_length_units (check_typedef (elttype
));
1993 index_type
= TYPE_INDEX_TYPE (type
);
1995 if (get_array_bounds (type
, &low_bound
, &high_bound
))
1997 if (TYPE_CODE (index_type
) == TYPE_CODE_RANGE
)
1998 base_index_type
= TYPE_TARGET_TYPE (index_type
);
2000 base_index_type
= index_type
;
2002 /* Non-contiguous enumerations types can by used as index types
2003 in some languages (e.g. Ada). In this case, the array length
2004 shall be computed from the positions of the first and last
2005 literal in the enumeration type, and not from the values
2006 of these literals. */
2007 if (!discrete_position (base_index_type
, low_bound
, &low_pos
)
2008 || !discrete_position (base_index_type
, high_bound
, &high_pos
))
2010 warning (_("unable to get positions in array, use bounds instead"));
2011 low_pos
= low_bound
;
2012 high_pos
= high_bound
;
2015 /* The array length should normally be HIGH_POS - LOW_POS + 1.
2016 But we have to be a little extra careful, because some languages
2017 such as Ada allow LOW_POS to be greater than HIGH_POS for
2018 empty arrays. In that situation, the array length is just zero,
2020 if (low_pos
> high_pos
)
2023 len
= high_pos
- low_pos
+ 1;
2027 warning (_("unable to get bounds of array, assuming null array"));
2032 annotate_array_section_begin (i
, elttype
);
2034 for (; i
< len
&& things_printed
< options
->print_max
; i
++)
2038 if (options
->prettyformat_arrays
)
2040 fprintf_filtered (stream
, ",\n");
2041 print_spaces_filtered (2 + 2 * recurse
, stream
);
2045 fprintf_filtered (stream
, ", ");
2048 wrap_here (n_spaces (2 + 2 * recurse
));
2049 maybe_print_array_index (index_type
, i
+ low_bound
,
2054 /* Only check for reps if repeat_count_threshold is not set to
2055 UINT_MAX (unlimited). */
2056 if (options
->repeat_count_threshold
< UINT_MAX
)
2059 && value_contents_eq (val
,
2060 embedded_offset
+ i
* eltlen
,
2071 if (reps
> options
->repeat_count_threshold
)
2073 val_print (elttype
, embedded_offset
+ i
* eltlen
,
2074 address
, stream
, recurse
+ 1, val
, options
,
2076 annotate_elt_rep (reps
);
2077 fprintf_filtered (stream
, " %p[<repeats %u times>%p]",
2078 metadata_style
.style ().ptr (), reps
, nullptr);
2079 annotate_elt_rep_end ();
2082 things_printed
+= options
->repeat_count_threshold
;
2086 val_print (elttype
, embedded_offset
+ i
* eltlen
,
2088 stream
, recurse
+ 1, val
, options
, current_language
);
2093 annotate_array_section_end ();
2096 fprintf_filtered (stream
, "...");
2100 /* Read LEN bytes of target memory at address MEMADDR, placing the
2101 results in GDB's memory at MYADDR. Returns a count of the bytes
2102 actually read, and optionally a target_xfer_status value in the
2103 location pointed to by ERRPTR if ERRPTR is non-null. */
2105 /* FIXME: cagney/1999-10-14: Only used by val_print_string. Can this
2106 function be eliminated. */
2109 partial_memory_read (CORE_ADDR memaddr
, gdb_byte
*myaddr
,
2110 int len
, int *errptr
)
2112 int nread
; /* Number of bytes actually read. */
2113 int errcode
; /* Error from last read. */
2115 /* First try a complete read. */
2116 errcode
= target_read_memory (memaddr
, myaddr
, len
);
2124 /* Loop, reading one byte at a time until we get as much as we can. */
2125 for (errcode
= 0, nread
= 0; len
> 0 && errcode
== 0; nread
++, len
--)
2127 errcode
= target_read_memory (memaddr
++, myaddr
++, 1);
2129 /* If an error, the last read was unsuccessful, so adjust count. */
2142 /* Read a string from the inferior, at ADDR, with LEN characters of
2143 WIDTH bytes each. Fetch at most FETCHLIMIT characters. BUFFER
2144 will be set to a newly allocated buffer containing the string, and
2145 BYTES_READ will be set to the number of bytes read. Returns 0 on
2146 success, or a target_xfer_status on failure.
2148 If LEN > 0, reads the lesser of LEN or FETCHLIMIT characters
2149 (including eventual NULs in the middle or end of the string).
2151 If LEN is -1, stops at the first null character (not necessarily
2152 the first null byte) up to a maximum of FETCHLIMIT characters. Set
2153 FETCHLIMIT to UINT_MAX to read as many characters as possible from
2156 Unless an exception is thrown, BUFFER will always be allocated, even on
2157 failure. In this case, some characters might have been read before the
2158 failure happened. Check BYTES_READ to recognize this situation.
2160 Note: There was a FIXME asking to make this code use target_read_string,
2161 but this function is more general (can read past null characters, up to
2162 given LEN). Besides, it is used much more often than target_read_string
2163 so it is more tested. Perhaps callers of target_read_string should use
2164 this function instead? */
2167 read_string (CORE_ADDR addr
, int len
, int width
, unsigned int fetchlimit
,
2168 enum bfd_endian byte_order
, gdb::unique_xmalloc_ptr
<gdb_byte
> *buffer
,
2171 int errcode
; /* Errno returned from bad reads. */
2172 unsigned int nfetch
; /* Chars to fetch / chars fetched. */
2173 gdb_byte
*bufptr
; /* Pointer to next available byte in
2176 /* Loop until we either have all the characters, or we encounter
2177 some error, such as bumping into the end of the address space. */
2179 buffer
->reset (nullptr);
2183 /* We want fetchlimit chars, so we might as well read them all in
2185 unsigned int fetchlen
= std::min ((unsigned) len
, fetchlimit
);
2187 buffer
->reset ((gdb_byte
*) xmalloc (fetchlen
* width
));
2188 bufptr
= buffer
->get ();
2190 nfetch
= partial_memory_read (addr
, bufptr
, fetchlen
* width
, &errcode
)
2192 addr
+= nfetch
* width
;
2193 bufptr
+= nfetch
* width
;
2197 unsigned long bufsize
= 0;
2198 unsigned int chunksize
; /* Size of each fetch, in chars. */
2199 int found_nul
; /* Non-zero if we found the nul char. */
2200 gdb_byte
*limit
; /* First location past end of fetch buffer. */
2203 /* We are looking for a NUL terminator to end the fetching, so we
2204 might as well read in blocks that are large enough to be efficient,
2205 but not so large as to be slow if fetchlimit happens to be large.
2206 So we choose the minimum of 8 and fetchlimit. We used to use 200
2207 instead of 8 but 200 is way too big for remote debugging over a
2209 chunksize
= std::min (8u, fetchlimit
);
2214 nfetch
= std::min ((unsigned long) chunksize
, fetchlimit
- bufsize
);
2216 if (*buffer
== NULL
)
2217 buffer
->reset ((gdb_byte
*) xmalloc (nfetch
* width
));
2219 buffer
->reset ((gdb_byte
*) xrealloc (buffer
->release (),
2220 (nfetch
+ bufsize
) * width
));
2222 bufptr
= buffer
->get () + bufsize
* width
;
2225 /* Read as much as we can. */
2226 nfetch
= partial_memory_read (addr
, bufptr
, nfetch
* width
, &errcode
)
2229 /* Scan this chunk for the null character that terminates the string
2230 to print. If found, we don't need to fetch any more. Note
2231 that bufptr is explicitly left pointing at the next character
2232 after the null character, or at the next character after the end
2235 limit
= bufptr
+ nfetch
* width
;
2236 while (bufptr
< limit
)
2240 c
= extract_unsigned_integer (bufptr
, width
, byte_order
);
2245 /* We don't care about any error which happened after
2246 the NUL terminator. */
2253 while (errcode
== 0 /* no error */
2254 && bufptr
- buffer
->get () < fetchlimit
* width
/* no overrun */
2255 && !found_nul
); /* haven't found NUL yet */
2258 { /* Length of string is really 0! */
2259 /* We always allocate *buffer. */
2260 buffer
->reset ((gdb_byte
*) xmalloc (1));
2261 bufptr
= buffer
->get ();
2265 /* bufptr and addr now point immediately beyond the last byte which we
2266 consider part of the string (including a '\0' which ends the string). */
2267 *bytes_read
= bufptr
- buffer
->get ();
2274 /* Return true if print_wchar can display W without resorting to a
2275 numeric escape, false otherwise. */
2278 wchar_printable (gdb_wchar_t w
)
2280 return (gdb_iswprint (w
)
2281 || w
== LCST ('\a') || w
== LCST ('\b')
2282 || w
== LCST ('\f') || w
== LCST ('\n')
2283 || w
== LCST ('\r') || w
== LCST ('\t')
2284 || w
== LCST ('\v'));
2287 /* A helper function that converts the contents of STRING to wide
2288 characters and then appends them to OUTPUT. */
2291 append_string_as_wide (const char *string
,
2292 struct obstack
*output
)
2294 for (; *string
; ++string
)
2296 gdb_wchar_t w
= gdb_btowc (*string
);
2297 obstack_grow (output
, &w
, sizeof (gdb_wchar_t
));
2301 /* Print a wide character W to OUTPUT. ORIG is a pointer to the
2302 original (target) bytes representing the character, ORIG_LEN is the
2303 number of valid bytes. WIDTH is the number of bytes in a base
2304 characters of the type. OUTPUT is an obstack to which wide
2305 characters are emitted. QUOTER is a (narrow) character indicating
2306 the style of quotes surrounding the character to be printed.
2307 NEED_ESCAPE is an in/out flag which is used to track numeric
2308 escapes across calls. */
2311 print_wchar (gdb_wint_t w
, const gdb_byte
*orig
,
2312 int orig_len
, int width
,
2313 enum bfd_endian byte_order
,
2314 struct obstack
*output
,
2315 int quoter
, int *need_escapep
)
2317 int need_escape
= *need_escapep
;
2321 /* iswprint implementation on Windows returns 1 for tab character.
2322 In order to avoid different printout on this host, we explicitly
2323 use wchar_printable function. */
2327 obstack_grow_wstr (output
, LCST ("\\a"));
2330 obstack_grow_wstr (output
, LCST ("\\b"));
2333 obstack_grow_wstr (output
, LCST ("\\f"));
2336 obstack_grow_wstr (output
, LCST ("\\n"));
2339 obstack_grow_wstr (output
, LCST ("\\r"));
2342 obstack_grow_wstr (output
, LCST ("\\t"));
2345 obstack_grow_wstr (output
, LCST ("\\v"));
2349 if (wchar_printable (w
) && (!need_escape
|| (!gdb_iswdigit (w
)
2351 && w
!= LCST ('9'))))
2353 gdb_wchar_t wchar
= w
;
2355 if (w
== gdb_btowc (quoter
) || w
== LCST ('\\'))
2356 obstack_grow_wstr (output
, LCST ("\\"));
2357 obstack_grow (output
, &wchar
, sizeof (gdb_wchar_t
));
2363 for (i
= 0; i
+ width
<= orig_len
; i
+= width
)
2368 value
= extract_unsigned_integer (&orig
[i
], width
,
2370 /* If the value fits in 3 octal digits, print it that
2371 way. Otherwise, print it as a hex escape. */
2373 xsnprintf (octal
, sizeof (octal
), "\\%.3o",
2374 (int) (value
& 0777));
2376 xsnprintf (octal
, sizeof (octal
), "\\x%lx", (long) value
);
2377 append_string_as_wide (octal
, output
);
2379 /* If we somehow have extra bytes, print them now. */
2380 while (i
< orig_len
)
2384 xsnprintf (octal
, sizeof (octal
), "\\%.3o", orig
[i
] & 0xff);
2385 append_string_as_wide (octal
, output
);
2396 /* Print the character C on STREAM as part of the contents of a
2397 literal string whose delimiter is QUOTER. ENCODING names the
2401 generic_emit_char (int c
, struct type
*type
, struct ui_file
*stream
,
2402 int quoter
, const char *encoding
)
2404 enum bfd_endian byte_order
2405 = type_byte_order (type
);
2407 int need_escape
= 0;
2409 c_buf
= (gdb_byte
*) alloca (TYPE_LENGTH (type
));
2410 pack_long (c_buf
, type
, c
);
2412 wchar_iterator
iter (c_buf
, TYPE_LENGTH (type
), encoding
, TYPE_LENGTH (type
));
2414 /* This holds the printable form of the wchar_t data. */
2415 auto_obstack wchar_buf
;
2421 const gdb_byte
*buf
;
2423 int print_escape
= 1;
2424 enum wchar_iterate_result result
;
2426 num_chars
= iter
.iterate (&result
, &chars
, &buf
, &buflen
);
2431 /* If all characters are printable, print them. Otherwise,
2432 we're going to have to print an escape sequence. We
2433 check all characters because we want to print the target
2434 bytes in the escape sequence, and we don't know character
2435 boundaries there. */
2439 for (i
= 0; i
< num_chars
; ++i
)
2440 if (!wchar_printable (chars
[i
]))
2448 for (i
= 0; i
< num_chars
; ++i
)
2449 print_wchar (chars
[i
], buf
, buflen
,
2450 TYPE_LENGTH (type
), byte_order
,
2451 &wchar_buf
, quoter
, &need_escape
);
2455 /* This handles the NUM_CHARS == 0 case as well. */
2457 print_wchar (gdb_WEOF
, buf
, buflen
, TYPE_LENGTH (type
),
2458 byte_order
, &wchar_buf
, quoter
, &need_escape
);
2461 /* The output in the host encoding. */
2462 auto_obstack output
;
2464 convert_between_encodings (INTERMEDIATE_ENCODING
, host_charset (),
2465 (gdb_byte
*) obstack_base (&wchar_buf
),
2466 obstack_object_size (&wchar_buf
),
2467 sizeof (gdb_wchar_t
), &output
, translit_char
);
2468 obstack_1grow (&output
, '\0');
2470 fputs_filtered ((const char *) obstack_base (&output
), stream
);
2473 /* Return the repeat count of the next character/byte in ITER,
2474 storing the result in VEC. */
2477 count_next_character (wchar_iterator
*iter
,
2478 std::vector
<converted_character
> *vec
)
2480 struct converted_character
*current
;
2484 struct converted_character tmp
;
2488 = iter
->iterate (&tmp
.result
, &chars
, &tmp
.buf
, &tmp
.buflen
);
2489 if (tmp
.num_chars
> 0)
2491 gdb_assert (tmp
.num_chars
< MAX_WCHARS
);
2492 memcpy (tmp
.chars
, chars
, tmp
.num_chars
* sizeof (gdb_wchar_t
));
2494 vec
->push_back (tmp
);
2497 current
= &vec
->back ();
2499 /* Count repeated characters or bytes. */
2500 current
->repeat_count
= 1;
2501 if (current
->num_chars
== -1)
2509 struct converted_character d
;
2516 /* Get the next character. */
2517 d
.num_chars
= iter
->iterate (&d
.result
, &chars
, &d
.buf
, &d
.buflen
);
2519 /* If a character was successfully converted, save the character
2520 into the converted character. */
2521 if (d
.num_chars
> 0)
2523 gdb_assert (d
.num_chars
< MAX_WCHARS
);
2524 memcpy (d
.chars
, chars
, WCHAR_BUFLEN (d
.num_chars
));
2527 /* Determine if the current character is the same as this
2529 if (d
.num_chars
== current
->num_chars
&& d
.result
== current
->result
)
2531 /* There are two cases to consider:
2533 1) Equality of converted character (num_chars > 0)
2534 2) Equality of non-converted character (num_chars == 0) */
2535 if ((current
->num_chars
> 0
2536 && memcmp (current
->chars
, d
.chars
,
2537 WCHAR_BUFLEN (current
->num_chars
)) == 0)
2538 || (current
->num_chars
== 0
2539 && current
->buflen
== d
.buflen
2540 && memcmp (current
->buf
, d
.buf
, current
->buflen
) == 0))
2541 ++current
->repeat_count
;
2549 /* Push this next converted character onto the result vector. */
2550 repeat
= current
->repeat_count
;
2556 /* Print the characters in CHARS to the OBSTACK. QUOTE_CHAR is the quote
2557 character to use with string output. WIDTH is the size of the output
2558 character type. BYTE_ORDER is the target byte order. OPTIONS
2559 is the user's print options. */
2562 print_converted_chars_to_obstack (struct obstack
*obstack
,
2563 const std::vector
<converted_character
> &chars
,
2564 int quote_char
, int width
,
2565 enum bfd_endian byte_order
,
2566 const struct value_print_options
*options
)
2569 const converted_character
*elem
;
2570 enum {START
, SINGLE
, REPEAT
, INCOMPLETE
, FINISH
} state
, last
;
2571 gdb_wchar_t wide_quote_char
= gdb_btowc (quote_char
);
2572 int need_escape
= 0;
2574 /* Set the start state. */
2576 last
= state
= START
;
2584 /* Nothing to do. */
2591 /* We are outputting a single character
2592 (< options->repeat_count_threshold). */
2596 /* We were outputting some other type of content, so we
2597 must output and a comma and a quote. */
2599 obstack_grow_wstr (obstack
, LCST (", "));
2600 obstack_grow (obstack
, &wide_quote_char
, sizeof (gdb_wchar_t
));
2602 /* Output the character. */
2603 for (j
= 0; j
< elem
->repeat_count
; ++j
)
2605 if (elem
->result
== wchar_iterate_ok
)
2606 print_wchar (elem
->chars
[0], elem
->buf
, elem
->buflen
, width
,
2607 byte_order
, obstack
, quote_char
, &need_escape
);
2609 print_wchar (gdb_WEOF
, elem
->buf
, elem
->buflen
, width
,
2610 byte_order
, obstack
, quote_char
, &need_escape
);
2619 /* We are outputting a character with a repeat count
2620 greater than options->repeat_count_threshold. */
2624 /* We were outputting a single string. Terminate the
2626 obstack_grow (obstack
, &wide_quote_char
, sizeof (gdb_wchar_t
));
2629 obstack_grow_wstr (obstack
, LCST (", "));
2631 /* Output the character and repeat string. */
2632 obstack_grow_wstr (obstack
, LCST ("'"));
2633 if (elem
->result
== wchar_iterate_ok
)
2634 print_wchar (elem
->chars
[0], elem
->buf
, elem
->buflen
, width
,
2635 byte_order
, obstack
, quote_char
, &need_escape
);
2637 print_wchar (gdb_WEOF
, elem
->buf
, elem
->buflen
, width
,
2638 byte_order
, obstack
, quote_char
, &need_escape
);
2639 obstack_grow_wstr (obstack
, LCST ("'"));
2640 std::string s
= string_printf (_(" <repeats %u times>"),
2641 elem
->repeat_count
);
2642 for (j
= 0; s
[j
]; ++j
)
2644 gdb_wchar_t w
= gdb_btowc (s
[j
]);
2645 obstack_grow (obstack
, &w
, sizeof (gdb_wchar_t
));
2651 /* We are outputting an incomplete sequence. */
2654 /* If we were outputting a string of SINGLE characters,
2655 terminate the quote. */
2656 obstack_grow (obstack
, &wide_quote_char
, sizeof (gdb_wchar_t
));
2659 obstack_grow_wstr (obstack
, LCST (", "));
2661 /* Output the incomplete sequence string. */
2662 obstack_grow_wstr (obstack
, LCST ("<incomplete sequence "));
2663 print_wchar (gdb_WEOF
, elem
->buf
, elem
->buflen
, width
, byte_order
,
2664 obstack
, 0, &need_escape
);
2665 obstack_grow_wstr (obstack
, LCST (">"));
2667 /* We do not attempt to output anything after this. */
2672 /* All done. If we were outputting a string of SINGLE
2673 characters, the string must be terminated. Otherwise,
2674 REPEAT and INCOMPLETE are always left properly terminated. */
2676 obstack_grow (obstack
, &wide_quote_char
, sizeof (gdb_wchar_t
));
2681 /* Get the next element and state. */
2683 if (state
!= FINISH
)
2685 elem
= &chars
[idx
++];
2686 switch (elem
->result
)
2688 case wchar_iterate_ok
:
2689 case wchar_iterate_invalid
:
2690 if (elem
->repeat_count
> options
->repeat_count_threshold
)
2696 case wchar_iterate_incomplete
:
2700 case wchar_iterate_eof
:
2708 /* Print the character string STRING, printing at most LENGTH
2709 characters. LENGTH is -1 if the string is nul terminated. TYPE is
2710 the type of each character. OPTIONS holds the printing options;
2711 printing stops early if the number hits print_max; repeat counts
2712 are printed as appropriate. Print ellipses at the end if we had to
2713 stop before printing LENGTH characters, or if FORCE_ELLIPSES.
2714 QUOTE_CHAR is the character to print at each end of the string. If
2715 C_STYLE_TERMINATOR is true, and the last character is 0, then it is
2719 generic_printstr (struct ui_file
*stream
, struct type
*type
,
2720 const gdb_byte
*string
, unsigned int length
,
2721 const char *encoding
, int force_ellipses
,
2722 int quote_char
, int c_style_terminator
,
2723 const struct value_print_options
*options
)
2725 enum bfd_endian byte_order
= type_byte_order (type
);
2727 int width
= TYPE_LENGTH (type
);
2729 struct converted_character
*last
;
2733 unsigned long current_char
= 1;
2735 for (i
= 0; current_char
; ++i
)
2738 current_char
= extract_unsigned_integer (string
+ i
* width
,
2744 /* If the string was not truncated due to `set print elements', and
2745 the last byte of it is a null, we don't print that, in
2746 traditional C style. */
2747 if (c_style_terminator
2750 && (extract_unsigned_integer (string
+ (length
- 1) * width
,
2751 width
, byte_order
) == 0))
2756 fputs_filtered ("\"\"", stream
);
2760 /* Arrange to iterate over the characters, in wchar_t form. */
2761 wchar_iterator
iter (string
, length
* width
, encoding
, width
);
2762 std::vector
<converted_character
> converted_chars
;
2764 /* Convert characters until the string is over or the maximum
2765 number of printed characters has been reached. */
2767 while (i
< options
->print_max
)
2773 /* Grab the next character and repeat count. */
2774 r
= count_next_character (&iter
, &converted_chars
);
2776 /* If less than zero, the end of the input string was reached. */
2780 /* Otherwise, add the count to the total print count and get
2781 the next character. */
2785 /* Get the last element and determine if the entire string was
2787 last
= &converted_chars
.back ();
2788 finished
= (last
->result
== wchar_iterate_eof
);
2790 /* Ensure that CONVERTED_CHARS is terminated. */
2791 last
->result
= wchar_iterate_eof
;
2793 /* WCHAR_BUF is the obstack we use to represent the string in
2795 auto_obstack wchar_buf
;
2797 /* Print the output string to the obstack. */
2798 print_converted_chars_to_obstack (&wchar_buf
, converted_chars
, quote_char
,
2799 width
, byte_order
, options
);
2801 if (force_ellipses
|| !finished
)
2802 obstack_grow_wstr (&wchar_buf
, LCST ("..."));
2804 /* OUTPUT is where we collect `char's for printing. */
2805 auto_obstack output
;
2807 convert_between_encodings (INTERMEDIATE_ENCODING
, host_charset (),
2808 (gdb_byte
*) obstack_base (&wchar_buf
),
2809 obstack_object_size (&wchar_buf
),
2810 sizeof (gdb_wchar_t
), &output
, translit_char
);
2811 obstack_1grow (&output
, '\0');
2813 fputs_filtered ((const char *) obstack_base (&output
), stream
);
2816 /* Print a string from the inferior, starting at ADDR and printing up to LEN
2817 characters, of WIDTH bytes a piece, to STREAM. If LEN is -1, printing
2818 stops at the first null byte, otherwise printing proceeds (including null
2819 bytes) until either print_max or LEN characters have been printed,
2820 whichever is smaller. ENCODING is the name of the string's
2821 encoding. It can be NULL, in which case the target encoding is
2825 val_print_string (struct type
*elttype
, const char *encoding
,
2826 CORE_ADDR addr
, int len
,
2827 struct ui_file
*stream
,
2828 const struct value_print_options
*options
)
2830 int force_ellipsis
= 0; /* Force ellipsis to be printed if nonzero. */
2831 int err
; /* Non-zero if we got a bad read. */
2832 int found_nul
; /* Non-zero if we found the nul char. */
2833 unsigned int fetchlimit
; /* Maximum number of chars to print. */
2835 gdb::unique_xmalloc_ptr
<gdb_byte
> buffer
; /* Dynamically growable fetch buffer. */
2836 struct gdbarch
*gdbarch
= get_type_arch (elttype
);
2837 enum bfd_endian byte_order
= type_byte_order (elttype
);
2838 int width
= TYPE_LENGTH (elttype
);
2840 /* First we need to figure out the limit on the number of characters we are
2841 going to attempt to fetch and print. This is actually pretty simple. If
2842 LEN >= zero, then the limit is the minimum of LEN and print_max. If
2843 LEN is -1, then the limit is print_max. This is true regardless of
2844 whether print_max is zero, UINT_MAX (unlimited), or something in between,
2845 because finding the null byte (or available memory) is what actually
2846 limits the fetch. */
2848 fetchlimit
= (len
== -1 ? options
->print_max
: std::min ((unsigned) len
,
2849 options
->print_max
));
2851 err
= read_string (addr
, len
, width
, fetchlimit
, byte_order
,
2852 &buffer
, &bytes_read
);
2856 /* We now have either successfully filled the buffer to fetchlimit,
2857 or terminated early due to an error or finding a null char when
2860 /* Determine found_nul by looking at the last character read. */
2862 if (bytes_read
>= width
)
2863 found_nul
= extract_unsigned_integer (buffer
.get () + bytes_read
- width
,
2864 width
, byte_order
) == 0;
2865 if (len
== -1 && !found_nul
)
2869 /* We didn't find a NUL terminator we were looking for. Attempt
2870 to peek at the next character. If not successful, or it is not
2871 a null byte, then force ellipsis to be printed. */
2873 peekbuf
= (gdb_byte
*) alloca (width
);
2875 if (target_read_memory (addr
, peekbuf
, width
) == 0
2876 && extract_unsigned_integer (peekbuf
, width
, byte_order
) != 0)
2879 else if ((len
>= 0 && err
!= 0) || (len
> bytes_read
/ width
))
2881 /* Getting an error when we have a requested length, or fetching less
2882 than the number of characters actually requested, always make us
2887 /* If we get an error before fetching anything, don't print a string.
2888 But if we fetch something and then get an error, print the string
2889 and then the error message. */
2890 if (err
== 0 || bytes_read
> 0)
2892 LA_PRINT_STRING (stream
, elttype
, buffer
.get (), bytes_read
/ width
,
2893 encoding
, force_ellipsis
, options
);
2898 std::string str
= memory_error_message (TARGET_XFER_E_IO
, gdbarch
, addr
);
2900 fprintf_filtered (stream
, _("<error: %ps>"),
2901 styled_string (metadata_style
.style (),
2905 return (bytes_read
/ width
);
2908 /* Handle 'show print max-depth'. */
2911 show_print_max_depth (struct ui_file
*file
, int from_tty
,
2912 struct cmd_list_element
*c
, const char *value
)
2914 fprintf_filtered (file
, _("Maximum print depth is %s.\n"), value
);
2918 /* The 'set input-radix' command writes to this auxiliary variable.
2919 If the requested radix is valid, INPUT_RADIX is updated; otherwise,
2920 it is left unchanged. */
2922 static unsigned input_radix_1
= 10;
2924 /* Validate an input or output radix setting, and make sure the user
2925 knows what they really did here. Radix setting is confusing, e.g.
2926 setting the input radix to "10" never changes it! */
2929 set_input_radix (const char *args
, int from_tty
, struct cmd_list_element
*c
)
2931 set_input_radix_1 (from_tty
, input_radix_1
);
2935 set_input_radix_1 (int from_tty
, unsigned radix
)
2937 /* We don't currently disallow any input radix except 0 or 1, which don't
2938 make any mathematical sense. In theory, we can deal with any input
2939 radix greater than 1, even if we don't have unique digits for every
2940 value from 0 to radix-1, but in practice we lose on large radix values.
2941 We should either fix the lossage or restrict the radix range more.
2946 input_radix_1
= input_radix
;
2947 error (_("Nonsense input radix ``decimal %u''; input radix unchanged."),
2950 input_radix_1
= input_radix
= radix
;
2953 printf_filtered (_("Input radix now set to "
2954 "decimal %u, hex %x, octal %o.\n"),
2955 radix
, radix
, radix
);
2959 /* The 'set output-radix' command writes to this auxiliary variable.
2960 If the requested radix is valid, OUTPUT_RADIX is updated,
2961 otherwise, it is left unchanged. */
2963 static unsigned output_radix_1
= 10;
2966 set_output_radix (const char *args
, int from_tty
, struct cmd_list_element
*c
)
2968 set_output_radix_1 (from_tty
, output_radix_1
);
2972 set_output_radix_1 (int from_tty
, unsigned radix
)
2974 /* Validate the radix and disallow ones that we aren't prepared to
2975 handle correctly, leaving the radix unchanged. */
2979 user_print_options
.output_format
= 'x'; /* hex */
2982 user_print_options
.output_format
= 0; /* decimal */
2985 user_print_options
.output_format
= 'o'; /* octal */
2988 output_radix_1
= output_radix
;
2989 error (_("Unsupported output radix ``decimal %u''; "
2990 "output radix unchanged."),
2993 output_radix_1
= output_radix
= radix
;
2996 printf_filtered (_("Output radix now set to "
2997 "decimal %u, hex %x, octal %o.\n"),
2998 radix
, radix
, radix
);
3002 /* Set both the input and output radix at once. Try to set the output radix
3003 first, since it has the most restrictive range. An radix that is valid as
3004 an output radix is also valid as an input radix.
3006 It may be useful to have an unusual input radix. If the user wishes to
3007 set an input radix that is not valid as an output radix, he needs to use
3008 the 'set input-radix' command. */
3011 set_radix (const char *arg
, int from_tty
)
3015 radix
= (arg
== NULL
) ? 10 : parse_and_eval_long (arg
);
3016 set_output_radix_1 (0, radix
);
3017 set_input_radix_1 (0, radix
);
3020 printf_filtered (_("Input and output radices now set to "
3021 "decimal %u, hex %x, octal %o.\n"),
3022 radix
, radix
, radix
);
3026 /* Show both the input and output radices. */
3029 show_radix (const char *arg
, int from_tty
)
3033 if (input_radix
== output_radix
)
3035 printf_filtered (_("Input and output radices set to "
3036 "decimal %u, hex %x, octal %o.\n"),
3037 input_radix
, input_radix
, input_radix
);
3041 printf_filtered (_("Input radix set to decimal "
3042 "%u, hex %x, octal %o.\n"),
3043 input_radix
, input_radix
, input_radix
);
3044 printf_filtered (_("Output radix set to decimal "
3045 "%u, hex %x, octal %o.\n"),
3046 output_radix
, output_radix
, output_radix
);
3053 set_print (const char *arg
, int from_tty
)
3056 "\"set print\" must be followed by the name of a print subcommand.\n");
3057 help_list (setprintlist
, "set print ", all_commands
, gdb_stdout
);
3061 show_print (const char *args
, int from_tty
)
3063 cmd_show_list (showprintlist
, from_tty
, "");
3067 set_print_raw (const char *arg
, int from_tty
)
3070 "\"set print raw\" must be followed by the name of a \"print raw\" subcommand.\n");
3071 help_list (setprintrawlist
, "set print raw ", all_commands
, gdb_stdout
);
3075 show_print_raw (const char *args
, int from_tty
)
3077 cmd_show_list (showprintrawlist
, from_tty
, "");
3080 /* Controls printing of vtbl's. */
3082 show_vtblprint (struct ui_file
*file
, int from_tty
,
3083 struct cmd_list_element
*c
, const char *value
)
3085 fprintf_filtered (file
, _("\
3086 Printing of C++ virtual function tables is %s.\n"),
3090 /* Controls looking up an object's derived type using what we find in
3093 show_objectprint (struct ui_file
*file
, int from_tty
,
3094 struct cmd_list_element
*c
,
3097 fprintf_filtered (file
, _("\
3098 Printing of object's derived type based on vtable info is %s.\n"),
3103 show_static_field_print (struct ui_file
*file
, int from_tty
,
3104 struct cmd_list_element
*c
,
3107 fprintf_filtered (file
,
3108 _("Printing of C++ static members is %s.\n"),
3114 /* A couple typedefs to make writing the options a bit more
3116 using boolean_option_def
3117 = gdb::option::boolean_option_def
<value_print_options
>;
3118 using uinteger_option_def
3119 = gdb::option::uinteger_option_def
<value_print_options
>;
3120 using zuinteger_unlimited_option_def
3121 = gdb::option::zuinteger_unlimited_option_def
<value_print_options
>;
3123 /* Definitions of options for the "print" and "compile print"
3125 static const gdb::option::option_def value_print_option_defs
[] = {
3127 boolean_option_def
{
3129 [] (value_print_options
*opt
) { return &opt
->addressprint
; },
3130 show_addressprint
, /* show_cmd_cb */
3131 N_("Set printing of addresses."),
3132 N_("Show printing of addresses."),
3133 NULL
, /* help_doc */
3136 boolean_option_def
{
3138 [] (value_print_options
*opt
) { return &opt
->prettyformat_arrays
; },
3139 show_prettyformat_arrays
, /* show_cmd_cb */
3140 N_("Set pretty formatting of arrays."),
3141 N_("Show pretty formatting of arrays."),
3142 NULL
, /* help_doc */
3145 boolean_option_def
{
3147 [] (value_print_options
*opt
) { return &opt
->print_array_indexes
; },
3148 show_print_array_indexes
, /* show_cmd_cb */
3149 N_("Set printing of array indexes."),
3150 N_("Show printing of array indexes."),
3151 NULL
, /* help_doc */
3154 uinteger_option_def
{
3156 [] (value_print_options
*opt
) { return &opt
->print_max
; },
3157 show_print_max
, /* show_cmd_cb */
3158 N_("Set limit on string chars or array elements to print."),
3159 N_("Show limit on string chars or array elements to print."),
3160 N_("\"unlimited\" causes there to be no limit."),
3163 zuinteger_unlimited_option_def
{
3165 [] (value_print_options
*opt
) { return &opt
->max_depth
; },
3166 show_print_max_depth
, /* show_cmd_cb */
3167 N_("Set maximum print depth for nested structures, unions and arrays."),
3168 N_("Show maximum print depth for nested structures, unions, and arrays."),
3169 N_("When structures, unions, or arrays are nested beyond this depth then they\n\
3170 will be replaced with either '{...}' or '(...)' depending on the language.\n\
3171 Use \"unlimited\" to print the complete structure.")
3174 boolean_option_def
{
3176 [] (value_print_options
*opt
) { return &opt
->stop_print_at_null
; },
3177 show_stop_print_at_null
, /* show_cmd_cb */
3178 N_("Set printing of char arrays to stop at first null char."),
3179 N_("Show printing of char arrays to stop at first null char."),
3180 NULL
, /* help_doc */
3183 boolean_option_def
{
3185 [] (value_print_options
*opt
) { return &opt
->objectprint
; },
3186 show_objectprint
, /* show_cmd_cb */
3187 _("Set printing of C++ virtual function tables."),
3188 _("Show printing of C++ virtual function tables."),
3189 NULL
, /* help_doc */
3192 boolean_option_def
{
3194 [] (value_print_options
*opt
) { return &opt
->prettyformat_structs
; },
3195 show_prettyformat_structs
, /* show_cmd_cb */
3196 N_("Set pretty formatting of structures."),
3197 N_("Show pretty formatting of structures."),
3198 NULL
, /* help_doc */
3201 boolean_option_def
{
3203 [] (value_print_options
*opt
) { return &opt
->raw
; },
3204 NULL
, /* show_cmd_cb */
3205 N_("Set whether to print values in raw form."),
3206 N_("Show whether to print values in raw form."),
3207 N_("If set, values are printed in raw form, bypassing any\n\
3208 pretty-printers for that value.")
3211 uinteger_option_def
{
3213 [] (value_print_options
*opt
) { return &opt
->repeat_count_threshold
; },
3214 show_repeat_count_threshold
, /* show_cmd_cb */
3215 N_("Set threshold for repeated print elements."),
3216 N_("Show threshold for repeated print elements."),
3217 N_("\"unlimited\" causes all elements to be individually printed."),
3220 boolean_option_def
{
3222 [] (value_print_options
*opt
) { return &opt
->static_field_print
; },
3223 show_static_field_print
, /* show_cmd_cb */
3224 N_("Set printing of C++ static members."),
3225 N_("Show printing of C++ static members."),
3226 NULL
, /* help_doc */
3229 boolean_option_def
{
3231 [] (value_print_options
*opt
) { return &opt
->symbol_print
; },
3232 show_symbol_print
, /* show_cmd_cb */
3233 N_("Set printing of symbol names when printing pointers."),
3234 N_("Show printing of symbol names when printing pointers."),
3235 NULL
, /* help_doc */
3238 boolean_option_def
{
3240 [] (value_print_options
*opt
) { return &opt
->unionprint
; },
3241 show_unionprint
, /* show_cmd_cb */
3242 N_("Set printing of unions interior to structures."),
3243 N_("Show printing of unions interior to structures."),
3244 NULL
, /* help_doc */
3247 boolean_option_def
{
3249 [] (value_print_options
*opt
) { return &opt
->vtblprint
; },
3250 show_vtblprint
, /* show_cmd_cb */
3251 N_("Set printing of C++ virtual function tables."),
3252 N_("Show printing of C++ virtual function tables."),
3253 NULL
, /* help_doc */
3257 /* See valprint.h. */
3259 gdb::option::option_def_group
3260 make_value_print_options_def_group (value_print_options
*opts
)
3262 return {{value_print_option_defs
}, opts
};
3266 _initialize_valprint (void)
3268 cmd_list_element
*cmd
;
3270 add_prefix_cmd ("print", no_class
, set_print
,
3271 _("Generic command for setting how things print."),
3272 &setprintlist
, "set print ", 0, &setlist
);
3273 add_alias_cmd ("p", "print", no_class
, 1, &setlist
);
3274 /* Prefer set print to set prompt. */
3275 add_alias_cmd ("pr", "print", no_class
, 1, &setlist
);
3277 add_prefix_cmd ("print", no_class
, show_print
,
3278 _("Generic command for showing print settings."),
3279 &showprintlist
, "show print ", 0, &showlist
);
3280 add_alias_cmd ("p", "print", no_class
, 1, &showlist
);
3281 add_alias_cmd ("pr", "print", no_class
, 1, &showlist
);
3283 cmd
= add_prefix_cmd ("raw", no_class
, set_print_raw
,
3285 Generic command for setting what things to print in \"raw\" mode."),
3286 &setprintrawlist
, "set print raw ", 0,
3288 deprecate_cmd (cmd
, nullptr);
3290 cmd
= add_prefix_cmd ("raw", no_class
, show_print_raw
,
3291 _("Generic command for showing \"print raw\" settings."),
3292 &showprintrawlist
, "show print raw ", 0,
3294 deprecate_cmd (cmd
, nullptr);
3296 gdb::option::add_setshow_cmds_for_options
3297 (class_support
, &user_print_options
, value_print_option_defs
,
3298 &setprintlist
, &showprintlist
);
3300 add_setshow_zuinteger_cmd ("input-radix", class_support
, &input_radix_1
,
3302 Set default input radix for entering numbers."), _("\
3303 Show default input radix for entering numbers."), NULL
,
3306 &setlist
, &showlist
);
3308 add_setshow_zuinteger_cmd ("output-radix", class_support
, &output_radix_1
,
3310 Set default output radix for printing of values."), _("\
3311 Show default output radix for printing of values."), NULL
,
3314 &setlist
, &showlist
);
3316 /* The "set radix" and "show radix" commands are special in that
3317 they are like normal set and show commands but allow two normally
3318 independent variables to be either set or shown with a single
3319 command. So the usual deprecated_add_set_cmd() and [deleted]
3320 add_show_from_set() commands aren't really appropriate. */
3321 /* FIXME: i18n: With the new add_setshow_integer command, that is no
3322 longer true - show can display anything. */
3323 add_cmd ("radix", class_support
, set_radix
, _("\
3324 Set default input and output number radices.\n\
3325 Use 'set input-radix' or 'set output-radix' to independently set each.\n\
3326 Without an argument, sets both radices back to the default value of 10."),
3328 add_cmd ("radix", class_support
, show_radix
, _("\
3329 Show the default input and output number radices.\n\
3330 Use 'show input-radix' or 'show output-radix' to independently show each."),