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