1 /* Print values for GDB, the GNU debugger.
3 Copyright (C) 1986-2013 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/>. */
21 #include "gdb_string.h"
31 #include "floatformat.h"
33 #include "exceptions.h"
35 #include "python/python.h"
37 #include "gdb_obstack.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 typedef struct converted_character converted_character_d
;
77 DEF_VEC_O (converted_character_d
);
79 /* Command lists for set/show print raw. */
80 struct cmd_list_element
*setprintrawlist
;
81 struct cmd_list_element
*showprintrawlist
;
83 /* Prototypes for local functions */
85 static int partial_memory_read (CORE_ADDR memaddr
, gdb_byte
*myaddr
,
86 int len
, int *errnoptr
);
88 static void show_print (char *, int);
90 static void set_print (char *, int);
92 static void set_radix (char *, int);
94 static void show_radix (char *, int);
96 static void set_input_radix (char *, int, struct cmd_list_element
*);
98 static void set_input_radix_1 (int, unsigned);
100 static void set_output_radix (char *, int, struct cmd_list_element
*);
102 static void set_output_radix_1 (int, unsigned);
104 void _initialize_valprint (void);
106 #define PRINT_MAX_DEFAULT 200 /* Start print_max off at this value. */
108 struct value_print_options user_print_options
=
110 Val_prettyformat_default
, /* prettyformat */
111 0, /* prettyformat_arrays */
112 0, /* prettyformat_structs */
115 1, /* addressprint */
117 PRINT_MAX_DEFAULT
, /* print_max */
118 10, /* repeat_count_threshold */
119 0, /* output_format */
121 0, /* stop_print_at_null */
122 0, /* print_array_indexes */
124 1, /* static_field_print */
125 1, /* pascal_static_field_print */
131 /* Initialize *OPTS to be a copy of the user print options. */
133 get_user_print_options (struct value_print_options
*opts
)
135 *opts
= user_print_options
;
138 /* Initialize *OPTS to be a copy of the user print options, but with
139 pretty-formatting disabled. */
141 get_no_prettyformat_print_options (struct value_print_options
*opts
)
143 *opts
= user_print_options
;
144 opts
->prettyformat
= Val_no_prettyformat
;
147 /* Initialize *OPTS to be a copy of the user print options, but using
148 FORMAT as the formatting option. */
150 get_formatted_print_options (struct value_print_options
*opts
,
153 *opts
= user_print_options
;
154 opts
->format
= format
;
158 show_print_max (struct ui_file
*file
, int from_tty
,
159 struct cmd_list_element
*c
, const char *value
)
161 fprintf_filtered (file
,
162 _("Limit on string chars or array "
163 "elements to print is %s.\n"),
168 /* Default input and output radixes, and output format letter. */
170 unsigned input_radix
= 10;
172 show_input_radix (struct ui_file
*file
, int from_tty
,
173 struct cmd_list_element
*c
, const char *value
)
175 fprintf_filtered (file
,
176 _("Default input radix for entering numbers is %s.\n"),
180 unsigned output_radix
= 10;
182 show_output_radix (struct ui_file
*file
, int from_tty
,
183 struct cmd_list_element
*c
, const char *value
)
185 fprintf_filtered (file
,
186 _("Default output radix for printing of values is %s.\n"),
190 /* By default we print arrays without printing the index of each element in
191 the array. This behavior can be changed by setting PRINT_ARRAY_INDEXES. */
194 show_print_array_indexes (struct ui_file
*file
, int from_tty
,
195 struct cmd_list_element
*c
, const char *value
)
197 fprintf_filtered (file
, _("Printing of array indexes is %s.\n"), value
);
200 /* Print repeat counts if there are more than this many repetitions of an
201 element in an array. Referenced by the low level language dependent
205 show_repeat_count_threshold (struct ui_file
*file
, int from_tty
,
206 struct cmd_list_element
*c
, const char *value
)
208 fprintf_filtered (file
, _("Threshold for repeated print elements is %s.\n"),
212 /* If nonzero, stops printing of char arrays at first null. */
215 show_stop_print_at_null (struct ui_file
*file
, int from_tty
,
216 struct cmd_list_element
*c
, const char *value
)
218 fprintf_filtered (file
,
219 _("Printing of char arrays to stop "
220 "at first null char is %s.\n"),
224 /* Controls pretty printing of structures. */
227 show_prettyformat_structs (struct ui_file
*file
, int from_tty
,
228 struct cmd_list_element
*c
, const char *value
)
230 fprintf_filtered (file
, _("Pretty formatting of structures is %s.\n"), value
);
233 /* Controls pretty printing of arrays. */
236 show_prettyformat_arrays (struct ui_file
*file
, int from_tty
,
237 struct cmd_list_element
*c
, const char *value
)
239 fprintf_filtered (file
, _("Pretty formatting of arrays is %s.\n"), value
);
242 /* If nonzero, causes unions inside structures or other unions to be
246 show_unionprint (struct ui_file
*file
, int from_tty
,
247 struct cmd_list_element
*c
, const char *value
)
249 fprintf_filtered (file
,
250 _("Printing of unions interior to structures is %s.\n"),
254 /* If nonzero, causes machine addresses to be printed in certain contexts. */
257 show_addressprint (struct ui_file
*file
, int from_tty
,
258 struct cmd_list_element
*c
, const char *value
)
260 fprintf_filtered (file
, _("Printing of addresses is %s.\n"), value
);
264 show_symbol_print (struct ui_file
*file
, int from_tty
,
265 struct cmd_list_element
*c
, const char *value
)
267 fprintf_filtered (file
,
268 _("Printing of symbols when printing pointers is %s.\n"),
274 /* A helper function for val_print. When printing in "summary" mode,
275 we want to print scalar arguments, but not aggregate arguments.
276 This function distinguishes between the two. */
279 val_print_scalar_type_p (struct type
*type
)
281 CHECK_TYPEDEF (type
);
282 while (TYPE_CODE (type
) == TYPE_CODE_REF
)
284 type
= TYPE_TARGET_TYPE (type
);
285 CHECK_TYPEDEF (type
);
287 switch (TYPE_CODE (type
))
289 case TYPE_CODE_ARRAY
:
290 case TYPE_CODE_STRUCT
:
291 case TYPE_CODE_UNION
:
293 case TYPE_CODE_STRING
:
300 /* See its definition in value.h. */
303 valprint_check_validity (struct ui_file
*stream
,
306 const struct value
*val
)
308 CHECK_TYPEDEF (type
);
310 if (TYPE_CODE (type
) != TYPE_CODE_UNION
311 && TYPE_CODE (type
) != TYPE_CODE_STRUCT
312 && TYPE_CODE (type
) != TYPE_CODE_ARRAY
)
314 if (!value_bits_valid (val
, TARGET_CHAR_BIT
* embedded_offset
,
315 TARGET_CHAR_BIT
* TYPE_LENGTH (type
)))
317 val_print_optimized_out (stream
);
321 if (value_bits_synthetic_pointer (val
, TARGET_CHAR_BIT
* embedded_offset
,
322 TARGET_CHAR_BIT
* TYPE_LENGTH (type
)))
324 fputs_filtered (_("<synthetic pointer>"), stream
);
328 if (!value_bytes_available (val
, embedded_offset
, TYPE_LENGTH (type
)))
330 val_print_unavailable (stream
);
339 val_print_optimized_out (struct ui_file
*stream
)
341 fprintf_filtered (stream
, _("<optimized out>"));
345 val_print_unavailable (struct ui_file
*stream
)
347 fprintf_filtered (stream
, _("<unavailable>"));
351 val_print_invalid_address (struct ui_file
*stream
)
353 fprintf_filtered (stream
, _("<invalid address>"));
356 /* A generic val_print that is suitable for use by language
357 implementations of the la_val_print method. This function can
358 handle most type codes, though not all, notably exception
359 TYPE_CODE_UNION and TYPE_CODE_STRUCT, which must be implemented by
362 Most arguments are as to val_print.
364 The additional DECORATIONS argument can be used to customize the
365 output in some small, language-specific ways. */
368 generic_val_print (struct type
*type
, const gdb_byte
*valaddr
,
369 int embedded_offset
, CORE_ADDR address
,
370 struct ui_file
*stream
, int recurse
,
371 const struct value
*original_value
,
372 const struct value_print_options
*options
,
373 const struct generic_val_print_decorations
*decorations
)
375 struct gdbarch
*gdbarch
= get_type_arch (type
);
376 unsigned int i
= 0; /* Number of characters printed. */
378 struct type
*elttype
, *unresolved_elttype
;
379 struct type
*unresolved_type
= type
;
383 CHECK_TYPEDEF (type
);
384 switch (TYPE_CODE (type
))
386 case TYPE_CODE_ARRAY
:
387 unresolved_elttype
= TYPE_TARGET_TYPE (type
);
388 elttype
= check_typedef (unresolved_elttype
);
389 if (TYPE_LENGTH (type
) > 0 && TYPE_LENGTH (unresolved_elttype
) > 0)
391 LONGEST low_bound
, high_bound
;
393 if (!get_array_bounds (type
, &low_bound
, &high_bound
))
394 error (_("Could not determine the array high bound"));
396 if (options
->prettyformat_arrays
)
398 print_spaces_filtered (2 + 2 * recurse
, stream
);
401 fprintf_filtered (stream
, "{");
402 val_print_array_elements (type
, valaddr
, embedded_offset
,
404 recurse
, original_value
, options
, 0);
405 fprintf_filtered (stream
, "}");
408 /* Array of unspecified length: treat like pointer to first
410 addr
= address
+ embedded_offset
;
411 goto print_unpacked_pointer
;
413 case TYPE_CODE_MEMBERPTR
:
414 val_print_scalar_formatted (type
, valaddr
, embedded_offset
,
415 original_value
, options
, 0, stream
);
419 if (options
->format
&& options
->format
!= 's')
421 val_print_scalar_formatted (type
, valaddr
, embedded_offset
,
422 original_value
, options
, 0, stream
);
425 unresolved_elttype
= TYPE_TARGET_TYPE (type
);
426 elttype
= check_typedef (unresolved_elttype
);
428 addr
= unpack_pointer (type
, valaddr
+ embedded_offset
);
429 print_unpacked_pointer
:
431 if (TYPE_CODE (elttype
) == TYPE_CODE_FUNC
)
433 /* Try to print what function it points to. */
434 print_function_pointer_address (options
, gdbarch
, addr
, stream
);
438 if (options
->symbol_print
)
439 print_address_demangle (options
, gdbarch
, addr
, stream
, demangle
);
440 else if (options
->addressprint
)
441 fputs_filtered (paddress (gdbarch
, addr
), stream
);
446 elttype
= check_typedef (TYPE_TARGET_TYPE (type
));
447 if (options
->addressprint
)
450 = extract_typed_address (valaddr
+ embedded_offset
, type
);
452 fprintf_filtered (stream
, "@");
453 fputs_filtered (paddress (gdbarch
, addr
), stream
);
454 if (options
->deref_ref
)
455 fputs_filtered (": ", stream
);
457 /* De-reference the reference. */
458 if (options
->deref_ref
)
460 if (TYPE_CODE (elttype
) != TYPE_CODE_UNDEF
)
462 struct value
*deref_val
;
464 deref_val
= coerce_ref_if_computed (original_value
);
465 if (deref_val
!= NULL
)
467 /* More complicated computed references are not supported. */
468 gdb_assert (embedded_offset
== 0);
471 deref_val
= value_at (TYPE_TARGET_TYPE (type
),
472 unpack_pointer (type
,
474 + embedded_offset
)));
476 common_val_print (deref_val
, stream
, recurse
, options
,
480 fputs_filtered ("???", stream
);
487 val_print_scalar_formatted (type
, valaddr
, embedded_offset
,
488 original_value
, options
, 0, stream
);
491 len
= TYPE_NFIELDS (type
);
492 val
= unpack_long (type
, valaddr
+ embedded_offset
);
493 for (i
= 0; i
< len
; i
++)
496 if (val
== TYPE_FIELD_ENUMVAL (type
, i
))
503 fputs_filtered (TYPE_FIELD_NAME (type
, i
), stream
);
505 else if (TYPE_FLAG_ENUM (type
))
509 /* We have a "flag" enum, so we try to decompose it into
510 pieces as appropriate. A flag enum has disjoint
511 constants by definition. */
512 fputs_filtered ("(", stream
);
513 for (i
= 0; i
< len
; ++i
)
517 if ((val
& TYPE_FIELD_ENUMVAL (type
, i
)) != 0)
520 fputs_filtered (" | ", stream
);
523 val
&= ~TYPE_FIELD_ENUMVAL (type
, i
);
524 fputs_filtered (TYPE_FIELD_NAME (type
, i
), stream
);
528 if (first
|| val
!= 0)
531 fputs_filtered (" | ", stream
);
532 fputs_filtered ("unknown: ", stream
);
533 print_longest (stream
, 'd', 0, val
);
536 fputs_filtered (")", stream
);
539 print_longest (stream
, 'd', 0, val
);
542 case TYPE_CODE_FLAGS
:
544 val_print_scalar_formatted (type
, valaddr
, embedded_offset
,
545 original_value
, options
, 0, stream
);
547 val_print_type_code_flags (type
, valaddr
+ embedded_offset
,
552 case TYPE_CODE_METHOD
:
555 val_print_scalar_formatted (type
, valaddr
, embedded_offset
,
556 original_value
, options
, 0, stream
);
559 /* FIXME, we should consider, at least for ANSI C language,
560 eliminating the distinction made between FUNCs and POINTERs
562 fprintf_filtered (stream
, "{");
563 type_print (type
, "", stream
, -1);
564 fprintf_filtered (stream
, "} ");
565 /* Try to print what function it points to, and its address. */
566 print_address_demangle (options
, gdbarch
, address
, stream
, demangle
);
570 if (options
->format
|| options
->output_format
)
572 struct value_print_options opts
= *options
;
573 opts
.format
= (options
->format
? options
->format
574 : options
->output_format
);
575 val_print_scalar_formatted (type
, valaddr
, embedded_offset
,
576 original_value
, &opts
, 0, stream
);
580 val
= unpack_long (type
, valaddr
+ embedded_offset
);
582 fputs_filtered (decorations
->false_name
, stream
);
584 fputs_filtered (decorations
->true_name
, stream
);
586 print_longest (stream
, 'd', 0, val
);
590 case TYPE_CODE_RANGE
:
591 /* FIXME: create_range_type does not set the unsigned bit in a
592 range type (I think it probably should copy it from the
593 target type), so we won't print values which are too large to
594 fit in a signed integer correctly. */
595 /* FIXME: Doesn't handle ranges of enums correctly. (Can't just
596 print with the target type, though, because the size of our
597 type and the target type might differ). */
602 if (options
->format
|| options
->output_format
)
604 struct value_print_options opts
= *options
;
606 opts
.format
= (options
->format
? options
->format
607 : options
->output_format
);
608 val_print_scalar_formatted (type
, valaddr
, embedded_offset
,
609 original_value
, &opts
, 0, stream
);
612 val_print_type_code_int (type
, valaddr
+ embedded_offset
, stream
);
616 if (options
->format
|| options
->output_format
)
618 struct value_print_options opts
= *options
;
620 opts
.format
= (options
->format
? options
->format
621 : options
->output_format
);
622 val_print_scalar_formatted (type
, valaddr
, embedded_offset
,
623 original_value
, &opts
, 0, stream
);
627 val
= unpack_long (type
, valaddr
+ embedded_offset
);
628 if (TYPE_UNSIGNED (type
))
629 fprintf_filtered (stream
, "%u", (unsigned int) val
);
631 fprintf_filtered (stream
, "%d", (int) val
);
632 fputs_filtered (" ", stream
);
633 LA_PRINT_CHAR (val
, unresolved_type
, stream
);
640 val_print_scalar_formatted (type
, valaddr
, embedded_offset
,
641 original_value
, options
, 0, stream
);
645 print_floating (valaddr
+ embedded_offset
, type
, stream
);
649 case TYPE_CODE_DECFLOAT
:
651 val_print_scalar_formatted (type
, valaddr
, embedded_offset
,
652 original_value
, options
, 0, stream
);
654 print_decimal_floating (valaddr
+ embedded_offset
,
659 fputs_filtered (decorations
->void_name
, stream
);
662 case TYPE_CODE_ERROR
:
663 fprintf_filtered (stream
, "%s", TYPE_ERROR_NAME (type
));
666 case TYPE_CODE_UNDEF
:
667 /* This happens (without TYPE_FLAG_STUB set) on systems which
668 don't use dbx xrefs (NO_DBX_XREFS in gcc) if a file has a
669 "struct foo *bar" and no complete type for struct foo in that
671 fprintf_filtered (stream
, _("<incomplete type>"));
674 case TYPE_CODE_COMPLEX
:
675 fprintf_filtered (stream
, "%s", decorations
->complex_prefix
);
677 val_print_scalar_formatted (TYPE_TARGET_TYPE (type
),
678 valaddr
, embedded_offset
,
679 original_value
, options
, 0, stream
);
681 print_floating (valaddr
+ embedded_offset
,
682 TYPE_TARGET_TYPE (type
),
684 fprintf_filtered (stream
, "%s", decorations
->complex_infix
);
686 val_print_scalar_formatted (TYPE_TARGET_TYPE (type
),
689 + TYPE_LENGTH (TYPE_TARGET_TYPE (type
)),
693 print_floating (valaddr
+ embedded_offset
694 + TYPE_LENGTH (TYPE_TARGET_TYPE (type
)),
695 TYPE_TARGET_TYPE (type
),
697 fprintf_filtered (stream
, "%s", decorations
->complex_suffix
);
700 case TYPE_CODE_UNION
:
701 case TYPE_CODE_STRUCT
:
702 case TYPE_CODE_METHODPTR
:
704 error (_("Unhandled type code %d in symbol table."),
710 /* Print using the given LANGUAGE the data of type TYPE located at
711 VALADDR + EMBEDDED_OFFSET (within GDB), which came from the
712 inferior at address ADDRESS + EMBEDDED_OFFSET, onto stdio stream
713 STREAM according to OPTIONS. VAL is the whole object that came
714 from ADDRESS. VALADDR must point to the head of VAL's contents
717 The language printers will pass down an adjusted EMBEDDED_OFFSET to
718 further helper subroutines as subfields of TYPE are printed. In
719 such cases, VALADDR is passed down unadjusted, as well as VAL, so
720 that VAL can be queried for metadata about the contents data being
721 printed, using EMBEDDED_OFFSET as an offset into VAL's contents
722 buffer. For example: "has this field been optimized out", or "I'm
723 printing an object while inspecting a traceframe; has this
724 particular piece of data been collected?".
726 RECURSE indicates the amount of indentation to supply before
727 continuation lines; this amount is roughly twice the value of
731 val_print (struct type
*type
, const gdb_byte
*valaddr
, int embedded_offset
,
732 CORE_ADDR address
, struct ui_file
*stream
, int recurse
,
733 const struct value
*val
,
734 const struct value_print_options
*options
,
735 const struct language_defn
*language
)
737 volatile struct gdb_exception except
;
739 struct value_print_options local_opts
= *options
;
740 struct type
*real_type
= check_typedef (type
);
742 if (local_opts
.prettyformat
== Val_prettyformat_default
)
743 local_opts
.prettyformat
= (local_opts
.prettyformat_structs
744 ? Val_prettyformat
: Val_no_prettyformat
);
748 /* Ensure that the type is complete and not just a stub. If the type is
749 only a stub and we can't find and substitute its complete type, then
750 print appropriate string and return. */
752 if (TYPE_STUB (real_type
))
754 fprintf_filtered (stream
, _("<incomplete type>"));
759 if (!valprint_check_validity (stream
, real_type
, embedded_offset
, val
))
764 ret
= apply_val_pretty_printer (type
, valaddr
, embedded_offset
,
765 address
, stream
, recurse
,
766 val
, options
, language
);
771 /* Handle summary mode. If the value is a scalar, print it;
772 otherwise, print an ellipsis. */
773 if (options
->summary
&& !val_print_scalar_type_p (type
))
775 fprintf_filtered (stream
, "...");
779 TRY_CATCH (except
, RETURN_MASK_ERROR
)
781 language
->la_val_print (type
, valaddr
, embedded_offset
, address
,
782 stream
, recurse
, val
,
785 if (except
.reason
< 0)
786 fprintf_filtered (stream
, _("<error reading variable>"));
789 /* Check whether the value VAL is printable. Return 1 if it is;
790 return 0 and print an appropriate error message to STREAM according to
791 OPTIONS if it is not. */
794 value_check_printable (struct value
*val
, struct ui_file
*stream
,
795 const struct value_print_options
*options
)
799 fprintf_filtered (stream
, _("<address of value unknown>"));
803 if (value_entirely_optimized_out (val
))
805 if (options
->summary
&& !val_print_scalar_type_p (value_type (val
)))
806 fprintf_filtered (stream
, "...");
808 val_print_optimized_out (stream
);
812 if (TYPE_CODE (value_type (val
)) == TYPE_CODE_INTERNAL_FUNCTION
)
814 fprintf_filtered (stream
, _("<internal function %s>"),
815 value_internal_function_name (val
));
822 /* Print using the given LANGUAGE the value VAL onto stream STREAM according
825 This is a preferable interface to val_print, above, because it uses
826 GDB's value mechanism. */
829 common_val_print (struct value
*val
, struct ui_file
*stream
, int recurse
,
830 const struct value_print_options
*options
,
831 const struct language_defn
*language
)
833 if (!value_check_printable (val
, stream
, options
))
836 if (language
->la_language
== language_ada
)
837 /* The value might have a dynamic type, which would cause trouble
838 below when trying to extract the value contents (since the value
839 size is determined from the type size which is unknown). So
840 get a fixed representation of our value. */
841 val
= ada_to_fixed_value (val
);
843 val_print (value_type (val
), value_contents_for_printing (val
),
844 value_embedded_offset (val
), value_address (val
),
846 val
, options
, language
);
849 /* Print on stream STREAM the value VAL according to OPTIONS. The value
850 is printed using the current_language syntax. */
853 value_print (struct value
*val
, struct ui_file
*stream
,
854 const struct value_print_options
*options
)
856 if (!value_check_printable (val
, stream
, options
))
861 int r
= apply_val_pretty_printer (value_type (val
),
862 value_contents_for_printing (val
),
863 value_embedded_offset (val
),
866 val
, options
, current_language
);
872 LA_VALUE_PRINT (val
, stream
, options
);
875 /* Called by various <lang>_val_print routines to print
876 TYPE_CODE_INT's. TYPE is the type. VALADDR is the address of the
877 value. STREAM is where to print the value. */
880 val_print_type_code_int (struct type
*type
, const gdb_byte
*valaddr
,
881 struct ui_file
*stream
)
883 enum bfd_endian byte_order
= gdbarch_byte_order (get_type_arch (type
));
885 if (TYPE_LENGTH (type
) > sizeof (LONGEST
))
889 if (TYPE_UNSIGNED (type
)
890 && extract_long_unsigned_integer (valaddr
, TYPE_LENGTH (type
),
893 print_longest (stream
, 'u', 0, val
);
897 /* Signed, or we couldn't turn an unsigned value into a
898 LONGEST. For signed values, one could assume two's
899 complement (a reasonable assumption, I think) and do
901 print_hex_chars (stream
, (unsigned char *) valaddr
,
902 TYPE_LENGTH (type
), byte_order
);
907 print_longest (stream
, TYPE_UNSIGNED (type
) ? 'u' : 'd', 0,
908 unpack_long (type
, valaddr
));
913 val_print_type_code_flags (struct type
*type
, const gdb_byte
*valaddr
,
914 struct ui_file
*stream
)
916 ULONGEST val
= unpack_long (type
, valaddr
);
917 int bitpos
, nfields
= TYPE_NFIELDS (type
);
919 fputs_filtered ("[ ", stream
);
920 for (bitpos
= 0; bitpos
< nfields
; bitpos
++)
922 if (TYPE_FIELD_BITPOS (type
, bitpos
) != -1
923 && (val
& ((ULONGEST
)1 << bitpos
)))
925 if (TYPE_FIELD_NAME (type
, bitpos
))
926 fprintf_filtered (stream
, "%s ", TYPE_FIELD_NAME (type
, bitpos
));
928 fprintf_filtered (stream
, "#%d ", bitpos
);
931 fputs_filtered ("]", stream
);
934 /* Print a scalar of data of type TYPE, pointed to in GDB by VALADDR,
935 according to OPTIONS and SIZE on STREAM. Format i is not supported
938 This is how the elements of an array or structure are printed
942 val_print_scalar_formatted (struct type
*type
,
943 const gdb_byte
*valaddr
, int embedded_offset
,
944 const struct value
*val
,
945 const struct value_print_options
*options
,
947 struct ui_file
*stream
)
949 gdb_assert (val
!= NULL
);
950 gdb_assert (valaddr
== value_contents_for_printing_const (val
));
952 /* If we get here with a string format, try again without it. Go
953 all the way back to the language printers, which may call us
955 if (options
->format
== 's')
957 struct value_print_options opts
= *options
;
960 val_print (type
, valaddr
, embedded_offset
, 0, stream
, 0, val
, &opts
,
965 /* A scalar object that does not have all bits available can't be
966 printed, because all bits contribute to its representation. */
967 if (!value_bits_valid (val
, TARGET_CHAR_BIT
* embedded_offset
,
968 TARGET_CHAR_BIT
* TYPE_LENGTH (type
)))
969 val_print_optimized_out (stream
);
970 else if (!value_bytes_available (val
, embedded_offset
, TYPE_LENGTH (type
)))
971 val_print_unavailable (stream
);
973 print_scalar_formatted (valaddr
+ embedded_offset
, type
,
974 options
, size
, stream
);
977 /* Print a number according to FORMAT which is one of d,u,x,o,b,h,w,g.
978 The raison d'etre of this function is to consolidate printing of
979 LONG_LONG's into this one function. The format chars b,h,w,g are
980 from print_scalar_formatted(). Numbers are printed using C
983 USE_C_FORMAT means to use C format in all cases. Without it,
984 'o' and 'x' format do not include the standard C radix prefix
987 Hilfinger/2004-09-09: USE_C_FORMAT was originally called USE_LOCAL
988 and was intended to request formating according to the current
989 language and would be used for most integers that GDB prints. The
990 exceptional cases were things like protocols where the format of
991 the integer is a protocol thing, not a user-visible thing). The
992 parameter remains to preserve the information of what things might
993 be printed with language-specific format, should we ever resurrect
997 print_longest (struct ui_file
*stream
, int format
, int use_c_format
,
1005 val
= int_string (val_long
, 10, 1, 0, 1); break;
1007 val
= int_string (val_long
, 10, 0, 0, 1); break;
1009 val
= int_string (val_long
, 16, 0, 0, use_c_format
); break;
1011 val
= int_string (val_long
, 16, 0, 2, 1); break;
1013 val
= int_string (val_long
, 16, 0, 4, 1); break;
1015 val
= int_string (val_long
, 16, 0, 8, 1); break;
1017 val
= int_string (val_long
, 16, 0, 16, 1); break;
1020 val
= int_string (val_long
, 8, 0, 0, use_c_format
); break;
1022 internal_error (__FILE__
, __LINE__
,
1023 _("failed internal consistency check"));
1025 fputs_filtered (val
, stream
);
1028 /* This used to be a macro, but I don't think it is called often enough
1029 to merit such treatment. */
1030 /* Convert a LONGEST to an int. This is used in contexts (e.g. number of
1031 arguments to a function, number in a value history, register number, etc.)
1032 where the value must not be larger than can fit in an int. */
1035 longest_to_int (LONGEST arg
)
1037 /* Let the compiler do the work. */
1038 int rtnval
= (int) arg
;
1040 /* Check for overflows or underflows. */
1041 if (sizeof (LONGEST
) > sizeof (int))
1045 error (_("Value out of range."));
1051 /* Print a floating point value of type TYPE (not always a
1052 TYPE_CODE_FLT), pointed to in GDB by VALADDR, on STREAM. */
1055 print_floating (const gdb_byte
*valaddr
, struct type
*type
,
1056 struct ui_file
*stream
)
1060 const struct floatformat
*fmt
= NULL
;
1061 unsigned len
= TYPE_LENGTH (type
);
1062 enum float_kind kind
;
1064 /* If it is a floating-point, check for obvious problems. */
1065 if (TYPE_CODE (type
) == TYPE_CODE_FLT
)
1066 fmt
= floatformat_from_type (type
);
1069 kind
= floatformat_classify (fmt
, valaddr
);
1070 if (kind
== float_nan
)
1072 if (floatformat_is_negative (fmt
, valaddr
))
1073 fprintf_filtered (stream
, "-");
1074 fprintf_filtered (stream
, "nan(");
1075 fputs_filtered ("0x", stream
);
1076 fputs_filtered (floatformat_mantissa (fmt
, valaddr
), stream
);
1077 fprintf_filtered (stream
, ")");
1080 else if (kind
== float_infinite
)
1082 if (floatformat_is_negative (fmt
, valaddr
))
1083 fputs_filtered ("-", stream
);
1084 fputs_filtered ("inf", stream
);
1089 /* NOTE: cagney/2002-01-15: The TYPE passed into print_floating()
1090 isn't necessarily a TYPE_CODE_FLT. Consequently, unpack_double
1091 needs to be used as that takes care of any necessary type
1092 conversions. Such conversions are of course direct to DOUBLEST
1093 and disregard any possible target floating point limitations.
1094 For instance, a u64 would be converted and displayed exactly on a
1095 host with 80 bit DOUBLEST but with loss of information on a host
1096 with 64 bit DOUBLEST. */
1098 doub
= unpack_double (type
, valaddr
, &inv
);
1101 fprintf_filtered (stream
, "<invalid float value>");
1105 /* FIXME: kettenis/2001-01-20: The following code makes too much
1106 assumptions about the host and target floating point format. */
1108 /* NOTE: cagney/2002-02-03: Since the TYPE of what was passed in may
1109 not necessarily be a TYPE_CODE_FLT, the below ignores that and
1110 instead uses the type's length to determine the precision of the
1111 floating-point value being printed. */
1113 if (len
< sizeof (double))
1114 fprintf_filtered (stream
, "%.9g", (double) doub
);
1115 else if (len
== sizeof (double))
1116 fprintf_filtered (stream
, "%.17g", (double) doub
);
1118 #ifdef PRINTF_HAS_LONG_DOUBLE
1119 fprintf_filtered (stream
, "%.35Lg", doub
);
1121 /* This at least wins with values that are representable as
1123 fprintf_filtered (stream
, "%.17g", (double) doub
);
1128 print_decimal_floating (const gdb_byte
*valaddr
, struct type
*type
,
1129 struct ui_file
*stream
)
1131 enum bfd_endian byte_order
= gdbarch_byte_order (get_type_arch (type
));
1132 char decstr
[MAX_DECIMAL_STRING
];
1133 unsigned len
= TYPE_LENGTH (type
);
1135 decimal_to_string (valaddr
, len
, byte_order
, decstr
);
1136 fputs_filtered (decstr
, stream
);
1141 print_binary_chars (struct ui_file
*stream
, const gdb_byte
*valaddr
,
1142 unsigned len
, enum bfd_endian byte_order
)
1145 #define BITS_IN_BYTES 8
1151 /* Declared "int" so it will be signed.
1152 This ensures that right shift will shift in zeros. */
1154 const int mask
= 0x080;
1156 /* FIXME: We should be not printing leading zeroes in most cases. */
1158 if (byte_order
== BFD_ENDIAN_BIG
)
1164 /* Every byte has 8 binary characters; peel off
1165 and print from the MSB end. */
1167 for (i
= 0; i
< (BITS_IN_BYTES
* sizeof (*p
)); i
++)
1169 if (*p
& (mask
>> i
))
1174 fprintf_filtered (stream
, "%1d", b
);
1180 for (p
= valaddr
+ len
- 1;
1184 for (i
= 0; i
< (BITS_IN_BYTES
* sizeof (*p
)); i
++)
1186 if (*p
& (mask
>> i
))
1191 fprintf_filtered (stream
, "%1d", b
);
1197 /* VALADDR points to an integer of LEN bytes.
1198 Print it in octal on stream or format it in buf. */
1201 print_octal_chars (struct ui_file
*stream
, const gdb_byte
*valaddr
,
1202 unsigned len
, enum bfd_endian byte_order
)
1205 unsigned char octa1
, octa2
, octa3
, carry
;
1208 /* FIXME: We should be not printing leading zeroes in most cases. */
1211 /* Octal is 3 bits, which doesn't fit. Yuk. So we have to track
1212 * the extra bits, which cycle every three bytes:
1214 * Byte side: 0 1 2 3
1216 * bit number 123 456 78 | 9 012 345 6 | 78 901 234 | 567 890 12 |
1218 * Octal side: 0 1 carry 3 4 carry ...
1220 * Cycle number: 0 1 2
1222 * But of course we are printing from the high side, so we have to
1223 * figure out where in the cycle we are so that we end up with no
1224 * left over bits at the end.
1226 #define BITS_IN_OCTAL 3
1227 #define HIGH_ZERO 0340
1228 #define LOW_ZERO 0016
1229 #define CARRY_ZERO 0003
1230 #define HIGH_ONE 0200
1231 #define MID_ONE 0160
1232 #define LOW_ONE 0016
1233 #define CARRY_ONE 0001
1234 #define HIGH_TWO 0300
1235 #define MID_TWO 0070
1236 #define LOW_TWO 0007
1238 /* For 32 we start in cycle 2, with two bits and one bit carry;
1239 for 64 in cycle in cycle 1, with one bit and a two bit carry. */
1241 cycle
= (len
* BITS_IN_BYTES
) % BITS_IN_OCTAL
;
1244 fputs_filtered ("0", stream
);
1245 if (byte_order
== BFD_ENDIAN_BIG
)
1254 /* No carry in, carry out two bits. */
1256 octa1
= (HIGH_ZERO
& *p
) >> 5;
1257 octa2
= (LOW_ZERO
& *p
) >> 2;
1258 carry
= (CARRY_ZERO
& *p
);
1259 fprintf_filtered (stream
, "%o", octa1
);
1260 fprintf_filtered (stream
, "%o", octa2
);
1264 /* Carry in two bits, carry out one bit. */
1266 octa1
= (carry
<< 1) | ((HIGH_ONE
& *p
) >> 7);
1267 octa2
= (MID_ONE
& *p
) >> 4;
1268 octa3
= (LOW_ONE
& *p
) >> 1;
1269 carry
= (CARRY_ONE
& *p
);
1270 fprintf_filtered (stream
, "%o", octa1
);
1271 fprintf_filtered (stream
, "%o", octa2
);
1272 fprintf_filtered (stream
, "%o", octa3
);
1276 /* Carry in one bit, no carry out. */
1278 octa1
= (carry
<< 2) | ((HIGH_TWO
& *p
) >> 6);
1279 octa2
= (MID_TWO
& *p
) >> 3;
1280 octa3
= (LOW_TWO
& *p
);
1282 fprintf_filtered (stream
, "%o", octa1
);
1283 fprintf_filtered (stream
, "%o", octa2
);
1284 fprintf_filtered (stream
, "%o", octa3
);
1288 error (_("Internal error in octal conversion;"));
1292 cycle
= cycle
% BITS_IN_OCTAL
;
1297 for (p
= valaddr
+ len
- 1;
1304 /* Carry out, no carry in */
1306 octa1
= (HIGH_ZERO
& *p
) >> 5;
1307 octa2
= (LOW_ZERO
& *p
) >> 2;
1308 carry
= (CARRY_ZERO
& *p
);
1309 fprintf_filtered (stream
, "%o", octa1
);
1310 fprintf_filtered (stream
, "%o", octa2
);
1314 /* Carry in, carry out */
1316 octa1
= (carry
<< 1) | ((HIGH_ONE
& *p
) >> 7);
1317 octa2
= (MID_ONE
& *p
) >> 4;
1318 octa3
= (LOW_ONE
& *p
) >> 1;
1319 carry
= (CARRY_ONE
& *p
);
1320 fprintf_filtered (stream
, "%o", octa1
);
1321 fprintf_filtered (stream
, "%o", octa2
);
1322 fprintf_filtered (stream
, "%o", octa3
);
1326 /* Carry in, no carry out */
1328 octa1
= (carry
<< 2) | ((HIGH_TWO
& *p
) >> 6);
1329 octa2
= (MID_TWO
& *p
) >> 3;
1330 octa3
= (LOW_TWO
& *p
);
1332 fprintf_filtered (stream
, "%o", octa1
);
1333 fprintf_filtered (stream
, "%o", octa2
);
1334 fprintf_filtered (stream
, "%o", octa3
);
1338 error (_("Internal error in octal conversion;"));
1342 cycle
= cycle
% BITS_IN_OCTAL
;
1348 /* VALADDR points to an integer of LEN bytes.
1349 Print it in decimal on stream or format it in buf. */
1352 print_decimal_chars (struct ui_file
*stream
, const gdb_byte
*valaddr
,
1353 unsigned len
, enum bfd_endian byte_order
)
1356 #define CARRY_OUT( x ) ((x) / TEN) /* extend char to int */
1357 #define CARRY_LEFT( x ) ((x) % TEN)
1358 #define SHIFT( x ) ((x) << 4)
1359 #define LOW_NIBBLE( x ) ( (x) & 0x00F)
1360 #define HIGH_NIBBLE( x ) (((x) & 0x0F0) >> 4)
1363 unsigned char *digits
;
1366 int i
, j
, decimal_digits
;
1370 /* Base-ten number is less than twice as many digits
1371 as the base 16 number, which is 2 digits per byte. */
1373 decimal_len
= len
* 2 * 2;
1374 digits
= xmalloc (decimal_len
);
1376 for (i
= 0; i
< decimal_len
; i
++)
1381 /* Ok, we have an unknown number of bytes of data to be printed in
1384 * Given a hex number (in nibbles) as XYZ, we start by taking X and
1385 * decemalizing it as "x1 x2" in two decimal nibbles. Then we multiply
1386 * the nibbles by 16, add Y and re-decimalize. Repeat with Z.
1388 * The trick is that "digits" holds a base-10 number, but sometimes
1389 * the individual digits are > 10.
1391 * Outer loop is per nibble (hex digit) of input, from MSD end to
1394 decimal_digits
= 0; /* Number of decimal digits so far */
1395 p
= (byte_order
== BFD_ENDIAN_BIG
) ? valaddr
: valaddr
+ len
- 1;
1397 while ((byte_order
== BFD_ENDIAN_BIG
) ? (p
< valaddr
+ len
) : (p
>= valaddr
))
1400 * Multiply current base-ten number by 16 in place.
1401 * Each digit was between 0 and 9, now is between
1404 for (j
= 0; j
< decimal_digits
; j
++)
1406 digits
[j
] = SHIFT (digits
[j
]);
1409 /* Take the next nibble off the input and add it to what
1410 * we've got in the LSB position. Bottom 'digit' is now
1411 * between 0 and 159.
1413 * "flip" is used to run this loop twice for each byte.
1417 /* Take top nibble. */
1419 digits
[0] += HIGH_NIBBLE (*p
);
1424 /* Take low nibble and bump our pointer "p". */
1426 digits
[0] += LOW_NIBBLE (*p
);
1427 if (byte_order
== BFD_ENDIAN_BIG
)
1434 /* Re-decimalize. We have to do this often enough
1435 * that we don't overflow, but once per nibble is
1436 * overkill. Easier this way, though. Note that the
1437 * carry is often larger than 10 (e.g. max initial
1438 * carry out of lowest nibble is 15, could bubble all
1439 * the way up greater than 10). So we have to do
1440 * the carrying beyond the last current digit.
1443 for (j
= 0; j
< decimal_len
- 1; j
++)
1447 /* "/" won't handle an unsigned char with
1448 * a value that if signed would be negative.
1449 * So extend to longword int via "dummy".
1452 carry
= CARRY_OUT (dummy
);
1453 digits
[j
] = CARRY_LEFT (dummy
);
1455 if (j
>= decimal_digits
&& carry
== 0)
1458 * All higher digits are 0 and we
1459 * no longer have a carry.
1461 * Note: "j" is 0-based, "decimal_digits" is
1464 decimal_digits
= j
+ 1;
1470 /* Ok, now "digits" is the decimal representation, with
1471 the "decimal_digits" actual digits. Print! */
1473 for (i
= decimal_digits
- 1; i
>= 0; i
--)
1475 fprintf_filtered (stream
, "%1d", digits
[i
]);
1480 /* VALADDR points to an integer of LEN bytes. Print it in hex on stream. */
1483 print_hex_chars (struct ui_file
*stream
, const gdb_byte
*valaddr
,
1484 unsigned len
, enum bfd_endian byte_order
)
1488 /* FIXME: We should be not printing leading zeroes in most cases. */
1490 fputs_filtered ("0x", stream
);
1491 if (byte_order
== BFD_ENDIAN_BIG
)
1497 fprintf_filtered (stream
, "%02x", *p
);
1502 for (p
= valaddr
+ len
- 1;
1506 fprintf_filtered (stream
, "%02x", *p
);
1511 /* VALADDR points to a char integer of LEN bytes.
1512 Print it out in appropriate language form on stream.
1513 Omit any leading zero chars. */
1516 print_char_chars (struct ui_file
*stream
, struct type
*type
,
1517 const gdb_byte
*valaddr
,
1518 unsigned len
, enum bfd_endian byte_order
)
1522 if (byte_order
== BFD_ENDIAN_BIG
)
1525 while (p
< valaddr
+ len
- 1 && *p
== 0)
1528 while (p
< valaddr
+ len
)
1530 LA_EMIT_CHAR (*p
, type
, stream
, '\'');
1536 p
= valaddr
+ len
- 1;
1537 while (p
> valaddr
&& *p
== 0)
1540 while (p
>= valaddr
)
1542 LA_EMIT_CHAR (*p
, type
, stream
, '\'');
1548 /* Print function pointer with inferior address ADDRESS onto stdio
1552 print_function_pointer_address (const struct value_print_options
*options
,
1553 struct gdbarch
*gdbarch
,
1555 struct ui_file
*stream
)
1558 = gdbarch_convert_from_func_ptr_addr (gdbarch
, address
,
1561 /* If the function pointer is represented by a description, print
1562 the address of the description. */
1563 if (options
->addressprint
&& func_addr
!= address
)
1565 fputs_filtered ("@", stream
);
1566 fputs_filtered (paddress (gdbarch
, address
), stream
);
1567 fputs_filtered (": ", stream
);
1569 print_address_demangle (options
, gdbarch
, func_addr
, stream
, demangle
);
1573 /* Print on STREAM using the given OPTIONS the index for the element
1574 at INDEX of an array whose index type is INDEX_TYPE. */
1577 maybe_print_array_index (struct type
*index_type
, LONGEST index
,
1578 struct ui_file
*stream
,
1579 const struct value_print_options
*options
)
1581 struct value
*index_value
;
1583 if (!options
->print_array_indexes
)
1586 index_value
= value_from_longest (index_type
, index
);
1588 LA_PRINT_ARRAY_INDEX (index_value
, stream
, options
);
1591 /* Called by various <lang>_val_print routines to print elements of an
1592 array in the form "<elem1>, <elem2>, <elem3>, ...".
1594 (FIXME?) Assumes array element separator is a comma, which is correct
1595 for all languages currently handled.
1596 (FIXME?) Some languages have a notation for repeated array elements,
1597 perhaps we should try to use that notation when appropriate. */
1600 val_print_array_elements (struct type
*type
,
1601 const gdb_byte
*valaddr
, int embedded_offset
,
1602 CORE_ADDR address
, struct ui_file
*stream
,
1604 const struct value
*val
,
1605 const struct value_print_options
*options
,
1608 unsigned int things_printed
= 0;
1610 struct type
*elttype
, *index_type
;
1612 /* Position of the array element we are examining to see
1613 whether it is repeated. */
1615 /* Number of repetitions we have detected so far. */
1617 LONGEST low_bound
, high_bound
;
1619 elttype
= TYPE_TARGET_TYPE (type
);
1620 eltlen
= TYPE_LENGTH (check_typedef (elttype
));
1621 index_type
= TYPE_INDEX_TYPE (type
);
1623 if (get_array_bounds (type
, &low_bound
, &high_bound
))
1625 /* The array length should normally be HIGH_BOUND - LOW_BOUND + 1.
1626 But we have to be a little extra careful, because some languages
1627 such as Ada allow LOW_BOUND to be greater than HIGH_BOUND for
1628 empty arrays. In that situation, the array length is just zero,
1630 if (low_bound
> high_bound
)
1633 len
= high_bound
- low_bound
+ 1;
1637 warning (_("unable to get bounds of array, assuming null array"));
1642 annotate_array_section_begin (i
, elttype
);
1644 for (; i
< len
&& things_printed
< options
->print_max
; i
++)
1648 if (options
->prettyformat_arrays
)
1650 fprintf_filtered (stream
, ",\n");
1651 print_spaces_filtered (2 + 2 * recurse
, stream
);
1655 fprintf_filtered (stream
, ", ");
1658 wrap_here (n_spaces (2 + 2 * recurse
));
1659 maybe_print_array_index (index_type
, i
+ low_bound
,
1664 /* Only check for reps if repeat_count_threshold is not set to
1665 UINT_MAX (unlimited). */
1666 if (options
->repeat_count_threshold
< UINT_MAX
)
1669 && value_available_contents_eq (val
,
1670 embedded_offset
+ i
* eltlen
,
1681 if (reps
> options
->repeat_count_threshold
)
1683 val_print (elttype
, valaddr
, embedded_offset
+ i
* eltlen
,
1684 address
, stream
, recurse
+ 1, val
, options
,
1686 annotate_elt_rep (reps
);
1687 fprintf_filtered (stream
, " <repeats %u times>", reps
);
1688 annotate_elt_rep_end ();
1691 things_printed
+= options
->repeat_count_threshold
;
1695 val_print (elttype
, valaddr
, embedded_offset
+ i
* eltlen
,
1697 stream
, recurse
+ 1, val
, options
, current_language
);
1702 annotate_array_section_end ();
1705 fprintf_filtered (stream
, "...");
1709 /* Read LEN bytes of target memory at address MEMADDR, placing the
1710 results in GDB's memory at MYADDR. Returns a count of the bytes
1711 actually read, and optionally an errno value in the location
1712 pointed to by ERRNOPTR if ERRNOPTR is non-null. */
1714 /* FIXME: cagney/1999-10-14: Only used by val_print_string. Can this
1715 function be eliminated. */
1718 partial_memory_read (CORE_ADDR memaddr
, gdb_byte
*myaddr
,
1719 int len
, int *errnoptr
)
1721 int nread
; /* Number of bytes actually read. */
1722 int errcode
; /* Error from last read. */
1724 /* First try a complete read. */
1725 errcode
= target_read_memory (memaddr
, myaddr
, len
);
1733 /* Loop, reading one byte at a time until we get as much as we can. */
1734 for (errcode
= 0, nread
= 0; len
> 0 && errcode
== 0; nread
++, len
--)
1736 errcode
= target_read_memory (memaddr
++, myaddr
++, 1);
1738 /* If an error, the last read was unsuccessful, so adjust count. */
1744 if (errnoptr
!= NULL
)
1746 *errnoptr
= errcode
;
1751 /* Read a string from the inferior, at ADDR, with LEN characters of WIDTH bytes
1752 each. Fetch at most FETCHLIMIT characters. BUFFER will be set to a newly
1753 allocated buffer containing the string, which the caller is responsible to
1754 free, and BYTES_READ will be set to the number of bytes read. Returns 0 on
1755 success, or errno on failure.
1757 If LEN > 0, reads exactly LEN characters (including eventual NULs in
1758 the middle or end of the string). If LEN is -1, stops at the first
1759 null character (not necessarily the first null byte) up to a maximum
1760 of FETCHLIMIT characters. Set FETCHLIMIT to UINT_MAX to read as many
1761 characters as possible from the string.
1763 Unless an exception is thrown, BUFFER will always be allocated, even on
1764 failure. In this case, some characters might have been read before the
1765 failure happened. Check BYTES_READ to recognize this situation.
1767 Note: There was a FIXME asking to make this code use target_read_string,
1768 but this function is more general (can read past null characters, up to
1769 given LEN). Besides, it is used much more often than target_read_string
1770 so it is more tested. Perhaps callers of target_read_string should use
1771 this function instead? */
1774 read_string (CORE_ADDR addr
, int len
, int width
, unsigned int fetchlimit
,
1775 enum bfd_endian byte_order
, gdb_byte
**buffer
, int *bytes_read
)
1777 int found_nul
; /* Non-zero if we found the nul char. */
1778 int errcode
; /* Errno returned from bad reads. */
1779 unsigned int nfetch
; /* Chars to fetch / chars fetched. */
1780 unsigned int chunksize
; /* Size of each fetch, in chars. */
1781 gdb_byte
*bufptr
; /* Pointer to next available byte in
1783 gdb_byte
*limit
; /* First location past end of fetch buffer. */
1784 struct cleanup
*old_chain
= NULL
; /* Top of the old cleanup chain. */
1786 /* Decide how large of chunks to try to read in one operation. This
1787 is also pretty simple. If LEN >= zero, then we want fetchlimit chars,
1788 so we might as well read them all in one operation. If LEN is -1, we
1789 are looking for a NUL terminator to end the fetching, so we might as
1790 well read in blocks that are large enough to be efficient, but not so
1791 large as to be slow if fetchlimit happens to be large. So we choose the
1792 minimum of 8 and fetchlimit. We used to use 200 instead of 8 but
1793 200 is way too big for remote debugging over a serial line. */
1795 chunksize
= (len
== -1 ? min (8, fetchlimit
) : fetchlimit
);
1797 /* Loop until we either have all the characters, or we encounter
1798 some error, such as bumping into the end of the address space. */
1803 old_chain
= make_cleanup (free_current_contents
, buffer
);
1807 *buffer
= (gdb_byte
*) xmalloc (len
* width
);
1810 nfetch
= partial_memory_read (addr
, bufptr
, len
* width
, &errcode
)
1812 addr
+= nfetch
* width
;
1813 bufptr
+= nfetch
* width
;
1817 unsigned long bufsize
= 0;
1822 nfetch
= min (chunksize
, fetchlimit
- bufsize
);
1824 if (*buffer
== NULL
)
1825 *buffer
= (gdb_byte
*) xmalloc (nfetch
* width
);
1827 *buffer
= (gdb_byte
*) xrealloc (*buffer
,
1828 (nfetch
+ bufsize
) * width
);
1830 bufptr
= *buffer
+ bufsize
* width
;
1833 /* Read as much as we can. */
1834 nfetch
= partial_memory_read (addr
, bufptr
, nfetch
* width
, &errcode
)
1837 /* Scan this chunk for the null character that terminates the string
1838 to print. If found, we don't need to fetch any more. Note
1839 that bufptr is explicitly left pointing at the next character
1840 after the null character, or at the next character after the end
1843 limit
= bufptr
+ nfetch
* width
;
1844 while (bufptr
< limit
)
1848 c
= extract_unsigned_integer (bufptr
, width
, byte_order
);
1853 /* We don't care about any error which happened after
1854 the NUL terminator. */
1861 while (errcode
== 0 /* no error */
1862 && bufptr
- *buffer
< fetchlimit
* width
/* no overrun */
1863 && !found_nul
); /* haven't found NUL yet */
1866 { /* Length of string is really 0! */
1867 /* We always allocate *buffer. */
1868 *buffer
= bufptr
= xmalloc (1);
1872 /* bufptr and addr now point immediately beyond the last byte which we
1873 consider part of the string (including a '\0' which ends the string). */
1874 *bytes_read
= bufptr
- *buffer
;
1878 discard_cleanups (old_chain
);
1883 /* Return true if print_wchar can display W without resorting to a
1884 numeric escape, false otherwise. */
1887 wchar_printable (gdb_wchar_t w
)
1889 return (gdb_iswprint (w
)
1890 || w
== LCST ('\a') || w
== LCST ('\b')
1891 || w
== LCST ('\f') || w
== LCST ('\n')
1892 || w
== LCST ('\r') || w
== LCST ('\t')
1893 || w
== LCST ('\v'));
1896 /* A helper function that converts the contents of STRING to wide
1897 characters and then appends them to OUTPUT. */
1900 append_string_as_wide (const char *string
,
1901 struct obstack
*output
)
1903 for (; *string
; ++string
)
1905 gdb_wchar_t w
= gdb_btowc (*string
);
1906 obstack_grow (output
, &w
, sizeof (gdb_wchar_t
));
1910 /* Print a wide character W to OUTPUT. ORIG is a pointer to the
1911 original (target) bytes representing the character, ORIG_LEN is the
1912 number of valid bytes. WIDTH is the number of bytes in a base
1913 characters of the type. OUTPUT is an obstack to which wide
1914 characters are emitted. QUOTER is a (narrow) character indicating
1915 the style of quotes surrounding the character to be printed.
1916 NEED_ESCAPE is an in/out flag which is used to track numeric
1917 escapes across calls. */
1920 print_wchar (gdb_wint_t w
, const gdb_byte
*orig
,
1921 int orig_len
, int width
,
1922 enum bfd_endian byte_order
,
1923 struct obstack
*output
,
1924 int quoter
, int *need_escapep
)
1926 int need_escape
= *need_escapep
;
1929 if (gdb_iswprint (w
) && (!need_escape
|| (!gdb_iswdigit (w
)
1931 && w
!= LCST ('9'))))
1933 gdb_wchar_t wchar
= w
;
1935 if (w
== gdb_btowc (quoter
) || w
== LCST ('\\'))
1936 obstack_grow_wstr (output
, LCST ("\\"));
1937 obstack_grow (output
, &wchar
, sizeof (gdb_wchar_t
));
1944 obstack_grow_wstr (output
, LCST ("\\a"));
1947 obstack_grow_wstr (output
, LCST ("\\b"));
1950 obstack_grow_wstr (output
, LCST ("\\f"));
1953 obstack_grow_wstr (output
, LCST ("\\n"));
1956 obstack_grow_wstr (output
, LCST ("\\r"));
1959 obstack_grow_wstr (output
, LCST ("\\t"));
1962 obstack_grow_wstr (output
, LCST ("\\v"));
1968 for (i
= 0; i
+ width
<= orig_len
; i
+= width
)
1973 value
= extract_unsigned_integer (&orig
[i
], width
,
1975 /* If the value fits in 3 octal digits, print it that
1976 way. Otherwise, print it as a hex escape. */
1978 xsnprintf (octal
, sizeof (octal
), "\\%.3o",
1979 (int) (value
& 0777));
1981 xsnprintf (octal
, sizeof (octal
), "\\x%lx", (long) value
);
1982 append_string_as_wide (octal
, output
);
1984 /* If we somehow have extra bytes, print them now. */
1985 while (i
< orig_len
)
1989 xsnprintf (octal
, sizeof (octal
), "\\%.3o", orig
[i
] & 0xff);
1990 append_string_as_wide (octal
, output
);
2001 /* Print the character C on STREAM as part of the contents of a
2002 literal string whose delimiter is QUOTER. ENCODING names the
2006 generic_emit_char (int c
, struct type
*type
, struct ui_file
*stream
,
2007 int quoter
, const char *encoding
)
2009 enum bfd_endian byte_order
2010 = gdbarch_byte_order (get_type_arch (type
));
2011 struct obstack wchar_buf
, output
;
2012 struct cleanup
*cleanups
;
2014 struct wchar_iterator
*iter
;
2015 int need_escape
= 0;
2017 buf
= alloca (TYPE_LENGTH (type
));
2018 pack_long (buf
, type
, c
);
2020 iter
= make_wchar_iterator (buf
, TYPE_LENGTH (type
),
2021 encoding
, TYPE_LENGTH (type
));
2022 cleanups
= make_cleanup_wchar_iterator (iter
);
2024 /* This holds the printable form of the wchar_t data. */
2025 obstack_init (&wchar_buf
);
2026 make_cleanup_obstack_free (&wchar_buf
);
2032 const gdb_byte
*buf
;
2034 int print_escape
= 1;
2035 enum wchar_iterate_result result
;
2037 num_chars
= wchar_iterate (iter
, &result
, &chars
, &buf
, &buflen
);
2042 /* If all characters are printable, print them. Otherwise,
2043 we're going to have to print an escape sequence. We
2044 check all characters because we want to print the target
2045 bytes in the escape sequence, and we don't know character
2046 boundaries there. */
2050 for (i
= 0; i
< num_chars
; ++i
)
2051 if (!wchar_printable (chars
[i
]))
2059 for (i
= 0; i
< num_chars
; ++i
)
2060 print_wchar (chars
[i
], buf
, buflen
,
2061 TYPE_LENGTH (type
), byte_order
,
2062 &wchar_buf
, quoter
, &need_escape
);
2066 /* This handles the NUM_CHARS == 0 case as well. */
2068 print_wchar (gdb_WEOF
, buf
, buflen
, TYPE_LENGTH (type
),
2069 byte_order
, &wchar_buf
, quoter
, &need_escape
);
2072 /* The output in the host encoding. */
2073 obstack_init (&output
);
2074 make_cleanup_obstack_free (&output
);
2076 convert_between_encodings (INTERMEDIATE_ENCODING
, host_charset (),
2077 (gdb_byte
*) obstack_base (&wchar_buf
),
2078 obstack_object_size (&wchar_buf
),
2079 sizeof (gdb_wchar_t
), &output
, translit_char
);
2080 obstack_1grow (&output
, '\0');
2082 fputs_filtered (obstack_base (&output
), stream
);
2084 do_cleanups (cleanups
);
2087 /* Return the repeat count of the next character/byte in ITER,
2088 storing the result in VEC. */
2091 count_next_character (struct wchar_iterator
*iter
,
2092 VEC (converted_character_d
) **vec
)
2094 struct converted_character
*current
;
2096 if (VEC_empty (converted_character_d
, *vec
))
2098 struct converted_character tmp
;
2102 = wchar_iterate (iter
, &tmp
.result
, &chars
, &tmp
.buf
, &tmp
.buflen
);
2103 if (tmp
.num_chars
> 0)
2105 gdb_assert (tmp
.num_chars
< MAX_WCHARS
);
2106 memcpy (tmp
.chars
, chars
, tmp
.num_chars
* sizeof (gdb_wchar_t
));
2108 VEC_safe_push (converted_character_d
, *vec
, &tmp
);
2111 current
= VEC_last (converted_character_d
, *vec
);
2113 /* Count repeated characters or bytes. */
2114 current
->repeat_count
= 1;
2115 if (current
->num_chars
== -1)
2123 struct converted_character d
;
2130 /* Get the next character. */
2132 = wchar_iterate (iter
, &d
.result
, &chars
, &d
.buf
, &d
.buflen
);
2134 /* If a character was successfully converted, save the character
2135 into the converted character. */
2136 if (d
.num_chars
> 0)
2138 gdb_assert (d
.num_chars
< MAX_WCHARS
);
2139 memcpy (d
.chars
, chars
, WCHAR_BUFLEN (d
.num_chars
));
2142 /* Determine if the current character is the same as this
2144 if (d
.num_chars
== current
->num_chars
&& d
.result
== current
->result
)
2146 /* There are two cases to consider:
2148 1) Equality of converted character (num_chars > 0)
2149 2) Equality of non-converted character (num_chars == 0) */
2150 if ((current
->num_chars
> 0
2151 && memcmp (current
->chars
, d
.chars
,
2152 WCHAR_BUFLEN (current
->num_chars
)) == 0)
2153 || (current
->num_chars
== 0
2154 && current
->buflen
== d
.buflen
2155 && memcmp (current
->buf
, d
.buf
, current
->buflen
) == 0))
2156 ++current
->repeat_count
;
2164 /* Push this next converted character onto the result vector. */
2165 repeat
= current
->repeat_count
;
2166 VEC_safe_push (converted_character_d
, *vec
, &d
);
2171 /* Print the characters in CHARS to the OBSTACK. QUOTE_CHAR is the quote
2172 character to use with string output. WIDTH is the size of the output
2173 character type. BYTE_ORDER is the the target byte order. OPTIONS
2174 is the user's print options. */
2177 print_converted_chars_to_obstack (struct obstack
*obstack
,
2178 VEC (converted_character_d
) *chars
,
2179 int quote_char
, int width
,
2180 enum bfd_endian byte_order
,
2181 const struct value_print_options
*options
)
2184 struct converted_character
*elem
;
2185 enum {START
, SINGLE
, REPEAT
, INCOMPLETE
, FINISH
} state
, last
;
2186 gdb_wchar_t wide_quote_char
= gdb_btowc (quote_char
);
2187 int need_escape
= 0;
2189 /* Set the start state. */
2191 last
= state
= START
;
2199 /* Nothing to do. */
2206 /* We are outputting a single character
2207 (< options->repeat_count_threshold). */
2211 /* We were outputting some other type of content, so we
2212 must output and a comma and a quote. */
2214 obstack_grow_wstr (obstack
, LCST (", "));
2215 obstack_grow (obstack
, &wide_quote_char
, sizeof (gdb_wchar_t
));
2217 /* Output the character. */
2218 for (j
= 0; j
< elem
->repeat_count
; ++j
)
2220 if (elem
->result
== wchar_iterate_ok
)
2221 print_wchar (elem
->chars
[0], elem
->buf
, elem
->buflen
, width
,
2222 byte_order
, obstack
, quote_char
, &need_escape
);
2224 print_wchar (gdb_WEOF
, elem
->buf
, elem
->buflen
, width
,
2225 byte_order
, obstack
, quote_char
, &need_escape
);
2235 /* We are outputting a character with a repeat count
2236 greater than options->repeat_count_threshold. */
2240 /* We were outputting a single string. Terminate the
2242 obstack_grow (obstack
, &wide_quote_char
, sizeof (gdb_wchar_t
));
2245 obstack_grow_wstr (obstack
, LCST (", "));
2247 /* Output the character and repeat string. */
2248 obstack_grow_wstr (obstack
, LCST ("'"));
2249 if (elem
->result
== wchar_iterate_ok
)
2250 print_wchar (elem
->chars
[0], elem
->buf
, elem
->buflen
, width
,
2251 byte_order
, obstack
, quote_char
, &need_escape
);
2253 print_wchar (gdb_WEOF
, elem
->buf
, elem
->buflen
, width
,
2254 byte_order
, obstack
, quote_char
, &need_escape
);
2255 obstack_grow_wstr (obstack
, LCST ("'"));
2256 s
= xstrprintf (_(" <repeats %u times>"), elem
->repeat_count
);
2257 for (j
= 0; s
[j
]; ++j
)
2259 gdb_wchar_t w
= gdb_btowc (s
[j
]);
2260 obstack_grow (obstack
, &w
, sizeof (gdb_wchar_t
));
2267 /* We are outputting an incomplete sequence. */
2270 /* If we were outputting a string of SINGLE characters,
2271 terminate the quote. */
2272 obstack_grow (obstack
, &wide_quote_char
, sizeof (gdb_wchar_t
));
2275 obstack_grow_wstr (obstack
, LCST (", "));
2277 /* Output the incomplete sequence string. */
2278 obstack_grow_wstr (obstack
, LCST ("<incomplete sequence "));
2279 print_wchar (gdb_WEOF
, elem
->buf
, elem
->buflen
, width
, byte_order
,
2280 obstack
, 0, &need_escape
);
2281 obstack_grow_wstr (obstack
, LCST (">"));
2283 /* We do not attempt to outupt anything after this. */
2288 /* All done. If we were outputting a string of SINGLE
2289 characters, the string must be terminated. Otherwise,
2290 REPEAT and INCOMPLETE are always left properly terminated. */
2292 obstack_grow (obstack
, &wide_quote_char
, sizeof (gdb_wchar_t
));
2297 /* Get the next element and state. */
2299 if (state
!= FINISH
)
2301 elem
= VEC_index (converted_character_d
, chars
, idx
++);
2302 switch (elem
->result
)
2304 case wchar_iterate_ok
:
2305 case wchar_iterate_invalid
:
2306 if (elem
->repeat_count
> options
->repeat_count_threshold
)
2312 case wchar_iterate_incomplete
:
2316 case wchar_iterate_eof
:
2324 /* Print the character string STRING, printing at most LENGTH
2325 characters. LENGTH is -1 if the string is nul terminated. TYPE is
2326 the type of each character. OPTIONS holds the printing options;
2327 printing stops early if the number hits print_max; repeat counts
2328 are printed as appropriate. Print ellipses at the end if we had to
2329 stop before printing LENGTH characters, or if FORCE_ELLIPSES.
2330 QUOTE_CHAR is the character to print at each end of the string. If
2331 C_STYLE_TERMINATOR is true, and the last character is 0, then it is
2335 generic_printstr (struct ui_file
*stream
, struct type
*type
,
2336 const gdb_byte
*string
, unsigned int length
,
2337 const char *encoding
, int force_ellipses
,
2338 int quote_char
, int c_style_terminator
,
2339 const struct value_print_options
*options
)
2341 enum bfd_endian byte_order
= gdbarch_byte_order (get_type_arch (type
));
2343 int width
= TYPE_LENGTH (type
);
2344 struct obstack wchar_buf
, output
;
2345 struct cleanup
*cleanup
;
2346 struct wchar_iterator
*iter
;
2348 struct converted_character
*last
;
2349 VEC (converted_character_d
) *converted_chars
;
2353 unsigned long current_char
= 1;
2355 for (i
= 0; current_char
; ++i
)
2358 current_char
= extract_unsigned_integer (string
+ i
* width
,
2364 /* If the string was not truncated due to `set print elements', and
2365 the last byte of it is a null, we don't print that, in
2366 traditional C style. */
2367 if (c_style_terminator
2370 && (extract_unsigned_integer (string
+ (length
- 1) * width
,
2371 width
, byte_order
) == 0))
2376 fputs_filtered ("\"\"", stream
);
2380 /* Arrange to iterate over the characters, in wchar_t form. */
2381 iter
= make_wchar_iterator (string
, length
* width
, encoding
, width
);
2382 cleanup
= make_cleanup_wchar_iterator (iter
);
2383 converted_chars
= NULL
;
2384 make_cleanup (VEC_cleanup (converted_character_d
), &converted_chars
);
2386 /* Convert characters until the string is over or the maximum
2387 number of printed characters has been reached. */
2389 while (i
< options
->print_max
)
2395 /* Grab the next character and repeat count. */
2396 r
= count_next_character (iter
, &converted_chars
);
2398 /* If less than zero, the end of the input string was reached. */
2402 /* Otherwise, add the count to the total print count and get
2403 the next character. */
2407 /* Get the last element and determine if the entire string was
2409 last
= VEC_last (converted_character_d
, converted_chars
);
2410 finished
= (last
->result
== wchar_iterate_eof
);
2412 /* Ensure that CONVERTED_CHARS is terminated. */
2413 last
->result
= wchar_iterate_eof
;
2415 /* WCHAR_BUF is the obstack we use to represent the string in
2417 obstack_init (&wchar_buf
);
2418 make_cleanup_obstack_free (&wchar_buf
);
2420 /* Print the output string to the obstack. */
2421 print_converted_chars_to_obstack (&wchar_buf
, converted_chars
, quote_char
,
2422 width
, byte_order
, options
);
2424 if (force_ellipses
|| !finished
)
2425 obstack_grow_wstr (&wchar_buf
, LCST ("..."));
2427 /* OUTPUT is where we collect `char's for printing. */
2428 obstack_init (&output
);
2429 make_cleanup_obstack_free (&output
);
2431 convert_between_encodings (INTERMEDIATE_ENCODING
, host_charset (),
2432 (gdb_byte
*) obstack_base (&wchar_buf
),
2433 obstack_object_size (&wchar_buf
),
2434 sizeof (gdb_wchar_t
), &output
, translit_char
);
2435 obstack_1grow (&output
, '\0');
2437 fputs_filtered (obstack_base (&output
), stream
);
2439 do_cleanups (cleanup
);
2442 /* Print a string from the inferior, starting at ADDR and printing up to LEN
2443 characters, of WIDTH bytes a piece, to STREAM. If LEN is -1, printing
2444 stops at the first null byte, otherwise printing proceeds (including null
2445 bytes) until either print_max or LEN characters have been printed,
2446 whichever is smaller. ENCODING is the name of the string's
2447 encoding. It can be NULL, in which case the target encoding is
2451 val_print_string (struct type
*elttype
, const char *encoding
,
2452 CORE_ADDR addr
, int len
,
2453 struct ui_file
*stream
,
2454 const struct value_print_options
*options
)
2456 int force_ellipsis
= 0; /* Force ellipsis to be printed if nonzero. */
2457 int errcode
; /* Errno returned from bad reads. */
2458 int found_nul
; /* Non-zero if we found the nul char. */
2459 unsigned int fetchlimit
; /* Maximum number of chars to print. */
2461 gdb_byte
*buffer
= NULL
; /* Dynamically growable fetch buffer. */
2462 struct cleanup
*old_chain
= NULL
; /* Top of the old cleanup chain. */
2463 struct gdbarch
*gdbarch
= get_type_arch (elttype
);
2464 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
2465 int width
= TYPE_LENGTH (elttype
);
2467 /* First we need to figure out the limit on the number of characters we are
2468 going to attempt to fetch and print. This is actually pretty simple. If
2469 LEN >= zero, then the limit is the minimum of LEN and print_max. If
2470 LEN is -1, then the limit is print_max. This is true regardless of
2471 whether print_max is zero, UINT_MAX (unlimited), or something in between,
2472 because finding the null byte (or available memory) is what actually
2473 limits the fetch. */
2475 fetchlimit
= (len
== -1 ? options
->print_max
: min (len
,
2476 options
->print_max
));
2478 errcode
= read_string (addr
, len
, width
, fetchlimit
, byte_order
,
2479 &buffer
, &bytes_read
);
2480 old_chain
= make_cleanup (xfree
, buffer
);
2484 /* We now have either successfully filled the buffer to fetchlimit,
2485 or terminated early due to an error or finding a null char when
2488 /* Determine found_nul by looking at the last character read. */
2489 found_nul
= extract_unsigned_integer (buffer
+ bytes_read
- width
, width
,
2491 if (len
== -1 && !found_nul
)
2495 /* We didn't find a NUL terminator we were looking for. Attempt
2496 to peek at the next character. If not successful, or it is not
2497 a null byte, then force ellipsis to be printed. */
2499 peekbuf
= (gdb_byte
*) alloca (width
);
2501 if (target_read_memory (addr
, peekbuf
, width
) == 0
2502 && extract_unsigned_integer (peekbuf
, width
, byte_order
) != 0)
2505 else if ((len
>= 0 && errcode
!= 0) || (len
> bytes_read
/ width
))
2507 /* Getting an error when we have a requested length, or fetching less
2508 than the number of characters actually requested, always make us
2513 /* If we get an error before fetching anything, don't print a string.
2514 But if we fetch something and then get an error, print the string
2515 and then the error message. */
2516 if (errcode
== 0 || bytes_read
> 0)
2518 LA_PRINT_STRING (stream
, elttype
, buffer
, bytes_read
/ width
,
2519 encoding
, force_ellipsis
, options
);
2526 fprintf_filtered (stream
, "<Address ");
2527 fputs_filtered (paddress (gdbarch
, addr
), stream
);
2528 fprintf_filtered (stream
, " out of bounds>");
2532 fprintf_filtered (stream
, "<Error reading address ");
2533 fputs_filtered (paddress (gdbarch
, addr
), stream
);
2534 fprintf_filtered (stream
, ": %s>", safe_strerror (errcode
));
2539 do_cleanups (old_chain
);
2541 return (bytes_read
/ width
);
2545 /* The 'set input-radix' command writes to this auxiliary variable.
2546 If the requested radix is valid, INPUT_RADIX is updated; otherwise,
2547 it is left unchanged. */
2549 static unsigned input_radix_1
= 10;
2551 /* Validate an input or output radix setting, and make sure the user
2552 knows what they really did here. Radix setting is confusing, e.g.
2553 setting the input radix to "10" never changes it! */
2556 set_input_radix (char *args
, int from_tty
, struct cmd_list_element
*c
)
2558 set_input_radix_1 (from_tty
, input_radix_1
);
2562 set_input_radix_1 (int from_tty
, unsigned radix
)
2564 /* We don't currently disallow any input radix except 0 or 1, which don't
2565 make any mathematical sense. In theory, we can deal with any input
2566 radix greater than 1, even if we don't have unique digits for every
2567 value from 0 to radix-1, but in practice we lose on large radix values.
2568 We should either fix the lossage or restrict the radix range more.
2573 input_radix_1
= input_radix
;
2574 error (_("Nonsense input radix ``decimal %u''; input radix unchanged."),
2577 input_radix_1
= input_radix
= radix
;
2580 printf_filtered (_("Input radix now set to "
2581 "decimal %u, hex %x, octal %o.\n"),
2582 radix
, radix
, radix
);
2586 /* The 'set output-radix' command writes to this auxiliary variable.
2587 If the requested radix is valid, OUTPUT_RADIX is updated,
2588 otherwise, it is left unchanged. */
2590 static unsigned output_radix_1
= 10;
2593 set_output_radix (char *args
, int from_tty
, struct cmd_list_element
*c
)
2595 set_output_radix_1 (from_tty
, output_radix_1
);
2599 set_output_radix_1 (int from_tty
, unsigned radix
)
2601 /* Validate the radix and disallow ones that we aren't prepared to
2602 handle correctly, leaving the radix unchanged. */
2606 user_print_options
.output_format
= 'x'; /* hex */
2609 user_print_options
.output_format
= 0; /* decimal */
2612 user_print_options
.output_format
= 'o'; /* octal */
2615 output_radix_1
= output_radix
;
2616 error (_("Unsupported output radix ``decimal %u''; "
2617 "output radix unchanged."),
2620 output_radix_1
= output_radix
= radix
;
2623 printf_filtered (_("Output radix now set to "
2624 "decimal %u, hex %x, octal %o.\n"),
2625 radix
, radix
, radix
);
2629 /* Set both the input and output radix at once. Try to set the output radix
2630 first, since it has the most restrictive range. An radix that is valid as
2631 an output radix is also valid as an input radix.
2633 It may be useful to have an unusual input radix. If the user wishes to
2634 set an input radix that is not valid as an output radix, he needs to use
2635 the 'set input-radix' command. */
2638 set_radix (char *arg
, int from_tty
)
2642 radix
= (arg
== NULL
) ? 10 : parse_and_eval_long (arg
);
2643 set_output_radix_1 (0, radix
);
2644 set_input_radix_1 (0, radix
);
2647 printf_filtered (_("Input and output radices now set to "
2648 "decimal %u, hex %x, octal %o.\n"),
2649 radix
, radix
, radix
);
2653 /* Show both the input and output radices. */
2656 show_radix (char *arg
, int from_tty
)
2660 if (input_radix
== output_radix
)
2662 printf_filtered (_("Input and output radices set to "
2663 "decimal %u, hex %x, octal %o.\n"),
2664 input_radix
, input_radix
, input_radix
);
2668 printf_filtered (_("Input radix set to decimal "
2669 "%u, hex %x, octal %o.\n"),
2670 input_radix
, input_radix
, input_radix
);
2671 printf_filtered (_("Output radix set to decimal "
2672 "%u, hex %x, octal %o.\n"),
2673 output_radix
, output_radix
, output_radix
);
2680 set_print (char *arg
, int from_tty
)
2683 "\"set print\" must be followed by the name of a print subcommand.\n");
2684 help_list (setprintlist
, "set print ", -1, gdb_stdout
);
2688 show_print (char *args
, int from_tty
)
2690 cmd_show_list (showprintlist
, from_tty
, "");
2694 set_print_raw (char *arg
, int from_tty
)
2697 "\"set print raw\" must be followed by the name of a \"print raw\" subcommand.\n");
2698 help_list (setprintrawlist
, "set print raw ", -1, gdb_stdout
);
2702 show_print_raw (char *args
, int from_tty
)
2704 cmd_show_list (showprintrawlist
, from_tty
, "");
2709 _initialize_valprint (void)
2711 add_prefix_cmd ("print", no_class
, set_print
,
2712 _("Generic command for setting how things print."),
2713 &setprintlist
, "set print ", 0, &setlist
);
2714 add_alias_cmd ("p", "print", no_class
, 1, &setlist
);
2715 /* Prefer set print to set prompt. */
2716 add_alias_cmd ("pr", "print", no_class
, 1, &setlist
);
2718 add_prefix_cmd ("print", no_class
, show_print
,
2719 _("Generic command for showing print settings."),
2720 &showprintlist
, "show print ", 0, &showlist
);
2721 add_alias_cmd ("p", "print", no_class
, 1, &showlist
);
2722 add_alias_cmd ("pr", "print", no_class
, 1, &showlist
);
2724 add_prefix_cmd ("raw", no_class
, set_print_raw
,
2726 Generic command for setting what things to print in \"raw\" mode."),
2727 &setprintrawlist
, "set print raw ", 0, &setprintlist
);
2728 add_prefix_cmd ("raw", no_class
, show_print_raw
,
2729 _("Generic command for showing \"print raw\" settings."),
2730 &showprintrawlist
, "show print raw ", 0, &showprintlist
);
2732 add_setshow_uinteger_cmd ("elements", no_class
,
2733 &user_print_options
.print_max
, _("\
2734 Set limit on string chars or array elements to print."), _("\
2735 Show limit on string chars or array elements to print."), _("\
2736 \"set print elements unlimited\" causes there to be no limit."),
2739 &setprintlist
, &showprintlist
);
2741 add_setshow_boolean_cmd ("null-stop", no_class
,
2742 &user_print_options
.stop_print_at_null
, _("\
2743 Set printing of char arrays to stop at first null char."), _("\
2744 Show printing of char arrays to stop at first null char."), NULL
,
2746 show_stop_print_at_null
,
2747 &setprintlist
, &showprintlist
);
2749 add_setshow_uinteger_cmd ("repeats", no_class
,
2750 &user_print_options
.repeat_count_threshold
, _("\
2751 Set threshold for repeated print elements."), _("\
2752 Show threshold for repeated print elements."), _("\
2753 \"set print repeats unlimited\" causes all elements to be individually printed."),
2755 show_repeat_count_threshold
,
2756 &setprintlist
, &showprintlist
);
2758 add_setshow_boolean_cmd ("pretty", class_support
,
2759 &user_print_options
.prettyformat_structs
, _("\
2760 Set pretty formatting of structures."), _("\
2761 Show pretty formatting of structures."), NULL
,
2763 show_prettyformat_structs
,
2764 &setprintlist
, &showprintlist
);
2766 add_setshow_boolean_cmd ("union", class_support
,
2767 &user_print_options
.unionprint
, _("\
2768 Set printing of unions interior to structures."), _("\
2769 Show printing of unions interior to structures."), NULL
,
2772 &setprintlist
, &showprintlist
);
2774 add_setshow_boolean_cmd ("array", class_support
,
2775 &user_print_options
.prettyformat_arrays
, _("\
2776 Set pretty formatting of arrays."), _("\
2777 Show pretty formatting of arrays."), NULL
,
2779 show_prettyformat_arrays
,
2780 &setprintlist
, &showprintlist
);
2782 add_setshow_boolean_cmd ("address", class_support
,
2783 &user_print_options
.addressprint
, _("\
2784 Set printing of addresses."), _("\
2785 Show printing of addresses."), NULL
,
2788 &setprintlist
, &showprintlist
);
2790 add_setshow_boolean_cmd ("symbol", class_support
,
2791 &user_print_options
.symbol_print
, _("\
2792 Set printing of symbol names when printing pointers."), _("\
2793 Show printing of symbol names when printing pointers."),
2796 &setprintlist
, &showprintlist
);
2798 add_setshow_zuinteger_cmd ("input-radix", class_support
, &input_radix_1
,
2800 Set default input radix for entering numbers."), _("\
2801 Show default input radix for entering numbers."), NULL
,
2804 &setlist
, &showlist
);
2806 add_setshow_zuinteger_cmd ("output-radix", class_support
, &output_radix_1
,
2808 Set default output radix for printing of values."), _("\
2809 Show default output radix for printing of values."), NULL
,
2812 &setlist
, &showlist
);
2814 /* The "set radix" and "show radix" commands are special in that
2815 they are like normal set and show commands but allow two normally
2816 independent variables to be either set or shown with a single
2817 command. So the usual deprecated_add_set_cmd() and [deleted]
2818 add_show_from_set() commands aren't really appropriate. */
2819 /* FIXME: i18n: With the new add_setshow_integer command, that is no
2820 longer true - show can display anything. */
2821 add_cmd ("radix", class_support
, set_radix
, _("\
2822 Set default input and output number radices.\n\
2823 Use 'set input-radix' or 'set output-radix' to independently set each.\n\
2824 Without an argument, sets both radices back to the default value of 10."),
2826 add_cmd ("radix", class_support
, show_radix
, _("\
2827 Show the default input and output number radices.\n\
2828 Use 'show input-radix' or 'show output-radix' to independently show each."),
2831 add_setshow_boolean_cmd ("array-indexes", class_support
,
2832 &user_print_options
.print_array_indexes
, _("\
2833 Set printing of array indexes."), _("\
2834 Show printing of array indexes"), NULL
, NULL
, show_print_array_indexes
,
2835 &setprintlist
, &showprintlist
);