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