1 /* Support for printing Ada values for GDB, the GNU debugger.
3 Copyright (C) 1986-2019 Free Software Foundation, Inc.
5 This file is part of GDB.
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
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
24 #include "expression.h"
34 #include "target-float.h"
36 static int print_field_values (struct type
*, const gdb_byte
*,
38 struct ui_file
*, int,
40 const struct value_print_options
*,
41 int, struct type
*, int,
42 const struct language_defn
*);
45 /* Make TYPE unsigned if its range of values includes no negatives. */
47 adjust_type_signedness (struct type
*type
)
49 if (type
!= NULL
&& TYPE_CODE (type
) == TYPE_CODE_RANGE
50 && TYPE_LOW_BOUND (type
) >= 0)
51 TYPE_UNSIGNED (type
) = 1;
54 /* Assuming TYPE is a simple array type, prints its lower bound on STREAM,
55 if non-standard (i.e., other than 1 for numbers, other than lower bound
56 of index type for enumerated type). Returns 1 if something printed,
60 print_optional_low_bound (struct ui_file
*stream
, struct type
*type
,
61 const struct value_print_options
*options
)
63 struct type
*index_type
;
67 if (options
->print_array_indexes
)
70 if (!get_array_bounds (type
, &low_bound
, &high_bound
))
73 /* If this is an empty array, then don't print the lower bound.
74 That would be confusing, because we would print the lower bound,
75 followed by... nothing! */
76 if (low_bound
> high_bound
)
79 index_type
= TYPE_INDEX_TYPE (type
);
81 while (TYPE_CODE (index_type
) == TYPE_CODE_RANGE
)
83 /* We need to know what the base type is, in order to do the
84 appropriate check below. Otherwise, if this is a subrange
85 of an enumerated type, where the underlying value of the
86 first element is typically 0, we might test the low bound
87 against the wrong value. */
88 index_type
= TYPE_TARGET_TYPE (index_type
);
91 /* Don't print the lower bound if it's the default one. */
92 switch (TYPE_CODE (index_type
))
100 if (low_bound
== TYPE_FIELD_ENUMVAL (index_type
, 0))
103 case TYPE_CODE_UNDEF
:
112 ada_print_scalar (index_type
, low_bound
, stream
);
113 fprintf_filtered (stream
, " => ");
117 /* Version of val_print_array_elements for GNAT-style packed arrays.
118 Prints elements of packed array of type TYPE at bit offset
119 BITOFFSET from VALADDR on STREAM. Formats according to OPTIONS and
120 separates with commas. RECURSE is the recursion (nesting) level.
121 TYPE must have been decoded (as by ada_coerce_to_simple_array). */
124 val_print_packed_array_elements (struct type
*type
, const gdb_byte
*valaddr
,
126 int bitoffset
, struct ui_file
*stream
,
129 const struct value_print_options
*options
)
132 unsigned int things_printed
= 0;
134 struct type
*elttype
, *index_type
;
135 unsigned long bitsize
= TYPE_FIELD_BITSIZE (type
, 0);
136 struct value
*mark
= value_mark ();
139 elttype
= TYPE_TARGET_TYPE (type
);
140 index_type
= TYPE_INDEX_TYPE (type
);
144 struct type
*base_index_type
;
146 if (get_discrete_bounds (index_type
, &low
, &high
) < 0)
149 len
= high
- low
+ 1;
151 if (TYPE_CODE (index_type
) == TYPE_CODE_RANGE
)
152 base_index_type
= TYPE_TARGET_TYPE (index_type
);
154 base_index_type
= index_type
;
156 if (TYPE_CODE (base_index_type
) == TYPE_CODE_ENUM
)
158 LONGEST low_pos
, high_pos
;
160 /* Non-contiguous enumerations types can by used as index types
161 so the array length is computed from the positions of the
162 first and last literal in the enumeration type, and not from
163 the values of these literals. */
165 if (!discrete_position (base_index_type
, low
, &low_pos
)
166 || !discrete_position (base_index_type
, high
, &high_pos
))
168 warning (_("unable to get positions in array, use bounds instead"));
173 /* The array length should normally be HIGH_POS - LOW_POS + 1.
174 But in Ada we allow LOW_POS to be greater than HIGH_POS for
175 empty arrays. In that situation, the array length is just zero,
178 if (low_pos
> high_pos
)
181 len
= high_pos
- low_pos
+ 1;
186 annotate_array_section_begin (i
, elttype
);
188 while (i
< len
&& things_printed
< options
->print_max
)
190 struct value
*v0
, *v1
;
195 if (options
->prettyformat_arrays
)
197 fprintf_filtered (stream
, ",\n");
198 print_spaces_filtered (2 + 2 * recurse
, stream
);
202 fprintf_filtered (stream
, ", ");
205 wrap_here (n_spaces (2 + 2 * recurse
));
206 maybe_print_array_index (index_type
, i
+ low
, stream
, options
);
209 v0
= ada_value_primitive_packed_val (NULL
, valaddr
+ offset
,
210 (i0
* bitsize
) / HOST_CHAR_BIT
,
211 (i0
* bitsize
) % HOST_CHAR_BIT
,
218 v1
= ada_value_primitive_packed_val (NULL
, valaddr
+ offset
,
219 (i
* bitsize
) / HOST_CHAR_BIT
,
220 (i
* bitsize
) % HOST_CHAR_BIT
,
222 if (TYPE_LENGTH (check_typedef (value_type (v0
)))
223 != TYPE_LENGTH (check_typedef (value_type (v1
))))
225 if (!value_contents_eq (v0
, value_embedded_offset (v0
),
226 v1
, value_embedded_offset (v1
),
227 TYPE_LENGTH (check_typedef (value_type (v0
)))))
231 if (i
- i0
> options
->repeat_count_threshold
)
233 struct value_print_options opts
= *options
;
237 value_embedded_offset (v0
), 0, stream
,
238 recurse
+ 1, v0
, &opts
, current_language
);
239 annotate_elt_rep (i
- i0
);
240 fprintf_filtered (stream
, _(" <repeats %u times>"), i
- i0
);
241 annotate_elt_rep_end ();
247 struct value_print_options opts
= *options
;
250 for (j
= i0
; j
< i
; j
+= 1)
254 if (options
->prettyformat_arrays
)
256 fprintf_filtered (stream
, ",\n");
257 print_spaces_filtered (2 + 2 * recurse
, stream
);
261 fprintf_filtered (stream
, ", ");
263 wrap_here (n_spaces (2 + 2 * recurse
));
264 maybe_print_array_index (index_type
, j
+ low
,
268 value_embedded_offset (v0
), 0, stream
,
269 recurse
+ 1, v0
, &opts
, current_language
);
273 things_printed
+= i
- i0
;
275 annotate_array_section_end ();
278 fprintf_filtered (stream
, "...");
281 value_free_to_mark (mark
);
285 printable_val_type (struct type
*type
, const gdb_byte
*valaddr
)
287 return ada_to_fixed_type (ada_aligned_type (type
), valaddr
, 0, NULL
, 1);
290 /* Print the character C on STREAM as part of the contents of a literal
291 string whose delimiter is QUOTER. TYPE_LEN is the length in bytes
295 ada_emit_char (int c
, struct type
*type
, struct ui_file
*stream
,
296 int quoter
, int type_len
)
298 /* If this character fits in the normal ASCII range, and is
299 a printable character, then print the character as if it was
300 an ASCII character, even if this is a wide character.
301 The UCHAR_MAX check is necessary because the isascii function
302 requires that its argument have a value of an unsigned char,
303 or EOF (EOF is obviously not printable). */
304 if (c
<= UCHAR_MAX
&& isascii (c
) && isprint (c
))
306 if (c
== quoter
&& c
== '"')
307 fprintf_filtered (stream
, "\"\"");
309 fprintf_filtered (stream
, "%c", c
);
312 fprintf_filtered (stream
, "[\"%0*x\"]", type_len
* 2, c
);
315 /* Character #I of STRING, given that TYPE_LEN is the size in bytes
319 char_at (const gdb_byte
*string
, int i
, int type_len
,
320 enum bfd_endian byte_order
)
325 return (int) extract_unsigned_integer (string
+ type_len
* i
,
326 type_len
, byte_order
);
329 /* Print a floating-point value of type TYPE, pointed to in GDB by
330 VALADDR, on STREAM. Use Ada formatting conventions: there must be
331 a decimal point, and at least one digit before and after the
332 point. We use the GNAT format for NaNs and infinities. */
335 ada_print_floating (const gdb_byte
*valaddr
, struct type
*type
,
336 struct ui_file
*stream
)
338 string_file tmp_stream
;
340 print_floating (valaddr
, type
, &tmp_stream
);
342 std::string
&s
= tmp_stream
.string ();
343 size_t skip_count
= 0;
345 /* Modify for Ada rules. */
347 size_t pos
= s
.find ("inf");
348 if (pos
== std::string::npos
)
349 pos
= s
.find ("Inf");
350 if (pos
== std::string::npos
)
351 pos
= s
.find ("INF");
352 if (pos
!= std::string::npos
)
353 s
.replace (pos
, 3, "Inf");
355 if (pos
== std::string::npos
)
357 pos
= s
.find ("nan");
358 if (pos
== std::string::npos
)
359 pos
= s
.find ("NaN");
360 if (pos
== std::string::npos
)
361 pos
= s
.find ("Nan");
362 if (pos
!= std::string::npos
)
364 s
[pos
] = s
[pos
+ 2] = 'N';
370 if (pos
== std::string::npos
371 && s
.find ('.') == std::string::npos
)
374 if (pos
== std::string::npos
)
375 fprintf_filtered (stream
, "%s.0", s
.c_str ());
377 fprintf_filtered (stream
, "%.*s.0%s", (int) pos
, s
.c_str (), &s
[pos
]);
380 fprintf_filtered (stream
, "%s", &s
[skip_count
]);
384 ada_printchar (int c
, struct type
*type
, struct ui_file
*stream
)
386 fputs_filtered ("'", stream
);
387 ada_emit_char (c
, type
, stream
, '\'', TYPE_LENGTH (type
));
388 fputs_filtered ("'", stream
);
391 /* [From print_type_scalar in typeprint.c]. Print VAL on STREAM in a
392 form appropriate for TYPE, if non-NULL. If TYPE is NULL, print VAL
393 like a default signed integer. */
396 ada_print_scalar (struct type
*type
, LONGEST val
, struct ui_file
*stream
)
403 print_longest (stream
, 'd', 0, val
);
407 type
= ada_check_typedef (type
);
409 switch (TYPE_CODE (type
))
413 len
= TYPE_NFIELDS (type
);
414 for (i
= 0; i
< len
; i
++)
416 if (TYPE_FIELD_ENUMVAL (type
, i
) == val
)
423 fputs_filtered (ada_enum_name (TYPE_FIELD_NAME (type
, i
)), stream
);
427 print_longest (stream
, 'd', 0, val
);
432 print_longest (stream
, TYPE_UNSIGNED (type
) ? 'u' : 'd', 0, val
);
436 LA_PRINT_CHAR (val
, type
, stream
);
440 fprintf_filtered (stream
, val
? "true" : "false");
443 case TYPE_CODE_RANGE
:
444 ada_print_scalar (TYPE_TARGET_TYPE (type
), val
, stream
);
447 case TYPE_CODE_UNDEF
:
449 case TYPE_CODE_ARRAY
:
450 case TYPE_CODE_STRUCT
:
451 case TYPE_CODE_UNION
:
456 case TYPE_CODE_STRING
:
457 case TYPE_CODE_ERROR
:
458 case TYPE_CODE_MEMBERPTR
:
459 case TYPE_CODE_METHODPTR
:
460 case TYPE_CODE_METHOD
:
462 warning (_("internal error: unhandled type in ada_print_scalar"));
466 error (_("Invalid type code in symbol table."));
470 /* Print the character string STRING, printing at most LENGTH characters.
471 Printing stops early if the number hits print_max; repeat counts
472 are printed as appropriate. Print ellipses at the end if we
473 had to stop before printing LENGTH characters, or if FORCE_ELLIPSES.
474 TYPE_LEN is the length (1 or 2) of the character type. */
477 printstr (struct ui_file
*stream
, struct type
*elttype
, const gdb_byte
*string
,
478 unsigned int length
, int force_ellipses
, int type_len
,
479 const struct value_print_options
*options
)
481 enum bfd_endian byte_order
= gdbarch_byte_order (get_type_arch (elttype
));
483 unsigned int things_printed
= 0;
489 fputs_filtered ("\"\"", stream
);
493 for (i
= 0; i
< length
&& things_printed
< options
->print_max
; i
+= 1)
495 /* Position of the character we are examining
496 to see whether it is repeated. */
498 /* Number of repetitions we have detected so far. */
505 fputs_filtered (", ", stream
);
512 && char_at (string
, rep1
, type_len
, byte_order
)
513 == char_at (string
, i
, type_len
, byte_order
))
519 if (reps
> options
->repeat_count_threshold
)
523 fputs_filtered ("\", ", stream
);
526 fputs_filtered ("'", stream
);
527 ada_emit_char (char_at (string
, i
, type_len
, byte_order
),
528 elttype
, stream
, '\'', type_len
);
529 fputs_filtered ("'", stream
);
530 fprintf_filtered (stream
, _(" <repeats %u times>"), reps
);
532 things_printed
+= options
->repeat_count_threshold
;
539 fputs_filtered ("\"", stream
);
542 ada_emit_char (char_at (string
, i
, type_len
, byte_order
),
543 elttype
, stream
, '"', type_len
);
548 /* Terminate the quotes if necessary. */
550 fputs_filtered ("\"", stream
);
552 if (force_ellipses
|| i
< length
)
553 fputs_filtered ("...", stream
);
557 ada_printstr (struct ui_file
*stream
, struct type
*type
,
558 const gdb_byte
*string
, unsigned int length
,
559 const char *encoding
, int force_ellipses
,
560 const struct value_print_options
*options
)
562 printstr (stream
, type
, string
, length
, force_ellipses
, TYPE_LENGTH (type
),
567 print_variant_part (struct type
*type
, int field_num
,
568 const gdb_byte
*valaddr
, int offset
,
569 struct ui_file
*stream
, int recurse
,
571 const struct value_print_options
*options
,
573 struct type
*outer_type
, int outer_offset
,
574 const struct language_defn
*language
)
576 struct type
*var_type
= TYPE_FIELD_TYPE (type
, field_num
);
577 int which
= ada_which_variant_applies (var_type
, outer_type
,
578 valaddr
+ outer_offset
);
583 return print_field_values
584 (TYPE_FIELD_TYPE (var_type
, which
),
586 offset
+ TYPE_FIELD_BITPOS (type
, field_num
) / HOST_CHAR_BIT
587 + TYPE_FIELD_BITPOS (var_type
, which
) / HOST_CHAR_BIT
,
588 stream
, recurse
, val
, options
,
589 comma_needed
, outer_type
, outer_offset
, language
);
592 /* Print out fields of value at VALADDR + OFFSET having structure type TYPE.
594 TYPE, VALADDR, OFFSET, STREAM, RECURSE, and OPTIONS have the same
595 meanings as in ada_print_value and ada_val_print.
597 OUTER_TYPE and OUTER_OFFSET give type and address of enclosing
598 record (used to get discriminant values when printing variant
601 COMMA_NEEDED is 1 if fields have been printed at the current recursion
602 level, so that a comma is needed before any field printed by this
605 Returns 1 if COMMA_NEEDED or any fields were printed. */
608 print_field_values (struct type
*type
, const gdb_byte
*valaddr
,
609 int offset
, struct ui_file
*stream
, int recurse
,
611 const struct value_print_options
*options
,
613 struct type
*outer_type
, int outer_offset
,
614 const struct language_defn
*language
)
618 len
= TYPE_NFIELDS (type
);
620 for (i
= 0; i
< len
; i
+= 1)
622 if (ada_is_ignored_field (type
, i
))
625 if (ada_is_wrapper_field (type
, i
))
628 print_field_values (TYPE_FIELD_TYPE (type
, i
),
631 + TYPE_FIELD_BITPOS (type
, i
) / HOST_CHAR_BIT
),
632 stream
, recurse
, val
, options
,
633 comma_needed
, type
, offset
, language
);
636 else if (ada_is_variant_part (type
, i
))
639 print_variant_part (type
, i
, valaddr
,
640 offset
, stream
, recurse
, val
,
641 options
, comma_needed
,
642 outer_type
, outer_offset
, language
);
647 fprintf_filtered (stream
, ", ");
650 if (options
->prettyformat
)
652 fprintf_filtered (stream
, "\n");
653 print_spaces_filtered (2 + 2 * recurse
, stream
);
657 wrap_here (n_spaces (2 + 2 * recurse
));
660 annotate_field_begin (TYPE_FIELD_TYPE (type
, i
));
661 fprintf_filtered (stream
, "%.*s",
662 ada_name_prefix_len (TYPE_FIELD_NAME (type
, i
)),
663 TYPE_FIELD_NAME (type
, i
));
664 annotate_field_name_end ();
665 fputs_filtered (" => ", stream
);
666 annotate_field_value ();
668 if (TYPE_FIELD_PACKED (type
, i
))
670 /* Bitfields require special handling, especially due to byte
672 if (HAVE_CPLUS_STRUCT (type
) && TYPE_FIELD_IGNORE (type
, i
))
674 fputs_filtered (_("<optimized out or zero length>"), stream
);
679 int bit_pos
= TYPE_FIELD_BITPOS (type
, i
);
680 int bit_size
= TYPE_FIELD_BITSIZE (type
, i
);
681 struct value_print_options opts
;
683 adjust_type_signedness (TYPE_FIELD_TYPE (type
, i
));
684 v
= ada_value_primitive_packed_val
686 offset
+ bit_pos
/ HOST_CHAR_BIT
,
687 bit_pos
% HOST_CHAR_BIT
,
688 bit_size
, TYPE_FIELD_TYPE (type
, i
));
691 val_print (TYPE_FIELD_TYPE (type
, i
),
692 value_embedded_offset (v
), 0,
693 stream
, recurse
+ 1, v
,
699 struct value_print_options opts
= *options
;
702 val_print (TYPE_FIELD_TYPE (type
, i
),
703 (offset
+ TYPE_FIELD_BITPOS (type
, i
) / HOST_CHAR_BIT
),
704 0, stream
, recurse
+ 1, val
, &opts
, language
);
706 annotate_field_end ();
712 /* Implement Ada val_print'ing for the case where TYPE is
713 a TYPE_CODE_ARRAY of characters. */
716 ada_val_print_string (struct type
*type
, const gdb_byte
*valaddr
,
717 int offset
, int offset_aligned
, CORE_ADDR address
,
718 struct ui_file
*stream
, int recurse
,
719 struct value
*original_value
,
720 const struct value_print_options
*options
)
722 enum bfd_endian byte_order
= gdbarch_byte_order (get_type_arch (type
));
723 struct type
*elttype
= TYPE_TARGET_TYPE (type
);
727 /* We know that ELTTYPE cannot possibly be null, because we assume
728 that we're called only when TYPE is a string-like type.
729 Similarly, the size of ELTTYPE should also be non-null, since
730 it's a character-like type. */
731 gdb_assert (elttype
!= NULL
);
732 gdb_assert (TYPE_LENGTH (elttype
) != 0);
734 eltlen
= TYPE_LENGTH (elttype
);
735 len
= TYPE_LENGTH (type
) / eltlen
;
737 if (options
->prettyformat_arrays
)
738 print_spaces_filtered (2 + 2 * recurse
, stream
);
740 /* If requested, look for the first null char and only print
741 elements up to it. */
742 if (options
->stop_print_at_null
)
746 /* Look for a NULL char. */
749 && temp_len
< options
->print_max
750 && char_at (valaddr
+ offset_aligned
,
751 temp_len
, eltlen
, byte_order
) != 0);
756 printstr (stream
, elttype
, valaddr
+ offset_aligned
, len
, 0,
760 /* Implement Ada val_print-ing for GNAT arrays (Eg. fat pointers,
761 thin pointers, etc). */
764 ada_val_print_gnat_array (struct type
*type
, const gdb_byte
*valaddr
,
765 int offset
, CORE_ADDR address
,
766 struct ui_file
*stream
, int recurse
,
767 struct value
*original_value
,
768 const struct value_print_options
*options
,
769 const struct language_defn
*language
)
771 struct value
*mark
= value_mark ();
774 val
= value_from_contents_and_address (type
, valaddr
+ offset
, address
);
775 /* If this is a reference, coerce it now. This helps taking care
776 of the case where ADDRESS is meaningless because original_value
778 val
= coerce_ref (val
);
779 if (TYPE_CODE (type
) == TYPE_CODE_TYPEDEF
) /* array access type. */
780 val
= ada_coerce_to_simple_array_ptr (val
);
782 val
= ada_coerce_to_simple_array (val
);
785 gdb_assert (TYPE_CODE (type
) == TYPE_CODE_TYPEDEF
);
786 fprintf_filtered (stream
, "0x0");
789 val_print (value_type (val
),
790 value_embedded_offset (val
), value_address (val
),
791 stream
, recurse
, val
, options
, language
);
792 value_free_to_mark (mark
);
795 /* Implement Ada val_print'ing for the case where TYPE is
799 ada_val_print_ptr (struct type
*type
, const gdb_byte
*valaddr
,
800 int offset
, int offset_aligned
, CORE_ADDR address
,
801 struct ui_file
*stream
, int recurse
,
802 struct value
*original_value
,
803 const struct value_print_options
*options
,
804 const struct language_defn
*language
)
806 val_print (type
, offset
, address
, stream
, recurse
,
807 original_value
, options
, language_def (language_c
));
809 if (ada_is_tag_type (type
))
812 value_from_contents_and_address (type
,
813 valaddr
+ offset_aligned
,
814 address
+ offset_aligned
);
815 const char *name
= ada_tag_name (val
);
818 fprintf_filtered (stream
, " (%s)", name
);
822 /* Implement Ada val_print'ing for the case where TYPE is
823 a TYPE_CODE_INT or TYPE_CODE_RANGE. */
826 ada_val_print_num (struct type
*type
, const gdb_byte
*valaddr
,
827 int offset
, int offset_aligned
, CORE_ADDR address
,
828 struct ui_file
*stream
, int recurse
,
829 struct value
*original_value
,
830 const struct value_print_options
*options
,
831 const struct language_defn
*language
)
833 if (ada_is_fixed_point_type (type
))
835 struct value
*scale
= ada_scaling_factor (type
);
836 struct value
*v
= value_from_contents (type
, valaddr
+ offset_aligned
);
837 v
= value_cast (value_type (scale
), v
);
838 v
= value_binop (v
, scale
, BINOP_MUL
);
840 const char *fmt
= TYPE_LENGTH (type
) < 4 ? "%.11g" : "%.17g";
842 = target_float_to_string (value_contents (v
), value_type (v
), fmt
);
843 fputs_filtered (str
.c_str (), stream
);
846 else if (TYPE_CODE (type
) == TYPE_CODE_RANGE
)
848 struct type
*target_type
= TYPE_TARGET_TYPE (type
);
850 if (TYPE_LENGTH (type
) != TYPE_LENGTH (target_type
))
852 /* Obscure case of range type that has different length from
853 its base type. Perform a conversion, or we will get a
854 nonsense value. Actually, we could use the same
855 code regardless of lengths; I'm just avoiding a cast. */
857 = value_from_contents_and_address (type
, valaddr
+ offset
, 0);
858 struct value
*v
= value_cast (target_type
, v1
);
860 val_print (target_type
,
861 value_embedded_offset (v
), 0, stream
,
862 recurse
+ 1, v
, options
, language
);
865 val_print (TYPE_TARGET_TYPE (type
), offset
,
866 address
, stream
, recurse
, original_value
,
872 int format
= (options
->format
? options
->format
873 : options
->output_format
);
877 struct value_print_options opts
= *options
;
879 opts
.format
= format
;
880 val_print_scalar_formatted (type
, offset_aligned
,
881 original_value
, &opts
, 0, stream
);
883 else if (ada_is_system_address_type (type
))
885 /* FIXME: We want to print System.Address variables using
886 the same format as for any access type. But for some
887 reason GNAT encodes the System.Address type as an int,
888 so we have to work-around this deficiency by handling
889 System.Address values as a special case. */
891 struct gdbarch
*gdbarch
= get_type_arch (type
);
892 struct type
*ptr_type
= builtin_type (gdbarch
)->builtin_data_ptr
;
893 CORE_ADDR addr
= extract_typed_address (valaddr
+ offset_aligned
,
896 fprintf_filtered (stream
, "(");
897 type_print (type
, "", stream
, -1);
898 fprintf_filtered (stream
, ") ");
899 fputs_filtered (paddress (gdbarch
, addr
), stream
);
903 val_print_scalar_formatted (type
, offset_aligned
,
904 original_value
, options
, 0, stream
);
905 if (ada_is_character_type (type
))
909 fputs_filtered (" ", stream
);
910 c
= unpack_long (type
, valaddr
+ offset_aligned
);
911 ada_printchar (c
, type
, stream
);
918 /* Implement Ada val_print'ing for the case where TYPE is
922 ada_val_print_enum (struct type
*type
, const gdb_byte
*valaddr
,
923 int offset
, int offset_aligned
, CORE_ADDR address
,
924 struct ui_file
*stream
, int recurse
,
925 struct value
*original_value
,
926 const struct value_print_options
*options
,
927 const struct language_defn
*language
)
935 val_print_scalar_formatted (type
, offset_aligned
,
936 original_value
, options
, 0, stream
);
940 len
= TYPE_NFIELDS (type
);
941 val
= unpack_long (type
, valaddr
+ offset_aligned
);
942 for (i
= 0; i
< len
; i
++)
945 if (val
== TYPE_FIELD_ENUMVAL (type
, i
))
951 const char *name
= ada_enum_name (TYPE_FIELD_NAME (type
, i
));
954 fprintf_filtered (stream
, "%ld %s", (long) val
, name
);
956 fputs_filtered (name
, stream
);
959 print_longest (stream
, 'd', 0, val
);
962 /* Implement Ada val_print'ing for the case where TYPE is
966 ada_val_print_flt (struct type
*type
, const gdb_byte
*valaddr
,
967 int offset
, int offset_aligned
, CORE_ADDR address
,
968 struct ui_file
*stream
, int recurse
,
969 struct value
*original_value
,
970 const struct value_print_options
*options
,
971 const struct language_defn
*language
)
975 val_print (type
, offset
, address
, stream
, recurse
,
976 original_value
, options
, language_def (language_c
));
980 ada_print_floating (valaddr
+ offset
, type
, stream
);
983 /* Implement Ada val_print'ing for the case where TYPE is
984 a TYPE_CODE_STRUCT or TYPE_CODE_UNION. */
987 ada_val_print_struct_union
988 (struct type
*type
, const gdb_byte
*valaddr
, int offset
,
989 int offset_aligned
, CORE_ADDR address
, struct ui_file
*stream
,
990 int recurse
, struct value
*original_value
,
991 const struct value_print_options
*options
,
992 const struct language_defn
*language
)
994 if (ada_is_bogus_array_descriptor (type
))
996 fprintf_filtered (stream
, "(...?)");
1000 fprintf_filtered (stream
, "(");
1002 if (print_field_values (type
, valaddr
, offset_aligned
,
1003 stream
, recurse
, original_value
, options
,
1004 0, type
, offset_aligned
, language
) != 0
1005 && options
->prettyformat
)
1007 fprintf_filtered (stream
, "\n");
1008 print_spaces_filtered (2 * recurse
, stream
);
1011 fprintf_filtered (stream
, ")");
1014 /* Implement Ada val_print'ing for the case where TYPE is
1015 a TYPE_CODE_ARRAY. */
1018 ada_val_print_array (struct type
*type
, const gdb_byte
*valaddr
,
1019 int offset
, int offset_aligned
, CORE_ADDR address
,
1020 struct ui_file
*stream
, int recurse
,
1021 struct value
*original_value
,
1022 const struct value_print_options
*options
)
1024 /* For an array of characters, print with string syntax. */
1025 if (ada_is_string_type (type
)
1026 && (options
->format
== 0 || options
->format
== 's'))
1028 ada_val_print_string (type
, valaddr
, offset
, offset_aligned
,
1029 address
, stream
, recurse
, original_value
,
1034 fprintf_filtered (stream
, "(");
1035 print_optional_low_bound (stream
, type
, options
);
1036 if (TYPE_FIELD_BITSIZE (type
, 0) > 0)
1037 val_print_packed_array_elements (type
, valaddr
, offset_aligned
,
1039 original_value
, options
);
1041 val_print_array_elements (type
, offset_aligned
, address
,
1042 stream
, recurse
, original_value
,
1044 fprintf_filtered (stream
, ")");
1047 /* Implement Ada val_print'ing for the case where TYPE is
1051 ada_val_print_ref (struct type
*type
, const gdb_byte
*valaddr
,
1052 int offset
, int offset_aligned
, CORE_ADDR address
,
1053 struct ui_file
*stream
, int recurse
,
1054 struct value
*original_value
,
1055 const struct value_print_options
*options
,
1056 const struct language_defn
*language
)
1058 /* For references, the debugger is expected to print the value as
1059 an address if DEREF_REF is null. But printing an address in place
1060 of the object value would be confusing to an Ada programmer.
1061 So, for Ada values, we print the actual dereferenced value
1063 struct type
*elttype
= check_typedef (TYPE_TARGET_TYPE (type
));
1064 struct value
*deref_val
;
1065 CORE_ADDR deref_val_int
;
1067 if (TYPE_CODE (elttype
) == TYPE_CODE_UNDEF
)
1069 fputs_filtered ("<ref to undefined type>", stream
);
1073 deref_val
= coerce_ref_if_computed (original_value
);
1076 if (ada_is_tagged_type (value_type (deref_val
), 1))
1077 deref_val
= ada_tag_value_at_base_address (deref_val
);
1079 common_val_print (deref_val
, stream
, recurse
+ 1, options
,
1084 deref_val_int
= unpack_pointer (type
, valaddr
+ offset_aligned
);
1085 if (deref_val_int
== 0)
1087 fputs_filtered ("(null)", stream
);
1092 = ada_value_ind (value_from_pointer (lookup_pointer_type (elttype
),
1094 if (ada_is_tagged_type (value_type (deref_val
), 1))
1095 deref_val
= ada_tag_value_at_base_address (deref_val
);
1097 /* Make sure that the object does not have an unreasonable size
1098 before trying to print it. This can happen for instance with
1099 references to dynamic objects whose contents is uninitialized
1100 (Eg: an array whose bounds are not set yet). */
1101 ada_ensure_varsize_limit (value_type (deref_val
));
1103 if (value_lazy (deref_val
))
1104 value_fetch_lazy (deref_val
);
1106 val_print (value_type (deref_val
),
1107 value_embedded_offset (deref_val
),
1108 value_address (deref_val
), stream
, recurse
+ 1,
1109 deref_val
, options
, language
);
1112 /* See the comment on ada_val_print. This function differs in that it
1113 does not catch evaluation errors (leaving that to ada_val_print). */
1116 ada_val_print_1 (struct type
*type
,
1117 int offset
, CORE_ADDR address
,
1118 struct ui_file
*stream
, int recurse
,
1119 struct value
*original_value
,
1120 const struct value_print_options
*options
,
1121 const struct language_defn
*language
)
1124 const gdb_byte
*valaddr
= value_contents_for_printing (original_value
);
1126 type
= ada_check_typedef (type
);
1128 if (ada_is_array_descriptor_type (type
)
1129 || (ada_is_constrained_packed_array_type (type
)
1130 && TYPE_CODE (type
) != TYPE_CODE_PTR
))
1132 ada_val_print_gnat_array (type
, valaddr
, offset
, address
,
1133 stream
, recurse
, original_value
,
1138 offset_aligned
= offset
+ ada_aligned_value_addr (type
, valaddr
) - valaddr
;
1139 type
= printable_val_type (type
, valaddr
+ offset_aligned
);
1140 type
= resolve_dynamic_type (type
, valaddr
+ offset_aligned
,
1141 address
+ offset_aligned
);
1143 switch (TYPE_CODE (type
))
1146 val_print (type
, offset
, address
, stream
, recurse
,
1147 original_value
, options
, language_def (language_c
));
1151 ada_val_print_ptr (type
, valaddr
, offset
, offset_aligned
,
1152 address
, stream
, recurse
, original_value
,
1157 case TYPE_CODE_RANGE
:
1158 ada_val_print_num (type
, valaddr
, offset
, offset_aligned
,
1159 address
, stream
, recurse
, original_value
,
1163 case TYPE_CODE_ENUM
:
1164 ada_val_print_enum (type
, valaddr
, offset
, offset_aligned
,
1165 address
, stream
, recurse
, original_value
,
1170 ada_val_print_flt (type
, valaddr
, offset
, offset_aligned
,
1171 address
, stream
, recurse
, original_value
,
1175 case TYPE_CODE_UNION
:
1176 case TYPE_CODE_STRUCT
:
1177 ada_val_print_struct_union (type
, valaddr
, offset
, offset_aligned
,
1178 address
, stream
, recurse
,
1179 original_value
, options
, language
);
1182 case TYPE_CODE_ARRAY
:
1183 ada_val_print_array (type
, valaddr
, offset
, offset_aligned
,
1184 address
, stream
, recurse
, original_value
,
1189 ada_val_print_ref (type
, valaddr
, offset
, offset_aligned
,
1190 address
, stream
, recurse
, original_value
,
1196 /* See val_print for a description of the various parameters of this
1197 function; they are identical. */
1200 ada_val_print (struct type
*type
,
1201 int embedded_offset
, CORE_ADDR address
,
1202 struct ui_file
*stream
, int recurse
,
1204 const struct value_print_options
*options
)
1208 ada_val_print_1 (type
, embedded_offset
, address
,
1209 stream
, recurse
, val
, options
,
1212 catch (const gdb_exception_error
&except
)
1214 fprintf_filtered (stream
, _("<error reading variable: %s>"),
1220 ada_value_print (struct value
*val0
, struct ui_file
*stream
,
1221 const struct value_print_options
*options
)
1223 struct value
*val
= ada_to_fixed_value (val0
);
1224 CORE_ADDR address
= value_address (val
);
1225 struct type
*type
= ada_check_typedef (value_type (val
));
1226 struct value_print_options opts
;
1228 /* If it is a pointer, indicate what it points to. */
1229 if (TYPE_CODE (type
) == TYPE_CODE_PTR
)
1231 /* Hack: don't print (char *) for char strings. Their
1232 type is indicated by the quoted string anyway. */
1233 if (TYPE_LENGTH (TYPE_TARGET_TYPE (type
)) != sizeof (char)
1234 || TYPE_CODE (TYPE_TARGET_TYPE (type
)) != TYPE_CODE_INT
1235 || TYPE_UNSIGNED (TYPE_TARGET_TYPE (type
)))
1237 fprintf_filtered (stream
, "(");
1238 type_print (type
, "", stream
, -1);
1239 fprintf_filtered (stream
, ") ");
1242 else if (ada_is_array_descriptor_type (type
))
1244 /* We do not print the type description unless TYPE is an array
1245 access type (this is encoded by the compiler as a typedef to
1246 a fat pointer - hence the check against TYPE_CODE_TYPEDEF). */
1247 if (TYPE_CODE (type
) == TYPE_CODE_TYPEDEF
)
1249 fprintf_filtered (stream
, "(");
1250 type_print (type
, "", stream
, -1);
1251 fprintf_filtered (stream
, ") ");
1254 else if (ada_is_bogus_array_descriptor (type
))
1256 fprintf_filtered (stream
, "(");
1257 type_print (type
, "", stream
, -1);
1258 fprintf_filtered (stream
, ") (...?)");
1265 value_embedded_offset (val
), address
,
1266 stream
, 0, val
, &opts
, current_language
);