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