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