1 /* Support for printing Modula 2 values for GDB, the GNU debugger.
3 Copyright (C) 1986, 1988-1989, 1991-1992, 1996, 1998, 2000, 2005-2012
4 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
24 #include "expression.h"
28 #include "typeprint.h"
33 static int print_unpacked_pointer (struct type
*type
,
34 CORE_ADDR address
, CORE_ADDR addr
,
35 const struct value_print_options
*options
,
36 struct ui_file
*stream
);
38 m2_print_array_contents (struct type
*type
, const gdb_byte
*valaddr
,
39 int embedded_offset
, CORE_ADDR address
,
40 struct ui_file
*stream
, int recurse
,
41 const struct value
*val
,
42 const struct value_print_options
*options
,
46 /* get_long_set_bounds - assigns the bounds of the long set to low and
50 get_long_set_bounds (struct type
*type
, LONGEST
*low
, LONGEST
*high
)
54 if (TYPE_CODE (type
) == TYPE_CODE_STRUCT
)
56 len
= TYPE_NFIELDS (type
);
57 i
= TYPE_N_BASECLASSES (type
);
60 *low
= TYPE_LOW_BOUND (TYPE_INDEX_TYPE (TYPE_FIELD_TYPE (type
, i
)));
61 *high
= TYPE_HIGH_BOUND (TYPE_INDEX_TYPE (TYPE_FIELD_TYPE (type
,
65 error (_("expecting long_set"));
70 m2_print_long_set (struct type
*type
, const gdb_byte
*valaddr
,
71 int embedded_offset
, CORE_ADDR address
,
72 struct ui_file
*stream
)
76 LONGEST previous_low
= 0;
77 LONGEST previous_high
= 0;
78 LONGEST i
, low_bound
, high_bound
;
79 LONGEST field_low
, field_high
;
87 fprintf_filtered (stream
, "{");
88 len
= TYPE_NFIELDS (type
);
89 if (get_long_set_bounds (type
, &low_bound
, &high_bound
))
91 field
= TYPE_N_BASECLASSES (type
);
92 range
= TYPE_INDEX_TYPE (TYPE_FIELD_TYPE (type
, field
));
96 fprintf_filtered (stream
, " %s }", _("<unknown bounds of set>"));
100 target
= TYPE_TARGET_TYPE (range
);
102 if (get_discrete_bounds (range
, &field_low
, &field_high
) >= 0)
104 for (i
= low_bound
; i
<= high_bound
; i
++)
106 bitval
= value_bit_index (TYPE_FIELD_TYPE (type
, field
),
107 (TYPE_FIELD_BITPOS (type
, field
) / 8) +
108 valaddr
+ embedded_offset
, i
);
110 error (_("bit test is out of range"));
117 fprintf_filtered (stream
, ", ");
118 print_type_scalar (target
, i
, stream
);
129 if (previous_low
+1 < previous_high
)
130 fprintf_filtered (stream
, "..");
131 if (previous_low
+1 < previous_high
)
132 print_type_scalar (target
, previous_high
, stream
);
141 range
= TYPE_INDEX_TYPE (TYPE_FIELD_TYPE (type
, field
));
142 if (get_discrete_bounds (range
, &field_low
, &field_high
) < 0)
144 target
= TYPE_TARGET_TYPE (range
);
149 if (previous_low
+1 < previous_high
)
151 fprintf_filtered (stream
, "..");
152 print_type_scalar (target
, previous_high
, stream
);
156 fprintf_filtered (stream
, "}");
161 m2_print_unbounded_array (struct type
*type
, const gdb_byte
*valaddr
,
162 int embedded_offset
, CORE_ADDR address
,
163 struct ui_file
*stream
, int recurse
,
164 const struct value_print_options
*options
)
166 struct type
*content_type
;
171 CHECK_TYPEDEF (type
);
172 content_type
= TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (type
, 0));
174 addr
= unpack_pointer (TYPE_FIELD_TYPE (type
, 0),
175 (TYPE_FIELD_BITPOS (type
, 0) / 8) +
176 valaddr
+ embedded_offset
);
178 val
= value_at_lazy (TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (type
, 0)),
180 len
= unpack_field_as_long (type
, valaddr
+ embedded_offset
, 1);
182 fprintf_filtered (stream
, "{");
183 m2_print_array_contents (value_type (val
),
184 value_contents_for_printing (val
),
185 value_embedded_offset (val
), addr
, stream
,
186 recurse
, val
, options
, len
);
187 fprintf_filtered (stream
, ", HIGH = %d}", (int) len
);
191 print_unpacked_pointer (struct type
*type
,
192 CORE_ADDR address
, CORE_ADDR addr
,
193 const struct value_print_options
*options
,
194 struct ui_file
*stream
)
196 struct gdbarch
*gdbarch
= get_type_arch (type
);
197 struct type
*elttype
= check_typedef (TYPE_TARGET_TYPE (type
));
200 if (TYPE_CODE (elttype
) == TYPE_CODE_FUNC
)
202 /* Try to print what function it points to. */
203 print_function_pointer_address (options
, gdbarch
, addr
, stream
);
204 /* Return value is irrelevant except for string pointers. */
208 if (options
->addressprint
&& options
->format
!= 's')
210 fputs_filtered (paddress (gdbarch
, address
), stream
);
214 /* For a pointer to char or unsigned char, also print the string
215 pointed to, unless pointer is null. */
217 if (TYPE_LENGTH (elttype
) == 1
218 && TYPE_CODE (elttype
) == TYPE_CODE_INT
219 && (options
->format
== 0 || options
->format
== 's')
223 fputs_filtered (" ", stream
);
224 return val_print_string (TYPE_TARGET_TYPE (type
), NULL
, addr
, -1,
232 print_variable_at_address (struct type
*type
,
233 const gdb_byte
*valaddr
,
234 struct ui_file
*stream
,
236 const struct value_print_options
*options
)
238 struct gdbarch
*gdbarch
= get_type_arch (type
);
239 CORE_ADDR addr
= unpack_pointer (type
, valaddr
);
240 struct type
*elttype
= check_typedef (TYPE_TARGET_TYPE (type
));
242 fprintf_filtered (stream
, "[");
243 fputs_filtered (paddress (gdbarch
, addr
), stream
);
244 fprintf_filtered (stream
, "] : ");
246 if (TYPE_CODE (elttype
) != TYPE_CODE_UNDEF
)
248 struct value
*deref_val
=
249 value_at (TYPE_TARGET_TYPE (type
), unpack_pointer (type
, valaddr
));
251 common_val_print (deref_val
, stream
, recurse
, options
, current_language
);
254 fputs_filtered ("???", stream
);
258 /* m2_print_array_contents - prints out the contents of an
259 array up to a max_print values.
260 It prints arrays of char as a string
261 and all other data types as comma
265 m2_print_array_contents (struct type
*type
, const gdb_byte
*valaddr
,
266 int embedded_offset
, CORE_ADDR address
,
267 struct ui_file
*stream
, int recurse
,
268 const struct value
*val
,
269 const struct value_print_options
*options
,
273 CHECK_TYPEDEF (type
);
275 if (TYPE_LENGTH (type
) > 0)
277 eltlen
= TYPE_LENGTH (type
);
278 if (options
->prettyprint_arrays
)
279 print_spaces_filtered (2 + 2 * recurse
, stream
);
280 /* For an array of chars, print with string syntax. */
282 ((TYPE_CODE (type
) == TYPE_CODE_INT
)
283 || ((current_language
->la_language
== language_m2
)
284 && (TYPE_CODE (type
) == TYPE_CODE_CHAR
)))
285 && (options
->format
== 0 || options
->format
== 's'))
286 val_print_string (type
, NULL
, address
, len
+1, stream
, options
);
289 fprintf_filtered (stream
, "{");
290 val_print_array_elements (type
, valaddr
, embedded_offset
,
291 address
, stream
, recurse
, val
,
293 fprintf_filtered (stream
, "}");
298 /* Decorations for Modula 2. */
300 static const struct generic_val_print_decorations m2_decorations
=
310 /* See val_print for a description of the various parameters of this
311 function; they are identical. */
314 m2_val_print (struct type
*type
, const gdb_byte
*valaddr
, int embedded_offset
,
315 CORE_ADDR address
, struct ui_file
*stream
, int recurse
,
316 const struct value
*original_value
,
317 const struct value_print_options
*options
)
319 struct gdbarch
*gdbarch
= get_type_arch (type
);
320 unsigned int i
= 0; /* Number of characters printed. */
322 struct type
*elttype
;
326 CHECK_TYPEDEF (type
);
327 switch (TYPE_CODE (type
))
329 case TYPE_CODE_ARRAY
:
330 if (TYPE_LENGTH (type
) > 0 && TYPE_LENGTH (TYPE_TARGET_TYPE (type
)) > 0)
332 elttype
= check_typedef (TYPE_TARGET_TYPE (type
));
333 eltlen
= TYPE_LENGTH (elttype
);
334 len
= TYPE_LENGTH (type
) / eltlen
;
335 if (options
->prettyprint_arrays
)
336 print_spaces_filtered (2 + 2 * recurse
, stream
);
337 /* For an array of chars, print with string syntax. */
339 ((TYPE_CODE (elttype
) == TYPE_CODE_INT
)
340 || ((current_language
->la_language
== language_m2
)
341 && (TYPE_CODE (elttype
) == TYPE_CODE_CHAR
)))
342 && (options
->format
== 0 || options
->format
== 's'))
344 /* If requested, look for the first null char and only print
345 elements up to it. */
346 if (options
->stop_print_at_null
)
348 unsigned int temp_len
;
350 /* Look for a NULL char. */
352 (valaddr
+ embedded_offset
)[temp_len
]
353 && temp_len
< len
&& temp_len
< options
->print_max
;
358 LA_PRINT_STRING (stream
, TYPE_TARGET_TYPE (type
),
359 valaddr
+ embedded_offset
, len
, NULL
,
365 fprintf_filtered (stream
, "{");
366 val_print_array_elements (type
, valaddr
, embedded_offset
,
368 recurse
, original_value
,
370 fprintf_filtered (stream
, "}");
374 /* Array of unspecified length: treat like pointer to first elt. */
375 print_unpacked_pointer (type
, address
, address
, options
, stream
);
379 if (TYPE_CONST (type
))
380 print_variable_at_address (type
, valaddr
+ embedded_offset
,
381 stream
, recurse
, options
);
382 else if (options
->format
&& options
->format
!= 's')
383 val_print_scalar_formatted (type
, valaddr
, embedded_offset
,
384 original_value
, options
, 0, stream
);
387 addr
= unpack_pointer (type
, valaddr
+ embedded_offset
);
388 print_unpacked_pointer (type
, addr
, address
, options
, stream
);
392 case TYPE_CODE_UNION
:
393 if (recurse
&& !options
->unionprint
)
395 fprintf_filtered (stream
, "{...}");
399 case TYPE_CODE_STRUCT
:
400 if (m2_is_long_set (type
))
401 m2_print_long_set (type
, valaddr
, embedded_offset
, address
,
403 else if (m2_is_unbounded_array (type
))
404 m2_print_unbounded_array (type
, valaddr
, embedded_offset
,
405 address
, stream
, recurse
, options
);
407 cp_print_value_fields (type
, type
, valaddr
, embedded_offset
,
408 address
, stream
, recurse
, original_value
,
413 elttype
= TYPE_INDEX_TYPE (type
);
414 CHECK_TYPEDEF (elttype
);
415 if (TYPE_STUB (elttype
))
417 fprintf_filtered (stream
, _("<incomplete type>"));
423 struct type
*range
= elttype
;
424 LONGEST low_bound
, high_bound
;
428 fputs_filtered ("{", stream
);
430 i
= get_discrete_bounds (range
, &low_bound
, &high_bound
);
434 fputs_filtered (_("<error value>"), stream
);
438 for (i
= low_bound
; i
<= high_bound
; i
++)
440 int element
= value_bit_index (type
, valaddr
+ embedded_offset
,
446 goto maybe_bad_bstring
;
451 fputs_filtered (", ", stream
);
452 print_type_scalar (range
, i
, stream
);
455 if (i
+ 1 <= high_bound
456 && value_bit_index (type
, valaddr
+ embedded_offset
,
461 fputs_filtered ("..", stream
);
462 while (i
+ 1 <= high_bound
463 && value_bit_index (type
,
464 valaddr
+ embedded_offset
,
467 print_type_scalar (range
, j
, stream
);
472 fputs_filtered ("}", stream
);
476 case TYPE_CODE_RANGE
:
477 if (TYPE_LENGTH (type
) == TYPE_LENGTH (TYPE_TARGET_TYPE (type
)))
479 m2_val_print (TYPE_TARGET_TYPE (type
), valaddr
, embedded_offset
,
480 address
, stream
, recurse
, original_value
, options
);
483 /* FIXME: create_range_type does not set the unsigned bit in a
484 range type (I think it probably should copy it from the target
485 type), so we won't print values which are too large to
486 fit in a signed integer correctly. */
487 /* FIXME: Doesn't handle ranges of enums correctly. (Can't just
488 print with the target type, though, because the size of our type
489 and the target type might differ). */
497 case TYPE_CODE_METHOD
:
499 case TYPE_CODE_ERROR
:
500 case TYPE_CODE_UNDEF
:
504 generic_val_print (type
, valaddr
, embedded_offset
, address
,
505 stream
, recurse
, original_value
, options
,