1 /* Print values for GDB, the GNU debugger.
3 Copyright (C) 1986, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
4 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
5 2009, 2010, 2011 Free Software Foundation, Inc.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 #include "gdb_string.h"
33 #include "floatformat.h"
35 #include "exceptions.h"
37 #include "python/python.h"
42 /* Prototypes for local functions */
44 static int partial_memory_read (CORE_ADDR memaddr
, gdb_byte
*myaddr
,
45 int len
, int *errnoptr
);
47 static void show_print (char *, int);
49 static void set_print (char *, int);
51 static void set_radix (char *, int);
53 static void show_radix (char *, int);
55 static void set_input_radix (char *, int, struct cmd_list_element
*);
57 static void set_input_radix_1 (int, unsigned);
59 static void set_output_radix (char *, int, struct cmd_list_element
*);
61 static void set_output_radix_1 (int, unsigned);
63 void _initialize_valprint (void);
65 #define PRINT_MAX_DEFAULT 200 /* Start print_max off at this value. */
67 struct value_print_options user_print_options
=
69 Val_pretty_default
, /* pretty */
70 0, /* prettyprint_arrays */
71 0, /* prettyprint_structs */
76 PRINT_MAX_DEFAULT
, /* print_max */
77 10, /* repeat_count_threshold */
78 0, /* output_format */
80 0, /* stop_print_at_null */
82 0, /* print_array_indexes */
84 1, /* static_field_print */
85 1, /* pascal_static_field_print */
90 /* Initialize *OPTS to be a copy of the user print options. */
92 get_user_print_options (struct value_print_options
*opts
)
94 *opts
= user_print_options
;
97 /* Initialize *OPTS to be a copy of the user print options, but with
98 pretty-printing disabled. */
100 get_raw_print_options (struct value_print_options
*opts
)
102 *opts
= user_print_options
;
103 opts
->pretty
= Val_no_prettyprint
;
106 /* Initialize *OPTS to be a copy of the user print options, but using
107 FORMAT as the formatting option. */
109 get_formatted_print_options (struct value_print_options
*opts
,
112 *opts
= user_print_options
;
113 opts
->format
= format
;
117 show_print_max (struct ui_file
*file
, int from_tty
,
118 struct cmd_list_element
*c
, const char *value
)
120 fprintf_filtered (file
,
121 _("Limit on string chars or array "
122 "elements to print is %s.\n"),
127 /* Default input and output radixes, and output format letter. */
129 unsigned input_radix
= 10;
131 show_input_radix (struct ui_file
*file
, int from_tty
,
132 struct cmd_list_element
*c
, const char *value
)
134 fprintf_filtered (file
,
135 _("Default input radix for entering numbers is %s.\n"),
139 unsigned output_radix
= 10;
141 show_output_radix (struct ui_file
*file
, int from_tty
,
142 struct cmd_list_element
*c
, const char *value
)
144 fprintf_filtered (file
,
145 _("Default output radix for printing of values is %s.\n"),
149 /* By default we print arrays without printing the index of each element in
150 the array. This behavior can be changed by setting PRINT_ARRAY_INDEXES. */
153 show_print_array_indexes (struct ui_file
*file
, int from_tty
,
154 struct cmd_list_element
*c
, const char *value
)
156 fprintf_filtered (file
, _("Printing of array indexes is %s.\n"), value
);
159 /* Print repeat counts if there are more than this many repetitions of an
160 element in an array. Referenced by the low level language dependent
164 show_repeat_count_threshold (struct ui_file
*file
, int from_tty
,
165 struct cmd_list_element
*c
, const char *value
)
167 fprintf_filtered (file
, _("Threshold for repeated print elements is %s.\n"),
171 /* If nonzero, stops printing of char arrays at first null. */
174 show_stop_print_at_null (struct ui_file
*file
, int from_tty
,
175 struct cmd_list_element
*c
, const char *value
)
177 fprintf_filtered (file
,
178 _("Printing of char arrays to stop "
179 "at first null char is %s.\n"),
183 /* Controls pretty printing of structures. */
186 show_prettyprint_structs (struct ui_file
*file
, int from_tty
,
187 struct cmd_list_element
*c
, const char *value
)
189 fprintf_filtered (file
, _("Prettyprinting of structures is %s.\n"), value
);
192 /* Controls pretty printing of arrays. */
195 show_prettyprint_arrays (struct ui_file
*file
, int from_tty
,
196 struct cmd_list_element
*c
, const char *value
)
198 fprintf_filtered (file
, _("Prettyprinting of arrays is %s.\n"), value
);
201 /* If nonzero, causes unions inside structures or other unions to be
205 show_unionprint (struct ui_file
*file
, int from_tty
,
206 struct cmd_list_element
*c
, const char *value
)
208 fprintf_filtered (file
,
209 _("Printing of unions interior to structures is %s.\n"),
213 /* If nonzero, causes machine addresses to be printed in certain contexts. */
216 show_addressprint (struct ui_file
*file
, int from_tty
,
217 struct cmd_list_element
*c
, const char *value
)
219 fprintf_filtered (file
, _("Printing of addresses is %s.\n"), value
);
223 /* A helper function for val_print. When printing in "summary" mode,
224 we want to print scalar arguments, but not aggregate arguments.
225 This function distinguishes between the two. */
228 scalar_type_p (struct type
*type
)
230 CHECK_TYPEDEF (type
);
231 while (TYPE_CODE (type
) == TYPE_CODE_REF
)
233 type
= TYPE_TARGET_TYPE (type
);
234 CHECK_TYPEDEF (type
);
236 switch (TYPE_CODE (type
))
238 case TYPE_CODE_ARRAY
:
239 case TYPE_CODE_STRUCT
:
240 case TYPE_CODE_UNION
:
242 case TYPE_CODE_STRING
:
243 case TYPE_CODE_BITSTRING
:
250 /* Helper function to check the validity of some bits of a value.
252 If TYPE represents some aggregate type (e.g., a structure), return 1.
254 Otherwise, any of the bytes starting at OFFSET and extending for
255 TYPE_LENGTH(TYPE) bytes are invalid, print a message to STREAM and
256 return 0. The checking is done using FUNCS.
258 Otherwise, return 1. */
261 valprint_check_validity (struct ui_file
*stream
,
264 const struct value
*val
)
266 CHECK_TYPEDEF (type
);
268 if (TYPE_CODE (type
) != TYPE_CODE_UNION
269 && TYPE_CODE (type
) != TYPE_CODE_STRUCT
270 && TYPE_CODE (type
) != TYPE_CODE_ARRAY
)
272 if (! value_bits_valid (val
, TARGET_CHAR_BIT
* offset
,
273 TARGET_CHAR_BIT
* TYPE_LENGTH (type
)))
275 fprintf_filtered (stream
, _("<value optimized out>"));
279 if (value_bits_synthetic_pointer (val
, TARGET_CHAR_BIT
* offset
,
280 TARGET_CHAR_BIT
* TYPE_LENGTH (type
)))
282 fputs_filtered (_("<synthetic pointer>"), stream
);
290 /* Print using the given LANGUAGE the data of type TYPE located at VALADDR
291 (within GDB), which came from the inferior at address ADDRESS, onto
292 stdio stream STREAM according to OPTIONS.
294 If the data are a string pointer, returns the number of string characters
297 FIXME: The data at VALADDR is in target byte order. If gdb is ever
298 enhanced to be able to debug more than the single target it was compiled
299 for (specific CPU type and thus specific target byte ordering), then
300 either the print routines are going to have to take this into account,
301 or the data is going to have to be passed into here already converted
302 to the host byte ordering, whichever is more convenient. */
306 val_print (struct type
*type
, const gdb_byte
*valaddr
, int embedded_offset
,
307 CORE_ADDR address
, struct ui_file
*stream
, int recurse
,
308 const struct value
*val
,
309 const struct value_print_options
*options
,
310 const struct language_defn
*language
)
312 volatile struct gdb_exception except
;
314 struct value_print_options local_opts
= *options
;
315 struct type
*real_type
= check_typedef (type
);
317 if (local_opts
.pretty
== Val_pretty_default
)
318 local_opts
.pretty
= (local_opts
.prettyprint_structs
319 ? Val_prettyprint
: Val_no_prettyprint
);
323 /* Ensure that the type is complete and not just a stub. If the type is
324 only a stub and we can't find and substitute its complete type, then
325 print appropriate string and return. */
327 if (TYPE_STUB (real_type
))
329 fprintf_filtered (stream
, _("<incomplete type>"));
334 if (!valprint_check_validity (stream
, real_type
, embedded_offset
, val
))
339 ret
= apply_val_pretty_printer (type
, valaddr
, embedded_offset
,
340 address
, stream
, recurse
,
341 val
, options
, language
);
346 /* Handle summary mode. If the value is a scalar, print it;
347 otherwise, print an ellipsis. */
348 if (options
->summary
&& !scalar_type_p (type
))
350 fprintf_filtered (stream
, "...");
354 TRY_CATCH (except
, RETURN_MASK_ERROR
)
356 ret
= language
->la_val_print (type
, valaddr
, embedded_offset
, address
,
357 stream
, recurse
, val
,
360 if (except
.reason
< 0)
361 fprintf_filtered (stream
, _("<error reading variable>"));
366 /* Check whether the value VAL is printable. Return 1 if it is;
367 return 0 and print an appropriate error message to STREAM if it
371 value_check_printable (struct value
*val
, struct ui_file
*stream
)
375 fprintf_filtered (stream
, _("<address of value unknown>"));
379 if (value_entirely_optimized_out (val
))
381 fprintf_filtered (stream
, _("<value optimized out>"));
385 if (TYPE_CODE (value_type (val
)) == TYPE_CODE_INTERNAL_FUNCTION
)
387 fprintf_filtered (stream
, _("<internal function %s>"),
388 value_internal_function_name (val
));
395 /* Print using the given LANGUAGE the value VAL onto stream STREAM according
398 If the data are a string pointer, returns the number of string characters
401 This is a preferable interface to val_print, above, because it uses
402 GDB's value mechanism. */
405 common_val_print (struct value
*val
, struct ui_file
*stream
, int recurse
,
406 const struct value_print_options
*options
,
407 const struct language_defn
*language
)
409 if (!value_check_printable (val
, stream
))
412 if (language
->la_language
== language_ada
)
413 /* The value might have a dynamic type, which would cause trouble
414 below when trying to extract the value contents (since the value
415 size is determined from the type size which is unknown). So
416 get a fixed representation of our value. */
417 val
= ada_to_fixed_value (val
);
419 return val_print (value_type (val
), value_contents_for_printing (val
),
420 value_embedded_offset (val
), value_address (val
),
422 val
, options
, language
);
425 /* Print on stream STREAM the value VAL according to OPTIONS. The value
426 is printed using the current_language syntax.
428 If the object printed is a string pointer, return the number of string
432 value_print (struct value
*val
, struct ui_file
*stream
,
433 const struct value_print_options
*options
)
435 if (!value_check_printable (val
, stream
))
440 int r
= apply_val_pretty_printer (value_type (val
),
441 value_contents_for_printing (val
),
442 value_embedded_offset (val
),
445 val
, options
, current_language
);
451 return LA_VALUE_PRINT (val
, stream
, options
);
454 /* Called by various <lang>_val_print routines to print
455 TYPE_CODE_INT's. TYPE is the type. VALADDR is the address of the
456 value. STREAM is where to print the value. */
459 val_print_type_code_int (struct type
*type
, const gdb_byte
*valaddr
,
460 struct ui_file
*stream
)
462 enum bfd_endian byte_order
= gdbarch_byte_order (get_type_arch (type
));
464 if (TYPE_LENGTH (type
) > sizeof (LONGEST
))
468 if (TYPE_UNSIGNED (type
)
469 && extract_long_unsigned_integer (valaddr
, TYPE_LENGTH (type
),
472 print_longest (stream
, 'u', 0, val
);
476 /* Signed, or we couldn't turn an unsigned value into a
477 LONGEST. For signed values, one could assume two's
478 complement (a reasonable assumption, I think) and do
480 print_hex_chars (stream
, (unsigned char *) valaddr
,
481 TYPE_LENGTH (type
), byte_order
);
486 print_longest (stream
, TYPE_UNSIGNED (type
) ? 'u' : 'd', 0,
487 unpack_long (type
, valaddr
));
492 val_print_type_code_flags (struct type
*type
, const gdb_byte
*valaddr
,
493 struct ui_file
*stream
)
495 ULONGEST val
= unpack_long (type
, valaddr
);
496 int bitpos
, nfields
= TYPE_NFIELDS (type
);
498 fputs_filtered ("[ ", stream
);
499 for (bitpos
= 0; bitpos
< nfields
; bitpos
++)
501 if (TYPE_FIELD_BITPOS (type
, bitpos
) != -1
502 && (val
& ((ULONGEST
)1 << bitpos
)))
504 if (TYPE_FIELD_NAME (type
, bitpos
))
505 fprintf_filtered (stream
, "%s ", TYPE_FIELD_NAME (type
, bitpos
));
507 fprintf_filtered (stream
, "#%d ", bitpos
);
510 fputs_filtered ("]", stream
);
513 /* Print a number according to FORMAT which is one of d,u,x,o,b,h,w,g.
514 The raison d'etre of this function is to consolidate printing of
515 LONG_LONG's into this one function. The format chars b,h,w,g are
516 from print_scalar_formatted(). Numbers are printed using C
519 USE_C_FORMAT means to use C format in all cases. Without it,
520 'o' and 'x' format do not include the standard C radix prefix
523 Hilfinger/2004-09-09: USE_C_FORMAT was originally called USE_LOCAL
524 and was intended to request formating according to the current
525 language and would be used for most integers that GDB prints. The
526 exceptional cases were things like protocols where the format of
527 the integer is a protocol thing, not a user-visible thing). The
528 parameter remains to preserve the information of what things might
529 be printed with language-specific format, should we ever resurrect
533 print_longest (struct ui_file
*stream
, int format
, int use_c_format
,
541 val
= int_string (val_long
, 10, 1, 0, 1); break;
543 val
= int_string (val_long
, 10, 0, 0, 1); break;
545 val
= int_string (val_long
, 16, 0, 0, use_c_format
); break;
547 val
= int_string (val_long
, 16, 0, 2, 1); break;
549 val
= int_string (val_long
, 16, 0, 4, 1); break;
551 val
= int_string (val_long
, 16, 0, 8, 1); break;
553 val
= int_string (val_long
, 16, 0, 16, 1); break;
556 val
= int_string (val_long
, 8, 0, 0, use_c_format
); break;
558 internal_error (__FILE__
, __LINE__
,
559 _("failed internal consistency check"));
561 fputs_filtered (val
, stream
);
564 /* This used to be a macro, but I don't think it is called often enough
565 to merit such treatment. */
566 /* Convert a LONGEST to an int. This is used in contexts (e.g. number of
567 arguments to a function, number in a value history, register number, etc.)
568 where the value must not be larger than can fit in an int. */
571 longest_to_int (LONGEST arg
)
573 /* Let the compiler do the work. */
574 int rtnval
= (int) arg
;
576 /* Check for overflows or underflows. */
577 if (sizeof (LONGEST
) > sizeof (int))
581 error (_("Value out of range."));
587 /* Print a floating point value of type TYPE (not always a
588 TYPE_CODE_FLT), pointed to in GDB by VALADDR, on STREAM. */
591 print_floating (const gdb_byte
*valaddr
, struct type
*type
,
592 struct ui_file
*stream
)
596 const struct floatformat
*fmt
= NULL
;
597 unsigned len
= TYPE_LENGTH (type
);
598 enum float_kind kind
;
600 /* If it is a floating-point, check for obvious problems. */
601 if (TYPE_CODE (type
) == TYPE_CODE_FLT
)
602 fmt
= floatformat_from_type (type
);
605 kind
= floatformat_classify (fmt
, valaddr
);
606 if (kind
== float_nan
)
608 if (floatformat_is_negative (fmt
, valaddr
))
609 fprintf_filtered (stream
, "-");
610 fprintf_filtered (stream
, "nan(");
611 fputs_filtered ("0x", stream
);
612 fputs_filtered (floatformat_mantissa (fmt
, valaddr
), stream
);
613 fprintf_filtered (stream
, ")");
616 else if (kind
== float_infinite
)
618 if (floatformat_is_negative (fmt
, valaddr
))
619 fputs_filtered ("-", stream
);
620 fputs_filtered ("inf", stream
);
625 /* NOTE: cagney/2002-01-15: The TYPE passed into print_floating()
626 isn't necessarily a TYPE_CODE_FLT. Consequently, unpack_double
627 needs to be used as that takes care of any necessary type
628 conversions. Such conversions are of course direct to DOUBLEST
629 and disregard any possible target floating point limitations.
630 For instance, a u64 would be converted and displayed exactly on a
631 host with 80 bit DOUBLEST but with loss of information on a host
632 with 64 bit DOUBLEST. */
634 doub
= unpack_double (type
, valaddr
, &inv
);
637 fprintf_filtered (stream
, "<invalid float value>");
641 /* FIXME: kettenis/2001-01-20: The following code makes too much
642 assumptions about the host and target floating point format. */
644 /* NOTE: cagney/2002-02-03: Since the TYPE of what was passed in may
645 not necessarily be a TYPE_CODE_FLT, the below ignores that and
646 instead uses the type's length to determine the precision of the
647 floating-point value being printed. */
649 if (len
< sizeof (double))
650 fprintf_filtered (stream
, "%.9g", (double) doub
);
651 else if (len
== sizeof (double))
652 fprintf_filtered (stream
, "%.17g", (double) doub
);
654 #ifdef PRINTF_HAS_LONG_DOUBLE
655 fprintf_filtered (stream
, "%.35Lg", doub
);
657 /* This at least wins with values that are representable as
659 fprintf_filtered (stream
, "%.17g", (double) doub
);
664 print_decimal_floating (const gdb_byte
*valaddr
, struct type
*type
,
665 struct ui_file
*stream
)
667 enum bfd_endian byte_order
= gdbarch_byte_order (get_type_arch (type
));
668 char decstr
[MAX_DECIMAL_STRING
];
669 unsigned len
= TYPE_LENGTH (type
);
671 decimal_to_string (valaddr
, len
, byte_order
, decstr
);
672 fputs_filtered (decstr
, stream
);
677 print_binary_chars (struct ui_file
*stream
, const gdb_byte
*valaddr
,
678 unsigned len
, enum bfd_endian byte_order
)
681 #define BITS_IN_BYTES 8
687 /* Declared "int" so it will be signed.
688 This ensures that right shift will shift in zeros. */
690 const int mask
= 0x080;
692 /* FIXME: We should be not printing leading zeroes in most cases. */
694 if (byte_order
== BFD_ENDIAN_BIG
)
700 /* Every byte has 8 binary characters; peel off
701 and print from the MSB end. */
703 for (i
= 0; i
< (BITS_IN_BYTES
* sizeof (*p
)); i
++)
705 if (*p
& (mask
>> i
))
710 fprintf_filtered (stream
, "%1d", b
);
716 for (p
= valaddr
+ len
- 1;
720 for (i
= 0; i
< (BITS_IN_BYTES
* sizeof (*p
)); i
++)
722 if (*p
& (mask
>> i
))
727 fprintf_filtered (stream
, "%1d", b
);
733 /* VALADDR points to an integer of LEN bytes.
734 Print it in octal on stream or format it in buf. */
737 print_octal_chars (struct ui_file
*stream
, const gdb_byte
*valaddr
,
738 unsigned len
, enum bfd_endian byte_order
)
741 unsigned char octa1
, octa2
, octa3
, carry
;
744 /* FIXME: We should be not printing leading zeroes in most cases. */
747 /* Octal is 3 bits, which doesn't fit. Yuk. So we have to track
748 * the extra bits, which cycle every three bytes:
752 * bit number 123 456 78 | 9 012 345 6 | 78 901 234 | 567 890 12 |
754 * Octal side: 0 1 carry 3 4 carry ...
756 * Cycle number: 0 1 2
758 * But of course we are printing from the high side, so we have to
759 * figure out where in the cycle we are so that we end up with no
760 * left over bits at the end.
762 #define BITS_IN_OCTAL 3
763 #define HIGH_ZERO 0340
764 #define LOW_ZERO 0016
765 #define CARRY_ZERO 0003
766 #define HIGH_ONE 0200
769 #define CARRY_ONE 0001
770 #define HIGH_TWO 0300
774 /* For 32 we start in cycle 2, with two bits and one bit carry;
775 for 64 in cycle in cycle 1, with one bit and a two bit carry. */
777 cycle
= (len
* BITS_IN_BYTES
) % BITS_IN_OCTAL
;
780 fputs_filtered ("0", stream
);
781 if (byte_order
== BFD_ENDIAN_BIG
)
790 /* No carry in, carry out two bits. */
792 octa1
= (HIGH_ZERO
& *p
) >> 5;
793 octa2
= (LOW_ZERO
& *p
) >> 2;
794 carry
= (CARRY_ZERO
& *p
);
795 fprintf_filtered (stream
, "%o", octa1
);
796 fprintf_filtered (stream
, "%o", octa2
);
800 /* Carry in two bits, carry out one bit. */
802 octa1
= (carry
<< 1) | ((HIGH_ONE
& *p
) >> 7);
803 octa2
= (MID_ONE
& *p
) >> 4;
804 octa3
= (LOW_ONE
& *p
) >> 1;
805 carry
= (CARRY_ONE
& *p
);
806 fprintf_filtered (stream
, "%o", octa1
);
807 fprintf_filtered (stream
, "%o", octa2
);
808 fprintf_filtered (stream
, "%o", octa3
);
812 /* Carry in one bit, no carry out. */
814 octa1
= (carry
<< 2) | ((HIGH_TWO
& *p
) >> 6);
815 octa2
= (MID_TWO
& *p
) >> 3;
816 octa3
= (LOW_TWO
& *p
);
818 fprintf_filtered (stream
, "%o", octa1
);
819 fprintf_filtered (stream
, "%o", octa2
);
820 fprintf_filtered (stream
, "%o", octa3
);
824 error (_("Internal error in octal conversion;"));
828 cycle
= cycle
% BITS_IN_OCTAL
;
833 for (p
= valaddr
+ len
- 1;
840 /* Carry out, no carry in */
842 octa1
= (HIGH_ZERO
& *p
) >> 5;
843 octa2
= (LOW_ZERO
& *p
) >> 2;
844 carry
= (CARRY_ZERO
& *p
);
845 fprintf_filtered (stream
, "%o", octa1
);
846 fprintf_filtered (stream
, "%o", octa2
);
850 /* Carry in, carry out */
852 octa1
= (carry
<< 1) | ((HIGH_ONE
& *p
) >> 7);
853 octa2
= (MID_ONE
& *p
) >> 4;
854 octa3
= (LOW_ONE
& *p
) >> 1;
855 carry
= (CARRY_ONE
& *p
);
856 fprintf_filtered (stream
, "%o", octa1
);
857 fprintf_filtered (stream
, "%o", octa2
);
858 fprintf_filtered (stream
, "%o", octa3
);
862 /* Carry in, no carry out */
864 octa1
= (carry
<< 2) | ((HIGH_TWO
& *p
) >> 6);
865 octa2
= (MID_TWO
& *p
) >> 3;
866 octa3
= (LOW_TWO
& *p
);
868 fprintf_filtered (stream
, "%o", octa1
);
869 fprintf_filtered (stream
, "%o", octa2
);
870 fprintf_filtered (stream
, "%o", octa3
);
874 error (_("Internal error in octal conversion;"));
878 cycle
= cycle
% BITS_IN_OCTAL
;
884 /* VALADDR points to an integer of LEN bytes.
885 Print it in decimal on stream or format it in buf. */
888 print_decimal_chars (struct ui_file
*stream
, const gdb_byte
*valaddr
,
889 unsigned len
, enum bfd_endian byte_order
)
892 #define CARRY_OUT( x ) ((x) / TEN) /* extend char to int */
893 #define CARRY_LEFT( x ) ((x) % TEN)
894 #define SHIFT( x ) ((x) << 4)
895 #define LOW_NIBBLE( x ) ( (x) & 0x00F)
896 #define HIGH_NIBBLE( x ) (((x) & 0x0F0) >> 4)
899 unsigned char *digits
;
902 int i
, j
, decimal_digits
;
906 /* Base-ten number is less than twice as many digits
907 as the base 16 number, which is 2 digits per byte. */
909 decimal_len
= len
* 2 * 2;
910 digits
= xmalloc (decimal_len
);
912 for (i
= 0; i
< decimal_len
; i
++)
917 /* Ok, we have an unknown number of bytes of data to be printed in
920 * Given a hex number (in nibbles) as XYZ, we start by taking X and
921 * decemalizing it as "x1 x2" in two decimal nibbles. Then we multiply
922 * the nibbles by 16, add Y and re-decimalize. Repeat with Z.
924 * The trick is that "digits" holds a base-10 number, but sometimes
925 * the individual digits are > 10.
927 * Outer loop is per nibble (hex digit) of input, from MSD end to
930 decimal_digits
= 0; /* Number of decimal digits so far */
931 p
= (byte_order
== BFD_ENDIAN_BIG
) ? valaddr
: valaddr
+ len
- 1;
933 while ((byte_order
== BFD_ENDIAN_BIG
) ? (p
< valaddr
+ len
) : (p
>= valaddr
))
936 * Multiply current base-ten number by 16 in place.
937 * Each digit was between 0 and 9, now is between
940 for (j
= 0; j
< decimal_digits
; j
++)
942 digits
[j
] = SHIFT (digits
[j
]);
945 /* Take the next nibble off the input and add it to what
946 * we've got in the LSB position. Bottom 'digit' is now
949 * "flip" is used to run this loop twice for each byte.
953 /* Take top nibble. */
955 digits
[0] += HIGH_NIBBLE (*p
);
960 /* Take low nibble and bump our pointer "p". */
962 digits
[0] += LOW_NIBBLE (*p
);
963 if (byte_order
== BFD_ENDIAN_BIG
)
970 /* Re-decimalize. We have to do this often enough
971 * that we don't overflow, but once per nibble is
972 * overkill. Easier this way, though. Note that the
973 * carry is often larger than 10 (e.g. max initial
974 * carry out of lowest nibble is 15, could bubble all
975 * the way up greater than 10). So we have to do
976 * the carrying beyond the last current digit.
979 for (j
= 0; j
< decimal_len
- 1; j
++)
983 /* "/" won't handle an unsigned char with
984 * a value that if signed would be negative.
985 * So extend to longword int via "dummy".
988 carry
= CARRY_OUT (dummy
);
989 digits
[j
] = CARRY_LEFT (dummy
);
991 if (j
>= decimal_digits
&& carry
== 0)
994 * All higher digits are 0 and we
995 * no longer have a carry.
997 * Note: "j" is 0-based, "decimal_digits" is
1000 decimal_digits
= j
+ 1;
1006 /* Ok, now "digits" is the decimal representation, with
1007 the "decimal_digits" actual digits. Print! */
1009 for (i
= decimal_digits
- 1; i
>= 0; i
--)
1011 fprintf_filtered (stream
, "%1d", digits
[i
]);
1016 /* VALADDR points to an integer of LEN bytes. Print it in hex on stream. */
1019 print_hex_chars (struct ui_file
*stream
, const gdb_byte
*valaddr
,
1020 unsigned len
, enum bfd_endian byte_order
)
1024 /* FIXME: We should be not printing leading zeroes in most cases. */
1026 fputs_filtered ("0x", stream
);
1027 if (byte_order
== BFD_ENDIAN_BIG
)
1033 fprintf_filtered (stream
, "%02x", *p
);
1038 for (p
= valaddr
+ len
- 1;
1042 fprintf_filtered (stream
, "%02x", *p
);
1047 /* VALADDR points to a char integer of LEN bytes.
1048 Print it out in appropriate language form on stream.
1049 Omit any leading zero chars. */
1052 print_char_chars (struct ui_file
*stream
, struct type
*type
,
1053 const gdb_byte
*valaddr
,
1054 unsigned len
, enum bfd_endian byte_order
)
1058 if (byte_order
== BFD_ENDIAN_BIG
)
1061 while (p
< valaddr
+ len
- 1 && *p
== 0)
1064 while (p
< valaddr
+ len
)
1066 LA_EMIT_CHAR (*p
, type
, stream
, '\'');
1072 p
= valaddr
+ len
- 1;
1073 while (p
> valaddr
&& *p
== 0)
1076 while (p
>= valaddr
)
1078 LA_EMIT_CHAR (*p
, type
, stream
, '\'');
1084 /* Print on STREAM using the given OPTIONS the index for the element
1085 at INDEX of an array whose index type is INDEX_TYPE. */
1088 maybe_print_array_index (struct type
*index_type
, LONGEST index
,
1089 struct ui_file
*stream
,
1090 const struct value_print_options
*options
)
1092 struct value
*index_value
;
1094 if (!options
->print_array_indexes
)
1097 index_value
= value_from_longest (index_type
, index
);
1099 LA_PRINT_ARRAY_INDEX (index_value
, stream
, options
);
1102 /* Called by various <lang>_val_print routines to print elements of an
1103 array in the form "<elem1>, <elem2>, <elem3>, ...".
1105 (FIXME?) Assumes array element separator is a comma, which is correct
1106 for all languages currently handled.
1107 (FIXME?) Some languages have a notation for repeated array elements,
1108 perhaps we should try to use that notation when appropriate. */
1111 val_print_array_elements (struct type
*type
, const gdb_byte
*valaddr
,
1112 CORE_ADDR address
, struct ui_file
*stream
,
1114 const struct value
*val
,
1115 const struct value_print_options
*options
,
1118 unsigned int things_printed
= 0;
1120 struct type
*elttype
, *index_type
;
1122 /* Position of the array element we are examining to see
1123 whether it is repeated. */
1125 /* Number of repetitions we have detected so far. */
1127 LONGEST low_bound
, high_bound
;
1129 elttype
= TYPE_TARGET_TYPE (type
);
1130 eltlen
= TYPE_LENGTH (check_typedef (elttype
));
1131 index_type
= TYPE_INDEX_TYPE (type
);
1133 if (get_array_bounds (type
, &low_bound
, &high_bound
))
1135 /* The array length should normally be HIGH_BOUND - LOW_BOUND + 1.
1136 But we have to be a little extra careful, because some languages
1137 such as Ada allow LOW_BOUND to be greater than HIGH_BOUND for
1138 empty arrays. In that situation, the array length is just zero,
1140 if (low_bound
> high_bound
)
1143 len
= high_bound
- low_bound
+ 1;
1147 warning (_("unable to get bounds of array, assuming null array"));
1152 annotate_array_section_begin (i
, elttype
);
1154 for (; i
< len
&& things_printed
< options
->print_max
; i
++)
1158 if (options
->prettyprint_arrays
)
1160 fprintf_filtered (stream
, ",\n");
1161 print_spaces_filtered (2 + 2 * recurse
, stream
);
1165 fprintf_filtered (stream
, ", ");
1168 wrap_here (n_spaces (2 + 2 * recurse
));
1169 maybe_print_array_index (index_type
, i
+ low_bound
,
1174 while ((rep1
< len
) &&
1175 !memcmp (valaddr
+ i
* eltlen
, valaddr
+ rep1
* eltlen
, eltlen
))
1181 if (reps
> options
->repeat_count_threshold
)
1183 val_print (elttype
, valaddr
+ i
* eltlen
, 0, address
+ i
* eltlen
,
1184 stream
, recurse
+ 1, val
, options
, current_language
);
1185 annotate_elt_rep (reps
);
1186 fprintf_filtered (stream
, " <repeats %u times>", reps
);
1187 annotate_elt_rep_end ();
1190 things_printed
+= options
->repeat_count_threshold
;
1194 val_print (elttype
, valaddr
+ i
* eltlen
, 0, address
+ i
* eltlen
,
1195 stream
, recurse
+ 1, val
, options
, current_language
);
1200 annotate_array_section_end ();
1203 fprintf_filtered (stream
, "...");
1207 /* Read LEN bytes of target memory at address MEMADDR, placing the
1208 results in GDB's memory at MYADDR. Returns a count of the bytes
1209 actually read, and optionally an errno value in the location
1210 pointed to by ERRNOPTR if ERRNOPTR is non-null. */
1212 /* FIXME: cagney/1999-10-14: Only used by val_print_string. Can this
1213 function be eliminated. */
1216 partial_memory_read (CORE_ADDR memaddr
, gdb_byte
*myaddr
,
1217 int len
, int *errnoptr
)
1219 int nread
; /* Number of bytes actually read. */
1220 int errcode
; /* Error from last read. */
1222 /* First try a complete read. */
1223 errcode
= target_read_memory (memaddr
, myaddr
, len
);
1231 /* Loop, reading one byte at a time until we get as much as we can. */
1232 for (errcode
= 0, nread
= 0; len
> 0 && errcode
== 0; nread
++, len
--)
1234 errcode
= target_read_memory (memaddr
++, myaddr
++, 1);
1236 /* If an error, the last read was unsuccessful, so adjust count. */
1242 if (errnoptr
!= NULL
)
1244 *errnoptr
= errcode
;
1249 /* Read a string from the inferior, at ADDR, with LEN characters of WIDTH bytes
1250 each. Fetch at most FETCHLIMIT characters. BUFFER will be set to a newly
1251 allocated buffer containing the string, which the caller is responsible to
1252 free, and BYTES_READ will be set to the number of bytes read. Returns 0 on
1253 success, or errno on failure.
1255 If LEN > 0, reads exactly LEN characters (including eventual NULs in
1256 the middle or end of the string). If LEN is -1, stops at the first
1257 null character (not necessarily the first null byte) up to a maximum
1258 of FETCHLIMIT characters. Set FETCHLIMIT to UINT_MAX to read as many
1259 characters as possible from the string.
1261 Unless an exception is thrown, BUFFER will always be allocated, even on
1262 failure. In this case, some characters might have been read before the
1263 failure happened. Check BYTES_READ to recognize this situation.
1265 Note: There was a FIXME asking to make this code use target_read_string,
1266 but this function is more general (can read past null characters, up to
1267 given LEN). Besides, it is used much more often than target_read_string
1268 so it is more tested. Perhaps callers of target_read_string should use
1269 this function instead? */
1272 read_string (CORE_ADDR addr
, int len
, int width
, unsigned int fetchlimit
,
1273 enum bfd_endian byte_order
, gdb_byte
**buffer
, int *bytes_read
)
1275 int found_nul
; /* Non-zero if we found the nul char. */
1276 int errcode
; /* Errno returned from bad reads. */
1277 unsigned int nfetch
; /* Chars to fetch / chars fetched. */
1278 unsigned int chunksize
; /* Size of each fetch, in chars. */
1279 gdb_byte
*bufptr
; /* Pointer to next available byte in
1281 gdb_byte
*limit
; /* First location past end of fetch buffer. */
1282 struct cleanup
*old_chain
= NULL
; /* Top of the old cleanup chain. */
1284 /* Decide how large of chunks to try to read in one operation. This
1285 is also pretty simple. If LEN >= zero, then we want fetchlimit chars,
1286 so we might as well read them all in one operation. If LEN is -1, we
1287 are looking for a NUL terminator to end the fetching, so we might as
1288 well read in blocks that are large enough to be efficient, but not so
1289 large as to be slow if fetchlimit happens to be large. So we choose the
1290 minimum of 8 and fetchlimit. We used to use 200 instead of 8 but
1291 200 is way too big for remote debugging over a serial line. */
1293 chunksize
= (len
== -1 ? min (8, fetchlimit
) : fetchlimit
);
1295 /* Loop until we either have all the characters, or we encounter
1296 some error, such as bumping into the end of the address space. */
1301 old_chain
= make_cleanup (free_current_contents
, buffer
);
1305 *buffer
= (gdb_byte
*) xmalloc (len
* width
);
1308 nfetch
= partial_memory_read (addr
, bufptr
, len
* width
, &errcode
)
1310 addr
+= nfetch
* width
;
1311 bufptr
+= nfetch
* width
;
1315 unsigned long bufsize
= 0;
1320 nfetch
= min (chunksize
, fetchlimit
- bufsize
);
1322 if (*buffer
== NULL
)
1323 *buffer
= (gdb_byte
*) xmalloc (nfetch
* width
);
1325 *buffer
= (gdb_byte
*) xrealloc (*buffer
,
1326 (nfetch
+ bufsize
) * width
);
1328 bufptr
= *buffer
+ bufsize
* width
;
1331 /* Read as much as we can. */
1332 nfetch
= partial_memory_read (addr
, bufptr
, nfetch
* width
, &errcode
)
1335 /* Scan this chunk for the null character that terminates the string
1336 to print. If found, we don't need to fetch any more. Note
1337 that bufptr is explicitly left pointing at the next character
1338 after the null character, or at the next character after the end
1341 limit
= bufptr
+ nfetch
* width
;
1342 while (bufptr
< limit
)
1346 c
= extract_unsigned_integer (bufptr
, width
, byte_order
);
1351 /* We don't care about any error which happened after
1352 the NUL terminator. */
1359 while (errcode
== 0 /* no error */
1360 && bufptr
- *buffer
< fetchlimit
* width
/* no overrun */
1361 && !found_nul
); /* haven't found NUL yet */
1364 { /* Length of string is really 0! */
1365 /* We always allocate *buffer. */
1366 *buffer
= bufptr
= xmalloc (1);
1370 /* bufptr and addr now point immediately beyond the last byte which we
1371 consider part of the string (including a '\0' which ends the string). */
1372 *bytes_read
= bufptr
- *buffer
;
1376 discard_cleanups (old_chain
);
1381 /* Print a string from the inferior, starting at ADDR and printing up to LEN
1382 characters, of WIDTH bytes a piece, to STREAM. If LEN is -1, printing
1383 stops at the first null byte, otherwise printing proceeds (including null
1384 bytes) until either print_max or LEN characters have been printed,
1385 whichever is smaller. ENCODING is the name of the string's
1386 encoding. It can be NULL, in which case the target encoding is
1390 val_print_string (struct type
*elttype
, const char *encoding
,
1391 CORE_ADDR addr
, int len
,
1392 struct ui_file
*stream
,
1393 const struct value_print_options
*options
)
1395 int force_ellipsis
= 0; /* Force ellipsis to be printed if nonzero. */
1396 int errcode
; /* Errno returned from bad reads. */
1397 int found_nul
; /* Non-zero if we found the nul char. */
1398 unsigned int fetchlimit
; /* Maximum number of chars to print. */
1400 gdb_byte
*buffer
= NULL
; /* Dynamically growable fetch buffer. */
1401 struct cleanup
*old_chain
= NULL
; /* Top of the old cleanup chain. */
1402 struct gdbarch
*gdbarch
= get_type_arch (elttype
);
1403 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
1404 int width
= TYPE_LENGTH (elttype
);
1406 /* First we need to figure out the limit on the number of characters we are
1407 going to attempt to fetch and print. This is actually pretty simple. If
1408 LEN >= zero, then the limit is the minimum of LEN and print_max. If
1409 LEN is -1, then the limit is print_max. This is true regardless of
1410 whether print_max is zero, UINT_MAX (unlimited), or something in between,
1411 because finding the null byte (or available memory) is what actually
1412 limits the fetch. */
1414 fetchlimit
= (len
== -1 ? options
->print_max
: min (len
,
1415 options
->print_max
));
1417 errcode
= read_string (addr
, len
, width
, fetchlimit
, byte_order
,
1418 &buffer
, &bytes_read
);
1419 old_chain
= make_cleanup (xfree
, buffer
);
1423 /* We now have either successfully filled the buffer to fetchlimit,
1424 or terminated early due to an error or finding a null char when
1427 /* Determine found_nul by looking at the last character read. */
1428 found_nul
= extract_unsigned_integer (buffer
+ bytes_read
- width
, width
,
1430 if (len
== -1 && !found_nul
)
1434 /* We didn't find a NUL terminator we were looking for. Attempt
1435 to peek at the next character. If not successful, or it is not
1436 a null byte, then force ellipsis to be printed. */
1438 peekbuf
= (gdb_byte
*) alloca (width
);
1440 if (target_read_memory (addr
, peekbuf
, width
) == 0
1441 && extract_unsigned_integer (peekbuf
, width
, byte_order
) != 0)
1444 else if ((len
>= 0 && errcode
!= 0) || (len
> bytes_read
/ width
))
1446 /* Getting an error when we have a requested length, or fetching less
1447 than the number of characters actually requested, always make us
1452 /* If we get an error before fetching anything, don't print a string.
1453 But if we fetch something and then get an error, print the string
1454 and then the error message. */
1455 if (errcode
== 0 || bytes_read
> 0)
1457 if (options
->addressprint
)
1459 fputs_filtered (" ", stream
);
1461 LA_PRINT_STRING (stream
, elttype
, buffer
, bytes_read
/ width
,
1462 encoding
, force_ellipsis
, options
);
1469 fprintf_filtered (stream
, " <Address ");
1470 fputs_filtered (paddress (gdbarch
, addr
), stream
);
1471 fprintf_filtered (stream
, " out of bounds>");
1475 fprintf_filtered (stream
, " <Error reading address ");
1476 fputs_filtered (paddress (gdbarch
, addr
), stream
);
1477 fprintf_filtered (stream
, ": %s>", safe_strerror (errcode
));
1482 do_cleanups (old_chain
);
1484 return (bytes_read
/ width
);
1488 /* The 'set input-radix' command writes to this auxiliary variable.
1489 If the requested radix is valid, INPUT_RADIX is updated; otherwise,
1490 it is left unchanged. */
1492 static unsigned input_radix_1
= 10;
1494 /* Validate an input or output radix setting, and make sure the user
1495 knows what they really did here. Radix setting is confusing, e.g.
1496 setting the input radix to "10" never changes it! */
1499 set_input_radix (char *args
, int from_tty
, struct cmd_list_element
*c
)
1501 set_input_radix_1 (from_tty
, input_radix_1
);
1505 set_input_radix_1 (int from_tty
, unsigned radix
)
1507 /* We don't currently disallow any input radix except 0 or 1, which don't
1508 make any mathematical sense. In theory, we can deal with any input
1509 radix greater than 1, even if we don't have unique digits for every
1510 value from 0 to radix-1, but in practice we lose on large radix values.
1511 We should either fix the lossage or restrict the radix range more.
1516 input_radix_1
= input_radix
;
1517 error (_("Nonsense input radix ``decimal %u''; input radix unchanged."),
1520 input_radix_1
= input_radix
= radix
;
1523 printf_filtered (_("Input radix now set to "
1524 "decimal %u, hex %x, octal %o.\n"),
1525 radix
, radix
, radix
);
1529 /* The 'set output-radix' command writes to this auxiliary variable.
1530 If the requested radix is valid, OUTPUT_RADIX is updated,
1531 otherwise, it is left unchanged. */
1533 static unsigned output_radix_1
= 10;
1536 set_output_radix (char *args
, int from_tty
, struct cmd_list_element
*c
)
1538 set_output_radix_1 (from_tty
, output_radix_1
);
1542 set_output_radix_1 (int from_tty
, unsigned radix
)
1544 /* Validate the radix and disallow ones that we aren't prepared to
1545 handle correctly, leaving the radix unchanged. */
1549 user_print_options
.output_format
= 'x'; /* hex */
1552 user_print_options
.output_format
= 0; /* decimal */
1555 user_print_options
.output_format
= 'o'; /* octal */
1558 output_radix_1
= output_radix
;
1559 error (_("Unsupported output radix ``decimal %u''; "
1560 "output radix unchanged."),
1563 output_radix_1
= output_radix
= radix
;
1566 printf_filtered (_("Output radix now set to "
1567 "decimal %u, hex %x, octal %o.\n"),
1568 radix
, radix
, radix
);
1572 /* Set both the input and output radix at once. Try to set the output radix
1573 first, since it has the most restrictive range. An radix that is valid as
1574 an output radix is also valid as an input radix.
1576 It may be useful to have an unusual input radix. If the user wishes to
1577 set an input radix that is not valid as an output radix, he needs to use
1578 the 'set input-radix' command. */
1581 set_radix (char *arg
, int from_tty
)
1585 radix
= (arg
== NULL
) ? 10 : parse_and_eval_long (arg
);
1586 set_output_radix_1 (0, radix
);
1587 set_input_radix_1 (0, radix
);
1590 printf_filtered (_("Input and output radices now set to "
1591 "decimal %u, hex %x, octal %o.\n"),
1592 radix
, radix
, radix
);
1596 /* Show both the input and output radices. */
1599 show_radix (char *arg
, int from_tty
)
1603 if (input_radix
== output_radix
)
1605 printf_filtered (_("Input and output radices set to "
1606 "decimal %u, hex %x, octal %o.\n"),
1607 input_radix
, input_radix
, input_radix
);
1611 printf_filtered (_("Input radix set to decimal "
1612 "%u, hex %x, octal %o.\n"),
1613 input_radix
, input_radix
, input_radix
);
1614 printf_filtered (_("Output radix set to decimal "
1615 "%u, hex %x, octal %o.\n"),
1616 output_radix
, output_radix
, output_radix
);
1623 set_print (char *arg
, int from_tty
)
1626 "\"set print\" must be followed by the name of a print subcommand.\n");
1627 help_list (setprintlist
, "set print ", -1, gdb_stdout
);
1631 show_print (char *args
, int from_tty
)
1633 cmd_show_list (showprintlist
, from_tty
, "");
1637 _initialize_valprint (void)
1639 add_prefix_cmd ("print", no_class
, set_print
,
1640 _("Generic command for setting how things print."),
1641 &setprintlist
, "set print ", 0, &setlist
);
1642 add_alias_cmd ("p", "print", no_class
, 1, &setlist
);
1643 /* Prefer set print to set prompt. */
1644 add_alias_cmd ("pr", "print", no_class
, 1, &setlist
);
1646 add_prefix_cmd ("print", no_class
, show_print
,
1647 _("Generic command for showing print settings."),
1648 &showprintlist
, "show print ", 0, &showlist
);
1649 add_alias_cmd ("p", "print", no_class
, 1, &showlist
);
1650 add_alias_cmd ("pr", "print", no_class
, 1, &showlist
);
1652 add_setshow_uinteger_cmd ("elements", no_class
,
1653 &user_print_options
.print_max
, _("\
1654 Set limit on string chars or array elements to print."), _("\
1655 Show limit on string chars or array elements to print."), _("\
1656 \"set print elements 0\" causes there to be no limit."),
1659 &setprintlist
, &showprintlist
);
1661 add_setshow_boolean_cmd ("null-stop", no_class
,
1662 &user_print_options
.stop_print_at_null
, _("\
1663 Set printing of char arrays to stop at first null char."), _("\
1664 Show printing of char arrays to stop at first null char."), NULL
,
1666 show_stop_print_at_null
,
1667 &setprintlist
, &showprintlist
);
1669 add_setshow_uinteger_cmd ("repeats", no_class
,
1670 &user_print_options
.repeat_count_threshold
, _("\
1671 Set threshold for repeated print elements."), _("\
1672 Show threshold for repeated print elements."), _("\
1673 \"set print repeats 0\" causes all elements to be individually printed."),
1675 show_repeat_count_threshold
,
1676 &setprintlist
, &showprintlist
);
1678 add_setshow_boolean_cmd ("pretty", class_support
,
1679 &user_print_options
.prettyprint_structs
, _("\
1680 Set prettyprinting of structures."), _("\
1681 Show prettyprinting of structures."), NULL
,
1683 show_prettyprint_structs
,
1684 &setprintlist
, &showprintlist
);
1686 add_setshow_boolean_cmd ("union", class_support
,
1687 &user_print_options
.unionprint
, _("\
1688 Set printing of unions interior to structures."), _("\
1689 Show printing of unions interior to structures."), NULL
,
1692 &setprintlist
, &showprintlist
);
1694 add_setshow_boolean_cmd ("array", class_support
,
1695 &user_print_options
.prettyprint_arrays
, _("\
1696 Set prettyprinting of arrays."), _("\
1697 Show prettyprinting of arrays."), NULL
,
1699 show_prettyprint_arrays
,
1700 &setprintlist
, &showprintlist
);
1702 add_setshow_boolean_cmd ("address", class_support
,
1703 &user_print_options
.addressprint
, _("\
1704 Set printing of addresses."), _("\
1705 Show printing of addresses."), NULL
,
1708 &setprintlist
, &showprintlist
);
1710 add_setshow_zuinteger_cmd ("input-radix", class_support
, &input_radix_1
,
1712 Set default input radix for entering numbers."), _("\
1713 Show default input radix for entering numbers."), NULL
,
1716 &setlist
, &showlist
);
1718 add_setshow_zuinteger_cmd ("output-radix", class_support
, &output_radix_1
,
1720 Set default output radix for printing of values."), _("\
1721 Show default output radix for printing of values."), NULL
,
1724 &setlist
, &showlist
);
1726 /* The "set radix" and "show radix" commands are special in that
1727 they are like normal set and show commands but allow two normally
1728 independent variables to be either set or shown with a single
1729 command. So the usual deprecated_add_set_cmd() and [deleted]
1730 add_show_from_set() commands aren't really appropriate. */
1731 /* FIXME: i18n: With the new add_setshow_integer command, that is no
1732 longer true - show can display anything. */
1733 add_cmd ("radix", class_support
, set_radix
, _("\
1734 Set default input and output number radices.\n\
1735 Use 'set input-radix' or 'set output-radix' to independently set each.\n\
1736 Without an argument, sets both radices back to the default value of 10."),
1738 add_cmd ("radix", class_support
, show_radix
, _("\
1739 Show the default input and output number radices.\n\
1740 Use 'show input-radix' or 'show output-radix' to independently show each."),
1743 add_setshow_boolean_cmd ("array-indexes", class_support
,
1744 &user_print_options
.print_array_indexes
, _("\
1745 Set printing of array indexes."), _("\
1746 Show printing of array indexes"), NULL
, NULL
, show_print_array_indexes
,
1747 &setprintlist
, &showprintlist
);