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