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