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