Sort includes for files gdb/[a-f]*.[chyl].
[deliverable/binutils-gdb.git] / gdb / ada-typeprint.c
CommitLineData
14f9c5c9 1/* Support for printing Ada types for GDB, the GNU debugger.
42a4f53d 2 Copyright (C) 1986-2019 Free Software Foundation, Inc.
14f9c5c9 3
a9762ec7 4 This file is part of GDB.
14f9c5c9 5
a9762ec7
JB
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
14f9c5c9 10
a9762ec7
JB
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
14f9c5c9 15
a9762ec7
JB
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
14f9c5c9
AS
18
19#include "defs.h"
d55e5aa6
TT
20
21/* Standard C includes. */
22#include <ctype.h>
23
24/* Local non-gdb includes. */
25#include "ada-lang.h"
26#include "bfd.h"
27#include "c-lang.h"
28#include "cli/cli-style.h"
14f9c5c9 29#include "command.h"
d55e5aa6
TT
30#include "demangle.h"
31#include "expression.h"
32#include "gdb_obstack.h"
14f9c5c9 33#include "gdbcmd.h"
d55e5aa6
TT
34#include "gdbcore.h"
35#include "gdbtypes.h"
14f9c5c9 36#include "language.h"
d55e5aa6 37#include "symtab.h"
50eff16b 38#include "target-float.h"
d55e5aa6
TT
39#include "target.h"
40#include "typeprint.h"
41#include "value.h"
14f9c5c9 42
83e3a93c
PH
43static int print_selected_record_field_types (struct type *, struct type *,
44 int, int,
79d43c61
TT
45 struct ui_file *, int, int,
46 const struct type_print_options *);
aba02109 47
d2e4a39e 48static int print_record_field_types (struct type *, struct type *,
79d43c61
TT
49 struct ui_file *, int, int,
50 const struct type_print_options *);
14f9c5c9
AS
51\f
52
d2e4a39e
AS
53
54static char *name_buffer;
14f9c5c9
AS
55static int name_buffer_len;
56
4c4b4cd2
PH
57/* The (decoded) Ada name of TYPE. This value persists until the
58 next call. */
14f9c5c9 59
d2e4a39e 60static char *
4c4b4cd2 61decoded_type_name (struct type *type)
14f9c5c9
AS
62{
63 if (ada_type_name (type) == NULL)
64 return NULL;
d2e4a39e 65 else
14f9c5c9 66 {
0d5cff50 67 const char *raw_name = ada_type_name (type);
d2e4a39e 68 char *s, *q;
14f9c5c9
AS
69
70 if (name_buffer == NULL || name_buffer_len <= strlen (raw_name))
71 {
72 name_buffer_len = 16 + 2 * strlen (raw_name);
224c3ddb 73 name_buffer = (char *) xrealloc (name_buffer, name_buffer_len);
14f9c5c9
AS
74 }
75 strcpy (name_buffer, raw_name);
76
d2e4a39e 77 s = (char *) strstr (name_buffer, "___");
14f9c5c9
AS
78 if (s != NULL)
79 *s = '\0';
80
81 s = name_buffer + strlen (name_buffer) - 1;
82 while (s > name_buffer && (s[0] != '_' || s[-1] != '_'))
83 s -= 1;
84
85 if (s == name_buffer)
86 return name_buffer;
87
d2e4a39e 88 if (!islower (s[1]))
14f9c5c9
AS
89 return NULL;
90
91 for (s = q = name_buffer; *s != '\0'; q += 1)
92 {
93 if (s[0] == '_' && s[1] == '_')
94 {
d2e4a39e
AS
95 *q = '.';
96 s += 2;
14f9c5c9
AS
97 }
98 else
99 {
d2e4a39e
AS
100 *q = *s;
101 s += 1;
14f9c5c9
AS
102 }
103 }
104 *q = '\0';
105 return name_buffer;
106 }
107}
108
fb151210
JB
109/* Return nonzero if TYPE is a subrange type, and its bounds
110 are identical to the bounds of its subtype. */
111
112static int
113type_is_full_subrange_of_target_type (struct type *type)
114{
115 struct type *subtype;
116
117 if (TYPE_CODE (type) != TYPE_CODE_RANGE)
118 return 0;
119
120 subtype = TYPE_TARGET_TYPE (type);
121 if (subtype == NULL)
122 return 0;
123
950c97d8
JB
124 if (is_dynamic_type (type))
125 return 0;
126
fb151210
JB
127 if (ada_discrete_type_low_bound (type)
128 != ada_discrete_type_low_bound (subtype))
129 return 0;
130
131 if (ada_discrete_type_high_bound (type)
132 != ada_discrete_type_high_bound (subtype))
133 return 0;
134
135 return 1;
136}
137
138/* Print TYPE on STREAM, preferably as a range if BOUNDS_PREFERED_P
139 is nonzero. */
14f9c5c9
AS
140
141static void
fb151210
JB
142print_range (struct type *type, struct ui_file *stream,
143 int bounds_prefered_p)
14f9c5c9 144{
fb151210
JB
145 if (!bounds_prefered_p)
146 {
147 /* Try stripping all TYPE_CODE_RANGE layers whose bounds
148 are identical to the bounds of their subtype. When
149 the bounds of both types match, it can allow us to
150 print a range using the name of its base type, which
151 is easier to read. For instance, we would print...
152
153 array (character) of ...
154
155 ... instead of...
156
157 array ('["00"]' .. '["ff"]') of ... */
158 while (type_is_full_subrange_of_target_type (type))
159 type = TYPE_TARGET_TYPE (type);
160 }
161
43bbcdc2 162 switch (TYPE_CODE (type))
14f9c5c9
AS
163 {
164 case TYPE_CODE_RANGE:
14f9c5c9 165 case TYPE_CODE_ENUM:
43bbcdc2 166 {
ded4fc8f 167 LONGEST lo = 0, hi = 0; /* init for gcc -Wall */
492d29ea 168 int got_error = 0;
e62e21fd 169
492d29ea 170 TRY
950c97d8
JB
171 {
172 lo = ada_discrete_type_low_bound (type);
173 hi = ada_discrete_type_high_bound (type);
174 }
492d29ea 175 CATCH (e, RETURN_MASK_ERROR)
950c97d8
JB
176 {
177 /* This can happen when the range is dynamic. Sometimes,
178 resolving dynamic property values requires us to have
179 access to an actual object, which is not available
180 when the user is using the "ptype" command on a type.
181 Print the range as an unbounded range. */
182 fprintf_filtered (stream, "<>");
492d29ea 183 got_error = 1;
950c97d8 184 }
492d29ea
PA
185 END_CATCH
186
187 if (!got_error)
950c97d8 188 {
16b9eb7b 189 ada_print_scalar (type, lo, stream);
950c97d8 190 fprintf_filtered (stream, " .. ");
16b9eb7b 191 ada_print_scalar (type, hi, stream);
950c97d8 192 }
43bbcdc2 193 }
14f9c5c9
AS
194 break;
195 default:
14f9c5c9 196 fprintf_filtered (stream, "%.*s",
d2e4a39e
AS
197 ada_name_prefix_len (TYPE_NAME (type)),
198 TYPE_NAME (type));
43bbcdc2 199 break;
14f9c5c9
AS
200 }
201}
202
203/* Print the number or discriminant bound at BOUNDS+*N on STREAM, and
4c4b4cd2 204 set *N past the bound and its delimiter, if any. */
14f9c5c9
AS
205
206static void
e6a959d6 207print_range_bound (struct type *type, const char *bounds, int *n,
d2e4a39e 208 struct ui_file *stream)
14f9c5c9
AS
209{
210 LONGEST B;
5b4ee69b 211
14f9c5c9
AS
212 if (ada_scan_number (bounds, *n, &B, n))
213 {
4c4b4cd2
PH
214 /* STABS decodes all range types which bounds are 0 .. -1 as
215 unsigned integers (ie. the type code is TYPE_CODE_INT, not
216 TYPE_CODE_RANGE). Unfortunately, ada_print_scalar() relies
217 on the unsigned flag to determine whether the bound should
218 be printed as a signed or an unsigned value. This causes
219 the upper bound of the 0 .. -1 range types to be printed as
220 a very large unsigned number instead of -1.
7c964f07
UW
221 To workaround this stabs deficiency, we replace the TYPE by NULL
222 to indicate default output when we detect that the bound is negative,
4c4b4cd2
PH
223 and the type is a TYPE_CODE_INT. The bound is negative when
224 'm' is the last character of the number scanned in BOUNDS. */
225 if (bounds[*n - 1] == 'm' && TYPE_CODE (type) == TYPE_CODE_INT)
7c964f07 226 type = NULL;
14f9c5c9
AS
227 ada_print_scalar (type, B, stream);
228 if (bounds[*n] == '_')
229 *n += 2;
230 }
231 else
232 {
233 int bound_len;
e6a959d6
PA
234 const char *bound = bounds + *n;
235 const char *pend;
14f9c5c9
AS
236
237 pend = strstr (bound, "__");
238 if (pend == NULL)
239 *n += bound_len = strlen (bound);
d2e4a39e 240 else
14f9c5c9
AS
241 {
242 bound_len = pend - bound;
243 *n += bound_len + 2;
244 }
245 fprintf_filtered (stream, "%.*s", bound_len, bound);
246 }
247}
248
249/* Assuming NAME[0 .. NAME_LEN-1] is the name of a range type, print
250 the value (if found) of the bound indicated by SUFFIX ("___L" or
4c4b4cd2 251 "___U") according to the ___XD conventions. */
14f9c5c9
AS
252
253static void
d2e4a39e
AS
254print_dynamic_range_bound (struct type *type, const char *name, int name_len,
255 const char *suffix, struct ui_file *stream)
14f9c5c9 256{
14f9c5c9 257 LONGEST B;
3ec5942f
SM
258 std::string name_buf (name, name_len);
259 name_buf += suffix;
14f9c5c9 260
3ec5942f 261 if (get_int_var_value (name_buf.c_str (), B))
14f9c5c9
AS
262 ada_print_scalar (type, B, stream);
263 else
264 fprintf_filtered (stream, "?");
265}
266
28c85d6c 267/* Print RAW_TYPE as a range type, using any bound information
fb151210
JB
268 following the GNAT encoding (if available).
269
270 If BOUNDS_PREFERED_P is nonzero, force the printing of the range
271 using its bounds. Otherwise, try printing the range without
272 printing the value of the bounds, if possible (this is only
273 considered a hint, not a guaranty). */
14f9c5c9
AS
274
275static void
fb151210
JB
276print_range_type (struct type *raw_type, struct ui_file *stream,
277 int bounds_prefered_p)
14f9c5c9 278{
0d5cff50 279 const char *name;
14f9c5c9 280 struct type *base_type;
0d5cff50 281 const char *subtype_info;
14f9c5c9 282
28c85d6c
JB
283 gdb_assert (raw_type != NULL);
284 name = TYPE_NAME (raw_type);
285 gdb_assert (name != NULL);
1ce677a4
UW
286
287 if (TYPE_CODE (raw_type) == TYPE_CODE_RANGE)
14f9c5c9
AS
288 base_type = TYPE_TARGET_TYPE (raw_type);
289 else
290 base_type = raw_type;
291
292 subtype_info = strstr (name, "___XD");
1ce677a4 293 if (subtype_info == NULL)
fb151210 294 print_range (raw_type, stream, bounds_prefered_p);
14f9c5c9
AS
295 else
296 {
297 int prefix_len = subtype_info - name;
e6a959d6 298 const char *bounds_str;
14f9c5c9
AS
299 int n;
300
301 subtype_info += 5;
302 bounds_str = strchr (subtype_info, '_');
303 n = 1;
304
d2e4a39e 305 if (*subtype_info == 'L')
14f9c5c9 306 {
4c4b4cd2 307 print_range_bound (base_type, bounds_str, &n, stream);
14f9c5c9
AS
308 subtype_info += 1;
309 }
310 else
4c4b4cd2 311 print_dynamic_range_bound (base_type, name, prefix_len, "___L",
d2e4a39e 312 stream);
14f9c5c9
AS
313
314 fprintf_filtered (stream, " .. ");
315
d2e4a39e 316 if (*subtype_info == 'U')
4c4b4cd2 317 print_range_bound (base_type, bounds_str, &n, stream);
14f9c5c9 318 else
4c4b4cd2 319 print_dynamic_range_bound (base_type, name, prefix_len, "___U",
d2e4a39e 320 stream);
14f9c5c9 321 }
d2e4a39e 322}
14f9c5c9 323
4c4b4cd2 324/* Print enumerated type TYPE on STREAM. */
14f9c5c9
AS
325
326static void
ebf56fd3 327print_enum_type (struct type *type, struct ui_file *stream)
14f9c5c9
AS
328{
329 int len = TYPE_NFIELDS (type);
14e75d8e
JK
330 int i;
331 LONGEST lastval;
14f9c5c9
AS
332
333 fprintf_filtered (stream, "(");
334 wrap_here (" ");
335
336 lastval = 0;
337 for (i = 0; i < len; i++)
338 {
339 QUIT;
d2e4a39e
AS
340 if (i)
341 fprintf_filtered (stream, ", ");
14f9c5c9
AS
342 wrap_here (" ");
343 fputs_filtered (ada_enum_name (TYPE_FIELD_NAME (type, i)), stream);
14e75d8e 344 if (lastval != TYPE_FIELD_ENUMVAL (type, i))
14f9c5c9 345 {
14e75d8e
JK
346 fprintf_filtered (stream, " => %s",
347 plongest (TYPE_FIELD_ENUMVAL (type, i)));
348 lastval = TYPE_FIELD_ENUMVAL (type, i);
14f9c5c9
AS
349 }
350 lastval += 1;
351 }
352 fprintf_filtered (stream, ")");
353}
354
4c4b4cd2 355/* Print representation of Ada fixed-point type TYPE on STREAM. */
14f9c5c9
AS
356
357static void
ebf56fd3 358print_fixed_point_type (struct type *type, struct ui_file *stream)
14f9c5c9 359{
50eff16b
UW
360 struct value *delta = ada_delta (type);
361 struct value *small = ada_scaling_factor (type);
14f9c5c9 362
50eff16b 363 if (delta == nullptr)
14f9c5c9
AS
364 fprintf_filtered (stream, "delta ??");
365 else
366 {
50eff16b
UW
367 std::string str;
368 str = target_float_to_string (value_contents (delta),
369 value_type (delta), "%g");
370 fprintf_filtered (stream, "delta %s", str.c_str());
371 if (!value_equal (delta, small))
372 {
373 str = target_float_to_string (value_contents (small),
374 value_type (small), "%g");
375 fprintf_filtered (stream, " <'small = %s>", str.c_str());
376 }
14f9c5c9
AS
377 }
378}
379
4c4b4cd2
PH
380/* Print simple (constrained) array type TYPE on STREAM. LEVEL is the
381 recursion (indentation) level, in case the element type itself has
14f9c5c9 382 nested structure, and SHOW is the number of levels of internal
4c4b4cd2 383 structure to show (see ada_print_type). */
14f9c5c9
AS
384
385static void
d2e4a39e 386print_array_type (struct type *type, struct ui_file *stream, int show,
79d43c61 387 int level, const struct type_print_options *flags)
14f9c5c9
AS
388{
389 int bitsize;
390 int n_indices;
bfca584f 391 struct type *elt_type = NULL;
14f9c5c9 392
ad82864c 393 if (ada_is_constrained_packed_array_type (type))
727e3d2e
JB
394 type = ada_coerce_to_simple_array_type (type);
395
14f9c5c9
AS
396 bitsize = 0;
397 fprintf_filtered (stream, "array (");
398
cb249c71
TT
399 if (type == NULL)
400 {
401 fprintf_filtered (stream, _("<undecipherable array type>"));
402 return;
403 }
404
14f9c5c9 405 n_indices = -1;
54ae186f 406 if (ada_is_simple_array_type (type))
14f9c5c9 407 {
54ae186f
JB
408 struct type *range_desc_type;
409 struct type *arr_type;
14f9c5c9 410
54ae186f
JB
411 range_desc_type = ada_find_parallel_type (type, "___XA");
412 ada_fixup_array_indexes_type (range_desc_type);
28c85d6c 413
54ae186f
JB
414 bitsize = 0;
415 if (range_desc_type == NULL)
416 {
417 for (arr_type = type; TYPE_CODE (arr_type) == TYPE_CODE_ARRAY;
418 arr_type = TYPE_TARGET_TYPE (arr_type))
14f9c5c9 419 {
54ae186f
JB
420 if (arr_type != type)
421 fprintf_filtered (stream, ", ");
fb151210
JB
422 print_range (TYPE_INDEX_TYPE (arr_type), stream,
423 0 /* bounds_prefered_p */);
54ae186f
JB
424 if (TYPE_FIELD_BITSIZE (arr_type, 0) > 0)
425 bitsize = TYPE_FIELD_BITSIZE (arr_type, 0);
14f9c5c9
AS
426 }
427 }
d2e4a39e 428 else
14f9c5c9 429 {
54ae186f 430 int k;
5b4ee69b 431
54ae186f
JB
432 n_indices = TYPE_NFIELDS (range_desc_type);
433 for (k = 0, arr_type = type;
434 k < n_indices;
435 k += 1, arr_type = TYPE_TARGET_TYPE (arr_type))
436 {
437 if (k > 0)
438 fprintf_filtered (stream, ", ");
439 print_range_type (TYPE_FIELD_TYPE (range_desc_type, k),
fb151210 440 stream, 0 /* bounds_prefered_p */);
54ae186f
JB
441 if (TYPE_FIELD_BITSIZE (arr_type, 0) > 0)
442 bitsize = TYPE_FIELD_BITSIZE (arr_type, 0);
443 }
14f9c5c9
AS
444 }
445 }
54ae186f
JB
446 else
447 {
448 int i, i0;
449
450 for (i = i0 = ada_array_arity (type); i > 0; i -= 1)
451 fprintf_filtered (stream, "%s<>", i == i0 ? "" : ", ");
452 }
14f9c5c9 453
bfca584f 454 elt_type = ada_array_element_type (type, n_indices);
14f9c5c9
AS
455 fprintf_filtered (stream, ") of ");
456 wrap_here ("");
bfca584f
PMR
457 ada_print_type (elt_type, "", stream, show == 0 ? 0 : show - 1, level + 1,
458 flags);
459 /* Arrays with variable-length elements are never bit-packed in practice but
460 compilers have to describe their stride so that we can properly fetch
461 individual elements. Do not say the array is packed in this case. */
462 if (bitsize > 0 && !is_dynamic_type (elt_type))
14f9c5c9
AS
463 fprintf_filtered (stream, " <packed: %d-bit elements>", bitsize);
464}
465
466/* Print the choices encoded by field FIELD_NUM of variant-part TYPE on
83e3a93c 467 STREAM, assuming that VAL_TYPE (if non-NULL) is the type of the
feb864b7 468 values. Return non-zero if the field is an encoding of
83e3a93c
PH
469 discriminant values, as in a standard variant record, and 0 if the
470 field is not so encoded (as happens with single-component variants
feb864b7 471 in types annotated with pragma Unchecked_Variant). */
14f9c5c9 472
83e3a93c 473static int
d2e4a39e
AS
474print_choices (struct type *type, int field_num, struct ui_file *stream,
475 struct type *val_type)
14f9c5c9
AS
476{
477 int have_output;
478 int p;
d2e4a39e 479 const char *name = TYPE_FIELD_NAME (type, field_num);
14f9c5c9
AS
480
481 have_output = 0;
482
4c4b4cd2 483 /* Skip over leading 'V': NOTE soon to be obsolete. */
14f9c5c9
AS
484 if (name[0] == 'V')
485 {
d2e4a39e 486 if (!ada_scan_number (name, 1, NULL, &p))
14f9c5c9
AS
487 goto Huh;
488 }
489 else
490 p = 0;
491
492 while (1)
493 {
d2e4a39e 494 switch (name[p])
14f9c5c9
AS
495 {
496 default:
83e3a93c
PH
497 goto Huh;
498 case '_':
499 case '\0':
500 fprintf_filtered (stream, " =>");
501 return 1;
14f9c5c9
AS
502 case 'S':
503 case 'R':
504 case 'O':
d2e4a39e 505 if (have_output)
14f9c5c9
AS
506 fprintf_filtered (stream, " | ");
507 have_output = 1;
508 break;
509 }
510
d2e4a39e 511 switch (name[p])
14f9c5c9
AS
512 {
513 case 'S':
514 {
515 LONGEST W;
5b4ee69b 516
d2e4a39e 517 if (!ada_scan_number (name, p + 1, &W, &p))
14f9c5c9
AS
518 goto Huh;
519 ada_print_scalar (val_type, W, stream);
520 break;
521 }
522 case 'R':
523 {
524 LONGEST L, U;
5b4ee69b 525
d2e4a39e
AS
526 if (!ada_scan_number (name, p + 1, &L, &p)
527 || name[p] != 'T' || !ada_scan_number (name, p + 1, &U, &p))
14f9c5c9
AS
528 goto Huh;
529 ada_print_scalar (val_type, L, stream);
530 fprintf_filtered (stream, " .. ");
531 ada_print_scalar (val_type, U, stream);
532 break;
533 }
534 case 'O':
535 fprintf_filtered (stream, "others");
536 p += 1;
537 break;
538 }
539 }
540
541Huh:
83e3a93c
PH
542 fprintf_filtered (stream, "?? =>");
543 return 0;
14f9c5c9
AS
544}
545
83e3a93c
PH
546/* Assuming that field FIELD_NUM of TYPE represents variants whose
547 discriminant is contained in OUTER_TYPE, print its components on STREAM.
548 LEVEL is the recursion (indentation) level, in case any of the fields
549 themselves have nested structure, and SHOW is the number of levels of
550 internal structure to show (see ada_print_type). For this purpose,
551 fields nested in a variant part are taken to be at the same level as
552 the fields immediately outside the variant part. */
14f9c5c9
AS
553
554static void
ebf56fd3
AS
555print_variant_clauses (struct type *type, int field_num,
556 struct type *outer_type, struct ui_file *stream,
79d43c61
TT
557 int show, int level,
558 const struct type_print_options *flags)
14f9c5c9
AS
559{
560 int i;
4c4b4cd2 561 struct type *var_type, *par_type;
14f9c5c9
AS
562 struct type *discr_type;
563
564 var_type = TYPE_FIELD_TYPE (type, field_num);
565 discr_type = ada_variant_discrim_type (var_type, outer_type);
566
567 if (TYPE_CODE (var_type) == TYPE_CODE_PTR)
568 {
569 var_type = TYPE_TARGET_TYPE (var_type);
4c4b4cd2
PH
570 if (var_type == NULL || TYPE_CODE (var_type) != TYPE_CODE_UNION)
571 return;
14f9c5c9
AS
572 }
573
4c4b4cd2
PH
574 par_type = ada_find_parallel_type (var_type, "___XVU");
575 if (par_type != NULL)
576 var_type = par_type;
577
d2e4a39e 578 for (i = 0; i < TYPE_NFIELDS (var_type); i += 1)
14f9c5c9
AS
579 {
580 fprintf_filtered (stream, "\n%*swhen ", level + 4, "");
83e3a93c
PH
581 if (print_choices (var_type, i, stream, discr_type))
582 {
583 if (print_record_field_types (TYPE_FIELD_TYPE (var_type, i),
79d43c61
TT
584 outer_type, stream, show, level + 4,
585 flags)
83e3a93c
PH
586 <= 0)
587 fprintf_filtered (stream, " null;");
588 }
589 else
590 print_selected_record_field_types (var_type, outer_type, i, i,
79d43c61 591 stream, show, level + 4, flags);
14f9c5c9
AS
592 }
593}
594
4c4b4cd2 595/* Assuming that field FIELD_NUM of TYPE is a variant part whose
14f9c5c9 596 discriminants are contained in OUTER_TYPE, print a description of it
4c4b4cd2
PH
597 on STREAM. LEVEL is the recursion (indentation) level, in case any of
598 the fields themselves have nested structure, and SHOW is the number of
599 levels of internal structure to show (see ada_print_type). For this
600 purpose, fields nested in a variant part are taken to be at the same
601 level as the fields immediately outside the variant part. */
14f9c5c9
AS
602
603static void
ebf56fd3 604print_variant_part (struct type *type, int field_num, struct type *outer_type,
79d43c61
TT
605 struct ui_file *stream, int show, int level,
606 const struct type_print_options *flags)
14f9c5c9
AS
607{
608 fprintf_filtered (stream, "\n%*scase %s is", level + 4, "",
d2e4a39e
AS
609 ada_variant_discrim_name
610 (TYPE_FIELD_TYPE (type, field_num)));
611 print_variant_clauses (type, field_num, outer_type, stream, show,
79d43c61 612 level + 4, flags);
14f9c5c9
AS
613 fprintf_filtered (stream, "\n%*send case;", level + 4, "");
614}
615
83e3a93c
PH
616/* Print a description on STREAM of the fields FLD0 through FLD1 in
617 record or union type TYPE, whose discriminants are in OUTER_TYPE.
618 LEVEL is the recursion (indentation) level, in case any of the
619 fields themselves have nested structure, and SHOW is the number of
620 levels of internal structure to show (see ada_print_type). Does
feb864b7 621 not print parent type information of TYPE. Returns 0 if no fields
83e3a93c
PH
622 printed, -1 for an incomplete type, else > 0. Prints each field
623 beginning on a new line, but does not put a new line at end. */
14f9c5c9
AS
624
625static int
83e3a93c
PH
626print_selected_record_field_types (struct type *type, struct type *outer_type,
627 int fld0, int fld1,
79d43c61
TT
628 struct ui_file *stream, int show, int level,
629 const struct type_print_options *flags)
14f9c5c9 630{
83e3a93c 631 int i, flds;
14f9c5c9
AS
632
633 flds = 0;
14f9c5c9 634
83e3a93c 635 if (fld0 > fld1 && TYPE_STUB (type))
14f9c5c9
AS
636 return -1;
637
83e3a93c 638 for (i = fld0; i <= fld1; i += 1)
14f9c5c9
AS
639 {
640 QUIT;
641
d2e4a39e 642 if (ada_is_parent_field (type, i) || ada_is_ignored_field (type, i))
14f9c5c9
AS
643 ;
644 else if (ada_is_wrapper_field (type, i))
645 flds += print_record_field_types (TYPE_FIELD_TYPE (type, i), type,
79d43c61 646 stream, show, level, flags);
d2e4a39e 647 else if (ada_is_variant_part (type, i))
14f9c5c9 648 {
79d43c61 649 print_variant_part (type, i, outer_type, stream, show, level, flags);
14f9c5c9
AS
650 flds = 1;
651 }
652 else
653 {
654 flds += 1;
655 fprintf_filtered (stream, "\n%*s", level + 4, "");
656 ada_print_type (TYPE_FIELD_TYPE (type, i),
657 TYPE_FIELD_NAME (type, i),
79d43c61 658 stream, show - 1, level + 4, flags);
14f9c5c9
AS
659 fprintf_filtered (stream, ";");
660 }
661 }
662
663 return flds;
664}
665
83e3a93c
PH
666/* Print a description on STREAM of all fields of record or union type
667 TYPE, as for print_selected_record_field_types, above. */
668
669static int
670print_record_field_types (struct type *type, struct type *outer_type,
79d43c61
TT
671 struct ui_file *stream, int show, int level,
672 const struct type_print_options *flags)
83e3a93c
PH
673{
674 return print_selected_record_field_types (type, outer_type,
675 0, TYPE_NFIELDS (type) - 1,
79d43c61 676 stream, show, level, flags);
83e3a93c
PH
677}
678
679
4c4b4cd2
PH
680/* Print record type TYPE on STREAM. LEVEL is the recursion (indentation)
681 level, in case the element type itself has nested structure, and SHOW is
682 the number of levels of internal structure to show (see ada_print_type). */
14f9c5c9
AS
683
684static void
d2e4a39e 685print_record_type (struct type *type0, struct ui_file *stream, int show,
79d43c61 686 int level, const struct type_print_options *flags)
14f9c5c9 687{
d2e4a39e
AS
688 struct type *parent_type;
689 struct type *type;
690
4c4b4cd2
PH
691 type = ada_find_parallel_type (type0, "___XVE");
692 if (type == NULL)
693 type = type0;
14f9c5c9
AS
694
695 parent_type = ada_parent_type (type);
d2e4a39e 696 if (ada_type_name (parent_type) != NULL)
25552254
JB
697 {
698 const char *parent_name = decoded_type_name (parent_type);
699
700 /* If we fail to decode the parent type name, then use the parent
701 type name as is. Not pretty, but should never happen except
702 when the debugging info is incomplete or incorrect. This
703 prevents a crash trying to print a NULL pointer. */
704 if (parent_name == NULL)
705 parent_name = ada_type_name (parent_type);
706 fprintf_filtered (stream, "new %s with record", parent_name);
707 }
4c4b4cd2 708 else if (parent_type == NULL && ada_is_tagged_type (type, 0))
0b48a291
PH
709 fprintf_filtered (stream, "tagged record");
710 else
711 fprintf_filtered (stream, "record");
14f9c5c9
AS
712
713 if (show < 0)
0b48a291 714 fprintf_filtered (stream, " ... end record");
14f9c5c9
AS
715 else
716 {
717 int flds;
718
719 flds = 0;
720 if (parent_type != NULL && ada_type_name (parent_type) == NULL)
d2e4a39e 721 flds += print_record_field_types (parent_type, parent_type,
79d43c61
TT
722 stream, show, level, flags);
723 flds += print_record_field_types (type, type, stream, show, level,
724 flags);
d2e4a39e 725
14f9c5c9 726 if (flds > 0)
0b48a291 727 fprintf_filtered (stream, "\n%*send record", level, "");
d2e4a39e 728 else if (flds < 0)
323e0a4a 729 fprintf_filtered (stream, _(" <incomplete type> end record"));
d2e4a39e 730 else
0b48a291 731 fprintf_filtered (stream, " null; end record");
14f9c5c9
AS
732 }
733}
734
735/* Print the unchecked union type TYPE in something resembling Ada
4c4b4cd2 736 format on STREAM. LEVEL is the recursion (indentation) level
14f9c5c9 737 in case the element type itself has nested structure, and SHOW is the
4c4b4cd2 738 number of levels of internal structure to show (see ada_print_type). */
14f9c5c9 739static void
d2e4a39e 740print_unchecked_union_type (struct type *type, struct ui_file *stream,
79d43c61
TT
741 int show, int level,
742 const struct type_print_options *flags)
14f9c5c9 743{
14f9c5c9 744 if (show < 0)
0b48a291 745 fprintf_filtered (stream, "record (?) is ... end record");
d2e4a39e 746 else if (TYPE_NFIELDS (type) == 0)
0b48a291 747 fprintf_filtered (stream, "record (?) is null; end record");
14f9c5c9
AS
748 else
749 {
750 int i;
751
0b48a291 752 fprintf_filtered (stream, "record (?) is\n%*scase ? is", level + 4, "");
14f9c5c9 753
d2e4a39e 754 for (i = 0; i < TYPE_NFIELDS (type); i += 1)
14f9c5c9 755 {
0b48a291 756 fprintf_filtered (stream, "\n%*swhen ? =>\n%*s", level + 8, "",
d2e4a39e 757 level + 12, "");
14f9c5c9
AS
758 ada_print_type (TYPE_FIELD_TYPE (type, i),
759 TYPE_FIELD_NAME (type, i),
79d43c61 760 stream, show - 1, level + 12, flags);
14f9c5c9
AS
761 fprintf_filtered (stream, ";");
762 }
763
0b48a291 764 fprintf_filtered (stream, "\n%*send case;\n%*send record",
d2e4a39e 765 level + 4, "", level, "");
14f9c5c9
AS
766 }
767}
d2e4a39e 768
14f9c5c9
AS
769
770
771/* Print function or procedure type TYPE on STREAM. Make it a header
4c4b4cd2 772 for function or procedure NAME if NAME is not null. */
14f9c5c9
AS
773
774static void
79d43c61
TT
775print_func_type (struct type *type, struct ui_file *stream, const char *name,
776 const struct type_print_options *flags)
14f9c5c9
AS
777{
778 int i, len = TYPE_NFIELDS (type);
779
7022349d
PA
780 if (TYPE_TARGET_TYPE (type) != NULL
781 && TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_VOID)
14f9c5c9
AS
782 fprintf_filtered (stream, "procedure");
783 else
784 fprintf_filtered (stream, "function");
785
d2e4a39e 786 if (name != NULL && name[0] != '\0')
ac8c53cc
PW
787 {
788 fputs_filtered (" ", stream);
789 fputs_styled (name, function_name_style.style (), stream);
790 }
14f9c5c9 791
d2e4a39e 792 if (len > 0)
14f9c5c9
AS
793 {
794 fprintf_filtered (stream, " (");
795 for (i = 0; i < len; i += 1)
796 {
797 if (i > 0)
798 {
799 fputs_filtered ("; ", stream);
800 wrap_here (" ");
801 }
d2e4a39e 802 fprintf_filtered (stream, "a%d: ", i + 1);
79d43c61
TT
803 ada_print_type (TYPE_FIELD_TYPE (type, i), "", stream, -1, 0,
804 flags);
14f9c5c9
AS
805 }
806 fprintf_filtered (stream, ")");
d2e4a39e 807 }
14f9c5c9 808
7022349d
PA
809 if (TYPE_TARGET_TYPE (type) == NULL)
810 fprintf_filtered (stream, " return <unknown return type>");
811 else if (TYPE_CODE (TYPE_TARGET_TYPE (type)) != TYPE_CODE_VOID)
14f9c5c9
AS
812 {
813 fprintf_filtered (stream, " return ");
79d43c61 814 ada_print_type (TYPE_TARGET_TYPE (type), "", stream, 0, 0, flags);
14f9c5c9
AS
815 }
816}
817
818
819/* Print a description of a type TYPE0.
820 Output goes to STREAM (via stdio).
821 If VARSTRING is a non-empty string, print as an Ada variable/field
822 declaration.
4c4b4cd2 823 SHOW+1 is the maximum number of levels of internal type structure
14f9c5c9
AS
824 to show (this applies to record types, enumerated types, and
825 array types).
826 SHOW is the number of levels of internal type structure to show
4c4b4cd2 827 when there is a type name for the SHOWth deepest level (0th is
14f9c5c9
AS
828 outer level).
829 When SHOW<0, no inner structure is shown.
4c4b4cd2 830 LEVEL indicates level of recursion (for nested definitions). */
14f9c5c9
AS
831
832void
25b524e8 833ada_print_type (struct type *type0, const char *varstring,
79d43c61
TT
834 struct ui_file *stream, int show, int level,
835 const struct type_print_options *flags)
14f9c5c9 836{
61ee279c 837 struct type *type = ada_check_typedef (ada_get_base_type (type0));
f192137b 838 char *type_name = decoded_type_name (type0);
14f9c5c9
AS
839 int is_var_decl = (varstring != NULL && varstring[0] != '\0');
840
841 if (type == NULL)
842 {
843 if (is_var_decl)
844 fprintf_filtered (stream, "%.*s: ",
d2e4a39e 845 ada_name_prefix_len (varstring), varstring);
14f9c5c9
AS
846 fprintf_filtered (stream, "<null type?>");
847 return;
848 }
849
850 if (show > 0)
61ee279c 851 type = ada_check_typedef (type);
14f9c5c9
AS
852
853 if (is_var_decl && TYPE_CODE (type) != TYPE_CODE_FUNC)
d2e4a39e
AS
854 fprintf_filtered (stream, "%.*s: ",
855 ada_name_prefix_len (varstring), varstring);
14f9c5c9 856
d2d43431 857 if (type_name != NULL && show <= 0 && !ada_is_aligner_type (type))
14f9c5c9 858 {
d2e4a39e 859 fprintf_filtered (stream, "%.*s",
14f9c5c9
AS
860 ada_name_prefix_len (type_name), type_name);
861 return;
862 }
863
864 if (ada_is_aligner_type (type))
79d43c61 865 ada_print_type (ada_aligned_type (type), "", stream, show, level, flags);
d2d43431
JB
866 else if (ada_is_constrained_packed_array_type (type)
867 && TYPE_CODE (type) != TYPE_CODE_PTR)
79d43c61 868 print_array_type (type, stream, show, level, flags);
14f9c5c9 869 else
d2e4a39e
AS
870 switch (TYPE_CODE (type))
871 {
872 default:
873 fprintf_filtered (stream, "<");
79d43c61 874 c_print_type (type, "", stream, show, level, flags);
d2e4a39e
AS
875 fprintf_filtered (stream, ">");
876 break;
877 case TYPE_CODE_PTR:
720d1a40 878 case TYPE_CODE_TYPEDEF:
d2e4a39e 879 fprintf_filtered (stream, "access ");
79d43c61
TT
880 ada_print_type (TYPE_TARGET_TYPE (type), "", stream, show, level,
881 flags);
d2e4a39e
AS
882 break;
883 case TYPE_CODE_REF:
884 fprintf_filtered (stream, "<ref> ");
79d43c61
TT
885 ada_print_type (TYPE_TARGET_TYPE (type), "", stream, show, level,
886 flags);
d2e4a39e
AS
887 break;
888 case TYPE_CODE_ARRAY:
79d43c61 889 print_array_type (type, stream, show, level, flags);
d2e4a39e 890 break;
690cc4eb
PH
891 case TYPE_CODE_BOOL:
892 fprintf_filtered (stream, "(false, true)");
893 break;
d2e4a39e
AS
894 case TYPE_CODE_INT:
895 if (ada_is_fixed_point_type (type))
896 print_fixed_point_type (type, stream);
d2e4a39e
AS
897 else
898 {
0d5cff50 899 const char *name = ada_type_name (type);
5b4ee69b 900
d2e4a39e 901 if (!ada_is_range_type_name (name))
cc1defb1
KS
902 fprintf_filtered (stream, _("<%s-byte integer>"),
903 pulongest (TYPE_LENGTH (type)));
d2e4a39e
AS
904 else
905 {
906 fprintf_filtered (stream, "range ");
fb151210 907 print_range_type (type, stream, 1 /* bounds_prefered_p */);
d2e4a39e
AS
908 }
909 }
910 break;
911 case TYPE_CODE_RANGE:
912 if (ada_is_fixed_point_type (type))
913 print_fixed_point_type (type, stream);
d2e4a39e 914 else if (ada_is_modular_type (type))
529cad9c
PH
915 fprintf_filtered (stream, "mod %s",
916 int_string (ada_modulus (type), 10, 0, 0, 1));
d2e4a39e
AS
917 else
918 {
919 fprintf_filtered (stream, "range ");
fb151210 920 print_range (type, stream, 1 /* bounds_prefered_p */);
d2e4a39e
AS
921 }
922 break;
923 case TYPE_CODE_FLT:
cc1defb1
KS
924 fprintf_filtered (stream, _("<%s-byte float>"),
925 pulongest (TYPE_LENGTH (type)));
d2e4a39e
AS
926 break;
927 case TYPE_CODE_ENUM:
928 if (show < 0)
929 fprintf_filtered (stream, "(...)");
930 else
931 print_enum_type (type, stream);
932 break;
933 case TYPE_CODE_STRUCT:
4c4b4cd2 934 if (ada_is_array_descriptor_type (type))
79d43c61 935 print_array_type (type, stream, show, level, flags);
d2e4a39e
AS
936 else if (ada_is_bogus_array_descriptor (type))
937 fprintf_filtered (stream,
e1d5a0d2 938 _("array (?) of ? (<mal-formed descriptor>)"));
d2e4a39e 939 else
79d43c61 940 print_record_type (type, stream, show, level, flags);
d2e4a39e
AS
941 break;
942 case TYPE_CODE_UNION:
79d43c61 943 print_unchecked_union_type (type, stream, show, level, flags);
d2e4a39e
AS
944 break;
945 case TYPE_CODE_FUNC:
79d43c61 946 print_func_type (type, stream, varstring, flags);
d2e4a39e
AS
947 break;
948 }
14f9c5c9 949}
be942545
JB
950
951/* Implement the la_print_typedef language method for Ada. */
952
953void
954ada_print_typedef (struct type *type, struct symbol *new_symbol,
955 struct ui_file *stream)
956{
957 type = ada_check_typedef (type);
79d43c61 958 ada_print_type (type, "", stream, 0, 0, &type_print_raw_options);
be942545
JB
959 fprintf_filtered (stream, "\n");
960}
This page took 1.042885 seconds and 4 git commands to generate.